Google Analytics for WordPress by MonsterInsights - Version 8.6.0

Version Description

Download this release

Release Info

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

Code changes from version 8.5.3 to 8.6.0

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.5.3
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.5.3';
73
 
74
  /**
75
  * Plugin file.
6
  * Author: MonsterInsights
7
  * Author URI: https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
8
  *
9
+ * Version: 8.6.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.6.0';
73
 
74
  /**
75
  * Plugin file.
includes/admin/ajax.php CHANGED
@@ -1,258 +1,260 @@
1
- <?php
2
- /**
3
- * Handles all admin ajax interactions for the MonsterInsights plugin.
4
- *
5
- * @since 6.0.0
6
- *
7
- * @package MonsterInsights
8
- * @subpackage Ajax
9
- * @author Chris Christoff
10
- */
11
-
12
- // Exit if accessed directly
13
- if ( ! defined( 'ABSPATH' ) ) {
14
- exit;
15
- }
16
-
17
- /**
18
- * Stores a user setting for the logged-in WordPress User
19
- *
20
- * @access public
21
- * @since 6.0.0
22
- */
23
- function monsterinsights_ajax_set_user_setting() {
24
-
25
- // Run a security check first.
26
- check_ajax_referer( 'monsterinsights-set-user-setting', 'nonce' );
27
-
28
- // Prepare variables.
29
- $name = stripslashes( $_POST['name'] );
30
- $value = stripslashes( $_POST['value'] );
31
-
32
- // Set user setting.
33
- set_user_setting( $name, $value );
34
-
35
- // Send back the response.
36
- wp_send_json_success();
37
- wp_die();
38
-
39
- }
40
- add_action( 'wp_ajax_monsterinsights_install_addon', 'monsterinsights_ajax_install_addon' );
41
-
42
- /**
43
- * Installs a MonsterInsights addon.
44
- *
45
- * @access public
46
- * @since 6.0.0
47
- */
48
- function monsterinsights_ajax_install_addon() {
49
-
50
- // Run a security check first.
51
- check_ajax_referer( 'monsterinsights-install', 'nonce' );
52
-
53
- if ( ! monsterinsights_can_install_plugins() ) {
54
- wp_send_json( array(
55
- 'error' => esc_html__( 'You are not allowed to install plugins', 'google-analytics-for-wordpress' ),
56
- ) );
57
- }
58
-
59
- // Install the addon.
60
- if ( isset( $_POST['plugin'] ) ) {
61
- $download_url = $_POST['plugin'];
62
- global $hook_suffix;
63
-
64
- // Set the current screen to avoid undefined notices.
65
- set_current_screen();
66
-
67
- // Prepare variables.
68
- $method = '';
69
- $url = add_query_arg(
70
- array(
71
- 'page' => 'monsterinsights-settings'
72
- ),
73
- admin_url( 'admin.php' )
74
- );
75
- $url = esc_url( $url );
76
-
77
- // Start output bufferring to catch the filesystem form if credentials are needed.
78
- ob_start();
79
- if ( false === ( $creds = request_filesystem_credentials( $url, $method, false, false, null ) ) ) {
80
- $form = ob_get_clean();
81
- echo json_encode( array( 'form' => $form ) );
82
- wp_die();
83
- }
84
-
85
- // If we are not authenticated, make it happen now.
86
- if ( ! WP_Filesystem( $creds ) ) {
87
- ob_start();
88
- request_filesystem_credentials( $url, $method, true, false, null );
89
- $form = ob_get_clean();
90
- echo json_encode( array( 'form' => $form ) );
91
- wp_die();
92
- }
93
-
94
- // We do not need any extra credentials if we have gotten this far, so let's install the plugin.
95
- monsterinsights_require_upgrader( false );
96
-
97
- // Create the plugin upgrader with our custom skin.
98
- $installer = new Plugin_Upgrader( $skin = new MonsterInsights_Skin() );
99
- $installer->install( $download_url );
100
-
101
- // Flush the cache and return the newly installed plugin basename.
102
- wp_cache_flush();
103
- if ( $installer->plugin_info() ) {
104
- $plugin_basename = $installer->plugin_info();
105
- echo json_encode( array( 'plugin' => $plugin_basename ) );
106
- wp_die();
107
- }
108
- }
109
-
110
- // Send back a response.
111
- echo json_encode( true );
112
- wp_die();
113
-
114
- }
115
-
116
- add_action( 'wp_ajax_monsterinsights_activate_addon', 'monsterinsights_ajax_activate_addon' );
117
- /**
118
- * Activates a MonsterInsights addon.
119
- *
120
- * @access public
121
- * @since 6.0.0
122
- */
123
- function monsterinsights_ajax_activate_addon() {
124
-
125
- // Run a security check first.
126
- check_ajax_referer( 'monsterinsights-activate', 'nonce' );
127
-
128
- if ( ! current_user_can( 'activate_plugins' ) ) {
129
- wp_send_json( array(
130
- 'error' => esc_html__( 'You are not allowed to activate plugins', 'google-analytics-for-wordpress' ),
131
- ) );
132
- }
133
-
134
- // Activate the addon.
135
- if ( isset( $_POST['plugin'] ) ) {
136
- if ( isset( $_POST['isnetwork'] ) && $_POST['isnetwork'] ) {
137
- $activate = activate_plugin( $_POST['plugin'], NULL, true );
138
- } else {
139
- $activate = activate_plugin( $_POST['plugin'] );
140
- }
141
-
142
- if ( is_wp_error( $activate ) ) {
143
- echo json_encode( array( 'error' => $activate->get_error_message() ) );
144
- wp_die();
145
- }
146
- }
147
-
148
- echo json_encode( true );
149
- wp_die();
150
-
151
- }
152
-
153
- add_action( 'wp_ajax_monsterinsights_deactivate_addon', 'monsterinsights_ajax_deactivate_addon' );
154
- /**
155
- * Deactivates a MonsterInsights addon.
156
- *
157
- * @access public
158
- * @since 6.0.0
159
- */
160
- function monsterinsights_ajax_deactivate_addon() {
161
-
162
- // Run a security check first.
163
- check_ajax_referer( 'monsterinsights-deactivate', 'nonce' );
164
-
165
- if ( ! current_user_can( 'deactivate_plugins' ) ) {
166
- wp_send_json( array(
167
- 'error' => esc_html__( 'You are not allowed to deactivate plugins', 'google-analytics-for-wordpress' ),
168
- ) );
169
- }
170
-
171
- // Deactivate the addon.
172
- if ( isset( $_POST['plugin'] ) ) {
173
- if ( isset( $_POST['isnetwork'] ) && $_POST['isnetwork'] ) {
174
- $deactivate = deactivate_plugins( $_POST['plugin'], false, true );
175
- } else {
176
- $deactivate = deactivate_plugins( $_POST['plugin'] );
177
- }
178
- }
179
-
180
- echo json_encode( true );
181
- wp_die();
182
- }
183
-
184
- /**
185
- * Called whenever a notice is dismissed in MonsterInsights or its Addons.
186
- *
187
- * Updates a key's value in the options table to mark the notice as dismissed,
188
- * preventing it from displaying again
189
- *
190
- * @access public
191
- * @since 6.0.0
192
- */
193
- function monsterinsights_ajax_dismiss_notice() {
194
-
195
- // Run a security check first.
196
- check_ajax_referer( 'monsterinsights-dismiss-notice', 'nonce' );
197
-
198
- // Deactivate the notice
199
- if ( isset( $_POST['notice'] ) ) {
200
- // Init the notice class and mark notice as deactivated
201
- MonsterInsights()->notices->dismiss( $_POST['notice'] );
202
-
203
- // Return true
204
- echo json_encode( true );
205
- wp_die();
206
- }
207
-
208
- // If here, an error occurred
209
- echo json_encode( false );
210
- wp_die();
211
-
212
- }
213
- add_action( 'wp_ajax_monsterinsights_ajax_dismiss_notice', 'monsterinsights_ajax_dismiss_notice' );
214
-
215
- /**
216
- * Dismiss SEMRush CTA
217
- *
218
- * @access public
219
- * @since 7.12.3
220
- */
221
- function monsterinsights_ajax_dismiss_semrush_cta() {
222
- check_ajax_referer( 'mi-admin-nonce', 'nonce' );
223
-
224
- if ( ! current_user_can( 'monsterinsights_save_settings' ) ) {
225
- return;
226
- }
227
-
228
- // Deactivate the notice
229
- if ( update_option( 'monsterinsights_dismiss_semrush_cta', 'yes' ) ) {
230
- // Return true
231
- wp_send_json( array(
232
- 'dismissed' => 'yes',
233
- ) );
234
- wp_die();
235
- }
236
-
237
- // If here, an error occurred
238
- wp_send_json( array(
239
- 'dismissed' => 'no',
240
- ) );
241
- wp_die();
242
- }
243
- add_action( 'wp_ajax_monsterinsights_vue_dismiss_semrush_cta', 'monsterinsights_ajax_dismiss_semrush_cta' );
244
-
245
- /**
246
- * Get the sem rush cta dismiss status value
247
- */
248
- function monsterinsights_get_sem_rush_cta_status() {
249
- check_ajax_referer( 'mi-admin-nonce', 'nonce' );
250
-
251
- $dismissed_cta = get_option( 'monsterinsights_dismiss_semrush_cta', 'no' );
252
-
253
- wp_send_json( array(
254
- 'dismissed' => $dismissed_cta,
255
- ) );
256
- }
257
-
258
- add_action( 'wp_ajax_monsterinsights_get_sem_rush_cta_status', 'monsterinsights_get_sem_rush_cta_status' );
 
 
1
+ <?php
2
+ /**
3
+ * Handles all admin ajax interactions for the MonsterInsights plugin.
4
+ *
5
+ * @since 6.0.0
6
+ *
7
+ * @package MonsterInsights
8
+ * @subpackage Ajax
9
+ * @author Chris Christoff
10
+ */
11
+
12
+ // Exit if accessed directly
13
+ if ( ! defined( 'ABSPATH' ) ) {
14
+ exit;
15
+ }
16
+
17
+ /**
18
+ * Stores a user setting for the logged-in WordPress User
19
+ *
20
+ * @access public
21
+ * @since 6.0.0
22
+ */
23
+ function monsterinsights_ajax_set_user_setting() {
24
+
25
+ // Run a security check first.
26
+ check_ajax_referer( 'monsterinsights-set-user-setting', 'nonce' );
27
+
28
+ // Prepare variables.
29
+ $name = stripslashes( $_POST['name'] );
30
+ $value = stripslashes( $_POST['value'] );
31
+
32
+ // Set user setting.
33
+ set_user_setting( $name, $value );
34
+
35
+ // Send back the response.
36
+ wp_send_json_success();
37
+ wp_die();
38
+
39
+ }
40
+ add_action( 'wp_ajax_monsterinsights_install_addon', 'monsterinsights_ajax_install_addon' );
41
+
42
+ /**
43
+ * Installs a MonsterInsights addon.
44
+ *
45
+ * @access public
46
+ * @since 6.0.0
47
+ */
48
+ function monsterinsights_ajax_install_addon() {
49
+
50
+ // Run a security check first.
51
+ check_ajax_referer( 'monsterinsights-install', 'nonce' );
52
+
53
+ if ( ! monsterinsights_can_install_plugins() ) {
54
+ wp_send_json( array(
55
+ 'error' => esc_html__( 'You are not allowed to install plugins', 'google-analytics-for-wordpress' ),
56
+ ) );
57
+ }
58
+
59
+ // Install the addon.
60
+ if ( isset( $_POST['plugin'] ) ) {
61
+ $download_url = $_POST['plugin'];
62
+ global $hook_suffix;
63
+
64
+ // Set the current screen to avoid undefined notices.
65
+ set_current_screen();
66
+
67
+ // Prepare variables.
68
+ $method = '';
69
+ $url = add_query_arg(
70
+ array(
71
+ 'page' => 'monsterinsights-settings'
72
+ ),
73
+ admin_url( 'admin.php' )
74
+ );
75
+ $url = esc_url( $url );
76
+
77
+ // Start output bufferring to catch the filesystem form if credentials are needed.
78
+ ob_start();
79
+ if ( false === ( $creds = request_filesystem_credentials( $url, $method, false, false, null ) ) ) {
80
+ $form = ob_get_clean();
81
+ echo json_encode( array( 'form' => $form ) );
82
+ wp_die();
83
+ }
84
+
85
+ // If we are not authenticated, make it happen now.
86
+ if ( ! WP_Filesystem( $creds ) ) {
87
+ ob_start();
88
+ request_filesystem_credentials( $url, $method, true, false, null );
89
+ $form = ob_get_clean();
90
+ echo json_encode( array( 'form' => $form ) );
91
+ wp_die();
92
+ }
93
+
94
+ // We do not need any extra credentials if we have gotten this far, so let's install the plugin.
95
+ monsterinsights_require_upgrader( false );
96
+
97
+ // Create the plugin upgrader with our custom skin.
98
+ $installer = new Plugin_Upgrader( $skin = new MonsterInsights_Skin() );
99
+ $installer->install( $download_url );
100
+
101
+ // Flush the cache and return the newly installed plugin basename.
102
+ wp_cache_flush();
103
+ if ( $installer->plugin_info() ) {
104
+ $plugin_basename = $installer->plugin_info();
105
+ echo json_encode( array( 'plugin' => $plugin_basename ) );
106
+ wp_die();
107
+ }
108
+ }
109
+
110
+ // Send back a response.
111
+ echo json_encode( true );
112
+ wp_die();
113
+
114
+ }
115
+
116
+ add_action( 'wp_ajax_monsterinsights_activate_addon', 'monsterinsights_ajax_activate_addon' );
117
+ /**
118
+ * Activates a MonsterInsights addon.
119
+ *
120
+ * @access public
121
+ * @since 6.0.0
122
+ */
123
+ function monsterinsights_ajax_activate_addon() {
124
+
125
+ // Run a security check first.
126
+ check_ajax_referer( 'monsterinsights-activate', 'nonce' );
127
+
128
+ if ( ! current_user_can( 'activate_plugins' ) ) {
129
+ wp_send_json( array(
130
+ 'error' => esc_html__( 'You are not allowed to activate plugins', 'google-analytics-for-wordpress' ),
131
+ ) );
132
+ }
133
+
134
+ // Activate the addon.
135
+ if ( isset( $_POST['plugin'] ) ) {
136
+ if ( isset( $_POST['isnetwork'] ) && $_POST['isnetwork'] ) {
137
+ $activate = activate_plugin( $_POST['plugin'], NULL, true );
138
+ } else {
139
+ $activate = activate_plugin( $_POST['plugin'] );
140
+ }
141
+
142
+ if ( is_wp_error( $activate ) ) {
143
+ echo json_encode( array( 'error' => $activate->get_error_message() ) );
144
+ wp_die();
145
+ }
146
+
147
+ do_action( 'monsterinsights_after_ajax_activate_addon', sanitize_text_field( $_POST['plugin'] ) );
148
+ }
149
+
150
+ echo json_encode( true );
151
+ wp_die();
152
+
153
+ }
154
+
155
+ add_action( 'wp_ajax_monsterinsights_deactivate_addon', 'monsterinsights_ajax_deactivate_addon' );
156
+ /**
157
+ * Deactivates a MonsterInsights addon.
158
+ *
159
+ * @access public
160
+ * @since 6.0.0
161
+ */
162
+ function monsterinsights_ajax_deactivate_addon() {
163
+
164
+ // Run a security check first.
165
+ check_ajax_referer( 'monsterinsights-deactivate', 'nonce' );
166
+
167
+ if ( ! current_user_can( 'deactivate_plugins' ) ) {
168
+ wp_send_json( array(
169
+ 'error' => esc_html__( 'You are not allowed to deactivate plugins', 'google-analytics-for-wordpress' ),
170
+ ) );
171
+ }
172
+
173
+ // Deactivate the addon.
174
+ if ( isset( $_POST['plugin'] ) ) {
175
+ if ( isset( $_POST['isnetwork'] ) && $_POST['isnetwork'] ) {
176
+ $deactivate = deactivate_plugins( $_POST['plugin'], false, true );
177
+ } else {
178
+ $deactivate = deactivate_plugins( $_POST['plugin'] );
179
+ }
180
+ }
181
+
182
+ echo json_encode( true );
183
+ wp_die();
184
+ }
185
+
186
+ /**
187
+ * Called whenever a notice is dismissed in MonsterInsights or its Addons.
188
+ *
189
+ * Updates a key's value in the options table to mark the notice as dismissed,
190
+ * preventing it from displaying again
191
+ *
192
+ * @access public
193
+ * @since 6.0.0
194
+ */
195
+ function monsterinsights_ajax_dismiss_notice() {
196
+
197
+ // Run a security check first.
198
+ check_ajax_referer( 'monsterinsights-dismiss-notice', 'nonce' );
199
+
200
+ // Deactivate the notice
201
+ if ( isset( $_POST['notice'] ) ) {
202
+ // Init the notice class and mark notice as deactivated
203
+ MonsterInsights()->notices->dismiss( $_POST['notice'] );
204
+
205
+ // Return true
206
+ echo json_encode( true );
207
+ wp_die();
208
+ }
209
+
210
+ // If here, an error occurred
211
+ echo json_encode( false );
212
+ wp_die();
213
+
214
+ }
215
+ add_action( 'wp_ajax_monsterinsights_ajax_dismiss_notice', 'monsterinsights_ajax_dismiss_notice' );
216
+
217
+ /**
218
+ * Dismiss SEMRush CTA
219
+ *
220
+ * @access public
221
+ * @since 7.12.3
222
+ */
223
+ function monsterinsights_ajax_dismiss_semrush_cta() {
224
+ check_ajax_referer( 'mi-admin-nonce', 'nonce' );
225
+
226
+ if ( ! current_user_can( 'monsterinsights_save_settings' ) ) {
227
+ return;
228
+ }
229
+
230
+ // Deactivate the notice
231
+ if ( update_option( 'monsterinsights_dismiss_semrush_cta', 'yes' ) ) {
232
+ // Return true
233
+ wp_send_json( array(
234
+ 'dismissed' => 'yes',
235
+ ) );
236
+ wp_die();
237
+ }
238
+
239
+ // If here, an error occurred
240
+ wp_send_json( array(
241
+ 'dismissed' => 'no',
242
+ ) );
243
+ wp_die();
244
+ }
245
+ add_action( 'wp_ajax_monsterinsights_vue_dismiss_semrush_cta', 'monsterinsights_ajax_dismiss_semrush_cta' );
246
+
247
+ /**
248
+ * Get the sem rush cta dismiss status value
249
+ */
250
+ function monsterinsights_get_sem_rush_cta_status() {
251
+ check_ajax_referer( 'mi-admin-nonce', 'nonce' );
252
+
253
+ $dismissed_cta = get_option( 'monsterinsights_dismiss_semrush_cta', 'no' );
254
+
255
+ wp_send_json( array(
256
+ 'dismissed' => $dismissed_cta,
257
+ ) );
258
+ }
259
+
260
+ add_action( 'wp_ajax_monsterinsights_get_sem_rush_cta_status', 'monsterinsights_get_sem_rush_cta_status' );
includes/measurement-protocol-v4.php CHANGED
@@ -1,120 +1,198 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit; // Exit if accessed directly
5
- }
6
-
7
- class MonsterInsights_Measurement_Protocol_V4 {
8
- private static $instance;
9
-
10
- public static function get_instance() {
11
- if ( empty( self::$instance ) ) {
12
- self::$instance = new self();
13
- }
14
-
15
- return self::$instance;
16
- }
17
-
18
- private $is_debug;
19
-
20
- private $measurement_id;
21
-
22
- private function __construct() {
23
- $this->is_debug = monsterinsights_is_debug_mode();
24
- $this->measurement_id = monsterinsights_get_v4_id_to_output();
25
- }
26
-
27
- private function get_base_url() {
28
- return 'https://www.google-analytics.com/mp/collect';
29
- }
30
-
31
- private function get_url() {
32
- $api_secret = is_multisite() && is_network_admin()
33
- ? MonsterInsights()->auth->get_network_measurement_protocol_secret()
34
- : MonsterInsights()->auth->get_measurement_protocol_secret();
35
-
36
- return add_query_arg(
37
- array(
38
- 'api_secret' => $api_secret,
39
- 'measurement_id' => $this->measurement_id,
40
- ),
41
- $this->get_base_url()
42
- );
43
- }
44
-
45
- private function get_client_id( $args ) {
46
- if ( ! empty( $args['client_id'] ) ) {
47
- return $args['client_id'];
48
- }
49
-
50
- $payment_id = 0;
51
- if ( ! empty( $args['payment_id'] ) ) {
52
- $payment_id = $args['payment_id'];
53
- }
54
-
55
- return monsterinsights_get_client_id( $payment_id );
56
- }
57
-
58
- private function validate_args( $args, $defaults ) {
59
- $out = array();
60
-
61
- foreach ( $defaults as $key => $default ) {
62
- if ( array_key_exists( $key, $args ) ) {
63
- $out[ $key ] = $args[ $key ];
64
- } else {
65
- $out[ $key ] = $default;
66
- }
67
- }
68
-
69
- if ( ! empty( $args['user_id'] ) && monsterinsights_get_option( 'userid', false ) ) {
70
- $out['user_id'] = $args['user_id'];
71
- }
72
-
73
- return $out;
74
- }
75
-
76
- private function request( $args ) {
77
- if ( empty( $this->measurement_id ) ) {
78
- return;
79
- }
80
-
81
- $defaults = array(
82
- 'client_id' => $this->get_client_id( $args ),
83
- 'events' => array(),
84
- );
85
-
86
- $body = $this->validate_args( $args, $defaults );
87
-
88
- if ( $this->is_debug ) {
89
- foreach ( $body['events'] as $index => $event ) {
90
- $body['events'][ $index ]['params']['debug_mode'] = true;
91
- }
92
- }
93
-
94
- $body = apply_filters( 'monsterinsights_mp_v4_api_call', $body );
95
-
96
- return wp_remote_post(
97
- $this->get_url(),
98
- array(
99
- 'method' => 'POST',
100
- 'timeout' => 5,
101
- 'blocking' => $this->is_debug,
102
- 'body' => wp_json_encode( $body ),
103
- )
104
- );
105
- }
106
-
107
- public function collect( $args ) {
108
- // Detect if browser request is a prefetch
109
- if ( ( isset( $_SERVER["HTTP_X_PURPOSE"] ) && ( 'prefetch' === strtolower( $_SERVER["HTTP_X_PURPOSE"] ) ) ) ||
110
- ( isset( $_SERVER["HTTP_X_MOZ"] ) && ( 'prefetch' === strtolower( $_SERVER["HTTP_X_MOZ"] ) ) ) ) {
111
- return;
112
- }
113
-
114
- return $this->request( $args );
115
- }
116
- }
117
-
118
- function monsterinsights_mp_collect_v4( $args ) {
119
- return MonsterInsights_Measurement_Protocol_V4::get_instance()->collect( $args );
120
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit; // Exit if accessed directly
5
+ }
6
+
7
+ class MonsterInsights_Measurement_Protocol_V4 {
8
+ private static $instance;
9
+
10
+ public static function get_instance() {
11
+ if ( empty( self::$instance ) ) {
12
+ self::$instance = new self();
13
+ }
14
+
15
+ return self::$instance;
16
+ }
17
+
18
+ private $is_debug;
19
+
20
+ private $measurement_id;
21
+
22
+ private $schema;
23
+
24
+ private function __construct() {
25
+ $this->is_debug = monsterinsights_is_debug_mode();
26
+ $this->measurement_id = monsterinsights_get_v4_id_to_output();
27
+
28
+ $this->schema = array(
29
+ 'currency' => 'string',
30
+ 'value' => 'double',
31
+ 'coupon' => 'string',
32
+ 'transaction_id' => 'string',
33
+ 'affiliation' => 'string',
34
+ 'shipping' => 'double',
35
+ 'tax' => 'double',
36
+ 'user_id' => 'string',
37
+ 'items' => array(
38
+ 'item_id' => 'string',
39
+ 'item_name' => 'string',
40
+ 'affiliation' => 'string',
41
+ 'coupon' => 'string',
42
+ 'currency' => 'string',
43
+ 'discount' => 'double',
44
+ 'index' => 'integer',
45
+ 'item_brand' => 'string',
46
+ 'item_category' => 'string',
47
+ 'item_list_id' => 'string',
48
+ 'item_list_name' => 'string',
49
+ 'item_variant' => 'string',
50
+ 'location_id' => 'string',
51
+ 'price' => 'double',
52
+ 'quantity' => 'integer',
53
+ ),
54
+ );
55
+ }
56
+
57
+ private function get_base_url() {
58
+ return 'https://www.google-analytics.com/mp/collect';
59
+ }
60
+
61
+ private function get_url() {
62
+ $api_secret = is_multisite() && is_network_admin()
63
+ ? MonsterInsights()->auth->get_network_measurement_protocol_secret()
64
+ : MonsterInsights()->auth->get_measurement_protocol_secret();
65
+
66
+ return add_query_arg(
67
+ array(
68
+ 'api_secret' => $api_secret,
69
+ 'measurement_id' => $this->measurement_id,
70
+ ),
71
+ $this->get_base_url()
72
+ );
73
+ }
74
+
75
+ private function get_client_id( $args ) {
76
+ if ( ! empty( $args['client_id'] ) ) {
77
+ return $args['client_id'];
78
+ }
79
+
80
+ $payment_id = 0;
81
+ if ( ! empty( $args['payment_id'] ) ) {
82
+ $payment_id = $args['payment_id'];
83
+ }
84
+
85
+ return monsterinsights_get_client_id( $payment_id );
86
+ }
87
+
88
+ private function sanitize_event( $params, $schema ) {
89
+ $sanitized_params = array();
90
+
91
+ foreach ( $params as $key => $value ) {
92
+ if ( ! array_key_exists( $key, $schema ) ||
93
+ ( ! is_array( $value ) && gettype( $value ) === $schema[ $key ] )
94
+ ) {
95
+ $sanitized_params[ $key ] = $value;
96
+ continue;
97
+ }
98
+
99
+ if ( is_array( $value ) && is_array( $schema[ $key ] ) ) {
100
+ $sanitized_params[ $key ] = array();
101
+ foreach ( $value as $item_index => $item ) {
102
+ $sanitized_params[ $key ][ $item_index ] = $this->sanitize_event( $item, $schema[ $key ] );
103
+ }
104
+ continue;
105
+ }
106
+
107
+ switch ( $schema[ $key ] ) {
108
+ case 'string':
109
+ $sanitized_params[ $key ] = (string) $value;
110
+ break;
111
+
112
+ case 'double':
113
+ $sanitized_params[ $key ] = (float) $value;
114
+ break;
115
+
116
+ case 'integer':
117
+ $sanitized_params[ $key ] = (int) $value;
118
+ break;
119
+ }
120
+ }
121
+
122
+ return $sanitized_params;
123
+ }
124
+
125
+ private function validate_args( $args, $defaults ) {
126
+ $out = array();
127
+
128
+ foreach ( $defaults as $key => $default ) {
129
+ if ( array_key_exists( $key, $args ) ) {
130
+ $out[ $key ] = $args[ $key ];
131
+ } else {
132
+ $out[ $key ] = $default;
133
+ }
134
+ }
135
+
136
+ if ( ! empty( $args['user_id'] ) && monsterinsights_get_option( 'userid', false ) ) {
137
+ $out['user_id'] = (string) $args['user_id'];
138
+ }
139
+
140
+ foreach ( $out['events'] as $event_index => $event ) {
141
+ $sanitized_event = array();
142
+ $sanitized_event['name'] = (string) $event['name'];
143
+
144
+ if ( ! empty( $event['params'] ) ) {
145
+ $sanitized_event['params'] = $this->sanitize_event( $event['params'], $this->schema );
146
+ }
147
+
148
+ $out['events'][ $event_index ] = $sanitized_event;
149
+ }
150
+
151
+ return $out;
152
+ }
153
+
154
+ private function request( $args ) {
155
+ if ( empty( $this->measurement_id ) ) {
156
+ return;
157
+ }
158
+
159
+ $defaults = array(
160
+ 'client_id' => $this->get_client_id( $args ),
161
+ 'events' => array(),
162
+ );
163
+
164
+ $body = $this->validate_args( $args, $defaults );
165
+
166
+ if ( $this->is_debug ) {
167
+ foreach ( $body['events'] as $index => $event ) {
168
+ $body['events'][ $index ]['params']['debug_mode'] = true;
169
+ }
170
+ }
171
+
172
+ $body = apply_filters( 'monsterinsights_mp_v4_api_call', $body );
173
+
174
+ return wp_remote_post(
175
+ $this->get_url(),
176
+ array(
177
+ 'method' => 'POST',
178
+ 'timeout' => 5,
179
+ 'blocking' => $this->is_debug,
180
+ 'body' => wp_json_encode( $body ),
181
+ )
182
+ );
183
+ }
184
+
185
+ public function collect( $args ) {
186
+ // Detect if browser request is a prefetch
187
+ if ( ( isset( $_SERVER["HTTP_X_PURPOSE"] ) && ( 'prefetch' === strtolower( $_SERVER["HTTP_X_PURPOSE"] ) ) ) ||
188
+ ( isset( $_SERVER["HTTP_X_MOZ"] ) && ( 'prefetch' === strtolower( $_SERVER["HTTP_X_MOZ"] ) ) ) ) {
189
+ return;
190
+ }
191
+
192
+ return $this->request( $args );
193
+ }
194
+ }
195
+
196
+ function monsterinsights_mp_collect_v4( $args ) {
197
+ return MonsterInsights_Measurement_Protocol_V4::get_instance()->collect( $args );
198
+ }
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.5.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2022-05-17T19:38:09+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.6.0\n"
15
  "X-Domain: google-analytics-for-wordpress\n"
@@ -120,14 +120,14 @@ msgstr ""
120
  #: includes/admin/admin.php:126
121
  #: includes/admin/em-admin.php:18
122
  #: includes/admin/em-admin.php:21
123
- #: languages/vue.php:243
124
  msgid "Insights"
125
  msgstr ""
126
 
127
  #: includes/admin/admin.php:34
128
  #: includes/admin/admin.php:42
129
  #: includes/admin/admin.php:222
130
- #: languages/vue.php:509
131
  msgid "Settings"
132
  msgstr ""
133
 
@@ -143,7 +143,7 @@ msgstr ""
143
 
144
  #: includes/admin/admin.php:39
145
  #: includes/admin/admin.php:130
146
- #: languages/vue.php:1967
147
  msgid "Reports"
148
  msgstr ""
149
 
@@ -153,7 +153,7 @@ msgstr ""
153
 
154
  #: includes/admin/admin.php:51
155
  #: languages/gutenberg.php:83
156
- #: languages/vue.php:870
157
  msgid "Popular Posts"
158
  msgstr ""
159
 
@@ -187,7 +187,7 @@ msgstr ""
187
 
188
  #: includes/admin/admin.php:71
189
  #: includes/admin/admin.php:146
190
- #: languages/vue.php:491
191
  msgid "About Us"
192
  msgstr ""
193
 
@@ -206,7 +206,7 @@ msgstr ""
206
  #: includes/admin/admin.php:76
207
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
208
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
209
- #: languages/vue.php:1395
210
  msgid "Upgrade to Pro"
211
  msgstr ""
212
 
@@ -234,7 +234,7 @@ msgstr ""
234
 
235
  #: includes/admin/admin.php:212
236
  #: includes/admin/admin.php:215
237
- #: languages/vue.php:894
238
  msgid "Support"
239
  msgstr ""
240
 
@@ -246,7 +246,7 @@ msgstr ""
246
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
247
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:32
248
  #: includes/admin/reports/abstract-report.php:418
249
- #: languages/vue.php:1392
250
  msgid "Get MonsterInsights Pro"
251
  msgstr ""
252
 
@@ -256,12 +256,12 @@ msgid "Please rate %1$sMonsterInsights%2$s on %3$s %4$sWordPress.org%5$s to help
256
  msgstr ""
257
 
258
  #: includes/admin/admin.php:324
259
- #: languages/vue.php:476
260
  msgid "Please Setup Website Analytics to See Audience Insights"
261
  msgstr ""
262
 
263
  #: includes/admin/admin.php:325
264
- #: languages/vue.php:482
265
  msgid "Connect MonsterInsights and Setup Website Analytics"
266
  msgstr ""
267
 
@@ -275,12 +275,12 @@ msgstr ""
275
  #: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
276
  #: includes/admin/notifications/notification-returning-visitors.php:43
277
  #: includes/admin/notifications/notification-traffic-dropping.php:43
278
- #: languages/vue.php:429
279
  msgid "Learn More"
280
  msgstr ""
281
 
282
  #: includes/admin/admin.php:329
283
- #: languages/vue.php:479
284
  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."
285
  msgstr ""
286
 
@@ -291,17 +291,17 @@ msgstr ""
291
 
292
  #. Translators: Adds a link to the license renewal.
293
  #: includes/admin/admin.php:350
294
- #: languages/vue.php:699
295
  msgid "Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s"
296
  msgstr ""
297
 
298
  #: includes/admin/admin.php:352
299
- #: languages/vue.php:702
300
  msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
301
  msgstr ""
302
 
303
  #: includes/admin/admin.php:354
304
- #: languages/vue.php:705
305
  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."
306
  msgstr ""
307
 
@@ -360,7 +360,7 @@ msgstr ""
360
 
361
  #: includes/admin/ajax.php:55
362
  #: includes/admin/routes.php:971
363
- #: lite/includes/admin/onboarding-wizard.php:249
364
  msgid "You are not allowed to install plugins"
365
  msgstr ""
366
 
@@ -368,7 +368,7 @@ msgstr ""
368
  msgid "You are not allowed to activate plugins"
369
  msgstr ""
370
 
371
- #: includes/admin/ajax.php:167
372
  msgid "You are not allowed to deactivate plugins"
373
  msgstr ""
374
 
@@ -505,7 +505,7 @@ msgid "View 2021 Year in Review report!"
505
  msgstr ""
506
 
507
  #: includes/admin/common.php:951
508
- #: languages/vue.php:3452
509
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
510
  msgstr ""
511
 
@@ -526,7 +526,7 @@ msgstr ""
526
 
527
  #: includes/admin/exclude-page-metabox.php:147
528
  #: languages/gutenberg.php:179
529
- #: languages/vue.php:2362
530
  msgid "Upgrade"
531
  msgstr ""
532
 
@@ -724,7 +724,7 @@ msgstr ""
724
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:26
725
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:26
726
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:26
727
- #: languages/vue.php:1249
728
  #: lite/includes/admin/helpers.php:85
729
  msgid "Upgrade to MonsterInsights Pro"
730
  msgstr ""
@@ -760,7 +760,7 @@ msgstr ""
760
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
761
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
762
  #: includes/admin/reports/abstract-report.php:415
763
- #: languages/vue.php:279
764
  msgid "Upgrade Now"
765
  msgstr ""
766
 
@@ -937,7 +937,7 @@ msgid "Please ask your webmaster to enable this addon."
937
  msgstr ""
938
 
939
  #: includes/admin/reports/overview.php:34
940
- #: languages/vue.php:558
941
  msgid "Overview"
942
  msgstr ""
943
 
@@ -1449,7 +1449,7 @@ msgid "Question"
1449
  msgstr ""
1450
 
1451
  #: includes/gutenberg/headline-tool/headline-tool.php:290
1452
- #: languages/vue.php:515
1453
  msgid "General"
1454
  msgstr ""
1455
 
@@ -4849,7 +4849,7 @@ msgid "Theme"
4849
  msgstr ""
4850
 
4851
  #: languages/gutenberg.php:77
4852
- #: languages/vue.php:500
4853
  msgid "Inline Popular Posts"
4854
  msgstr ""
4855
 
@@ -4886,7 +4886,7 @@ msgid "Comment Color"
4886
  msgstr ""
4887
 
4888
  #: languages/gutenberg.php:107
4889
- #: languages/vue.php:2956
4890
  msgid "Wide-Layout Options"
4891
  msgstr ""
4892
 
@@ -4895,12 +4895,12 @@ msgid "Choose Layout"
4895
  msgstr ""
4896
 
4897
  #: languages/gutenberg.php:113
4898
- #: languages/vue.php:2959
4899
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4900
  msgstr ""
4901
 
4902
  #: languages/gutenberg.php:116
4903
- #: languages/vue.php:2980
4904
  msgid "Post Count"
4905
  msgstr ""
4906
 
@@ -4909,7 +4909,7 @@ msgid "Number of posts displayed."
4909
  msgstr ""
4910
 
4911
  #: languages/gutenberg.php:122
4912
- #: languages/vue.php:2962
4913
  msgid "Display Options"
4914
  msgstr ""
4915
 
@@ -4922,7 +4922,7 @@ msgid "Display Widget Title"
4922
  msgstr ""
4923
 
4924
  #: languages/gutenberg.php:131
4925
- #: languages/vue.php:2778
4926
  msgid "Widget Title"
4927
  msgstr ""
4928
 
@@ -4931,34 +4931,34 @@ msgid "Only Show Posts From These Categories"
4931
  msgstr ""
4932
 
4933
  #: languages/gutenberg.php:137
4934
- #: languages/vue.php:2968
4935
  msgid "Display Author"
4936
  msgstr ""
4937
 
4938
  #: languages/gutenberg.php:140
4939
- #: languages/vue.php:2971
4940
  msgid "Display Date"
4941
  msgstr ""
4942
 
4943
  #: languages/gutenberg.php:143
4944
- #: languages/vue.php:2974
4945
  msgid "Display Comments"
4946
  msgstr ""
4947
 
4948
  #: languages/gutenberg.php:146
4949
- #: languages/vue.php:32
4950
  #: lite/includes/admin/metaboxes.php:42
4951
  msgid "Last 30 days"
4952
  msgstr ""
4953
 
4954
  #: languages/gutenberg.php:149
4955
- #: languages/vue.php:20
4956
  #: lite/includes/admin/metaboxes.php:45
4957
  msgid "Yesterday"
4958
  msgstr ""
4959
 
4960
  #: languages/gutenberg.php:152
4961
- #: languages/vue.php:1328
4962
  #: lite/includes/admin/metaboxes.php:57
4963
  #: lite/includes/admin/metaboxes.php:111
4964
  msgid "Bounce Rate"
@@ -5219,7 +5219,7 @@ msgid "Goal: "
5219
  msgstr ""
5220
 
5221
  #: languages/gutenberg.php:354
5222
- #: languages/vue.php:849
5223
  msgid "Headline Analyzer"
5224
  msgstr ""
5225
 
@@ -5239,4800 +5239,4800 @@ msgstr ""
5239
  msgid "2"
5240
  msgstr ""
5241
 
5242
- #: languages/vue.php:11
5243
  msgid "Error"
5244
  msgstr ""
5245
 
5246
- #: languages/vue.php:14
5247
  msgid "Please try again."
5248
  msgstr ""
5249
 
5250
- #: languages/vue.php:17
5251
  msgid "Today"
5252
  msgstr ""
5253
 
5254
- #: languages/vue.php:23
5255
  msgid "Last Week"
5256
  msgstr ""
5257
 
5258
- #: languages/vue.php:26
5259
  msgid "Last Month"
5260
  msgstr ""
5261
 
5262
- #: languages/vue.php:29
5263
  msgid "Last 7 days"
5264
  msgstr ""
5265
 
5266
- #: languages/vue.php:35
5267
  msgid "Loading settings"
5268
  msgstr ""
5269
 
5270
- #: languages/vue.php:38
5271
  msgid "Loading new report data"
5272
  msgstr ""
5273
 
5274
- #: languages/vue.php:41
5275
  msgid "Please wait..."
5276
  msgstr ""
5277
 
5278
  #. Translators: Adds an arrow icon.
5279
- #: languages/vue.php:45
5280
  msgid "Continue %s"
5281
  msgstr ""
5282
 
5283
- #: languages/vue.php:48
5284
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5285
  msgstr ""
5286
 
5287
- #: languages/vue.php:51
5288
  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."
5289
  msgstr ""
5290
 
5291
- #: languages/vue.php:54
5292
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5293
  msgstr ""
5294
 
5295
- #: languages/vue.php:57
5296
  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."
5297
  msgstr ""
5298
 
5299
- #: languages/vue.php:60
5300
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5301
  msgstr ""
5302
 
5303
- #: languages/vue.php:63
5304
  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."
5305
  msgstr ""
5306
 
5307
- #: languages/vue.php:66
5308
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5309
  msgstr ""
5310
 
5311
- #: languages/vue.php:69
5312
  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."
5313
  msgstr ""
5314
 
5315
- #: languages/vue.php:72
5316
  msgid "Unlock the Forms Report and Improve Conversions"
5317
  msgstr ""
5318
 
5319
- #: languages/vue.php:75
5320
  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."
5321
  msgstr ""
5322
 
5323
- #: languages/vue.php:78
5324
  msgid "Unlock the Search Console Report and See How People Find Your Website"
5325
  msgstr ""
5326
 
5327
- #: languages/vue.php:81
5328
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5329
  msgstr ""
5330
 
5331
- #: languages/vue.php:84
5332
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5333
  msgstr ""
5334
 
5335
- #: languages/vue.php:87
5336
  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."
5337
  msgstr ""
5338
 
5339
- #: languages/vue.php:90
5340
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5341
  msgstr ""
5342
 
5343
- #: languages/vue.php:93
5344
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5345
  msgstr ""
5346
 
5347
- #: languages/vue.php:96
5348
  msgid "Loading Settings"
5349
  msgstr ""
5350
 
5351
- #: languages/vue.php:99
5352
  msgid "Saving Changes..."
5353
  msgstr ""
5354
 
5355
- #: languages/vue.php:102
5356
  msgid "Settings Updated"
5357
  msgstr ""
5358
 
5359
  #. Translators: Adds a link to the settings panel.
5360
- #: languages/vue.php:106
5361
  msgid "You need to %1$sconnect MonsterInsights%2$s first"
5362
  msgstr ""
5363
 
5364
- #: languages/vue.php:109
5365
  msgid "Could Not Save Changes"
5366
  msgstr ""
5367
 
5368
- #: languages/vue.php:112
5369
  msgid "Refreshing Report"
5370
  msgstr ""
5371
 
5372
- #: languages/vue.php:115
5373
  msgid "Loading new report data..."
5374
  msgstr ""
5375
 
5376
- #: languages/vue.php:118
5377
  msgid "See Your Top Landing Pages to Improve Engagement"
5378
  msgstr ""
5379
 
5380
- #: languages/vue.php:121
5381
  msgid "See Your Top Exit Pages to Reduce Abandonment"
5382
  msgstr ""
5383
 
5384
- #: languages/vue.php:124
5385
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
5386
  msgstr ""
5387
 
5388
- #: languages/vue.php:127
5389
  msgid "See Your Top Affiliate Links and Focus on What's Working"
5390
  msgstr ""
5391
 
5392
- #: languages/vue.php:130
5393
  msgid "See Your Top Downloads and Improve Conversions"
5394
  msgstr ""
5395
 
5396
- #: languages/vue.php:133
5397
  msgid "See Audience Demographic Report ( Age / Gender / Interests )"
5398
  msgstr ""
5399
 
5400
- #: languages/vue.php:136
5401
  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."
5402
  msgstr ""
5403
 
5404
- #: languages/vue.php:139
5405
  msgid "See Your Conversion Rate to Improve Your Funnel"
5406
  msgstr ""
5407
 
5408
- #: languages/vue.php:142
5409
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
5410
  msgstr ""
5411
 
5412
- #: languages/vue.php:145
5413
  msgid "See The Total Revenue to Track Growth"
5414
  msgstr ""
5415
 
5416
- #: languages/vue.php:148
5417
  msgid "See Average Order Value to Find Offer Opportunities"
5418
  msgstr ""
5419
 
5420
- #: languages/vue.php:151
5421
  msgid "See Your Top Products to See Individual Performance"
5422
  msgstr ""
5423
 
5424
- #: languages/vue.php:154
5425
  msgid "See Your Top Conversion Sources and Focus on What's Working"
5426
  msgstr ""
5427
 
5428
- #: languages/vue.php:157
5429
  msgid "See The Time it Takes for Customers to Purchase"
5430
  msgstr ""
5431
 
5432
- #: languages/vue.php:160
5433
  msgid "See How Many Sessions are Needed for a Purchase"
5434
  msgstr ""
5435
 
5436
- #: languages/vue.php:163
5437
  msgid "See Which Authors Generate the Most Traffic"
5438
  msgstr ""
5439
 
5440
- #: languages/vue.php:166
5441
  msgid "See Which Post Types Perform Better"
5442
  msgstr ""
5443
 
5444
- #: languages/vue.php:169
5445
  msgid "See Which Categories are the Most Popular"
5446
  msgstr ""
5447
 
5448
- #: languages/vue.php:172
5449
  msgid "See Your Blog's Most Popular SEO Scores"
5450
  msgstr ""
5451
 
5452
- #: languages/vue.php:175
5453
  msgid "See Which Focus Keyword is Performing Better in Search Engines"
5454
  msgstr ""
5455
 
5456
- #: languages/vue.php:178
5457
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
5458
  msgstr ""
5459
 
5460
- #: languages/vue.php:181
5461
  msgid "See Your Top Converting Forms and Optimize"
5462
  msgstr ""
5463
 
5464
- #: languages/vue.php:184
5465
  msgid "See Your Forms Impressions Count to Find the Best Placement"
5466
  msgstr ""
5467
 
5468
- #: languages/vue.php:187
5469
  msgid "See Your Top Google Search Terms and Optimize Content"
5470
  msgstr ""
5471
 
5472
- #: languages/vue.php:190
5473
  msgid "See The Number of Clicks and Track Interests"
5474
  msgstr ""
5475
 
5476
- #: languages/vue.php:193
5477
  msgid "See The Click-Through-Ratio and Improve SEO"
5478
  msgstr ""
5479
 
5480
- #: languages/vue.php:196
5481
  msgid "See The Average Results Position and Focus on what works"
5482
  msgstr ""
5483
 
5484
- #: languages/vue.php:199
5485
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
5486
  msgstr ""
5487
 
5488
- #: languages/vue.php:202
5489
  msgid "See Your Top Pages Immediately After Making Changes"
5490
  msgstr ""
5491
 
5492
- #: languages/vue.php:205
5493
  msgid "See Your Top Referral Sources and Adapt Faster"
5494
  msgstr ""
5495
 
5496
- #: languages/vue.php:208
5497
  msgid "See Your Traffic Demographics"
5498
  msgstr ""
5499
 
5500
- #: languages/vue.php:211
5501
  msgid "Get Fresh Report Data Every 60 Seconds"
5502
  msgstr ""
5503
 
5504
- #: languages/vue.php:214
5505
  msgid "See Your Homepage's Overall Performance Score"
5506
  msgstr ""
5507
 
5508
- #: languages/vue.php:217
5509
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
5510
  msgstr ""
5511
 
5512
- #: languages/vue.php:220
5513
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
5514
  msgstr ""
5515
 
5516
- #: languages/vue.php:223
5517
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
5518
  msgstr ""
5519
 
5520
  #. Translators: Number of visitors.
5521
- #: languages/vue.php:227
5522
  msgid "See how %s visitors found your site!"
5523
  msgstr ""
5524
 
5525
  #. Translators: Number of visitors.
5526
- #: languages/vue.php:231
5527
  msgid "Your website was visited by %s users in the last 30 days."
5528
  msgstr ""
5529
 
5530
- #: languages/vue.php:234
5531
  msgid "See the full analytics report!"
5532
  msgstr ""
5533
 
5534
- #: languages/vue.php:237
5535
  msgid "Congratulations! "
5536
  msgstr ""
5537
 
5538
- #: languages/vue.php:240
5539
  msgid "You Successfully Unlocked the most powerful Analytics plugin"
5540
  msgstr ""
5541
 
5542
- #: languages/vue.php:246
5543
  msgid "Overview Report"
5544
  msgstr ""
5545
 
5546
- #: languages/vue.php:249
5547
  #: lite/includes/admin/welcome.php:56
5548
  #: lite/includes/admin/welcome.php:57
5549
  msgid "Welcome to MonsterInsights"
5550
  msgstr ""
5551
 
5552
- #: languages/vue.php:252
5553
  msgid "Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin"
5554
  msgstr ""
5555
 
5556
- #: languages/vue.php:255
5557
  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."
5558
  msgstr ""
5559
 
5560
- #: languages/vue.php:258
5561
  msgid "Launch the Wizard!"
5562
  msgstr ""
5563
 
5564
- #: languages/vue.php:261
5565
  msgid "Read the Full Guide"
5566
  msgstr ""
5567
 
5568
- #: languages/vue.php:264
5569
  msgid "MonsterInsights Features & Addons"
5570
  msgstr ""
5571
 
5572
- #: languages/vue.php:267
5573
  msgid "Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market."
5574
  msgstr ""
5575
 
5576
- #: languages/vue.php:270
5577
  msgid "See All Features"
5578
  msgstr ""
5579
 
5580
- #: languages/vue.php:273
5581
  msgid "Upgrade to PRO"
5582
  msgstr ""
5583
 
5584
- #: languages/vue.php:276
5585
  msgid "per year"
5586
  msgstr ""
5587
 
5588
- #: languages/vue.php:282
5589
  msgid "Testimonials"
5590
  msgstr ""
5591
 
5592
- #: languages/vue.php:285
5593
  msgid "Universal Tracking"
5594
  msgstr ""
5595
 
5596
- #: languages/vue.php:288
5597
  msgid "Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5598
  msgstr ""
5599
 
5600
- #: languages/vue.php:291
5601
  msgid "Google Analytics Dashboard"
5602
  msgstr ""
5603
 
5604
- #: languages/vue.php:294
5605
  msgid "See your website analytics report right inside your WordPress dashboard with actionable insights."
5606
  msgstr ""
5607
 
5608
- #: languages/vue.php:297
5609
  msgid "Real-time Stats"
5610
  msgstr ""
5611
 
5612
- #: languages/vue.php:300
5613
  msgid "Get real-time stats right inside WordPress to see who is online, what are they doing, and more."
5614
  msgstr ""
5615
 
5616
- #: languages/vue.php:303
5617
  msgid "Enhanced Ecommerce Tracking"
5618
  msgstr ""
5619
 
5620
- #: languages/vue.php:306
5621
  msgid "1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress."
5622
  msgstr ""
5623
 
5624
- #: languages/vue.php:309
5625
  msgid "Page Level Analytics"
5626
  msgstr ""
5627
 
5628
- #: languages/vue.php:312
5629
  msgid "Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
5630
  msgstr ""
5631
 
5632
- #: languages/vue.php:315
5633
  msgid "Affiliate Link & Ads Tracking"
5634
  msgstr ""
5635
 
5636
- #: languages/vue.php:318
5637
  msgid "Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
5638
  msgstr ""
5639
 
5640
- #: languages/vue.php:321
5641
  msgid "EU Compliance (GDPR Friendly)"
5642
  msgstr ""
5643
 
5644
- #: languages/vue.php:324
5645
  msgid "Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5646
  msgstr ""
5647
 
5648
- #: languages/vue.php:327
5649
  msgid "Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click."
5650
  msgstr ""
5651
 
5652
- #: languages/vue.php:330
5653
  msgid "Ecommerce Report"
5654
  msgstr ""
5655
 
5656
- #: languages/vue.php:333
5657
  msgid "Form Conversions"
5658
  msgstr ""
5659
 
5660
- #: languages/vue.php:337
5661
  msgid "Custom Dimensions"
5662
  msgstr ""
5663
 
5664
- #: languages/vue.php:340
5665
  msgid "Author Tracking"
5666
  msgstr ""
5667
 
5668
- #: languages/vue.php:343
5669
  msgid "Google Optimize"
5670
  msgstr ""
5671
 
5672
- #: languages/vue.php:346
5673
  msgid "Category / Tags Tracking"
5674
  msgstr ""
5675
 
5676
- #: languages/vue.php:349
5677
  msgid "WooCommerce"
5678
  msgstr ""
5679
 
5680
- #: languages/vue.php:352
5681
  msgid "Easy Digital Downloads"
5682
  msgstr ""
5683
 
5684
- #: languages/vue.php:355
5685
  msgid "MemberPress"
5686
  msgstr ""
5687
 
5688
- #: languages/vue.php:358
5689
  msgid "LifterLMS"
5690
  msgstr ""
5691
 
5692
  #. Translators: Current PHP version and recommended PHP version.
5693
- #: languages/vue.php:362
5694
  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."
5695
  msgstr ""
5696
 
5697
  #. Translators: Current WordPress version.
5698
- #: languages/vue.php:366
5699
  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."
5700
  msgstr ""
5701
 
5702
- #: languages/vue.php:369
5703
  msgid "Yikes! PHP Update Required"
5704
  msgstr ""
5705
 
5706
  #. Translators: Current PHP version and recommended PHP version.
5707
- #: languages/vue.php:373
5708
  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."
5709
  msgstr ""
5710
 
5711
- #: languages/vue.php:376
5712
  msgid "Learn more about updating PHP"
5713
  msgstr ""
5714
 
5715
- #: languages/vue.php:379
5716
  msgid "Yikes! WordPress Update Required"
5717
  msgstr ""
5718
 
5719
  #. Translators: Current WordPress version.
5720
- #: languages/vue.php:383
5721
  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."
5722
  msgstr ""
5723
 
5724
- #: languages/vue.php:386
5725
  msgid "Learn more about updating WordPress"
5726
  msgstr ""
5727
 
5728
- #: languages/vue.php:389
5729
  msgid "MonsterInsights encountered an error loading your report data"
5730
  msgstr ""
5731
 
5732
- #: languages/vue.php:392
5733
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5734
  msgstr ""
5735
 
5736
- #: languages/vue.php:395
5737
  msgid "Reconnect MonsterInsights"
5738
  msgstr ""
5739
 
5740
- #: languages/vue.php:398
5741
  msgid "Re-Authenticating"
5742
  msgstr ""
5743
 
5744
- #: languages/vue.php:401
5745
  msgid "Ok"
5746
  msgstr ""
5747
 
5748
- #: languages/vue.php:404
5749
  msgid "See Quick Links"
5750
  msgstr ""
5751
 
5752
- #: languages/vue.php:407
5753
  msgid "Suggest a Feature"
5754
  msgstr ""
5755
 
5756
- #: languages/vue.php:410
5757
  msgid "Join Our Community"
5758
  msgstr ""
5759
 
5760
- #: languages/vue.php:413
5761
  msgid "Support & Docs"
5762
  msgstr ""
5763
 
5764
- #: languages/vue.php:416
5765
  msgid "Upgrade to Pro &#187;"
5766
  msgstr ""
5767
 
5768
  #. Translators: Placeholder is replaced with WPForms.
5769
- #: languages/vue.php:420
5770
  msgid "Recommended Plugin: %s"
5771
  msgstr ""
5772
 
5773
- #: languages/vue.php:423
5774
  msgid "Install"
5775
  msgstr ""
5776
 
5777
- #: languages/vue.php:426
5778
  msgid "Activate"
5779
  msgstr ""
5780
 
5781
- #: languages/vue.php:432
5782
  msgid "Powered by MonsterInsights"
5783
  msgstr ""
5784
 
5785
- #: languages/vue.php:435
5786
  #: lite/includes/admin/wp-site-health.php:253
5787
  msgid "View Reports"
5788
  msgstr ""
5789
 
5790
- #: languages/vue.php:438
5791
  msgid "Congratulations!"
5792
  msgstr ""
5793
 
5794
  #. Translators: Add link to YouTube video and Onboarding Wizard.
5795
- #: languages/vue.php:442
5796
  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."
5797
  msgstr ""
5798
 
5799
  #. Translators: Add link to YouTube video and Onboarding Wizard.
5800
- #: languages/vue.php:446
5801
  msgid "Onboarding Wizard"
5802
  msgstr ""
5803
 
5804
- #: languages/vue.php:449
5805
  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."
5806
  msgstr ""
5807
 
5808
- #: languages/vue.php:452
5809
  msgid "Save Changes"
5810
  msgstr ""
5811
 
5812
- #: languages/vue.php:455
5813
  msgid "Inbox"
5814
  msgstr ""
5815
 
5816
- #: languages/vue.php:458
5817
  msgid "Back to Inbox"
5818
  msgstr ""
5819
 
5820
- #: languages/vue.php:461
5821
  msgid "View Dismissed"
5822
  msgstr ""
5823
 
5824
- #: languages/vue.php:464
5825
  msgid "Notifications"
5826
  msgstr ""
5827
 
5828
- #: languages/vue.php:467
5829
  msgid "Dismiss All"
5830
  msgstr ""
5831
 
5832
- #: languages/vue.php:470
5833
  msgid "Dismissed"
5834
  msgstr ""
5835
 
5836
- #: languages/vue.php:473
5837
  msgid "No Notifications"
5838
  msgstr ""
5839
 
5840
- #: languages/vue.php:485
5841
  msgid "Import Export"
5842
  msgstr ""
5843
 
5844
- #: languages/vue.php:488
5845
  msgid "PrettyLinks Integration"
5846
  msgstr ""
5847
 
5848
- #: languages/vue.php:494
5849
  msgid "Getting Started"
5850
  msgstr ""
5851
 
5852
- #: languages/vue.php:497
5853
  msgid "Lite vs Pro"
5854
  msgstr ""
5855
 
5856
- #: languages/vue.php:503
5857
  msgid "Popular Posts Widget"
5858
  msgstr ""
5859
 
5860
- #: languages/vue.php:506
5861
  msgid "Popular Products"
5862
  msgstr ""
5863
 
5864
- #: languages/vue.php:512
5865
  msgid "Sub menu item for WooCommerce Analytics"
5866
  msgstr ""
5867
 
5868
- #: languages/vue.php:518
5869
  msgid "Engagement"
5870
  msgstr ""
5871
 
5872
- #: languages/vue.php:522
5873
  #: lite/includes/admin/reports/report-ecommerce.php:22
5874
  msgid "eCommerce"
5875
  msgstr ""
5876
 
5877
- #: languages/vue.php:525
5878
  msgid "Publisher"
5879
  msgstr ""
5880
 
5881
- #: languages/vue.php:528
5882
  msgid "Conversions"
5883
  msgstr ""
5884
 
5885
- #: languages/vue.php:531
5886
  msgid "Advanced"
5887
  msgstr ""
5888
 
5889
- #: languages/vue.php:534
5890
  msgid "URL Builder"
5891
  msgstr ""
5892
 
5893
- #: languages/vue.php:537
5894
  msgid "MonsterInsights Addons"
5895
  msgstr ""
5896
 
5897
- #: languages/vue.php:540
5898
  msgid "Search Addons"
5899
  msgstr ""
5900
 
5901
- #: languages/vue.php:543
5902
  msgid "Exit Setup"
5903
  msgstr ""
5904
 
5905
- #: languages/vue.php:546
5906
  msgid "You must connect with MonsterInsights before you can view reports."
5907
  msgstr ""
5908
 
5909
- #: languages/vue.php:549
5910
  msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5911
  msgstr ""
5912
 
5913
- #: languages/vue.php:552
5914
  msgid "Launch Setup Wizard"
5915
  msgstr ""
5916
 
5917
- #: languages/vue.php:555
5918
  msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
5919
  msgstr ""
5920
 
5921
- #: languages/vue.php:561
5922
  #: lite/includes/admin/reports/report-publisher.php:22
5923
  msgid "Publishers"
5924
  msgstr ""
5925
 
5926
- #: languages/vue.php:564
5927
  #: lite/includes/admin/reports/report-queries.php:22
5928
  msgid "Search Console"
5929
  msgstr ""
5930
 
5931
- #: languages/vue.php:568
5932
  #: lite/includes/admin/reports/report-dimensions.php:22
5933
  msgid "Dimensions"
5934
  msgstr ""
5935
 
5936
- #: languages/vue.php:571
5937
  #: lite/includes/admin/reports/report-forms.php:22
5938
  msgid "Forms"
5939
  msgstr ""
5940
 
5941
- #: languages/vue.php:574
5942
  msgid "Real-Time"
5943
  msgstr ""
5944
 
5945
- #: languages/vue.php:577
5946
  msgid "Site Speed"
5947
  msgstr ""
5948
 
5949
- #: languages/vue.php:580
5950
  msgid "2020 Year in Review"
5951
  msgstr ""
5952
 
5953
  #. Translators: Error status and error text.
5954
- #: languages/vue.php:584
5955
  msgid "Can't load report data. Error: %1$s, %2$s"
5956
  msgstr ""
5957
 
5958
- #: languages/vue.php:587
5959
  msgid "Error loading report data"
5960
  msgstr ""
5961
 
5962
- #: languages/vue.php:590
5963
  msgid "Publishers Report"
5964
  msgstr ""
5965
 
5966
- #: languages/vue.php:593
5967
  msgid "eCommerce Report"
5968
  msgstr ""
5969
 
5970
- #: languages/vue.php:596
5971
  msgid "Search Console Report"
5972
  msgstr ""
5973
 
5974
- #: languages/vue.php:599
5975
  msgid "Dimensions Report"
5976
  msgstr ""
5977
 
5978
- #: languages/vue.php:602
5979
  msgid "Forms Report"
5980
  msgstr ""
5981
 
5982
- #: languages/vue.php:605
5983
  msgid "Real-Time Report"
5984
  msgstr ""
5985
 
5986
- #: languages/vue.php:608
5987
  msgid "Site Speed Report"
5988
  msgstr ""
5989
 
5990
- #: languages/vue.php:611
5991
  msgid "Time to Purchase"
5992
  msgstr ""
5993
 
5994
- #: languages/vue.php:614
5995
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
5996
  msgstr ""
5997
 
5998
- #: languages/vue.php:617
5999
  msgid "Sessions to Purchase"
6000
  msgstr ""
6001
 
6002
- #: languages/vue.php:620
6003
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
6004
  msgstr ""
6005
 
6006
- #: languages/vue.php:623
6007
  msgid "New Customers"
6008
  msgstr ""
6009
 
6010
- #: languages/vue.php:626
6011
  msgid "This list shows the percentage of new customers who purchased a product from your website."
6012
  msgstr ""
6013
 
6014
- #: languages/vue.php:629
6015
  msgid "Abandoned Checkouts"
6016
  msgstr ""
6017
 
6018
- #: languages/vue.php:632
6019
  msgid "This list shows the percentage of carts that never went through the checkout process."
6020
  msgstr ""
6021
 
6022
- #: languages/vue.php:635
6023
  msgid "Top Posts/Pages"
6024
  msgstr ""
6025
 
6026
- #: languages/vue.php:638
6027
  msgid "This list shows the most viewed posts and pages on your website."
6028
  msgstr ""
6029
 
6030
- #: languages/vue.php:641
6031
  msgid "New vs. Returning Visitors"
6032
  msgstr ""
6033
 
6034
- #: languages/vue.php:644
6035
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
6036
  msgstr ""
6037
 
6038
- #: languages/vue.php:647
6039
  msgid "Device Breakdown"
6040
  msgstr ""
6041
 
6042
- #: languages/vue.php:650
6043
  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."
6044
  msgstr ""
6045
 
6046
- #: languages/vue.php:653
6047
  msgid "Top Landing Pages"
6048
  msgstr ""
6049
 
6050
- #: languages/vue.php:656
6051
  msgid "This list shows the top pages users first land on when visiting your website."
6052
  msgstr ""
6053
 
6054
- #: languages/vue.php:659
6055
  msgid "Top Exit Pages"
6056
  msgstr ""
6057
 
6058
- #: languages/vue.php:662
6059
  msgid "This list shows the top pages users exit your website from."
6060
  msgstr ""
6061
 
6062
- #: languages/vue.php:665
6063
  msgid "Top Outbound Links"
6064
  msgstr ""
6065
 
6066
- #: languages/vue.php:668
6067
  msgid "This list shows the top links clicked on your website that go to another website."
6068
  msgstr ""
6069
 
6070
- #: languages/vue.php:671
6071
  msgid "Top Affiliate Links"
6072
  msgstr ""
6073
 
6074
- #: languages/vue.php:674
6075
  msgid "This list shows the top affiliate links your visitors clicked on."
6076
  msgstr ""
6077
 
6078
- #: languages/vue.php:677
6079
  msgid "Top Download Links"
6080
  msgstr ""
6081
 
6082
- #: languages/vue.php:680
6083
  msgid "This list shows the download links your visitors clicked the most."
6084
  msgstr ""
6085
 
6086
- #: languages/vue.php:683
6087
  msgid "Top Products"
6088
  msgstr ""
6089
 
6090
- #: languages/vue.php:686
6091
  msgid "This list shows the top selling products on your website."
6092
  msgstr ""
6093
 
6094
- #: languages/vue.php:689
6095
  msgid "Top Conversion Sources"
6096
  msgstr ""
6097
 
6098
- #: languages/vue.php:692
6099
  msgid "This list shows the top referral websites in terms of product revenue."
6100
  msgstr ""
6101
 
6102
- #: languages/vue.php:695
6103
  msgid "Total Add/Remove"
6104
  msgstr ""
6105
 
6106
  #. Translators: Adds a link to documentation.
6107
- #: languages/vue.php:709
6108
  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"
6109
  msgstr ""
6110
 
6111
  #. Translators: Adds link to activate/install plugin and documentation.
6112
- #: languages/vue.php:713
6113
  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"
6114
  msgstr ""
6115
 
6116
  #. Translators: Adds a link to documentation.
6117
- #: languages/vue.php:717
6118
  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"
6119
  msgstr ""
6120
 
6121
  #. Translators: Adds link to activate/install plugin and documentation.
6122
- #: languages/vue.php:721
6123
  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"
6124
  msgstr ""
6125
 
6126
- #: languages/vue.php:724
6127
  msgid "GDPR Guide"
6128
  msgstr ""
6129
 
6130
- #: languages/vue.php:727
6131
  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. "
6132
  msgstr ""
6133
 
6134
- #: languages/vue.php:730
6135
  msgid "How to Install and Activate MonsterInsights Addons"
6136
  msgstr ""
6137
 
6138
- #: languages/vue.php:733
6139
  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."
6140
  msgstr ""
6141
 
6142
- #: languages/vue.php:736
6143
  msgid "Enabling eCommerce Tracking and Reports"
6144
  msgstr ""
6145
 
6146
- #: languages/vue.php:739
6147
  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."
6148
  msgstr ""
6149
 
6150
- #: languages/vue.php:742
6151
  msgid "Read Documentation"
6152
  msgstr ""
6153
 
6154
- #: languages/vue.php:745
6155
  msgid "Getting Started with MonsterInsights"
6156
  msgstr ""
6157
 
6158
- #: languages/vue.php:748
6159
  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."
6160
  msgstr ""
6161
 
6162
- #: languages/vue.php:751
6163
  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."
6164
  msgstr ""
6165
 
6166
- #: languages/vue.php:754
6167
  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!."
6168
  msgstr ""
6169
 
6170
- #: languages/vue.php:757
6171
  msgid "Launch the wizard!"
6172
  msgstr ""
6173
 
6174
- #: languages/vue.php:760
6175
  msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
6176
  msgstr ""
6177
 
6178
  #. Translators: Makes text bold.
6179
- #: languages/vue.php:764
6180
  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."
6181
  msgstr ""
6182
 
6183
- #: languages/vue.php:767
6184
  msgid "Universal Tracking across devices and campaigns with just a few clicks."
6185
  msgstr ""
6186
 
6187
- #: languages/vue.php:770
6188
  msgid "See your website analytics reports inside the WordPress dashboard"
6189
  msgstr ""
6190
 
6191
- #: languages/vue.php:773
6192
  msgid "Get real-time stats right inside WordPress"
6193
  msgstr ""
6194
 
6195
- #: languages/vue.php:776
6196
  msgid "1-click Google Analytics Enhanced eCommerce tracking"
6197
  msgstr ""
6198
 
6199
- #: languages/vue.php:779
6200
  msgid "Get detailed stats for each post and page."
6201
  msgstr ""
6202
 
6203
- #: languages/vue.php:782
6204
  msgid "Automatically track clicks on your affiliate links and ads."
6205
  msgstr ""
6206
 
6207
- #: languages/vue.php:785
6208
  msgid "Make Google Analytics GDPR compliant automatically"
6209
  msgstr ""
6210
 
6211
- #: languages/vue.php:788
6212
  msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
6213
  msgstr ""
6214
 
6215
- #: languages/vue.php:791
6216
  msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
6217
  msgstr ""
6218
 
6219
- #: languages/vue.php:794
6220
  msgid "More advanced features"
6221
  msgstr ""
6222
 
6223
- #: languages/vue.php:797
6224
  msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
6225
  msgstr ""
6226
 
6227
  #. Translators: Makes text green.
6228
- #: languages/vue.php:801
6229
  msgid "Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6230
  msgstr ""
6231
 
6232
- #: languages/vue.php:804
6233
  msgid "How to Connect to Google Analytics"
6234
  msgstr ""
6235
 
6236
- #: languages/vue.php:807
6237
  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."
6238
  msgstr ""
6239
 
6240
- #: languages/vue.php:810
6241
  msgid "Guide and Checklist for Advanced Insights"
6242
  msgstr ""
6243
 
6244
- #: languages/vue.php:813
6245
  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."
6246
  msgstr ""
6247
 
6248
- #: languages/vue.php:816
6249
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6250
  msgstr ""
6251
 
6252
- #: languages/vue.php:819
6253
  msgid "WordPress Admin Area Reports"
6254
  msgstr ""
6255
 
6256
- #: languages/vue.php:822
6257
  msgid "Standard Reports"
6258
  msgstr ""
6259
 
6260
- #: languages/vue.php:825
6261
  msgid "Overview Reports for the last 30 days."
6262
  msgstr ""
6263
 
6264
- #: languages/vue.php:828
6265
  msgid "Advanced Reports"
6266
  msgstr ""
6267
 
6268
- #: languages/vue.php:831
6269
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6270
  msgstr ""
6271
 
6272
- #: languages/vue.php:834
6273
  msgid "Dashboard Widget"
6274
  msgstr ""
6275
 
6276
- #: languages/vue.php:837
6277
  msgid "Basic Widget"
6278
  msgstr ""
6279
 
6280
- #: languages/vue.php:840
6281
  msgid "Overview Report Synopsis"
6282
  msgstr ""
6283
 
6284
- #: languages/vue.php:843
6285
  msgid "Advanced Dashboard Widget"
6286
  msgstr ""
6287
 
6288
- #: languages/vue.php:846
6289
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6290
  msgstr ""
6291
 
6292
- #: languages/vue.php:852
6293
  msgid "Email Summaries"
6294
  msgstr ""
6295
 
6296
- #: languages/vue.php:855
6297
  msgid "Included"
6298
  msgstr ""
6299
 
6300
- #: languages/vue.php:858
6301
  msgid "Get weekly traffic reports directly in your inbox."
6302
  msgstr ""
6303
 
6304
- #: languages/vue.php:861
6305
  msgid "Publisher Reports"
6306
  msgstr ""
6307
 
6308
- #: languages/vue.php:864
6309
  msgid "Advanced Publisher Reports & Tracking"
6310
  msgstr ""
6311
 
6312
- #: languages/vue.php:867
6313
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6314
  msgstr ""
6315
 
6316
- #: languages/vue.php:873
6317
  msgid "Basic Options"
6318
  msgstr ""
6319
 
6320
- #: languages/vue.php:876
6321
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6322
  msgstr ""
6323
 
6324
- #: languages/vue.php:879
6325
  msgid "Dynamic Popular Posts & Popular Products"
6326
  msgstr ""
6327
 
6328
- #: languages/vue.php:882
6329
  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."
6330
  msgstr ""
6331
 
6332
- #: languages/vue.php:885
6333
  msgid "Not Available"
6334
  msgstr ""
6335
 
6336
- #: languages/vue.php:888
6337
  msgid "Complete Custom Dimensions Tracking"
6338
  msgstr ""
6339
 
6340
- #: languages/vue.php:891
6341
  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"
6342
  msgstr ""
6343
 
6344
- #: languages/vue.php:897
6345
  msgid "Limited Support"
6346
  msgstr ""
6347
 
6348
- #: languages/vue.php:900
6349
  msgid "Priority Support"
6350
  msgstr ""
6351
 
6352
- #: languages/vue.php:903
6353
  msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
6354
  msgstr ""
6355
 
6356
- #: languages/vue.php:906
6357
  msgid "Feature"
6358
  msgstr ""
6359
 
6360
- #: languages/vue.php:909
6361
  msgid "Lite"
6362
  msgstr ""
6363
 
6364
- #: languages/vue.php:912
6365
  msgid "Pro"
6366
  msgstr ""
6367
 
6368
- #: languages/vue.php:915
6369
  msgid "Custom Google Analytics Link Tracking"
6370
  msgstr ""
6371
 
6372
- #: languages/vue.php:918
6373
  msgid "Standard Tracking"
6374
  msgstr ""
6375
 
6376
- #: languages/vue.php:921
6377
  msgid "Advanced Tracking"
6378
  msgstr ""
6379
 
6380
- #: languages/vue.php:924
6381
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6382
  msgstr ""
6383
 
6384
- #: languages/vue.php:927
6385
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6386
  msgstr ""
6387
 
6388
- #: languages/vue.php:930
6389
  msgid "No-Code-Needed Tracking Features"
6390
  msgstr ""
6391
 
6392
- #: languages/vue.php:933
6393
  msgid "Basic Tracking Options"
6394
  msgstr ""
6395
 
6396
- #: languages/vue.php:936
6397
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6398
  msgstr ""
6399
 
6400
- #: languages/vue.php:939
6401
  msgid "Advanced Tracking Options"
6402
  msgstr ""
6403
 
6404
- #: languages/vue.php:942
6405
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6406
  msgstr ""
6407
 
6408
- #: languages/vue.php:945
6409
  msgid "eCommerce Tracking"
6410
  msgstr ""
6411
 
6412
- #: languages/vue.php:948
6413
  msgid "One-click Complete eCommerce tracking"
6414
  msgstr ""
6415
 
6416
- #: languages/vue.php:951
6417
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6418
  msgstr ""
6419
 
6420
- #: languages/vue.php:954
6421
  msgid "Forms Tracking"
6422
  msgstr ""
6423
 
6424
- #: languages/vue.php:957
6425
  msgid "One-click Form Events Tracking"
6426
  msgstr ""
6427
 
6428
- #: languages/vue.php:960
6429
  msgid "License Key"
6430
  msgstr ""
6431
 
6432
  #. Translators: Add link to retrieve license key from account.
6433
- #: languages/vue.php:964
6434
  msgid "Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6435
  msgstr ""
6436
 
6437
- #: languages/vue.php:967
6438
  msgid "Google Authentication"
6439
  msgstr ""
6440
 
6441
- #: languages/vue.php:970
6442
  msgid "Connect Google Analytics + WordPress"
6443
  msgstr ""
6444
 
6445
- #: languages/vue.php:973
6446
  msgid "You will be taken to the MonsterInsights website where you'll need to connect your Analytics account."
6447
  msgstr ""
6448
 
6449
- #: languages/vue.php:976
6450
  msgid "Miscellaneous"
6451
  msgstr ""
6452
 
6453
- #: languages/vue.php:979
6454
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6455
  msgstr ""
6456
 
6457
- #: languages/vue.php:982
6458
  msgid "Hide Announcements"
6459
  msgstr ""
6460
 
6461
- #: languages/vue.php:985
6462
  msgid "Setup Wizard"
6463
  msgstr ""
6464
 
6465
- #: languages/vue.php:988
6466
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6467
  msgstr ""
6468
 
6469
- #: languages/vue.php:991
6470
  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."
6471
  msgstr ""
6472
 
6473
- #: languages/vue.php:994
6474
  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."
6475
  msgstr ""
6476
 
6477
- #: languages/vue.php:997
6478
  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\"."
6479
  msgstr ""
6480
 
6481
- #: languages/vue.php:1000
6482
  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."
6483
  msgstr ""
6484
 
6485
- #: languages/vue.php:1003
6486
  msgid "Yup, we know a thing or two about building awesome products that customers love."
6487
  msgstr ""
6488
 
6489
- #: languages/vue.php:1006
6490
  msgid "The MonsterInsights Team"
6491
  msgstr ""
6492
 
6493
- #: languages/vue.php:1009
6494
  msgid "Make your MonsterInsights campaign links prettier with Pretty Links!"
6495
  msgstr ""
6496
 
6497
- #: languages/vue.php:1012
6498
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
6499
  msgstr ""
6500
 
6501
- #: languages/vue.php:1015
6502
  msgid "Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!"
6503
  msgstr ""
6504
 
6505
- #: languages/vue.php:1018
6506
  msgid "Over 200,000 websites use Pretty Links!"
6507
  msgstr ""
6508
 
6509
- #: languages/vue.php:1021
6510
  msgid "Install Pretty Links"
6511
  msgstr ""
6512
 
6513
- #: languages/vue.php:1024
6514
  msgid "Pretty Links Installed & Activated"
6515
  msgstr ""
6516
 
6517
- #: languages/vue.php:1027
6518
  msgid "Download Pretty Links"
6519
  msgstr ""
6520
 
6521
- #: languages/vue.php:1030
6522
  msgid "Install Pretty Links from the WordPress.org plugin repository."
6523
  msgstr ""
6524
 
6525
- #: languages/vue.php:1033
6526
  msgid "Activate Pretty Links"
6527
  msgstr ""
6528
 
6529
- #: languages/vue.php:1036
6530
  msgid "Activating Pretty Links..."
6531
  msgstr ""
6532
 
6533
- #: languages/vue.php:1039
6534
  msgid "Create New Pretty Link"
6535
  msgstr ""
6536
 
6537
- #: languages/vue.php:1042
6538
  msgid "Create a New Pretty Link"
6539
  msgstr ""
6540
 
6541
- #: languages/vue.php:1045
6542
  msgid "Grab your campaign link and paste it into the Target URL field."
6543
  msgstr ""
6544
 
6545
- #: languages/vue.php:1048
6546
  msgid "Custom Campaign Parameters"
6547
  msgstr ""
6548
 
6549
- #: languages/vue.php:1051
6550
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
6551
  msgstr ""
6552
 
6553
- #: languages/vue.php:1054
6554
  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."
6555
  msgstr ""
6556
 
6557
  #. Translators: Marks the field as required.
6558
- #: languages/vue.php:1058
6559
  msgid "Website URL %s"
6560
  msgstr ""
6561
 
6562
  #. Translators: Display the current website url in italic.
6563
- #: languages/vue.php:1062
6564
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
6565
  msgstr ""
6566
 
6567
  #. Translators: Marks the field as required.
6568
- #: languages/vue.php:1066
6569
  msgid "Campaign Source %s"
6570
  msgstr ""
6571
 
6572
  #. Translators: Make the text italic.
6573
- #: languages/vue.php:1070
6574
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
6575
  msgstr ""
6576
 
6577
  #. Translators: Make the text italic.
6578
- #: languages/vue.php:1074
6579
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
6580
  msgstr ""
6581
 
6582
  #. Translators: Make the text italic.
6583
- #: languages/vue.php:1078
6584
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
6585
  msgstr ""
6586
 
6587
- #: languages/vue.php:1081
6588
  msgid "Enter the paid keyword"
6589
  msgstr ""
6590
 
6591
- #: languages/vue.php:1084
6592
  msgid "Enter something to differentiate ads"
6593
  msgstr ""
6594
 
6595
- #: languages/vue.php:1087
6596
  msgid "Use Fragment"
6597
  msgstr ""
6598
 
6599
  #. Translators: Make the text bold.
6600
- #: languages/vue.php:1091
6601
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
6602
  msgstr ""
6603
 
6604
- #: languages/vue.php:1094
6605
  msgid "URL to use"
6606
  msgstr ""
6607
 
6608
- #: languages/vue.php:1097
6609
  msgid "(Updates automatically)"
6610
  msgstr ""
6611
 
6612
- #: languages/vue.php:1100
6613
  msgid "Copy to Clipboard"
6614
  msgstr ""
6615
 
6616
- #: languages/vue.php:1103
6617
  msgid "Copy to Pretty Links"
6618
  msgstr ""
6619
 
6620
- #: languages/vue.php:1106
6621
  msgid "Make your campaign links prettier!"
6622
  msgstr ""
6623
 
6624
- #: languages/vue.php:1109
6625
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
6626
  msgstr ""
6627
 
6628
- #: languages/vue.php:1112
6629
  msgid "More Information & Examples"
6630
  msgstr ""
6631
 
6632
- #: languages/vue.php:1115
6633
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
6634
  msgstr ""
6635
 
6636
- #: languages/vue.php:1118
6637
  msgid "Campaign Source"
6638
  msgstr ""
6639
 
6640
- #: languages/vue.php:1121
6641
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
6642
  msgstr ""
6643
 
6644
- #: languages/vue.php:1124
6645
  msgid "Campaign Medium"
6646
  msgstr ""
6647
 
6648
- #: languages/vue.php:1127
6649
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
6650
  msgstr ""
6651
 
6652
- #: languages/vue.php:1130
6653
  msgid "Campaign Name"
6654
  msgstr ""
6655
 
6656
- #: languages/vue.php:1133
6657
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
6658
  msgstr ""
6659
 
6660
- #: languages/vue.php:1136
6661
  msgid "Campaign Term"
6662
  msgstr ""
6663
 
6664
- #: languages/vue.php:1139
6665
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
6666
  msgstr ""
6667
 
6668
- #: languages/vue.php:1142
6669
  msgid "Campaign Content"
6670
  msgstr ""
6671
 
6672
- #: languages/vue.php:1145
6673
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
6674
  msgstr ""
6675
 
6676
  #. Translators: Example.
6677
- #: languages/vue.php:1149
6678
  msgid "Example: %s"
6679
  msgstr ""
6680
 
6681
  #. Translators: Examples.
6682
- #: languages/vue.php:1153
6683
  msgid "Examples: %s"
6684
  msgstr ""
6685
 
6686
- #: languages/vue.php:1156
6687
  msgid "About Campaigns"
6688
  msgstr ""
6689
 
6690
- #: languages/vue.php:1159
6691
  msgid "About Custom Campaigns"
6692
  msgstr ""
6693
 
6694
- #: languages/vue.php:1162
6695
  msgid "Best Practices for Creating Custom Campaigns"
6696
  msgstr ""
6697
 
6698
- #: languages/vue.php:1165
6699
  msgid "About the Referral Traffic Report"
6700
  msgstr ""
6701
 
6702
- #: languages/vue.php:1168
6703
  msgid "About Traffic Source Dimensions"
6704
  msgstr ""
6705
 
6706
- #: languages/vue.php:1171
6707
  msgid "AdWords Auto-Tagging"
6708
  msgstr ""
6709
 
6710
- #: languages/vue.php:1174
6711
  msgid "Additional Information"
6712
  msgstr ""
6713
 
6714
- #: languages/vue.php:1177
6715
  msgid "Import/Export"
6716
  msgstr ""
6717
 
6718
- #: languages/vue.php:1180
6719
  msgid "Import"
6720
  msgstr ""
6721
 
6722
- #: languages/vue.php:1183
6723
  msgid "Import settings from another MonsterInsights website."
6724
  msgstr ""
6725
 
6726
- #: languages/vue.php:1186
6727
  msgid "Export"
6728
  msgstr ""
6729
 
6730
- #: languages/vue.php:1189
6731
  msgid "Export settings to import into another MonsterInsights install."
6732
  msgstr ""
6733
 
6734
- #: languages/vue.php:1192
6735
  msgid "Import Settings"
6736
  msgstr ""
6737
 
6738
- #: languages/vue.php:1195
6739
  msgid "Export Settings"
6740
  msgstr ""
6741
 
6742
- #: languages/vue.php:1198
6743
  msgid "Please choose a file to import"
6744
  msgstr ""
6745
 
6746
- #: languages/vue.php:1201
6747
  msgid "Click Choose file below to select the settings export file from another site."
6748
  msgstr ""
6749
 
6750
- #: languages/vue.php:1204
6751
  msgid "Use the button below to export a file with your MonsterInsights settings."
6752
  msgstr ""
6753
 
6754
- #: languages/vue.php:1207
6755
  msgid "Uploading file..."
6756
  msgstr ""
6757
 
6758
- #: languages/vue.php:1210
6759
  msgid "File imported"
6760
  msgstr ""
6761
 
6762
- #: languages/vue.php:1213
6763
  msgid "Settings successfully updated!"
6764
  msgstr ""
6765
 
6766
- #: languages/vue.php:1216
6767
  msgid "Error importing settings"
6768
  msgstr ""
6769
 
6770
- #: languages/vue.php:1219
6771
  msgid "Please choose a .json file generated by a MonsterInsights settings export."
6772
  msgstr ""
6773
 
6774
- #: languages/vue.php:1222
6775
  msgid "MonsterInsights Recommends WPForms"
6776
  msgstr ""
6777
 
6778
- #: languages/vue.php:1225
6779
  msgid "Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market."
6780
  msgstr ""
6781
 
6782
- #: languages/vue.php:1228
6783
  msgid "Used on over 4,000,000 websites!"
6784
  msgstr ""
6785
 
6786
- #: languages/vue.php:1231
6787
  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!"
6788
  msgstr ""
6789
 
6790
- #: languages/vue.php:1234
6791
  msgid "Skip this Step"
6792
  msgstr ""
6793
 
6794
- #: languages/vue.php:1237
6795
  msgid "Continue & Install WPForms"
6796
  msgstr ""
6797
 
6798
- #: languages/vue.php:1240
6799
  msgid "Installing..."
6800
  msgstr ""
6801
 
6802
- #: languages/vue.php:1243
6803
  msgid "Show in widget mode"
6804
  msgstr ""
6805
 
6806
- #: languages/vue.php:1246
6807
  msgid "Show in full-width mode"
6808
  msgstr ""
6809
 
6810
- #: languages/vue.php:1252
6811
  msgid "Installing Addon"
6812
  msgstr ""
6813
 
6814
- #: languages/vue.php:1255
6815
  msgid "Activating Addon"
6816
  msgstr ""
6817
 
6818
- #: languages/vue.php:1258
6819
  msgid "Addon Activated"
6820
  msgstr ""
6821
 
6822
- #: languages/vue.php:1261
6823
  msgid "Loading report data"
6824
  msgstr ""
6825
 
6826
- #: languages/vue.php:1264
6827
  msgid "Please activate manually"
6828
  msgstr ""
6829
 
6830
  #. Translators: Adds the error status and status text.
6831
- #: languages/vue.php:1268
6832
  msgid "Error: %1$s, %2$s"
6833
  msgstr ""
6834
 
6835
- #: languages/vue.php:1271
6836
  msgid "Error Activating Addon"
6837
  msgstr ""
6838
 
6839
- #: languages/vue.php:1274
6840
  #: lite/includes/admin/wp-site-health.php:372
6841
  #: lite/includes/admin/wp-site-health.php:398
6842
  #: lite/includes/admin/wp-site-health.php:425
6843
  msgid "View Addons"
6844
  msgstr ""
6845
 
6846
- #: languages/vue.php:1278
6847
  msgid "Dismiss"
6848
  msgstr ""
6849
 
6850
- #: languages/vue.php:1281
6851
  msgid "Redirecting"
6852
  msgstr ""
6853
 
6854
- #: languages/vue.php:1284
6855
  msgid "Please wait"
6856
  msgstr ""
6857
 
6858
- #: languages/vue.php:1287
6859
  msgid "activate"
6860
  msgstr ""
6861
 
6862
- #: languages/vue.php:1290
6863
  msgid "install"
6864
  msgstr ""
6865
 
6866
- #: languages/vue.php:1293
6867
  msgid "Visit addons page"
6868
  msgstr ""
6869
 
6870
- #: languages/vue.php:1296
6871
  msgid "Report Unavailable"
6872
  msgstr ""
6873
 
6874
  #. Translators: Install/Activate the addon.
6875
- #: languages/vue.php:1300
6876
  msgid "%s Addon"
6877
  msgstr ""
6878
 
6879
- #: languages/vue.php:1303
6880
  msgid "Go Back To Reports"
6881
  msgstr ""
6882
 
6883
- #: languages/vue.php:1306
6884
  msgid "Enable Enhanced eCommerce"
6885
  msgstr ""
6886
 
6887
  #. Translators: Placeholders are used for making text bold and adding a link.
6888
- #: languages/vue.php:1310
6889
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6890
  msgstr ""
6891
 
6892
- #: languages/vue.php:1313
6893
  msgid "Last 30 Days Insights for:"
6894
  msgstr ""
6895
 
6896
- #: languages/vue.php:1316
6897
  msgid "Your Website"
6898
  msgstr ""
6899
 
6900
- #: languages/vue.php:1319
6901
  msgid "Sessions"
6902
  msgstr ""
6903
 
6904
- #: languages/vue.php:1322
6905
  msgid "Pageviews"
6906
  msgstr ""
6907
 
6908
- #: languages/vue.php:1325
6909
  msgid "Avg. Duration"
6910
  msgstr ""
6911
 
6912
- #: languages/vue.php:1331
6913
  msgid "Total Users"
6914
  msgstr ""
6915
 
6916
- #: languages/vue.php:1334
6917
  msgid "More data is available"
6918
  msgstr ""
6919
 
6920
- #: languages/vue.php:1337
6921
  msgid "Want to see page-specific stats?"
6922
  msgstr ""
6923
 
6924
- #: languages/vue.php:1340
6925
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6926
  msgstr ""
6927
 
6928
- #: languages/vue.php:1343
6929
  msgid "No addons found."
6930
  msgstr ""
6931
 
6932
- #: languages/vue.php:1346
6933
  msgid "Refresh Addons"
6934
  msgstr ""
6935
 
6936
- #: languages/vue.php:1349
6937
  msgid "Refreshing Addons"
6938
  msgstr ""
6939
 
6940
  #. Translators: Make text green.
6941
- #: languages/vue.php:1353
6942
  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!"
6943
  msgstr ""
6944
 
6945
- #: languages/vue.php:1356
6946
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
6947
  msgstr ""
6948
 
6949
- #: languages/vue.php:1359
6950
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
6951
  msgstr ""
6952
 
6953
- #: languages/vue.php:1362
6954
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
6955
  msgstr ""
6956
 
6957
- #: languages/vue.php:1365
6958
  msgid "See All Your Important Store Metrics in One Place"
6959
  msgstr ""
6960
 
6961
- #: languages/vue.php:1368
6962
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
6963
  msgstr ""
6964
 
6965
- #: languages/vue.php:1371
6966
  msgid "ONE-CLICK INTEGRATIONS"
6967
  msgstr ""
6968
 
6969
- #: languages/vue.php:1374
6970
  msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
6971
  msgstr ""
6972
 
6973
- #: languages/vue.php:1377
6974
  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."
6975
  msgstr ""
6976
 
6977
- #: languages/vue.php:1380
6978
  msgid "Affiliate Tracking"
6979
  msgstr ""
6980
 
6981
- #: languages/vue.php:1383
6982
  msgid "Automatically Track Affiliate Sales"
6983
  msgstr ""
6984
 
6985
- #: languages/vue.php:1386
6986
  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."
6987
  msgstr ""
6988
 
6989
- #: languages/vue.php:1389
6990
  msgid "Works with WooCommerce, MemberPress and Easy Digital Downloads."
6991
  msgstr ""
6992
 
6993
- #: languages/vue.php:1398
6994
  msgid "Cart Funnel"
6995
  msgstr ""
6996
 
6997
- #: languages/vue.php:1401
6998
  msgid "Customer Insights"
6999
  msgstr ""
7000
 
7001
- #: languages/vue.php:1404
7002
  msgid "Campaign Measurement"
7003
  msgstr ""
7004
 
7005
- #: languages/vue.php:1407
7006
  msgid "Customer Profiles"
7007
  msgstr ""
7008
 
7009
- #: languages/vue.php:1410
7010
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
7011
  msgstr ""
7012
 
7013
- #: languages/vue.php:1413
7014
  msgid "Truly Understand Your%1$s Customers With %2$sMonsterInsights%3$s"
7015
  msgstr ""
7016
 
7017
- #: languages/vue.php:1416
7018
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from MonsterInsights!"
7019
  msgstr ""
7020
 
7021
- #: languages/vue.php:1419
7022
  msgid "Track all-new metrics!"
7023
  msgstr ""
7024
 
7025
- #: languages/vue.php:1422
7026
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
7027
  msgstr ""
7028
 
7029
- #: languages/vue.php:1425
7030
  msgid "FEATURES"
7031
  msgstr ""
7032
 
7033
- #: languages/vue.php:1428
7034
  msgid "Get The Unique Metrics Neccessary for Growth"
7035
  msgstr ""
7036
 
7037
- #: languages/vue.php:1431
7038
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
7039
  msgstr ""
7040
 
7041
- #: languages/vue.php:1434
7042
  msgid "Get Answers to the important questions %1$syou should know."
7043
  msgstr ""
7044
 
7045
- #: languages/vue.php:1437
7046
  msgid "Did the login/registration step of the checkout put users off?"
7047
  msgstr ""
7048
 
7049
- #: languages/vue.php:1440
7050
  msgid "Which ad campaign is driving the most revenue?"
7051
  msgstr ""
7052
 
7053
- #: languages/vue.php:1443
7054
  msgid "Who is my typical customer?"
7055
  msgstr ""
7056
 
7057
- #: languages/vue.php:1446
7058
  msgid "Level-up Your eCommerce store with %1$sMonsterInsights + WooCommerce!%1$s"
7059
  msgstr ""
7060
 
7061
  #. Translators: placeholders make text small.
7062
- #: languages/vue.php:1450
7063
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
7064
  msgstr ""
7065
 
7066
  #. Translators: placeholders make text small.
7067
- #: languages/vue.php:1454
7068
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
7069
  msgstr ""
7070
 
7071
  #. Translators: placeholders make text small.
7072
- #: languages/vue.php:1458
7073
  msgid "None %1$s- Manually update everything.%2$s"
7074
  msgstr ""
7075
 
7076
- #: languages/vue.php:1461
7077
  msgid "Automatic Updates"
7078
  msgstr ""
7079
 
7080
- #: languages/vue.php:1464
7081
  msgid "Awesome, You're All Set!"
7082
  msgstr ""
7083
 
7084
- #: languages/vue.php:1467
7085
  msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
7086
  msgstr ""
7087
 
7088
  #. Translators: Make text bold.
7089
- #: languages/vue.php:1471
7090
  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."
7091
  msgstr ""
7092
 
7093
  #. Translators: Link to our blog.
7094
- #: languages/vue.php:1475
7095
  msgid "%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business."
7096
  msgstr ""
7097
 
7098
- #: languages/vue.php:1478
7099
  msgid "Finish Setup & Exit Wizard"
7100
  msgstr ""
7101
 
7102
- #: languages/vue.php:1481
7103
  msgid "Checking your website..."
7104
  msgstr ""
7105
 
7106
- #: languages/vue.php:1484
7107
  msgid "See All Reports"
7108
  msgstr ""
7109
 
7110
- #: languages/vue.php:1487
7111
  msgid "Go to the Analytics Dashboard"
7112
  msgstr ""
7113
 
7114
  #. Translators: Placeholder adds a line break.
7115
- #: languages/vue.php:1491
7116
  msgid "Unique %s Sessions"
7117
  msgstr ""
7118
 
7119
- #. Translators: Placeholder adds a line break.
7120
- #: languages/vue.php:1495
7121
  msgid "Unique %s Pageviews"
7122
  msgstr ""
7123
 
7124
- #: languages/vue.php:1498
7125
  msgid "A session is the browsing session of a single user to your site."
7126
  msgstr ""
7127
 
7128
- #: languages/vue.php:1501
7129
  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."
7130
  msgstr ""
7131
 
7132
- #: languages/vue.php:1504
7133
  msgid "Total duration of all sessions (in seconds) / number of sessions."
7134
  msgstr ""
7135
 
7136
- #: languages/vue.php:1507
7137
  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."
7138
  msgstr ""
7139
 
7140
- #: languages/vue.php:1510
7141
  msgid "The number of distinct tracked users"
7142
  msgstr ""
7143
 
7144
- #: languages/vue.php:1513
7145
  msgid "Avg. Session Duration"
7146
  msgstr ""
7147
 
7148
- #: languages/vue.php:1516
7149
  msgid "Still Calculating..."
7150
  msgstr ""
7151
 
7152
- #: languages/vue.php:1519
7153
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7154
  msgstr ""
7155
 
7156
- #: languages/vue.php:1522
7157
  msgid "Back to Overview Report"
7158
  msgstr ""
7159
 
7160
- #: languages/vue.php:1525
7161
  msgid "Your 2020 Analytics Report"
7162
  msgstr ""
7163
 
7164
- #: languages/vue.php:1528
7165
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7166
  msgstr ""
7167
 
7168
- #: languages/vue.php:1531
7169
  msgid "Audience"
7170
  msgstr ""
7171
 
7172
- #: languages/vue.php:1534
7173
  msgid "Congrats"
7174
  msgstr ""
7175
 
7176
- #: languages/vue.php:1537
7177
  msgid "Your website was quite popular this year! "
7178
  msgstr ""
7179
 
7180
- #: languages/vue.php:1540
7181
  msgid "You had "
7182
  msgstr ""
7183
 
7184
- #: languages/vue.php:1543
7185
  msgid " visitors!"
7186
  msgstr ""
7187
 
7188
- #: languages/vue.php:1546
7189
  msgid " visitors"
7190
  msgstr ""
7191
 
7192
- #: languages/vue.php:1549
7193
  msgid "Total Visitors"
7194
  msgstr ""
7195
 
7196
- #: languages/vue.php:1552
7197
  msgid "Total Sessions"
7198
  msgstr ""
7199
 
7200
- #: languages/vue.php:1555
7201
  msgid "Visitors by Month"
7202
  msgstr ""
7203
 
7204
- #: languages/vue.php:1558
7205
  msgid "January 1, 2020 - December 31, 2020"
7206
  msgstr ""
7207
 
7208
- #: languages/vue.php:1561
7209
  msgid "A Tip for 2021"
7210
  msgstr ""
7211
 
7212
- #: languages/vue.php:1564
7213
  msgid "Demographics"
7214
  msgstr ""
7215
 
7216
- #: languages/vue.php:1567
7217
  msgid "#1"
7218
  msgstr ""
7219
 
7220
- #: languages/vue.php:1570
7221
  msgid "You Top 5 Countries"
7222
  msgstr ""
7223
 
7224
- #: languages/vue.php:1573
7225
  msgid "Let’s get to know your visitors a little better, shall we?"
7226
  msgstr ""
7227
 
7228
- #: languages/vue.php:1576
7229
  msgid "Gender"
7230
  msgstr ""
7231
 
7232
- #: languages/vue.php:1579
7233
  msgid "Female"
7234
  msgstr ""
7235
 
7236
- #: languages/vue.php:1582
7237
  msgid "Women"
7238
  msgstr ""
7239
 
7240
- #: languages/vue.php:1585
7241
  msgid "Male"
7242
  msgstr ""
7243
 
7244
- #: languages/vue.php:1588
7245
  msgid "Average Age"
7246
  msgstr ""
7247
 
7248
- #: languages/vue.php:1591
7249
  msgid "Behavior"
7250
  msgstr ""
7251
 
7252
- #: languages/vue.php:1594
7253
  msgid "Your Top 5 Pages"
7254
  msgstr ""
7255
 
7256
- #: languages/vue.php:1597
7257
  msgid "Time Spent on Site"
7258
  msgstr ""
7259
 
7260
- #: languages/vue.php:1600
7261
  msgid "minutes"
7262
  msgstr ""
7263
 
7264
- #: languages/vue.php:1603
7265
  msgid "Device Type"
7266
  msgstr ""
7267
 
7268
- #: languages/vue.php:1606
7269
  msgid "A Tip For 2021"
7270
  msgstr ""
7271
 
7272
- #: languages/vue.php:1609
7273
  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."
7274
  msgstr ""
7275
 
7276
- #: languages/vue.php:1612
7277
  msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
7278
  msgstr ""
7279
 
7280
- #: languages/vue.php:1615
7281
  msgid "So, where did all of these visitors come from?"
7282
  msgstr ""
7283
 
7284
- #: languages/vue.php:1618
7285
  msgid "Clicks"
7286
  msgstr ""
7287
 
7288
- #: languages/vue.php:1621
7289
  msgid "Your Top 5 Keywords"
7290
  msgstr ""
7291
 
7292
- #: languages/vue.php:1624
7293
  msgid "What keywords visitors searched for to find your site"
7294
  msgstr ""
7295
 
7296
- #: languages/vue.php:1627
7297
  msgid "Your Top 5 Referrals"
7298
  msgstr ""
7299
 
7300
- #: languages/vue.php:1630
7301
  msgid "The websites that link back to your website"
7302
  msgstr ""
7303
 
7304
- #: languages/vue.php:1633
7305
  msgid "Opportunity"
7306
  msgstr ""
7307
 
7308
- #: languages/vue.php:1636
7309
  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."
7310
  msgstr ""
7311
 
7312
- #: languages/vue.php:1639
7313
  msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
7314
  msgstr ""
7315
 
7316
- #: languages/vue.php:1642
7317
  msgid "Thank you for using MonsterInsights!"
7318
  msgstr ""
7319
 
7320
- #: languages/vue.php:1645
7321
  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."
7322
  msgstr ""
7323
 
7324
- #: languages/vue.php:1648
7325
  msgid "Here's to an amazing 2021!"
7326
  msgstr ""
7327
 
7328
- #: languages/vue.php:1651
7329
  msgid "Enjoying MonsterInsights"
7330
  msgstr ""
7331
 
7332
- #: languages/vue.php:1654
7333
  msgid "Leave a five star review!"
7334
  msgstr ""
7335
 
7336
- #: languages/vue.php:1657
7337
  msgid "Syed Balkhi"
7338
  msgstr ""
7339
 
7340
- #: languages/vue.php:1660
7341
  msgid "Chris Christoff"
7342
  msgstr ""
7343
 
7344
- #: languages/vue.php:1663
7345
  msgid "Write Review"
7346
  msgstr ""
7347
 
7348
- #: languages/vue.php:1666
7349
  msgid "Did you know over 10 million websites use our plugins?"
7350
  msgstr ""
7351
 
7352
- #: languages/vue.php:1669
7353
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7354
  msgstr ""
7355
 
7356
- #: languages/vue.php:1672
7357
  msgid "Join our Communities!"
7358
  msgstr ""
7359
 
7360
- #: languages/vue.php:1675
7361
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7362
  msgstr ""
7363
 
7364
- #: languages/vue.php:1678
7365
  msgid "Facebook Group"
7366
  msgstr ""
7367
 
7368
- #: languages/vue.php:1681
7369
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7370
  msgstr ""
7371
 
7372
- #: languages/vue.php:1684
7373
  msgid "Join Now...It’s Free!"
7374
  msgstr ""
7375
 
7376
- #: languages/vue.php:1687
7377
  msgid "WordPress Tutorials by WPBeginner"
7378
  msgstr ""
7379
 
7380
- #: languages/vue.php:1690
7381
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7382
  msgstr ""
7383
 
7384
- #: languages/vue.php:1693
7385
  msgid "Visit WPBeginner"
7386
  msgstr ""
7387
 
7388
- #: languages/vue.php:1696
7389
  msgid "Follow Us!"
7390
  msgstr ""
7391
 
7392
- #: languages/vue.php:1699
7393
  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."
7394
  msgstr ""
7395
 
7396
- #: languages/vue.php:1702
7397
  msgid "Copyright MonsterInsights, 2021"
7398
  msgstr ""
7399
 
7400
- #: languages/vue.php:1705
7401
  msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
7402
  msgstr ""
7403
 
7404
- #: languages/vue.php:1708
7405
  msgid "January"
7406
  msgstr ""
7407
 
7408
- #: languages/vue.php:1711
7409
  msgid "February"
7410
  msgstr ""
7411
 
7412
- #: languages/vue.php:1714
7413
  msgid "March"
7414
  msgstr ""
7415
 
7416
- #: languages/vue.php:1717
7417
  msgid "April"
7418
  msgstr ""
7419
 
7420
- #: languages/vue.php:1720
7421
  msgid "May"
7422
  msgstr ""
7423
 
7424
- #: languages/vue.php:1723
7425
  msgid "June"
7426
  msgstr ""
7427
 
7428
- #: languages/vue.php:1726
7429
  msgid "July"
7430
  msgstr ""
7431
 
7432
- #: languages/vue.php:1729
7433
  msgid "August"
7434
  msgstr ""
7435
 
7436
- #: languages/vue.php:1732
7437
  msgid "September"
7438
  msgstr ""
7439
 
7440
- #: languages/vue.php:1735
7441
  msgid "October"
7442
  msgstr ""
7443
 
7444
- #: languages/vue.php:1738
7445
  msgid "November"
7446
  msgstr ""
7447
 
7448
- #: languages/vue.php:1741
7449
  msgid "December"
7450
  msgstr ""
7451
 
7452
  #. Translators: Number of visitors.
7453
- #: languages/vue.php:1745
7454
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7455
  msgstr ""
7456
 
7457
- #: languages/vue.php:1748
7458
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7459
  msgstr ""
7460
 
7461
  #. Translators: Number of visitors.
7462
- #: languages/vue.php:1752
7463
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7464
  msgstr ""
7465
 
7466
  #. Translators: Number of visitors.
7467
- #: languages/vue.php:1756
7468
  msgid "%s Visitors"
7469
  msgstr ""
7470
 
7471
  #. Translators: Percent and Number of visitors.
7472
- #: languages/vue.php:1760
7473
  msgid "%1$s&#37 of your visitors were %2$s"
7474
  msgstr ""
7475
 
7476
  #. Translators: Number of visitors and their age.
7477
- #: languages/vue.php:1764
7478
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7479
  msgstr ""
7480
 
7481
- #: languages/vue.php:1767
7482
  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>"
7483
  msgstr ""
7484
 
7485
  #. Translators: Number of minutes spent on site.
7486
- #: languages/vue.php:1771
7487
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7488
  msgstr ""
7489
 
7490
  #. Translators: Name of device type.
7491
- #: languages/vue.php:1775
7492
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7493
  msgstr ""
7494
 
7495
  #. Translators: Number of visitors and device percentage.
7496
- #: languages/vue.php:1779
7497
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7498
  msgstr ""
7499
 
7500
- #: languages/vue.php:1782
7501
  msgid "Desktop"
7502
  msgstr ""
7503
 
7504
- #: languages/vue.php:1785
7505
  msgid "Tablet"
7506
  msgstr ""
7507
 
7508
- #: languages/vue.php:1788
7509
  msgid "Mobile"
7510
  msgstr ""
7511
 
7512
- #: languages/vue.php:1791
7513
  msgid "Right Now"
7514
  msgstr ""
7515
 
7516
- #: languages/vue.php:1794
7517
  msgid "Active users on site"
7518
  msgstr ""
7519
 
7520
- #: languages/vue.php:1797
7521
  msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
7522
  msgstr ""
7523
 
7524
- #: languages/vue.php:1800
7525
  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."
7526
  msgstr ""
7527
 
7528
- #: languages/vue.php:1803
7529
  msgid "The real-time report automatically updates approximately every 60 seconds."
7530
  msgstr ""
7531
 
7532
  #. Translators: Number of seconds that have passed since the report was refreshed.
7533
- #: languages/vue.php:1807
7534
  msgid "The real-time report was last updated %s seconds ago."
7535
  msgstr ""
7536
 
7537
- #: languages/vue.php:1810
7538
  msgid "The latest data will be automatically shown on this page when it becomes available."
7539
  msgstr ""
7540
 
7541
- #: languages/vue.php:1813
7542
  msgid "There is no need to refresh the browser (doing so won't have any effect)."
7543
  msgstr ""
7544
 
7545
- #: languages/vue.php:1816
7546
  msgid "Pageviews Per Minute"
7547
  msgstr ""
7548
 
7549
- #: languages/vue.php:1819
7550
  msgid "Top Pages"
7551
  msgstr ""
7552
 
7553
- #: languages/vue.php:1822
7554
  msgid "No pageviews currently."
7555
  msgstr ""
7556
 
7557
- #: languages/vue.php:1825
7558
  msgid "Page"
7559
  msgstr ""
7560
 
7561
- #: languages/vue.php:1828
7562
  msgid "Pageview Count"
7563
  msgstr ""
7564
 
7565
- #: languages/vue.php:1831
7566
  msgid "Percent of Total"
7567
  msgstr ""
7568
 
7569
- #: languages/vue.php:1834
7570
  msgid "This is the number of active users currently on your site."
7571
  msgstr ""
7572
 
7573
- #: languages/vue.php:1837
7574
  msgid "This graph shows the number of pageviews for each of the last 30 minutes."
7575
  msgstr ""
7576
 
7577
- #: languages/vue.php:1840
7578
  msgid "This list shows the top pages users are currently viewing on your site."
7579
  msgstr ""
7580
 
7581
- #: languages/vue.php:1843
7582
  msgid "View All Real-Time Pageviews"
7583
  msgstr ""
7584
 
7585
- #: languages/vue.php:1846
7586
  msgid "View All Real-Time Traffic Sources"
7587
  msgstr ""
7588
 
7589
- #: languages/vue.php:1849
7590
  msgid "View All Real-Time Traffic by Country"
7591
  msgstr ""
7592
 
7593
- #: languages/vue.php:1852
7594
  msgid "View All Real-Time Traffic by City"
7595
  msgstr ""
7596
 
7597
- #: languages/vue.php:1855
7598
  msgid "Show Overview Reports"
7599
  msgstr ""
7600
 
7601
- #: languages/vue.php:1858
7602
  msgid "Show Publishers Reports"
7603
  msgstr ""
7604
 
7605
- #: languages/vue.php:1861
7606
  msgid "Show eCommerce Reports"
7607
  msgstr ""
7608
 
7609
- #: languages/vue.php:1864
7610
  msgid "Settings Menu"
7611
  msgstr ""
7612
 
7613
- #: languages/vue.php:1867
7614
  msgid "Available in PRO version"
7615
  msgstr ""
7616
 
7617
- #: languages/vue.php:1870
7618
  msgid "Thank you for being a loyal MonsterInsights Lite user."
7619
  msgstr ""
7620
 
7621
- #: languages/vue.php:1873
7622
  msgid "Upgrade to MonsterInsights Pro and unlock all the awesome features."
7623
  msgstr ""
7624
 
7625
  #. Translators: Gets replaced with the coupon code.
7626
- #: languages/vue.php:1877
7627
  msgid "Use coupon code %s to get 50%% off."
7628
  msgstr ""
7629
 
7630
- #: languages/vue.php:1880
7631
  msgid "Dashboard widget"
7632
  msgstr ""
7633
 
7634
- #: languages/vue.php:1883
7635
  msgid "Affiliate Links"
7636
  msgstr ""
7637
 
7638
- #: languages/vue.php:1886
7639
  msgid "Enhanced Ecommerce"
7640
  msgstr ""
7641
 
7642
- #: languages/vue.php:1889
7643
  msgid "Banner Ads"
7644
  msgstr ""
7645
 
7646
- #: languages/vue.php:1892
7647
  msgid "Google AMP"
7648
  msgstr ""
7649
 
7650
- #: languages/vue.php:1895
7651
  msgid "SEO Score Tracking"
7652
  msgstr ""
7653
 
7654
- #: languages/vue.php:1898
7655
  msgid "Activating..."
7656
  msgstr ""
7657
 
7658
- #: languages/vue.php:1901
7659
  msgid "Deactivating..."
7660
  msgstr ""
7661
 
7662
- #: languages/vue.php:1904
7663
  msgid "Deactivate"
7664
  msgstr ""
7665
 
7666
  #. Translators: The status of the addon (installed/active/inactive).
7667
- #: languages/vue.php:1908
7668
  msgid "Status: %s"
7669
  msgstr ""
7670
 
7671
- #: languages/vue.php:1911
7672
  msgid "Not Installed"
7673
  msgstr ""
7674
 
7675
- #: languages/vue.php:1914
7676
  msgid "Network Active"
7677
  msgstr ""
7678
 
7679
- #: languages/vue.php:1917
7680
  msgid "Active"
7681
  msgstr ""
7682
 
7683
- #: languages/vue.php:1920
7684
  msgid "Inactive"
7685
  msgstr ""
7686
 
7687
  #. Translators: Adds a link to the general settings tab.
7688
- #: languages/vue.php:1924
7689
  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."
7690
  msgstr ""
7691
 
7692
- #: languages/vue.php:1927
7693
  msgid "Export PDF Reports"
7694
  msgstr ""
7695
 
7696
- #: languages/vue.php:1930
7697
  msgid "Permissions"
7698
  msgstr ""
7699
 
7700
- #: languages/vue.php:1933
7701
  msgid "Allow These User Roles to See Reports"
7702
  msgstr ""
7703
 
7704
- #: languages/vue.php:1936
7705
  msgid "Users that have at least one of these roles will be able to view the reports."
7706
  msgstr ""
7707
 
7708
- #: languages/vue.php:1939
7709
  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."
7710
  msgstr ""
7711
 
7712
- #: languages/vue.php:1942
7713
  msgid "Allow These User Roles to Save Settings"
7714
  msgstr ""
7715
 
7716
- #: languages/vue.php:1945
7717
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
7718
  msgstr ""
7719
 
7720
- #: languages/vue.php:1948
7721
  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."
7722
  msgstr ""
7723
 
7724
- #: languages/vue.php:1951
7725
  msgid "Exclude These User Roles From Tracking"
7726
  msgstr ""
7727
 
7728
- #: languages/vue.php:1954
7729
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
7730
  msgstr ""
7731
 
7732
- #: languages/vue.php:1957
7733
  msgid "Performance"
7734
  msgstr ""
7735
 
7736
- #: languages/vue.php:1960
7737
  msgid "Custom code"
7738
  msgstr ""
7739
 
7740
  #. Translators: Adds a link to the Google reference.
7741
- #: languages/vue.php:1964
7742
  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."
7743
  msgstr ""
7744
 
7745
- #: languages/vue.php:1970
7746
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
7747
  msgstr ""
7748
 
7749
- #: languages/vue.php:1973
7750
  msgid "Hide Admin Bar Reports"
7751
  msgstr ""
7752
 
7753
  #. Translators: placeholders make text small.
7754
- #: languages/vue.php:1977
7755
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
7756
  msgstr ""
7757
 
7758
  #. Translators: placeholders make text small.
7759
- #: languages/vue.php:1981
7760
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
7761
  msgstr ""
7762
 
7763
  #. Translators: placeholders make text small.
7764
- #: languages/vue.php:1985
7765
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
7766
  msgstr ""
7767
 
7768
- #: languages/vue.php:1988
7769
  msgid "View notifications"
7770
  msgstr ""
7771
 
7772
  #. Translators: Error status and error text.
7773
- #: languages/vue.php:1992
7774
  msgid "Can't load settings. Error: %1$s, %2$s"
7775
  msgstr ""
7776
 
7777
- #: languages/vue.php:1995
7778
  msgid "You appear to be offline."
7779
  msgstr ""
7780
 
7781
  #. Translators: Error status and error text.
7782
- #: languages/vue.php:1999
7783
  msgid "Can't save settings. Error: %1$s, %2$s"
7784
  msgstr ""
7785
 
7786
- #: languages/vue.php:2002
7787
  msgid "Network error encountered. Settings not saved."
7788
  msgstr ""
7789
 
7790
  #. Translators: Error status and error text.
7791
- #: languages/vue.php:2006
7792
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
7793
  msgstr ""
7794
 
7795
  #. Translators: Error status and error text.
7796
- #: languages/vue.php:2010
7797
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
7798
  msgstr ""
7799
 
7800
  #. Translators: Error status and error text.
7801
- #: languages/vue.php:2014
7802
  msgid "Can't load license details. Error: %1$s, %2$s"
7803
  msgstr ""
7804
 
7805
- #: languages/vue.php:2017
7806
  msgid "Error loading license details"
7807
  msgstr ""
7808
 
7809
  #. Translators: Error status and error text.
7810
- #: languages/vue.php:2021
7811
  msgid "Can't verify the license. Error: %1$s, %2$s"
7812
  msgstr ""
7813
 
7814
  #. Translators: Error status and error text.
7815
- #: languages/vue.php:2025
7816
  msgid "Can't validate the license. Error: %1$s, %2$s"
7817
  msgstr ""
7818
 
7819
  #. Translators: Error status and error text.
7820
- #: languages/vue.php:2029
7821
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7822
  msgstr ""
7823
 
7824
  #. Translators: Error status and error text.
7825
- #: languages/vue.php:2033
7826
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7827
  msgstr ""
7828
 
7829
- #: languages/vue.php:2036
7830
  msgid "You appear to be offline. Settings not saved."
7831
  msgstr ""
7832
 
7833
  #. Translators: Error status and error text.
7834
- #: languages/vue.php:2040
7835
  msgid "Can't authenticate. Error: %1$s, %2$s"
7836
  msgstr ""
7837
 
7838
  #. Translators: Error status and error text.
7839
- #: languages/vue.php:2044
7840
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7841
  msgstr ""
7842
 
7843
  #. Translators: Error status and error text.
7844
- #: languages/vue.php:2048
7845
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7846
  msgstr ""
7847
 
7848
- #: languages/vue.php:2051
7849
  msgid "Proceed"
7850
  msgstr ""
7851
 
7852
- #: languages/vue.php:2054
7853
  msgid "Connection Information"
7854
  msgstr ""
7855
 
7856
- #: languages/vue.php:2057
7857
  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."
7858
  msgstr ""
7859
 
7860
- #: languages/vue.php:2060
7861
  msgid "Hostname"
7862
  msgstr ""
7863
 
7864
- #: languages/vue.php:2063
7865
  msgid "FTP Username"
7866
  msgstr ""
7867
 
7868
- #: languages/vue.php:2066
7869
  msgid "FTP Password"
7870
  msgstr ""
7871
 
7872
- #: languages/vue.php:2069
7873
  msgid "This password will not be stored on the server."
7874
  msgstr ""
7875
 
7876
- #: languages/vue.php:2072
7877
  msgid "Connection Type"
7878
  msgstr ""
7879
 
7880
- #: languages/vue.php:2075
7881
  msgid "Cancel"
7882
  msgstr ""
7883
 
7884
- #: languages/vue.php:2078
7885
  msgid "You appear to be offline. WPForms not installed."
7886
  msgstr ""
7887
 
7888
  #. Translators: Error status and error text.
7889
- #: languages/vue.php:2082
7890
  msgid "Can't activate addon. Error: %1$s, %2$s"
7891
  msgstr ""
7892
 
7893
- #: languages/vue.php:2085
7894
  msgid "You appear to be offline. Addon not activated."
7895
  msgstr ""
7896
 
7897
  #. Translators: Error status and error text.
7898
- #: languages/vue.php:2089
7899
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
7900
  msgstr ""
7901
 
7902
- #: languages/vue.php:2092
7903
  msgid "You appear to be offline. Addon not deactivated."
7904
  msgstr ""
7905
 
7906
  #. Translators: Error status and error text.
7907
- #: languages/vue.php:2096
7908
  msgid "Can't install plugin. Error: %1$s, %2$s"
7909
  msgstr ""
7910
 
7911
- #: languages/vue.php:2099
7912
  msgid "You appear to be offline. Plugin not installed."
7913
  msgstr ""
7914
 
7915
  #. Translators: Error status and error text.
7916
- #: languages/vue.php:2103
7917
  msgid "Can't install addon. Error: %1$s, %2$s"
7918
  msgstr ""
7919
 
7920
- #: languages/vue.php:2106
7921
  msgid "You appear to be offline. Addon not installed."
7922
  msgstr ""
7923
 
7924
  #. Translators: Error status and error text.
7925
- #: languages/vue.php:2110
7926
  msgid "Can't install WPForms. Error: %1$s, %2$s"
7927
  msgstr ""
7928
 
7929
  #. Translators: Example path (/go/).
7930
- #: languages/vue.php:2115
7931
  msgid "Path (example: %s)"
7932
  msgstr ""
7933
 
7934
- #: languages/vue.php:2119
7935
  msgid "Path has to start with a / and have no spaces"
7936
  msgstr ""
7937
 
7938
  #. Translators: Example label (aff).
7939
- #: languages/vue.php:2124
7940
  msgid "Label (example: %s)"
7941
  msgstr ""
7942
 
7943
- #: languages/vue.php:2128
7944
  msgid "Label can't contain any spaces"
7945
  msgstr ""
7946
 
7947
  #. Translators: Add links to documentation.
7948
- #: languages/vue.php:2132
7949
  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."
7950
  msgstr ""
7951
 
7952
- #: languages/vue.php:2135
7953
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
7954
  msgstr ""
7955
 
7956
- #: languages/vue.php:2138
7957
  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."
7958
  msgstr ""
7959
 
7960
- #: languages/vue.php:2141
7961
  msgid "Disable the Headline Analyzer"
7962
  msgstr ""
7963
 
7964
- #: languages/vue.php:2144
7965
  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."
7966
  msgstr ""
7967
 
7968
- #: languages/vue.php:2147
7969
  msgid "Or manually enter UA code (limited functionality)"
7970
  msgstr ""
7971
 
7972
- #: languages/vue.php:2150
7973
  msgid "Dual Tracking Profile"
7974
  msgstr ""
7975
 
7976
- #: languages/vue.php:2153
7977
  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."
7978
  msgstr ""
7979
 
7980
- #: languages/vue.php:2156
7981
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
7982
  msgstr ""
7983
 
7984
- #: languages/vue.php:2159
7985
  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."
7986
  msgstr ""
7987
 
7988
- #: languages/vue.php:2162
7989
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
7990
  msgstr ""
7991
 
7992
- #: languages/vue.php:2165
7993
  msgid "Measurement Protocol API Secret"
7994
  msgstr ""
7995
 
7996
- #: languages/vue.php:2168
7997
  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."
7998
  msgstr ""
7999
 
8000
- #: languages/vue.php:2171
8001
  msgid "Force Deauthenticate"
8002
  msgstr ""
8003
 
8004
- #: languages/vue.php:2174
8005
  msgid "Disconnect MonsterInsights"
8006
  msgstr ""
8007
 
8008
- #: languages/vue.php:2177
8009
  msgid "Authenticating"
8010
  msgstr ""
8011
 
8012
- #: languages/vue.php:2180
8013
  msgid "Verifying Credentials"
8014
  msgstr ""
8015
 
8016
- #: languages/vue.php:2183
8017
  msgid "Your site is connected to MonsterInsights!"
8018
  msgstr ""
8019
 
8020
- #: languages/vue.php:2186
8021
  msgid "Deauthenticating"
8022
  msgstr ""
8023
 
8024
- #: languages/vue.php:2189
8025
  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."
8026
  msgstr ""
8027
 
8028
- #: languages/vue.php:2192
8029
  msgid "Connect MonsterInsights"
8030
  msgstr ""
8031
 
8032
- #: languages/vue.php:2195
8033
  msgid "Verify Credentials"
8034
  msgstr ""
8035
 
8036
- #: languages/vue.php:2198
8037
  msgid "Website Profile"
8038
  msgstr ""
8039
 
8040
- #: languages/vue.php:2201
8041
  msgid "Active Profile"
8042
  msgstr ""
8043
 
8044
- #: languages/vue.php:2204
8045
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
8046
  msgstr ""
8047
 
8048
- #: languages/vue.php:2207
8049
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
8050
  msgstr ""
8051
 
8052
- #: languages/vue.php:2210
8053
  msgid "Manually enter your UA code"
8054
  msgstr ""
8055
 
8056
- #: languages/vue.php:2213
8057
  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."
8058
  msgstr ""
8059
 
8060
- #: languages/vue.php:2216
8061
  msgid "Manually enter your GA4 Measurement ID"
8062
  msgstr ""
8063
 
8064
- #: languages/vue.php:2219
8065
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
8066
  msgstr ""
8067
 
8068
- #: languages/vue.php:2222
8069
  msgid "Anonymize IP Addresses"
8070
  msgstr ""
8071
 
8072
- #: languages/vue.php:2225
8073
  msgid "Link Attribution"
8074
  msgstr ""
8075
 
8076
- #: languages/vue.php:2228
8077
  msgid "Enable Enhanced Link Attribution"
8078
  msgstr ""
8079
 
8080
- #: languages/vue.php:2231
8081
  msgid "Enable Anchor Tracking"
8082
  msgstr ""
8083
 
8084
- #: languages/vue.php:2234
8085
  msgid "Enable allowAnchor"
8086
  msgstr ""
8087
 
8088
- #: languages/vue.php:2237
8089
  msgid "Enable allowLinker"
8090
  msgstr ""
8091
 
8092
- #: languages/vue.php:2240
8093
  msgid "Enable Tag Links in RSS"
8094
  msgstr ""
8095
 
8096
- #: languages/vue.php:2243
8097
  msgid "File Downloads"
8098
  msgstr ""
8099
 
8100
- #: languages/vue.php:2246
8101
  msgid "Extensions of Files to Track as Downloads"
8102
  msgstr ""
8103
 
8104
- #: languages/vue.php:2249
8105
  msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
8106
  msgstr ""
8107
 
8108
  #. Translators: Add links to the documentation.
8109
- #: languages/vue.php:2253
8110
  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."
8111
  msgstr ""
8112
 
8113
  #. Translators: Adds a link to the documentation.
8114
- #: languages/vue.php:2257
8115
  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."
8116
  msgstr ""
8117
 
8118
  #. Translators: Adds a link to the documentation.
8119
- #: languages/vue.php:2261
8120
  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."
8121
  msgstr ""
8122
 
8123
- #: languages/vue.php:2264
8124
  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."
8125
  msgstr ""
8126
 
8127
  #. Translators: Adds a link to the documentation.
8128
- #: languages/vue.php:2268
8129
  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."
8130
  msgstr ""
8131
 
8132
  #. Translators: Adds a link to the documentation.
8133
- #: languages/vue.php:2272
8134
  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."
8135
  msgstr ""
8136
 
8137
  #. Translators: Adds a link to the documentation.
8138
- #: languages/vue.php:2276
8139
  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."
8140
  msgstr ""
8141
 
8142
- #: languages/vue.php:2279
8143
  msgid "Add domain"
8144
  msgstr ""
8145
 
8146
  #. Translators: Example domain.
8147
- #: languages/vue.php:2283
8148
  msgid "Domain (example: %s)"
8149
  msgstr ""
8150
 
8151
  #. Translators: Current site domain to be avoided.
8152
- #: languages/vue.php:2287
8153
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
8154
  msgstr ""
8155
 
8156
- #: languages/vue.php:2290
8157
  msgid "Cross Domain Tracking"
8158
  msgstr ""
8159
 
8160
  #. Translators: Adds a link to the documentation.
8161
- #: languages/vue.php:2294
8162
  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."
8163
  msgstr ""
8164
 
8165
  #. Translators: Number of days.
8166
- #: languages/vue.php:2298
8167
  msgid "vs. Previous Day"
8168
  msgstr ""
8169
 
8170
- #: languages/vue.php:2301
8171
  msgid "No change"
8172
  msgstr ""
8173
 
8174
- #: languages/vue.php:2304
8175
  msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
8176
  msgstr ""
8177
 
8178
- #: languages/vue.php:2307
8179
  msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
8180
  msgstr ""
8181
 
8182
- #: languages/vue.php:2310
8183
  msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
8184
  msgstr ""
8185
 
8186
- #: languages/vue.php:2313
8187
  msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
8188
  msgstr ""
8189
 
8190
- #: languages/vue.php:2316
8191
  msgid "Use Google Optimize to easily perform A/B split tests on your site."
8192
  msgstr ""
8193
 
8194
- #: languages/vue.php:2319
8195
  msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
8196
  msgstr ""
8197
 
8198
- #: languages/vue.php:2322
8199
  msgid "Unlock search console report to see your top performing keywords in Google."
8200
  msgstr ""
8201
 
8202
- #: languages/vue.php:2325
8203
  msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
8204
  msgstr ""
8205
 
8206
- #: languages/vue.php:2328
8207
  msgid "Publishers Report shows your top performing pages, audience demographics, and more."
8208
  msgstr ""
8209
 
8210
- #: languages/vue.php:2331
8211
  msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
8212
  msgstr ""
8213
 
8214
- #: languages/vue.php:2334
8215
  msgid "Upgrade to Pro »"
8216
  msgstr ""
8217
 
8218
- #: languages/vue.php:2337
8219
  msgid "Pro Tip:"
8220
  msgstr ""
8221
 
8222
- #: languages/vue.php:2340
8223
  msgid "Show"
8224
  msgstr ""
8225
 
8226
- #: languages/vue.php:2343
8227
  msgid "Hide dashboard widget"
8228
  msgstr ""
8229
 
8230
- #: languages/vue.php:2346
8231
  msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
8232
  msgstr ""
8233
 
8234
- #: languages/vue.php:2349
8235
  msgid "Yes, hide it!"
8236
  msgstr ""
8237
 
8238
- #: languages/vue.php:2352
8239
  msgid "No, cancel!"
8240
  msgstr ""
8241
 
8242
- #: languages/vue.php:2355
8243
  msgid "MonsterInsights Widget Hidden"
8244
  msgstr ""
8245
 
8246
- #: languages/vue.php:2358
8247
  msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
8248
  msgstr ""
8249
 
8250
- #: languages/vue.php:2366
8251
  msgid "Usage Tracking"
8252
  msgstr ""
8253
 
8254
- #: languages/vue.php:2369
8255
  msgid "Allow Usage Tracking"
8256
  msgstr ""
8257
 
8258
- #: languages/vue.php:2373
8259
  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."
8260
  msgstr ""
8261
 
8262
  #. Translators: Add links to documentation.
8263
- #: languages/vue.php:2378
8264
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
8265
  msgstr ""
8266
 
8267
  #. Translators: Make text green and add smiley face.
8268
- #: languages/vue.php:2382
8269
  msgid "You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s"
8270
  msgstr ""
8271
 
8272
  #. Translators: Add link to upgrade.
8273
- #: languages/vue.php:2386
8274
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
8275
  msgstr ""
8276
 
8277
  #. Translators: Make text green.
8278
- #: languages/vue.php:2390
8279
  msgid "As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
8280
  msgstr ""
8281
 
8282
- #: languages/vue.php:2393
8283
  msgid "Unlock PRO Features Now"
8284
  msgstr ""
8285
 
8286
- #: languages/vue.php:2396
8287
  msgid "Paste your license key here"
8288
  msgstr ""
8289
 
8290
- #: languages/vue.php:2399
8291
  msgid "Verify"
8292
  msgstr ""
8293
 
8294
  #. Translators: Add link to retrieve license from account area.
8295
- #: languages/vue.php:2403
8296
  msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s."
8297
  msgstr ""
8298
 
8299
- #: languages/vue.php:2406
8300
  msgid "There was an error unlocking MonsterInsights PRO please try again or install manually."
8301
  msgstr ""
8302
 
8303
  #. Translators: Error status and error text.
8304
- #: languages/vue.php:2410
8305
  msgid "Can't load errors. Error: %1$s, %2$s"
8306
  msgstr ""
8307
 
8308
- #: languages/vue.php:2413
8309
  msgid "No options available"
8310
  msgstr ""
8311
 
8312
- #: languages/vue.php:2416
8313
  msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
8314
  msgstr ""
8315
 
8316
- #: languages/vue.php:2419
8317
  msgid "Automatically migrate all of your SEO settings with just 1 click!"
8318
  msgstr ""
8319
 
8320
- #: languages/vue.php:2422
8321
  msgid "1,938"
8322
  msgstr ""
8323
 
8324
- #: languages/vue.php:2425
8325
  msgid "2+ Million Active Installs"
8326
  msgstr ""
8327
 
8328
- #: languages/vue.php:2428
8329
  msgid "AIOSEO is the DIY Solution for Managing your SEO"
8330
  msgstr ""
8331
 
8332
- #: languages/vue.php:2431
8333
  msgid "Set up the proper SEO foundations in less than 10 minutes."
8334
  msgstr ""
8335
 
8336
- #: languages/vue.php:2434
8337
  msgid "SEO Audit Checklist"
8338
  msgstr ""
8339
 
8340
- #: languages/vue.php:2437
8341
  msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
8342
  msgstr ""
8343
 
8344
- #: languages/vue.php:2440
8345
  msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
8346
  msgstr ""
8347
 
8348
- #: languages/vue.php:2443
8349
  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."
8350
  msgstr ""
8351
 
8352
- #: languages/vue.php:2446
8353
  msgid "Get AIOSEO for WordPress"
8354
  msgstr ""
8355
 
8356
- #: languages/vue.php:2449
8357
  msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
8358
  msgstr ""
8359
 
8360
- #: languages/vue.php:2452
8361
  msgid "Try it out today, for free."
8362
  msgstr ""
8363
 
8364
- #: languages/vue.php:2455
8365
  msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
8366
  msgstr ""
8367
 
8368
- #: languages/vue.php:2458
8369
  msgid "Activate and Install the Plugin with just one click!"
8370
  msgstr ""
8371
 
8372
- #: languages/vue.php:2461
8373
  msgid "Installing AIOSEO..."
8374
  msgstr ""
8375
 
8376
- #: languages/vue.php:2464
8377
  msgid "Congrats! All-in-One SEO Installed."
8378
  msgstr ""
8379
 
8380
- #: languages/vue.php:2467
8381
  msgid "Switch to AIOSEO"
8382
  msgstr ""
8383
 
8384
- #: languages/vue.php:2470
8385
  msgid "Installation Failed. Please refresh and try again."
8386
  msgstr ""
8387
 
8388
- #: languages/vue.php:2473
8389
  msgid "Activating AIOSEO..."
8390
  msgstr ""
8391
 
8392
- #: languages/vue.php:2476
8393
  msgid "Activate AIOSEO"
8394
  msgstr ""
8395
 
8396
- #: languages/vue.php:2479
8397
  msgid "Activation Failed. Please refresh and try again."
8398
  msgstr ""
8399
 
8400
  #. Translators: The name of the field that is throwing a validation error.
8401
- #: languages/vue.php:2483
8402
  msgid "%s can't be empty."
8403
  msgstr ""
8404
 
8405
- #: languages/vue.php:2486
8406
  msgid "Duplicate values are not allowed."
8407
  msgstr ""
8408
 
8409
- #: languages/vue.php:2489
8410
  msgid "You can add maximum 5 items."
8411
  msgstr ""
8412
 
8413
- #: languages/vue.php:2492
8414
  msgid "At least 0 item required."
8415
  msgstr ""
8416
 
8417
- #: languages/vue.php:2495
8418
  msgid "Add Another Link Path"
8419
  msgstr ""
8420
 
8421
- #: languages/vue.php:2498
8422
  msgid "Remove row"
8423
  msgstr ""
8424
 
8425
- #: languages/vue.php:2501
8426
  msgid "New"
8427
  msgstr ""
8428
 
8429
- #: languages/vue.php:2504
8430
  msgid "Returning"
8431
  msgstr ""
8432
 
8433
- #: languages/vue.php:2507
8434
  msgid "Top 10 Countries"
8435
  msgstr ""
8436
 
8437
- #: languages/vue.php:2510
8438
  msgid "View Countries Report"
8439
  msgstr ""
8440
 
8441
- #: languages/vue.php:2513
8442
  msgid "Top 10 Referrals"
8443
  msgstr ""
8444
 
8445
- #: languages/vue.php:2516
8446
  msgid "View All Referral Sources"
8447
  msgstr ""
8448
 
8449
- #: languages/vue.php:2519
8450
  msgid "View Full Posts/Pages Report"
8451
  msgstr ""
8452
 
8453
- #: languages/vue.php:2522
8454
  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."
8455
  msgstr ""
8456
 
8457
- #: languages/vue.php:2525
8458
  msgid "This list shows the top countries your website visitors are from."
8459
  msgstr ""
8460
 
8461
- #: languages/vue.php:2528
8462
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8463
  msgstr ""
8464
 
8465
- #: languages/vue.php:2531
8466
  msgid "Export PDF Overview Report"
8467
  msgstr ""
8468
 
8469
- #: languages/vue.php:2534
8470
  msgid "Reset to default"
8471
  msgstr ""
8472
 
8473
- #: languages/vue.php:2537
8474
  msgid "The value entered does not match the required format"
8475
  msgstr ""
8476
 
8477
- #: languages/vue.php:2540
8478
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
8479
  msgstr ""
8480
 
8481
- #: languages/vue.php:2543
8482
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
8483
  msgstr ""
8484
 
8485
- #: languages/vue.php:2546
8486
  msgid "Recommended Settings"
8487
  msgstr ""
8488
 
8489
- #: languages/vue.php:2549
8490
  msgid "MonsterInsights recommends the following settings based on your configuration."
8491
  msgstr ""
8492
 
8493
- #: languages/vue.php:2552
8494
  msgid "Events Tracking"
8495
  msgstr ""
8496
 
8497
- #: languages/vue.php:2555
8498
  msgid "Must have for all click tracking on site."
8499
  msgstr ""
8500
 
8501
- #: languages/vue.php:2558
8502
  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."
8503
  msgstr ""
8504
 
8505
- #: languages/vue.php:2561
8506
  msgid "Enhanced Link Attribution"
8507
  msgstr ""
8508
 
8509
- #: languages/vue.php:2564
8510
  msgid "Improves the accuracy of your In-Page Analytics."
8511
  msgstr ""
8512
 
8513
- #: languages/vue.php:2567
8514
  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."
8515
  msgstr ""
8516
 
8517
- #: languages/vue.php:2570
8518
  msgid "Install Updates Automatically"
8519
  msgstr ""
8520
 
8521
- #: languages/vue.php:2573
8522
  msgid "Get the latest features, bug fixes, and security updates as they are released."
8523
  msgstr ""
8524
 
8525
- #: languages/vue.php:2576
8526
  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."
8527
  msgstr ""
8528
 
8529
- #: languages/vue.php:2579
8530
  msgid "File Download Tracking"
8531
  msgstr ""
8532
 
8533
- #: languages/vue.php:2582
8534
  msgid "Helps you see file downloads data."
8535
  msgstr ""
8536
 
8537
- #: languages/vue.php:2585
8538
  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."
8539
  msgstr ""
8540
 
8541
- #: languages/vue.php:2588
8542
  msgid "Helps you increase affiliate revenue."
8543
  msgstr ""
8544
 
8545
- #: languages/vue.php:2591
8546
  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."
8547
  msgstr ""
8548
 
8549
- #: languages/vue.php:2594
8550
  msgid "Affiliate Link Tracking"
8551
  msgstr ""
8552
 
8553
- #: languages/vue.php:2597
8554
  msgid "Who Can See Reports"
8555
  msgstr ""
8556
 
8557
- #: languages/vue.php:2600
8558
  msgid "These user roles will be able to access MonsterInsights' reports in the WordPress admin area."
8559
  msgstr ""
8560
 
8561
- #: languages/vue.php:2603
8562
  msgid "Save and continue"
8563
  msgstr ""
8564
 
8565
- #: languages/vue.php:2606
8566
  msgid "Events Tracking is enabled the moment you set up MonsterInsights"
8567
  msgstr ""
8568
 
8569
- #: languages/vue.php:2609
8570
  msgid "Enhanced Link Attribution is enabled the moment you set up MonsterInsights"
8571
  msgstr ""
8572
 
8573
- #: languages/vue.php:2612
8574
  msgid "+ Add Role"
8575
  msgstr ""
8576
 
8577
- #: languages/vue.php:2615
8578
  msgid "Connect MonsterInsights to Your Website"
8579
  msgstr ""
8580
 
8581
- #: languages/vue.php:2618
8582
  msgid "MonsterInsights connects Google Analytics to WordPress and shows you stats that matter."
8583
  msgstr ""
8584
 
8585
- #: languages/vue.php:2621
8586
  msgid "Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
8587
  msgstr ""
8588
 
8589
- #: languages/vue.php:2624
8590
  msgid "Save and Continue"
8591
  msgstr ""
8592
 
8593
- #: languages/vue.php:2627
8594
  msgid "UA code can't be empty"
8595
  msgstr ""
8596
 
8597
- #: languages/vue.php:2630
8598
  msgid "Saving UA code..."
8599
  msgstr ""
8600
 
8601
- #: languages/vue.php:2633
8602
  msgid "Allow usage tracking"
8603
  msgstr ""
8604
 
8605
- #: languages/vue.php:2636
8606
  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."
8607
  msgstr ""
8608
 
8609
- #: languages/vue.php:2639
8610
  msgid "Install All-in-One SEO"
8611
  msgstr ""
8612
 
8613
- #: languages/vue.php:2642
8614
  msgid "Improve Your Website Search Rankings With All-In-One SEO"
8615
  msgstr ""
8616
 
8617
- #: languages/vue.php:2645
8618
  msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8619
  msgstr ""
8620
 
8621
- #: languages/vue.php:2648
8622
  msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8623
  msgstr ""
8624
 
8625
- #: languages/vue.php:2651
8626
  msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8627
  msgstr ""
8628
 
8629
- #: languages/vue.php:2654
8630
  msgid "Local SEO"
8631
  msgstr ""
8632
 
8633
- #: languages/vue.php:2657
8634
  msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8635
  msgstr ""
8636
 
8637
- #: languages/vue.php:2660
8638
  msgid "WooCommerce SEO"
8639
  msgstr ""
8640
 
8641
- #: languages/vue.php:2663
8642
  msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8643
  msgstr ""
8644
 
8645
- #: languages/vue.php:2666
8646
  msgid "SEO Custom User Roles"
8647
  msgstr ""
8648
 
8649
- #: languages/vue.php:2669
8650
  msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8651
  msgstr ""
8652
 
8653
- #: languages/vue.php:2672
8654
  msgid "Google News Sitemap"
8655
  msgstr ""
8656
 
8657
- #: languages/vue.php:2675
8658
  msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8659
  msgstr ""
8660
 
8661
- #: languages/vue.php:2678
8662
  msgid "Smart XML Sitemaps"
8663
  msgstr ""
8664
 
8665
- #: languages/vue.php:2681
8666
  msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8667
  msgstr ""
8668
 
8669
- #: languages/vue.php:2684
8670
  msgid "Social Media Integration"
8671
  msgstr ""
8672
 
8673
- #: languages/vue.php:2687
8674
  msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8675
  msgstr ""
8676
 
8677
- #: languages/vue.php:2690
8678
  msgid "TruSEO On-Page Analysis"
8679
  msgstr ""
8680
 
8681
- #: languages/vue.php:2693
8682
  msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8683
  msgstr ""
8684
 
8685
- #: languages/vue.php:2696
8686
  msgid "& Many More!"
8687
  msgstr ""
8688
 
8689
- #: languages/vue.php:2699
8690
  msgid "Installing. Please wait.."
8691
  msgstr ""
8692
 
8693
- #: languages/vue.php:2702
8694
  msgid "Install All-in-One-SEO"
8695
  msgstr ""
8696
 
8697
- #: languages/vue.php:2705
8698
  msgid "Welcome to MonsterInsights!"
8699
  msgstr ""
8700
 
8701
- #: languages/vue.php:2708
8702
  msgid "Let's get you set up."
8703
  msgstr ""
8704
 
8705
- #: languages/vue.php:2711
8706
  msgid "Which category best describes your website?"
8707
  msgstr ""
8708
 
8709
- #: languages/vue.php:2714
8710
  msgid "We will recommend the optimal settings for MonsterInsights based on your choice."
8711
  msgstr ""
8712
 
8713
- #: languages/vue.php:2717
8714
  msgid "Business Website"
8715
  msgstr ""
8716
 
8717
  #. Translators: Make text bold.
8718
- #: languages/vue.php:2721
8719
  msgid "Publisher %1$s(Blog)%2$s"
8720
  msgstr ""
8721
 
8722
- #: languages/vue.php:2724
8723
  msgid "Ecommerce"
8724
  msgstr ""
8725
 
8726
- #: languages/vue.php:2727
8727
  msgid "Caching"
8728
  msgstr ""
8729
 
8730
- #: languages/vue.php:2730
8731
  msgid "Enable Data Caching"
8732
  msgstr ""
8733
 
8734
- #: languages/vue.php:2733
8735
  msgid "Refresh Cache Every"
8736
  msgstr ""
8737
 
8738
- #: languages/vue.php:2736
8739
  msgid "Choose how often to refresh the cache."
8740
  msgstr ""
8741
 
8742
- #: languages/vue.php:2739
8743
  msgid "Enable Ajaxify"
8744
  msgstr ""
8745
 
8746
- #: languages/vue.php:2742
8747
  msgid "Ajaxify Widget"
8748
  msgstr ""
8749
 
8750
- #: languages/vue.php:2745
8751
  msgid "Use to bypass page caching."
8752
  msgstr ""
8753
 
8754
- #: languages/vue.php:2748
8755
  msgid "Empty Cache"
8756
  msgstr ""
8757
 
8758
- #: languages/vue.php:2751
8759
  msgid "Click to manually wipe the cache right now."
8760
  msgstr ""
8761
 
8762
- #: languages/vue.php:2754
8763
  msgid "Popular posts cache emptied"
8764
  msgstr ""
8765
 
8766
- #: languages/vue.php:2757
8767
  msgid "Error emptying the popular posts cache. Please try again."
8768
  msgstr ""
8769
 
8770
- #: languages/vue.php:2760
8771
  msgid "Choose Theme"
8772
  msgstr ""
8773
 
8774
- #: languages/vue.php:2763
8775
  msgid "Widget Styling"
8776
  msgstr ""
8777
 
8778
- #: languages/vue.php:2766
8779
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
8780
  msgstr ""
8781
 
8782
- #: languages/vue.php:2769
8783
  msgid "Sort By"
8784
  msgstr ""
8785
 
8786
- #: languages/vue.php:2772
8787
  msgid "Choose how you'd like the widget to determine your popular posts."
8788
  msgstr ""
8789
 
8790
- #: languages/vue.php:2775
8791
  msgid "Display Title"
8792
  msgstr ""
8793
 
8794
- #: languages/vue.php:2781
8795
  msgid "Title your widget and set its display preferences."
8796
  msgstr ""
8797
 
8798
- #: languages/vue.php:2784
8799
  msgid "Include in Post Types"
8800
  msgstr ""
8801
 
8802
- #: languages/vue.php:2787
8803
  msgid "Exclude from specific posts"
8804
  msgstr ""
8805
 
8806
  #. Translators: Placeholders make the text bold.
8807
- #: languages/vue.php:2791
8808
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
8809
  msgstr ""
8810
 
8811
  #. Translators: Placeholders make the text bold.
8812
- #: languages/vue.php:2795
8813
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
8814
  msgstr ""
8815
 
8816
- #: languages/vue.php:2798
8817
  msgid "Loading Themes"
8818
  msgstr ""
8819
 
8820
  #. Translators: placeholders make text small.
8821
- #: languages/vue.php:2802
8822
  msgid "Default Styles %1$s- As seen above.%2$s"
8823
  msgstr ""
8824
 
8825
  #. Translators: placeholders make text small.
8826
- #: languages/vue.php:2806
8827
  msgid "No Styles %1$s- Use your own CSS.%2$s"
8828
  msgstr ""
8829
 
8830
  #. Translators: placeholders make text small.
8831
- #: languages/vue.php:2810
8832
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
8833
  msgstr ""
8834
 
8835
  #. Translators: placeholders make text small.
8836
- #: languages/vue.php:2814
8837
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
8838
  msgstr ""
8839
 
8840
  #. Translators: placeholders make text small.
8841
- #: languages/vue.php:2818
8842
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
8843
  msgstr ""
8844
 
8845
- #: languages/vue.php:2821
8846
  msgid "Placement"
8847
  msgstr ""
8848
 
8849
- #: languages/vue.php:2824
8850
  msgid "Choose how you'd like to place the widget."
8851
  msgstr ""
8852
 
8853
- #: languages/vue.php:2827
8854
  msgid "Insert After"
8855
  msgstr ""
8856
 
8857
- #: languages/vue.php:2830
8858
  msgid "Choose where in the post body the widget will be placed."
8859
  msgstr ""
8860
 
8861
- #: languages/vue.php:2834
8862
  msgid "Customize Design"
8863
  msgstr ""
8864
 
8865
- #: languages/vue.php:2837
8866
  msgid "words"
8867
  msgstr ""
8868
 
8869
- #: languages/vue.php:2840
8870
  msgid "Please select at least one post to display."
8871
  msgstr ""
8872
 
8873
  #. Translators: placeholders make text small.
8874
- #: languages/vue.php:2844
8875
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
8876
  msgstr ""
8877
 
8878
  #. Translators: placeholders make text small.
8879
- #: languages/vue.php:2848
8880
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
8881
  msgstr ""
8882
 
8883
- #: languages/vue.php:2851
8884
  msgid "Facebook Instant Articles"
8885
  msgstr ""
8886
 
8887
- #: languages/vue.php:2854
8888
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
8889
  msgstr ""
8890
 
8891
- #: languages/vue.php:2857
8892
  msgid "Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
8893
  msgstr ""
8894
 
8895
- #: languages/vue.php:2860
8896
  msgid "Ads Tracking"
8897
  msgstr ""
8898
 
8899
- #: languages/vue.php:2863
8900
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
8901
  msgstr ""
8902
 
8903
- #: languages/vue.php:2866
8904
  msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8905
  msgstr ""
8906
 
8907
- #: languages/vue.php:2869
8908
  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."
8909
  msgstr ""
8910
 
8911
- #: languages/vue.php:2872
8912
  msgid "Jack Brown"
8913
  msgstr ""
8914
 
8915
- #: languages/vue.php:2875
8916
  msgid "PJB Internet Marketing"
8917
  msgstr ""
8918
 
8919
- #: languages/vue.php:2878
8920
  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."
8921
  msgstr ""
8922
 
8923
- #: languages/vue.php:2881
8924
  msgid "Joel Steinmann"
8925
  msgstr ""
8926
 
8927
- #: languages/vue.php:2884
8928
  msgid "CEO, Solergo"
8929
  msgstr ""
8930
 
8931
- #: languages/vue.php:2887
8932
  msgid "Recommended Addons"
8933
  msgstr ""
8934
 
8935
- #: languages/vue.php:2890
8936
  msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
8937
  msgstr ""
8938
 
8939
- #: languages/vue.php:2893
8940
  msgid "Other Addons"
8941
  msgstr ""
8942
 
8943
- #: languages/vue.php:2896
8944
  msgid "View all MonsterInsights addons"
8945
  msgstr ""
8946
 
8947
- #: languages/vue.php:2899
8948
  msgid "Scroll Tracking"
8949
  msgstr ""
8950
 
8951
- #: languages/vue.php:2902
8952
  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."
8953
  msgstr ""
8954
 
8955
- #: languages/vue.php:2905
8956
  msgid ""
8957
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
8958
  " and other privacy regulations."
8959
  msgstr ""
8960
 
8961
- #: languages/vue.php:2909
8962
  msgid "EU Compliance"
8963
  msgstr ""
8964
 
8965
- #: languages/vue.php:2912
8966
  msgid "Compatibility mode"
8967
  msgstr ""
8968
 
8969
- #: languages/vue.php:2915
8970
  msgid "Enable _gtagTracker Compatibility"
8971
  msgstr ""
8972
 
8973
  #. Translators: Placeholder gets replaced with default GA js function.
8974
- #: languages/vue.php:2919
8975
  msgid "This enables MonsterInsights to work with plugins that use %1$s and don't support %2$s"
8976
  msgstr ""
8977
 
8978
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
8979
- #: languages/vue.php:2923
8980
  msgid "%1$sPage %3$s%2$s of %4$s"
8981
  msgstr ""
8982
 
8983
- #: languages/vue.php:2926
8984
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
8985
  msgid "Theme Preview"
8986
  msgstr ""
8987
 
8988
- #: languages/vue.php:2929
8989
  msgid "Wide"
8990
  msgstr ""
8991
 
8992
- #: languages/vue.php:2932
8993
  msgid "Narrow"
8994
  msgstr ""
8995
 
8996
- #: languages/vue.php:2935
8997
  msgid "Title"
8998
  msgstr ""
8999
 
9000
- #: languages/vue.php:2938
9001
  msgid "Color"
9002
  msgstr ""
9003
 
9004
- #: languages/vue.php:2941
9005
  msgid "Size"
9006
  msgstr ""
9007
 
9008
- #: languages/vue.php:2944
9009
  msgid "Border"
9010
  msgstr ""
9011
 
9012
- #: languages/vue.php:2947
9013
  msgid "Author/Date"
9014
  msgstr ""
9015
 
9016
- #: languages/vue.php:2950
9017
  msgid "Label"
9018
  msgstr ""
9019
 
9020
- #: languages/vue.php:2953
9021
  msgid "Background"
9022
  msgstr ""
9023
 
9024
- #: languages/vue.php:2965
9025
  msgid "Choose which content you would like displayed in the widget."
9026
  msgstr ""
9027
 
9028
- #: languages/vue.php:2977
9029
  msgid "Comments"
9030
  msgstr ""
9031
 
9032
- #: languages/vue.php:2983
9033
  msgid "Choose how many posts you’d like displayed in the widget."
9034
  msgstr ""
9035
 
9036
- #: languages/vue.php:2986
9037
  msgid "Popular Posts data can be fetched correctly"
9038
  msgstr ""
9039
 
9040
- #: languages/vue.php:2989
9041
  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."
9042
  msgstr ""
9043
 
9044
- #: languages/vue.php:2992
9045
  msgid "Close"
9046
  msgstr ""
9047
 
9048
- #: languages/vue.php:2995
9049
  msgid "Add Top 5 Posts from Google Analytics"
9050
  msgstr ""
9051
 
9052
- #: languages/vue.php:2998
9053
  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."
9054
  msgstr ""
9055
 
9056
- #: languages/vue.php:3001
9057
  msgid "Test Automated Posts"
9058
  msgstr ""
9059
 
9060
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
9061
- #: languages/vue.php:3005
9062
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
9063
  msgstr ""
9064
 
9065
- #: languages/vue.php:3008
9066
  msgid "Automated + Curated"
9067
  msgstr ""
9068
 
9069
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9070
- #: languages/vue.php:3012
9071
  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."
9072
  msgstr ""
9073
 
9074
  #. Translators: Placeholder gets replaced with current license version.
9075
- #: languages/vue.php:3016
9076
  msgid "Pro version is required."
9077
  msgstr ""
9078
 
9079
- #: languages/vue.php:3019
9080
  msgid "Verifying Popular Posts data"
9081
  msgstr ""
9082
 
9083
- #: languages/vue.php:3022
9084
  msgid "Select posts/search"
9085
  msgstr ""
9086
 
9087
- #: languages/vue.php:3025
9088
  msgid "Oops! No posts found."
9089
  msgstr ""
9090
 
9091
- #: languages/vue.php:3028
9092
  msgid "Search by post title"
9093
  msgstr ""
9094
 
9095
- #: languages/vue.php:3031
9096
  msgid "Can't load posts."
9097
  msgstr ""
9098
 
9099
- #: languages/vue.php:3034
9100
  msgid "SharedCount API Key"
9101
  msgstr ""
9102
 
9103
- #: languages/vue.php:3037
9104
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
9105
  msgstr ""
9106
 
9107
- #: languages/vue.php:3040
9108
  msgid "Start Indexing"
9109
  msgstr ""
9110
 
9111
- #: languages/vue.php:3043
9112
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
9113
  msgstr ""
9114
 
9115
- #: languages/vue.php:3046
9116
  msgid "Indexing completed, counts will update automatically every day."
9117
  msgstr ""
9118
 
9119
- #: languages/vue.php:3049
9120
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
9121
  msgstr ""
9122
 
9123
- #: languages/vue.php:3052
9124
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
9125
  msgstr ""
9126
 
9127
- #: languages/vue.php:3055
9128
  msgid "Icon"
9129
  msgstr ""
9130
 
9131
  #. Translators: Minimum and maximum number that can be used.
9132
- #: languages/vue.php:3059
9133
  msgid "Please enter a value between %1$s and %2$s"
9134
  msgstr ""
9135
 
9136
  #. Translators: The minimum set value.
9137
- #: languages/vue.php:3063
9138
  msgid "Please enter a value higher than %s"
9139
  msgstr ""
9140
 
9141
  #. Translators: The maximum set value.
9142
- #: languages/vue.php:3067
9143
  msgid "Please enter a value lower than %s"
9144
  msgstr ""
9145
 
9146
- #: languages/vue.php:3070
9147
  msgid "Please enter a number"
9148
  msgstr ""
9149
 
9150
- #: languages/vue.php:3073
9151
  msgid "Value has to be a round number"
9152
  msgstr ""
9153
 
9154
- #: languages/vue.php:3076
9155
  msgid "Export PDF Report"
9156
  msgstr ""
9157
 
9158
- #: languages/vue.php:3079
9159
  msgid "You can export PDF reports only in the PRO version."
9160
  msgstr ""
9161
 
9162
- #: languages/vue.php:3082
9163
  msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
9164
  msgstr ""
9165
 
9166
- #: languages/vue.php:3085
9167
  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!"
9168
  msgstr ""
9169
 
9170
- #: languages/vue.php:3088
9171
  msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
9172
  msgstr ""
9173
 
9174
  #. Translators: Makes text bold.
9175
- #: languages/vue.php:3092
9176
  msgid "Use coupon code %1$sLITEUPGRADE%2$s"
9177
  msgstr ""
9178
 
9179
  #. Translators: Make text green.
9180
- #: languages/vue.php:3096
9181
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9182
  msgstr ""
9183
 
9184
  #. Translators: Placeholder adds a line break.
9185
- #: languages/vue.php:3100
9186
  msgid "You can customize your %sdate range only in the PRO version."
9187
  msgstr ""
9188
 
9189
- #: languages/vue.php:3103
9190
  msgid "Help Us Improve"
9191
  msgstr ""
9192
 
9193
- #: languages/vue.php:3106
9194
  msgid "Help us better understand our users and their website needs."
9195
  msgstr ""
9196
 
9197
  #. Translators: Adds a link to the documentation.
9198
- #: languages/vue.php:3110
9199
  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"
9200
  msgstr ""
9201
 
9202
- #: languages/vue.php:3113
9203
  msgid "Website profile"
9204
  msgstr ""
9205
 
9206
- #: languages/vue.php:3116
9207
  msgid "Active profile"
9208
  msgstr ""
9209
 
9210
- #: languages/vue.php:3119
9211
  msgid "Skip and Keep Connection"
9212
  msgstr ""
9213
 
9214
- #: languages/vue.php:3122
9215
  msgid "This feature requires MonsterInsights Pro"
9216
  msgstr ""
9217
 
9218
- #: languages/vue.php:3125
9219
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
9220
  msgstr ""
9221
 
9222
- #: languages/vue.php:3128
9223
  msgid "Upgrade to Pro and Unlock Popular Products"
9224
  msgstr ""
9225
 
9226
- #: languages/vue.php:3131
9227
  msgid "View all Pro features"
9228
  msgstr ""
9229
 
9230
- #: languages/vue.php:3134
9231
  msgid "Days"
9232
  msgstr ""
9233
 
9234
  #. Translators: placeholders make text small.
9235
- #: languages/vue.php:3138
9236
  msgid "7 days"
9237
  msgstr ""
9238
 
9239
- #: languages/vue.php:3141
9240
  msgid "30 days"
9241
  msgstr ""
9242
 
9243
- #: languages/vue.php:3144
9244
  msgid "Custom"
9245
  msgstr ""
9246
 
9247
- #: languages/vue.php:3147
9248
  msgid "Only Show Posts from These Categories"
9249
  msgstr ""
9250
 
9251
- #: languages/vue.php:3150
9252
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
9253
  msgstr ""
9254
 
9255
- #: languages/vue.php:3153
9256
  msgid "Multiple Entries"
9257
  msgstr ""
9258
 
9259
- #: languages/vue.php:3156
9260
  msgid "Total Number of Widgets to Show"
9261
  msgstr ""
9262
 
9263
- #: languages/vue.php:3159
9264
  msgid "Choose how many widgets will be placed in a single Post."
9265
  msgstr ""
9266
 
9267
- #: languages/vue.php:3162
9268
  msgid "Minimum Distance Between Widgets"
9269
  msgstr ""
9270
 
9271
- #: languages/vue.php:3165
9272
  msgid "Choose the distance between widgets."
9273
  msgstr ""
9274
 
9275
- #: languages/vue.php:3168
9276
  msgid "Minimum Word Count to Display Multiple Widgets"
9277
  msgstr ""
9278
 
9279
- #: languages/vue.php:3171
9280
  msgid "Choose the minimum word count for a Post to have multiple entries."
9281
  msgstr ""
9282
 
9283
- #: languages/vue.php:3174
9284
  msgid "Pro version is required"
9285
  msgstr ""
9286
 
9287
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9288
- #: languages/vue.php:3178
9289
  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)."
9290
  msgstr ""
9291
 
9292
- #: languages/vue.php:3181
9293
  msgid "Unlock with %s"
9294
  msgstr ""
9295
 
9296
- #: languages/vue.php:3184
9297
  msgid "Automatic Placement"
9298
  msgstr ""
9299
 
9300
- #: languages/vue.php:3187
9301
  msgid "Display using Gutenberg Blocks"
9302
  msgstr ""
9303
 
9304
- #: languages/vue.php:3190
9305
  msgid "Embed Options"
9306
  msgstr ""
9307
 
9308
- #: languages/vue.php:3193
9309
  msgid "All Embed Options can be used in conjunction with one another."
9310
  msgstr ""
9311
 
9312
- #: languages/vue.php:3196
9313
  msgid "Using the Gutenberg Block"
9314
  msgstr ""
9315
 
9316
- #: languages/vue.php:3199
9317
  msgid "Using Automatic Embed"
9318
  msgstr ""
9319
 
9320
- #: languages/vue.php:3202
9321
  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."
9322
  msgstr ""
9323
 
9324
- #: languages/vue.php:3205
9325
  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."
9326
  msgstr ""
9327
 
9328
- #: languages/vue.php:3208
9329
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9330
  msgstr ""
9331
 
9332
- #: languages/vue.php:3211
9333
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9334
  msgstr ""
9335
 
9336
- #: languages/vue.php:3214
9337
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
9338
  msgstr ""
9339
 
9340
- #: languages/vue.php:3217
9341
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9342
  msgstr ""
9343
 
9344
- #: languages/vue.php:3220
9345
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9346
  msgstr ""
9347
 
9348
- #: languages/vue.php:3223
9349
  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."
9350
  msgstr ""
9351
 
9352
- #: languages/vue.php:3226
9353
  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."
9354
  msgstr ""
9355
 
9356
- #: languages/vue.php:3229
9357
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9358
  msgstr ""
9359
 
9360
- #: languages/vue.php:3232
9361
  msgid "Display using a Shortcode"
9362
  msgstr ""
9363
 
9364
- #: languages/vue.php:3235
9365
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9366
  msgstr ""
9367
 
9368
- #: languages/vue.php:3238
9369
  msgid "Copy Shortcode"
9370
  msgstr ""
9371
 
9372
- #: languages/vue.php:3241
9373
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9374
  msgstr ""
9375
 
9376
- #: languages/vue.php:3244
9377
  msgid "Enable Automatic Placement"
9378
  msgstr ""
9379
 
9380
- #: languages/vue.php:3247
9381
  msgid "Display in a Sidebar"
9382
  msgstr ""
9383
 
9384
- #: languages/vue.php:3250
9385
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9386
  msgstr ""
9387
 
9388
- #: languages/vue.php:3253
9389
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9390
  msgstr ""
9391
 
9392
- #: languages/vue.php:3256
9393
  msgid "Display Method"
9394
  msgstr ""
9395
 
9396
- #: languages/vue.php:3259
9397
  msgid "There are two ways to manual include the widget in your posts."
9398
  msgstr ""
9399
 
9400
- #: languages/vue.php:3262
9401
  msgid "Using the Shortcode"
9402
  msgstr ""
9403
 
9404
- #: languages/vue.php:3265
9405
  msgid "Learn how to insert the widget using Gutenberg blocks."
9406
  msgstr ""
9407
 
9408
- #: languages/vue.php:3268
9409
  msgid "Learn how to insert the widget using out Shortcode."
9410
  msgstr ""
9411
 
9412
- #: languages/vue.php:3271
9413
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9414
  msgstr ""
9415
 
9416
- #: languages/vue.php:3274
9417
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”."
9418
  msgstr ""
9419
 
9420
- #: languages/vue.php:3277
9421
  msgid "Shortcode"
9422
  msgstr ""
9423
 
9424
- #: languages/vue.php:3280
9425
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9426
  msgstr ""
9427
 
9428
- #: languages/vue.php:3283
9429
  msgid "Facebook Instant Articleasdasdasds"
9430
  msgstr ""
9431
 
9432
- #: languages/vue.php:3286
9433
  msgid "Media"
9434
  msgstr ""
9435
 
9436
- #: languages/vue.php:3289
9437
  msgid "Track how your users interact with videos on your website. Upgrade to MonsterInsights Pro."
9438
  msgstr ""
9439
 
9440
- #: languages/vue.php:3292
9441
  msgid "Improve Your Conversion Rate With Insights Into Which Content Works Best."
9442
  msgstr ""
9443
 
9444
- #: languages/vue.php:3295
9445
  msgid "Top Affilliate Links"
9446
  msgstr ""
9447
 
9448
- #: languages/vue.php:3298
9449
  msgid "Scroll Depth"
9450
  msgstr ""
9451
 
9452
- #: languages/vue.php:3301
9453
  msgid "Increase Sales and Make More Money With Enhanced eCommerce Insights."
9454
  msgstr ""
9455
 
9456
- #: languages/vue.php:3304
9457
  msgid "10+ eCommerce Integrations"
9458
  msgstr ""
9459
 
9460
- #: languages/vue.php:3307
9461
  msgid "Average Order Value"
9462
  msgstr ""
9463
 
9464
- #: languages/vue.php:3310
9465
  msgid "Total Revenue"
9466
  msgstr ""
9467
 
9468
- #: languages/vue.php:3313
9469
  msgid "Number of Transactions"
9470
  msgstr ""
9471
 
9472
- #: languages/vue.php:3316
9473
  msgid "Increase Engagement and Unlock New Insights About Your Site."
9474
  msgstr ""
9475
 
9476
- #: languages/vue.php:3319
9477
  msgid "User ID Tracking"
9478
  msgstr ""
9479
 
9480
- #: languages/vue.php:3322
9481
  msgid "Post Types"
9482
  msgstr ""
9483
 
9484
- #: languages/vue.php:3325
9485
  msgid "Tag Tracking"
9486
  msgstr ""
9487
 
9488
- #: languages/vue.php:3328
9489
  msgid "Categories"
9490
  msgstr ""
9491
 
9492
- #: languages/vue.php:3331
9493
  msgid "SEO Scores"
9494
  msgstr ""
9495
 
9496
- #: languages/vue.php:3334
9497
  msgid "Publish Times"
9498
  msgstr ""
9499
 
9500
- #: languages/vue.php:3337
9501
  msgid "Focus Keywords"
9502
  msgstr ""
9503
 
9504
- #: languages/vue.php:3340
9505
  msgid "Track Every Type of Web Form and Gain Visibility Into Your Customer Journey."
9506
  msgstr ""
9507
 
9508
- #: languages/vue.php:3343
9509
  msgid "Conversion Counts"
9510
  msgstr ""
9511
 
9512
- #: languages/vue.php:3346
9513
  msgid "Impression Counts"
9514
  msgstr ""
9515
 
9516
- #: languages/vue.php:3349
9517
  msgid "Conversion Rates"
9518
  msgstr ""
9519
 
9520
- #: languages/vue.php:3352
9521
  msgid "See Exactly How Visitors Find Your Website From Google."
9522
  msgstr ""
9523
 
9524
- #: languages/vue.php:3355
9525
  msgid "Top Google Search Terms"
9526
  msgstr ""
9527
 
9528
- #: languages/vue.php:3358
9529
  msgid "Number of Clicks"
9530
  msgstr ""
9531
 
9532
- #: languages/vue.php:3361
9533
  msgid "Click-through Ratio"
9534
  msgstr ""
9535
 
9536
- #: languages/vue.php:3364
9537
  msgid "Average Results Position"
9538
  msgstr ""
9539
 
9540
- #: languages/vue.php:3367
9541
  msgid "Realtime Report"
9542
  msgstr ""
9543
 
9544
- #: languages/vue.php:3370
9545
  msgid "See Who And What is Happening on Your Website in Realtime."
9546
  msgstr ""
9547
 
9548
- #: languages/vue.php:3373
9549
  msgid "Top Page Views"
9550
  msgstr ""
9551
 
9552
- #: languages/vue.php:3376
9553
  msgid "Current Active Users"
9554
  msgstr ""
9555
 
9556
- #: languages/vue.php:3379
9557
  msgid "Top Referral Sources"
9558
  msgstr ""
9559
 
9560
- #: languages/vue.php:3382
9561
  msgid "Top Countries"
9562
  msgstr ""
9563
 
9564
- #: languages/vue.php:3385
9565
  msgid "Top Cities"
9566
  msgstr ""
9567
 
9568
- #: languages/vue.php:3388
9569
  msgid "Improve Your User Experience and Improve Search Engine Rankings."
9570
  msgstr ""
9571
 
9572
- #: languages/vue.php:3391
9573
  msgid "Overall Site Speed Score"
9574
  msgstr ""
9575
 
9576
- #: languages/vue.php:3394
9577
  msgid "Server Response Times"
9578
  msgstr ""
9579
 
9580
- #: languages/vue.php:3397
9581
  msgid "Mobile and Desktop Scores"
9582
  msgstr ""
9583
 
9584
- #: languages/vue.php:3400
9585
  msgid "First Contentful Paint"
9586
  msgstr ""
9587
 
9588
- #: languages/vue.php:3403
9589
  msgid "Automatic Recommendations"
9590
  msgstr ""
9591
 
9592
- #: languages/vue.php:3406
9593
  msgid "Total Blocking Time"
9594
  msgstr ""
9595
 
9596
- #: languages/vue.php:3409
9597
  msgid "On-Demand Audits"
9598
  msgstr ""
9599
 
9600
- #: languages/vue.php:3412
9601
  msgid "Time to Interactive"
9602
  msgstr ""
9603
 
9604
- #: languages/vue.php:3415
9605
  msgid "2021 Year in Review"
9606
  msgstr ""
9607
 
9608
- #: languages/vue.php:3418
9609
  msgid "Realtime"
9610
  msgstr ""
9611
 
9612
  #. Translators: Placeholders are used for making text bold and adding a link.
9613
- #: languages/vue.php:3422
9614
  msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9615
  msgstr ""
9616
 
9617
- #: languages/vue.php:3425
9618
  msgid "Featured"
9619
  msgstr ""
9620
 
9621
- #: languages/vue.php:3428
9622
  msgid "Traffic"
9623
  msgstr ""
9624
 
9625
- #: languages/vue.php:3431
9626
  msgid "Revenue"
9627
  msgstr ""
9628
 
9629
- #: languages/vue.php:3434
9630
  msgid "Guides & Resources"
9631
  msgstr ""
9632
 
9633
- #: languages/vue.php:3437
9634
  msgid "Upgrade and Unlock"
9635
  msgstr ""
9636
 
9637
- #: languages/vue.php:3440
9638
  msgid "What’s in the %1$s?"
9639
  msgstr ""
9640
 
9641
- #: languages/vue.php:3443
9642
  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"
9643
  msgstr ""
9644
 
9645
- #: languages/vue.php:3446
9646
  msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9647
  msgstr ""
9648
 
9649
- #: languages/vue.php:3449
9650
  msgid "Your 2021 Analytics Report"
9651
  msgstr ""
9652
 
9653
- #: languages/vue.php:3455
9654
  msgid "January 1, 2021 - December 31, 2021"
9655
  msgstr ""
9656
 
9657
- #: languages/vue.php:3458
9658
  msgid "A Tip for 2022"
9659
  msgstr ""
9660
 
9661
- #: languages/vue.php:3461
9662
  msgid "A Tip For 2022"
9663
  msgstr ""
9664
 
9665
- #: languages/vue.php:3464
9666
  msgid "Here's to an amazing 2022!"
9667
  msgstr ""
9668
 
9669
- #: languages/vue.php:3467
9670
  msgid "Try our other popular WordPress plugins to grow your website in 2022."
9671
  msgstr ""
9672
 
9673
- #: languages/vue.php:3470
9674
  msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9675
  msgstr ""
9676
 
9677
- #: languages/vue.php:3473
9678
  msgid "Copyright MonsterInsights, 2022"
9679
  msgstr ""
9680
 
9681
  #. Translators: Number of minutes spent on site.
9682
- #: languages/vue.php:3477
9683
  msgid "Each visitor spent an average of %s minutes on your website in 2021."
9684
  msgstr ""
9685
 
9686
- #: languages/vue.php:3480
9687
  msgid "RafflePress"
9688
  msgstr ""
9689
 
9690
- #: languages/vue.php:3483
9691
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9692
  msgstr ""
9693
 
9694
- #: languages/vue.php:3486
9695
  msgid "Constant Contact"
9696
  msgstr ""
9697
 
9698
- #: languages/vue.php:3489
9699
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9700
  msgstr ""
9701
 
9702
- #: languages/vue.php:3492
9703
  msgid "SEMRUSH"
9704
  msgstr ""
9705
 
9706
- #: languages/vue.php:3495
9707
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9708
  msgstr ""
9709
 
9710
- #: languages/vue.php:3498
9711
  msgid "Engagement Tools"
9712
  msgstr ""
9713
 
9714
- #: languages/vue.php:3501
9715
  msgid "WPForms"
9716
  msgstr ""
9717
 
9718
- #: languages/vue.php:3504
9719
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9720
  msgstr ""
9721
 
9722
- #: languages/vue.php:3507
9723
  msgid "OptinMonster"
9724
  msgstr ""
9725
 
9726
- #: languages/vue.php:3510
9727
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9728
  msgstr ""
9729
 
9730
- #: languages/vue.php:3513
9731
  msgid "Smash Balloon - Facebook"
9732
  msgstr ""
9733
 
9734
- #: languages/vue.php:3516
9735
  msgid "Smash Balloon - Instagram"
9736
  msgstr ""
9737
 
9738
- #: languages/vue.php:3519
9739
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9740
  msgstr ""
9741
 
9742
- #: languages/vue.php:3522
9743
  msgid "Popular Posts by MonsterInsights"
9744
  msgstr ""
9745
 
9746
- #: languages/vue.php:3525
9747
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9748
  msgstr ""
9749
 
9750
- #: languages/vue.php:3528
9751
  msgid "Popular Products by MonsterInsights"
9752
  msgstr ""
9753
 
9754
- #: languages/vue.php:3531
9755
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9756
  msgstr ""
9757
 
9758
- #: languages/vue.php:3534
9759
  msgid "Revenue Tools"
9760
  msgstr ""
9761
 
9762
- #: languages/vue.php:3537
9763
  msgid "SeedProd"
9764
  msgstr ""
9765
 
9766
- #: languages/vue.php:3540
9767
  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."
9768
  msgstr ""
9769
 
9770
- #: languages/vue.php:3543
9771
  msgid "Featured Tools"
9772
  msgstr ""
9773
 
9774
- #: languages/vue.php:3546
9775
  msgid "Easy Affiliate"
9776
  msgstr ""
9777
 
9778
- #: languages/vue.php:3549
9779
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with MonsterInsights."
9780
  msgstr ""
9781
 
9782
- #: languages/vue.php:3552
9783
  msgid "SearchWP"
9784
  msgstr ""
9785
 
9786
- #: languages/vue.php:3555
9787
  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."
9788
  msgstr ""
9789
 
9790
- #: languages/vue.php:3558
9791
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9792
  msgstr ""
9793
 
9794
- #: languages/vue.php:3561
9795
  msgid "Create a membership website. Works automatically with MonsterInsights, no coding needed."
9796
  msgstr ""
9797
 
9798
- #: languages/vue.php:3564
9799
  msgid "Thirsty Affiliates"
9800
  msgstr ""
9801
 
9802
- #: languages/vue.php:3567
9803
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9804
  msgstr ""
9805
 
9806
- #: languages/vue.php:3570
9807
  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."
9808
  msgstr ""
9809
 
9810
- #: languages/vue.php:3573
9811
  msgid "Advanced Coupons"
9812
  msgstr ""
9813
 
9814
- #: languages/vue.php:3576
9815
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9816
  msgstr ""
9817
 
9818
- #: languages/vue.php:3579
9819
  msgid "PrettyLinks"
9820
  msgstr ""
9821
 
9822
- #: languages/vue.php:3582
9823
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9824
  msgstr ""
9825
 
9826
- #: languages/vue.php:3585
9827
  msgid "Install Now"
9828
  msgstr ""
9829
 
9830
- #: languages/vue.php:3588
9831
  msgid "Online Marketing Guides & Resources"
9832
  msgstr ""
9833
 
9834
- #: languages/vue.php:3591
9835
  msgid "MonsterInsights Pro"
9836
  msgstr ""
9837
 
9838
- #: languages/vue.php:3594
9839
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9840
  msgstr ""
9841
 
9842
- #: languages/vue.php:3597
9843
  msgid "Traffic Tools"
9844
  msgstr ""
9845
 
9846
- #: languages/vue.php:3600
9847
  msgid "All in One SEO (AIOSEO)"
9848
  msgstr ""
9849
 
9850
- #: languages/vue.php:3603
9851
  msgid "The best WordPress SEO plugin that works automatically with MonsterInsights."
9852
  msgstr ""
9853
 
9854
- #: languages/vue.php:3606
9855
  msgid "PushEngage"
9856
  msgstr ""
9857
 
9858
- #: languages/vue.php:3609
9859
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9860
  msgstr ""
9861
 
9862
- #: languages/vue.php:3612
9863
  msgid "With MonsterInsights Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9864
  msgstr ""
9865
 
9866
- #: languages/vue.php:3615
9867
  msgid "Works automatically with WooCommerce, MemberPress, and EasyDigitalDownloads."
9868
  msgstr ""
9869
 
9870
- #: languages/vue.php:3618
9871
  msgid "Media Tracking"
9872
  msgstr ""
9873
 
9874
- #: languages/vue.php:3621
9875
  msgid "Get Started"
9876
  msgstr ""
9877
 
9878
- #: languages/vue.php:3624
9879
  msgid "Awesome! Tracking and Analytics are All Setup!"
9880
  msgstr ""
9881
 
9882
- #: languages/vue.php:3627
9883
  msgid "MonsterInsights is connected to Google Analytics and data is being collected."
9884
  msgstr ""
9885
 
9886
- #: languages/vue.php:3630
9887
  msgid "Complete Setup without Upgrading"
9888
  msgstr ""
9889
 
9890
- #: languages/vue.php:3633
9891
  msgid "Success"
9892
  msgstr ""
9893
 
9894
- #: languages/vue.php:3636
9895
  msgid "Connected to Google Analytics"
9896
  msgstr ""
9897
 
9898
- #: languages/vue.php:3639
9899
  msgid "Tracking Code Installed"
9900
  msgstr ""
9901
 
9902
- #: languages/vue.php:3642
9903
  msgid "Data Being Collected"
9904
  msgstr ""
9905
 
9906
  #. Translators: Add link to retrieve license from account area.
9907
- #: languages/vue.php:3646
9908
  msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO!"
9909
  msgstr ""
9910
 
9911
- #: languages/vue.php:3649
9912
  msgid "Verify License Key"
9913
  msgstr ""
9914
 
9915
- #: languages/vue.php:3652
9916
  msgid "Upgrade to Unlock These Features"
9917
  msgstr ""
9918
 
9919
- #: languages/vue.php:3655
9920
  msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
9921
  msgstr ""
9922
 
9923
- #: languages/vue.php:3658
9924
  msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
9925
  msgstr ""
9926
 
9927
- #: languages/vue.php:3661
9928
  msgid "Verifying License..."
9929
  msgstr ""
9930
 
9931
- #: languages/vue.php:3664
9932
  msgid "Privacy Compliance Addon"
9933
  msgstr ""
9934
 
9935
- #: languages/vue.php:3667
9936
  msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
9937
  msgstr ""
9938
 
9939
- #: languages/vue.php:3670
9940
  msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
9941
  msgstr ""
9942
 
9943
- #: languages/vue.php:3673
9944
  msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
9945
  msgstr ""
9946
 
9947
- #: languages/vue.php:3676
9948
  msgid "20+ Advanced Tracking"
9949
  msgstr ""
9950
 
9951
- #: languages/vue.php:3679
9952
  msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
9953
  msgstr ""
9954
 
9955
- #: languages/vue.php:3682
9956
  msgid "Advanced Growth Tools"
9957
  msgstr ""
9958
 
9959
- #: languages/vue.php:3685
9960
  msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
9961
  msgstr ""
9962
 
9963
- #: languages/vue.php:3688
9964
  msgid "Track how your users interact with videos on your website."
9965
  msgstr ""
9966
 
9967
- #: languages/vue.php:3691
9968
  msgid "Error Processing"
9969
  msgstr ""
9970
 
9971
- #: languages/vue.php:3694
9972
  msgid "There was an error while processing some features. Please try again or you can skip this process for now"
9973
  msgstr ""
9974
 
9975
- #: languages/vue.php:3697
9976
  msgid "Which website features would you like to enable?"
9977
  msgstr ""
9978
 
9979
- #: languages/vue.php:3700
9980
  msgid "We’ve already selected our recommended features based on your site. "
9981
  msgstr ""
9982
 
9983
- #: languages/vue.php:3703
9984
  msgid "Continue"
9985
  msgstr ""
9986
 
9987
- #: languages/vue.php:3706
9988
  msgid "Standard Analytics & Reports"
9989
  msgstr ""
9990
 
9991
- #: languages/vue.php:3709
9992
  msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
9993
  msgstr ""
9994
 
9995
- #: languages/vue.php:3712
9996
  msgid "Helps you see what links your users are clicking on your site."
9997
  msgstr ""
9998
 
9999
- #: languages/vue.php:3715
10000
  msgid "All In One SEO Toolkit"
10001
  msgstr ""
10002
 
10003
- #: languages/vue.php:3718
10004
  msgid "The best WordPress SEO plugin that works with MonsterInsights to boost your rankings."
10005
  msgstr ""
10006
 
10007
- #: languages/vue.php:3721
10008
  msgid "Smart Form Builder by WPForms"
10009
  msgstr ""
10010
 
10011
- #: languages/vue.php:3724
10012
  msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
10013
  msgstr ""
10014
 
10015
- #: languages/vue.php:3727
10016
  msgid "The following plugins will be installed: "
10017
  msgstr ""
10018
 
10019
- #: languages/vue.php:3730
10020
  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 combination of numbers and letters."
10021
  msgstr ""
10022
 
10023
- #: languages/vue.php:3733
10024
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
10025
  msgstr ""
10026
 
10027
- #: languages/vue.php:3736
10028
  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 UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
10029
  msgstr ""
10030
 
10031
- #: languages/vue.php:3739
10032
  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 a combination of numbers and letters."
10033
  msgstr ""
10034
 
10035
- #: languages/vue.php:3742
10036
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
10037
  msgstr ""
10038
 
@@ -10108,11 +10108,11 @@ msgstr ""
10108
  msgid "Time on Page"
10109
  msgstr ""
10110
 
10111
- #: lite/includes/admin/onboarding-wizard.php:168
10112
  msgid "MonsterInsights &rsaquo; Onboarding Wizard"
10113
  msgstr ""
10114
 
10115
- #: lite/includes/admin/onboarding-wizard.php:183
10116
  msgid "Return to Dashboard"
10117
  msgstr ""
10118
 
2
  # This file is distributed under the same license as the ExactMetrics Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: ExactMetrics Pro 7.6.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2022-06-13T16:16:52+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.6.0\n"
15
  "X-Domain: google-analytics-for-wordpress\n"
120
  #: includes/admin/admin.php:126
121
  #: includes/admin/em-admin.php:18
122
  #: includes/admin/em-admin.php:21
123
+ #: languages/vue.php:245
124
  msgid "Insights"
125
  msgstr ""
126
 
127
  #: includes/admin/admin.php:34
128
  #: includes/admin/admin.php:42
129
  #: includes/admin/admin.php:222
130
+ #: languages/vue.php:520
131
  msgid "Settings"
132
  msgstr ""
133
 
143
 
144
  #: includes/admin/admin.php:39
145
  #: includes/admin/admin.php:130
146
+ #: languages/vue.php:1987
147
  msgid "Reports"
148
  msgstr ""
149
 
153
 
154
  #: includes/admin/admin.php:51
155
  #: languages/gutenberg.php:83
156
+ #: languages/vue.php:888
157
  msgid "Popular Posts"
158
  msgstr ""
159
 
187
 
188
  #: includes/admin/admin.php:71
189
  #: includes/admin/admin.php:146
190
+ #: languages/vue.php:499
191
  msgid "About Us"
192
  msgstr ""
193
 
206
  #: includes/admin/admin.php:76
207
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
208
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
209
+ #: languages/vue.php:1414
210
  msgid "Upgrade to Pro"
211
  msgstr ""
212
 
234
 
235
  #: includes/admin/admin.php:212
236
  #: includes/admin/admin.php:215
237
+ #: languages/vue.php:912
238
  msgid "Support"
239
  msgstr ""
240
 
246
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
247
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:32
248
  #: includes/admin/reports/abstract-report.php:418
249
+ #: languages/vue.php:1411
250
  msgid "Get MonsterInsights Pro"
251
  msgstr ""
252
 
256
  msgstr ""
257
 
258
  #: includes/admin/admin.php:324
259
+ #: languages/vue.php:484
260
  msgid "Please Setup Website Analytics to See Audience Insights"
261
  msgstr ""
262
 
263
  #: includes/admin/admin.php:325
264
+ #: languages/vue.php:490
265
  msgid "Connect MonsterInsights and Setup Website Analytics"
266
  msgstr ""
267
 
275
  #: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
276
  #: includes/admin/notifications/notification-returning-visitors.php:43
277
  #: includes/admin/notifications/notification-traffic-dropping.php:43
278
+ #: languages/vue.php:437
279
  msgid "Learn More"
280
  msgstr ""
281
 
282
  #: includes/admin/admin.php:329
283
+ #: languages/vue.php:487
284
  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."
285
  msgstr ""
286
 
291
 
292
  #. Translators: Adds a link to the license renewal.
293
  #: includes/admin/admin.php:350
294
+ #: languages/vue.php:717
295
  msgid "Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s"
296
  msgstr ""
297
 
298
  #: includes/admin/admin.php:352
299
+ #: languages/vue.php:720
300
  msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
301
  msgstr ""
302
 
303
  #: includes/admin/admin.php:354
304
+ #: languages/vue.php:723
305
  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."
306
  msgstr ""
307
 
360
 
361
  #: includes/admin/ajax.php:55
362
  #: includes/admin/routes.php:971
363
+ #: lite/includes/admin/onboarding-wizard.php:247
364
  msgid "You are not allowed to install plugins"
365
  msgstr ""
366
 
368
  msgid "You are not allowed to activate plugins"
369
  msgstr ""
370
 
371
+ #: includes/admin/ajax.php:169
372
  msgid "You are not allowed to deactivate plugins"
373
  msgstr ""
374
 
505
  msgstr ""
506
 
507
  #: includes/admin/common.php:951
508
+ #: languages/vue.php:3475
509
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
510
  msgstr ""
511
 
526
 
527
  #: includes/admin/exclude-page-metabox.php:147
528
  #: languages/gutenberg.php:179
529
+ #: languages/vue.php:2384
530
  msgid "Upgrade"
531
  msgstr ""
532
 
724
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:26
725
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:26
726
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:26
727
+ #: languages/vue.php:1269
728
  #: lite/includes/admin/helpers.php:85
729
  msgid "Upgrade to MonsterInsights Pro"
730
  msgstr ""
760
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
761
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
762
  #: includes/admin/reports/abstract-report.php:415
763
+ #: languages/vue.php:282
764
  msgid "Upgrade Now"
765
  msgstr ""
766
 
937
  msgstr ""
938
 
939
  #: includes/admin/reports/overview.php:34
940
+ #: languages/vue.php:568
941
  msgid "Overview"
942
  msgstr ""
943
 
1449
  msgstr ""
1450
 
1451
  #: includes/gutenberg/headline-tool/headline-tool.php:290
1452
+ #: languages/vue.php:526
1453
  msgid "General"
1454
  msgstr ""
1455
 
4849
  msgstr ""
4850
 
4851
  #: languages/gutenberg.php:77
4852
+ #: languages/vue.php:509
4853
  msgid "Inline Popular Posts"
4854
  msgstr ""
4855
 
4886
  msgstr ""
4887
 
4888
  #: languages/gutenberg.php:107
4889
+ #: languages/vue.php:2977
4890
  msgid "Wide-Layout Options"
4891
  msgstr ""
4892
 
4895
  msgstr ""
4896
 
4897
  #: languages/gutenberg.php:113
4898
+ #: languages/vue.php:2980
4899
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4900
  msgstr ""
4901
 
4902
  #: languages/gutenberg.php:116
4903
+ #: languages/vue.php:3001
4904
  msgid "Post Count"
4905
  msgstr ""
4906
 
4909
  msgstr ""
4910
 
4911
  #: languages/gutenberg.php:122
4912
+ #: languages/vue.php:2983
4913
  msgid "Display Options"
4914
  msgstr ""
4915
 
4922
  msgstr ""
4923
 
4924
  #: languages/gutenberg.php:131
4925
+ #: languages/vue.php:2800
4926
  msgid "Widget Title"
4927
  msgstr ""
4928
 
4931
  msgstr ""
4932
 
4933
  #: languages/gutenberg.php:137
4934
+ #: languages/vue.php:2989
4935
  msgid "Display Author"
4936
  msgstr ""
4937
 
4938
  #: languages/gutenberg.php:140
4939
+ #: languages/vue.php:2992
4940
  msgid "Display Date"
4941
  msgstr ""
4942
 
4943
  #: languages/gutenberg.php:143
4944
+ #: languages/vue.php:2995
4945
  msgid "Display Comments"
4946
  msgstr ""
4947
 
4948
  #: languages/gutenberg.php:146
4949
+ #: languages/vue.php:34
4950
  #: lite/includes/admin/metaboxes.php:42
4951
  msgid "Last 30 days"
4952
  msgstr ""
4953
 
4954
  #: languages/gutenberg.php:149
4955
+ #: languages/vue.php:22
4956
  #: lite/includes/admin/metaboxes.php:45
4957
  msgid "Yesterday"
4958
  msgstr ""
4959
 
4960
  #: languages/gutenberg.php:152
4961
+ #: languages/vue.php:1347
4962
  #: lite/includes/admin/metaboxes.php:57
4963
  #: lite/includes/admin/metaboxes.php:111
4964
  msgid "Bounce Rate"
5219
  msgstr ""
5220
 
5221
  #: languages/gutenberg.php:354
5222
+ #: languages/vue.php:867
5223
  msgid "Headline Analyzer"
5224
  msgstr ""
5225
 
5239
  msgid "2"
5240
  msgstr ""
5241
 
5242
+ #: languages/vue.php:13
5243
  msgid "Error"
5244
  msgstr ""
5245
 
5246
+ #: languages/vue.php:16
5247
  msgid "Please try again."
5248
  msgstr ""
5249
 
5250
+ #: languages/vue.php:19
5251
  msgid "Today"
5252
  msgstr ""
5253
 
5254
+ #: languages/vue.php:25
5255
  msgid "Last Week"
5256
  msgstr ""
5257
 
5258
+ #: languages/vue.php:28
5259
  msgid "Last Month"
5260
  msgstr ""
5261
 
5262
+ #: languages/vue.php:31
5263
  msgid "Last 7 days"
5264
  msgstr ""
5265
 
5266
+ #: languages/vue.php:37
5267
  msgid "Loading settings"
5268
  msgstr ""
5269
 
5270
+ #: languages/vue.php:40
5271
  msgid "Loading new report data"
5272
  msgstr ""
5273
 
5274
+ #: languages/vue.php:43
5275
  msgid "Please wait..."
5276
  msgstr ""
5277
 
5278
  #. Translators: Adds an arrow icon.
5279
+ #: languages/vue.php:47
5280
  msgid "Continue %s"
5281
  msgstr ""
5282
 
5283
+ #: languages/vue.php:50
5284
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5285
  msgstr ""
5286
 
5287
+ #: languages/vue.php:53
5288
  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."
5289
  msgstr ""
5290
 
5291
+ #: languages/vue.php:56
5292
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5293
  msgstr ""
5294
 
5295
+ #: languages/vue.php:59
5296
  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."
5297
  msgstr ""
5298
 
5299
+ #: languages/vue.php:62
5300
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5301
  msgstr ""
5302
 
5303
+ #: languages/vue.php:65
5304
  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."
5305
  msgstr ""
5306
 
5307
+ #: languages/vue.php:68
5308
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5309
  msgstr ""
5310
 
5311
+ #: languages/vue.php:71
5312
  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."
5313
  msgstr ""
5314
 
5315
+ #: languages/vue.php:74
5316
  msgid "Unlock the Forms Report and Improve Conversions"
5317
  msgstr ""
5318
 
5319
+ #: languages/vue.php:77
5320
  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."
5321
  msgstr ""
5322
 
5323
+ #: languages/vue.php:80
5324
  msgid "Unlock the Search Console Report and See How People Find Your Website"
5325
  msgstr ""
5326
 
5327
+ #: languages/vue.php:83
5328
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5329
  msgstr ""
5330
 
5331
+ #: languages/vue.php:86
5332
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5333
  msgstr ""
5334
 
5335
+ #: languages/vue.php:89
5336
  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."
5337
  msgstr ""
5338
 
5339
+ #: languages/vue.php:92
5340
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5341
  msgstr ""
5342
 
5343
+ #: languages/vue.php:95
5344
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5345
  msgstr ""
5346
 
5347
+ #: languages/vue.php:98
5348
  msgid "Loading Settings"
5349
  msgstr ""
5350
 
5351
+ #: languages/vue.php:101
5352
  msgid "Saving Changes..."
5353
  msgstr ""
5354
 
5355
+ #: languages/vue.php:104
5356
  msgid "Settings Updated"
5357
  msgstr ""
5358
 
5359
  #. Translators: Adds a link to the settings panel.
5360
+ #: languages/vue.php:108
5361
  msgid "You need to %1$sconnect MonsterInsights%2$s first"
5362
  msgstr ""
5363
 
5364
+ #: languages/vue.php:111
5365
  msgid "Could Not Save Changes"
5366
  msgstr ""
5367
 
5368
+ #: languages/vue.php:114
5369
  msgid "Refreshing Report"
5370
  msgstr ""
5371
 
5372
+ #: languages/vue.php:117
5373
  msgid "Loading new report data..."
5374
  msgstr ""
5375
 
5376
+ #: languages/vue.php:120
5377
  msgid "See Your Top Landing Pages to Improve Engagement"
5378
  msgstr ""
5379
 
5380
+ #: languages/vue.php:123
5381
  msgid "See Your Top Exit Pages to Reduce Abandonment"
5382
  msgstr ""
5383
 
5384
+ #: languages/vue.php:126
5385
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
5386
  msgstr ""
5387
 
5388
+ #: languages/vue.php:129
5389
  msgid "See Your Top Affiliate Links and Focus on What's Working"
5390
  msgstr ""
5391
 
5392
+ #: languages/vue.php:132
5393
  msgid "See Your Top Downloads and Improve Conversions"
5394
  msgstr ""
5395
 
5396
+ #: languages/vue.php:135
5397
  msgid "See Audience Demographic Report ( Age / Gender / Interests )"
5398
  msgstr ""
5399
 
5400
+ #: languages/vue.php:138
5401
  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."
5402
  msgstr ""
5403
 
5404
+ #: languages/vue.php:141
5405
  msgid "See Your Conversion Rate to Improve Your Funnel"
5406
  msgstr ""
5407
 
5408
+ #: languages/vue.php:144
5409
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
5410
  msgstr ""
5411
 
5412
+ #: languages/vue.php:147
5413
  msgid "See The Total Revenue to Track Growth"
5414
  msgstr ""
5415
 
5416
+ #: languages/vue.php:150
5417
  msgid "See Average Order Value to Find Offer Opportunities"
5418
  msgstr ""
5419
 
5420
+ #: languages/vue.php:153
5421
  msgid "See Your Top Products to See Individual Performance"
5422
  msgstr ""
5423
 
5424
+ #: languages/vue.php:156
5425
  msgid "See Your Top Conversion Sources and Focus on What's Working"
5426
  msgstr ""
5427
 
5428
+ #: languages/vue.php:159
5429
  msgid "See The Time it Takes for Customers to Purchase"
5430
  msgstr ""
5431
 
5432
+ #: languages/vue.php:162
5433
  msgid "See How Many Sessions are Needed for a Purchase"
5434
  msgstr ""
5435
 
5436
+ #: languages/vue.php:165
5437
  msgid "See Which Authors Generate the Most Traffic"
5438
  msgstr ""
5439
 
5440
+ #: languages/vue.php:168
5441
  msgid "See Which Post Types Perform Better"
5442
  msgstr ""
5443
 
5444
+ #: languages/vue.php:171
5445
  msgid "See Which Categories are the Most Popular"
5446
  msgstr ""
5447
 
5448
+ #: languages/vue.php:174
5449
  msgid "See Your Blog's Most Popular SEO Scores"
5450
  msgstr ""
5451
 
5452
+ #: languages/vue.php:177
5453
  msgid "See Which Focus Keyword is Performing Better in Search Engines"
5454
  msgstr ""
5455
 
5456
+ #: languages/vue.php:180
5457
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
5458
  msgstr ""
5459
 
5460
+ #: languages/vue.php:183
5461
  msgid "See Your Top Converting Forms and Optimize"
5462
  msgstr ""
5463
 
5464
+ #: languages/vue.php:186
5465
  msgid "See Your Forms Impressions Count to Find the Best Placement"
5466
  msgstr ""
5467
 
5468
+ #: languages/vue.php:189
5469
  msgid "See Your Top Google Search Terms and Optimize Content"
5470
  msgstr ""
5471
 
5472
+ #: languages/vue.php:192
5473
  msgid "See The Number of Clicks and Track Interests"
5474
  msgstr ""
5475
 
5476
+ #: languages/vue.php:195
5477
  msgid "See The Click-Through-Ratio and Improve SEO"
5478
  msgstr ""
5479
 
5480
+ #: languages/vue.php:198
5481
  msgid "See The Average Results Position and Focus on what works"
5482
  msgstr ""
5483
 
5484
+ #: languages/vue.php:201
5485
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
5486
  msgstr ""
5487
 
5488
+ #: languages/vue.php:204
5489
  msgid "See Your Top Pages Immediately After Making Changes"
5490
  msgstr ""
5491
 
5492
+ #: languages/vue.php:207
5493
  msgid "See Your Top Referral Sources and Adapt Faster"
5494
  msgstr ""
5495
 
5496
+ #: languages/vue.php:210
5497
  msgid "See Your Traffic Demographics"
5498
  msgstr ""
5499
 
5500
+ #: languages/vue.php:213
5501
  msgid "Get Fresh Report Data Every 60 Seconds"
5502
  msgstr ""
5503
 
5504
+ #: languages/vue.php:216
5505
  msgid "See Your Homepage's Overall Performance Score"
5506
  msgstr ""
5507
 
5508
+ #: languages/vue.php:219
5509
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
5510
  msgstr ""
5511
 
5512
+ #: languages/vue.php:222
5513
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
5514
  msgstr ""
5515
 
5516
+ #: languages/vue.php:225
5517
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
5518
  msgstr ""
5519
 
5520
  #. Translators: Number of visitors.
5521
+ #: languages/vue.php:229
5522
  msgid "See how %s visitors found your site!"
5523
  msgstr ""
5524
 
5525
  #. Translators: Number of visitors.
5526
+ #: languages/vue.php:233
5527
  msgid "Your website was visited by %s users in the last 30 days."
5528
  msgstr ""
5529
 
5530
+ #: languages/vue.php:236
5531
  msgid "See the full analytics report!"
5532
  msgstr ""
5533
 
5534
+ #: languages/vue.php:239
5535
  msgid "Congratulations! "
5536
  msgstr ""
5537
 
5538
+ #: languages/vue.php:242
5539
  msgid "You Successfully Unlocked the most powerful Analytics plugin"
5540
  msgstr ""
5541
 
5542
+ #: languages/vue.php:248
5543
  msgid "Overview Report"
5544
  msgstr ""
5545
 
5546
+ #: languages/vue.php:251
5547
  #: lite/includes/admin/welcome.php:56
5548
  #: lite/includes/admin/welcome.php:57
5549
  msgid "Welcome to MonsterInsights"
5550
  msgstr ""
5551
 
5552
+ #: languages/vue.php:254
5553
  msgid "Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin"
5554
  msgstr ""
5555
 
5556
+ #: languages/vue.php:257
5557
  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."
5558
  msgstr ""
5559
 
5560
+ #: languages/vue.php:260
5561
  msgid "Launch the Wizard!"
5562
  msgstr ""
5563
 
5564
+ #: languages/vue.php:263
5565
  msgid "Read the Full Guide"
5566
  msgstr ""
5567
 
5568
+ #: languages/vue.php:266
5569
  msgid "MonsterInsights Features & Addons"
5570
  msgstr ""
5571
 
5572
+ #: languages/vue.php:269
5573
  msgid "Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market."
5574
  msgstr ""
5575
 
5576
+ #: languages/vue.php:272
5577
  msgid "See All Features"
5578
  msgstr ""
5579
 
5580
+ #: languages/vue.php:275
5581
  msgid "Upgrade to PRO"
5582
  msgstr ""
5583
 
5584
+ #: languages/vue.php:278
5585
  msgid "per year"
5586
  msgstr ""
5587
 
5588
+ #: languages/vue.php:285
5589
  msgid "Testimonials"
5590
  msgstr ""
5591
 
5592
+ #: languages/vue.php:288
5593
  msgid "Universal Tracking"
5594
  msgstr ""
5595
 
5596
+ #: languages/vue.php:291
5597
  msgid "Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5598
  msgstr ""
5599
 
5600
+ #: languages/vue.php:294
5601
  msgid "Google Analytics Dashboard"
5602
  msgstr ""
5603
 
5604
+ #: languages/vue.php:297
5605
  msgid "See your website analytics report right inside your WordPress dashboard with actionable insights."
5606
  msgstr ""
5607
 
5608
+ #: languages/vue.php:300
5609
  msgid "Real-time Stats"
5610
  msgstr ""
5611
 
5612
+ #: languages/vue.php:303
5613
  msgid "Get real-time stats right inside WordPress to see who is online, what are they doing, and more."
5614
  msgstr ""
5615
 
5616
+ #: languages/vue.php:306
5617
  msgid "Enhanced Ecommerce Tracking"
5618
  msgstr ""
5619
 
5620
+ #: languages/vue.php:309
5621
  msgid "1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress."
5622
  msgstr ""
5623
 
5624
+ #: languages/vue.php:312
5625
  msgid "Page Level Analytics"
5626
  msgstr ""
5627
 
5628
+ #: languages/vue.php:315
5629
  msgid "Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
5630
  msgstr ""
5631
 
5632
+ #: languages/vue.php:318
5633
  msgid "Affiliate Link & Ads Tracking"
5634
  msgstr ""
5635
 
5636
+ #: languages/vue.php:321
5637
  msgid "Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
5638
  msgstr ""
5639
 
5640
+ #: languages/vue.php:324
5641
  msgid "EU Compliance (GDPR Friendly)"
5642
  msgstr ""
5643
 
5644
+ #: languages/vue.php:327
5645
  msgid "Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5646
  msgstr ""
5647
 
5648
+ #: languages/vue.php:330
5649
  msgid "Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click."
5650
  msgstr ""
5651
 
5652
+ #: languages/vue.php:333
5653
  msgid "Ecommerce Report"
5654
  msgstr ""
5655
 
5656
+ #: languages/vue.php:336
5657
  msgid "Form Conversions"
5658
  msgstr ""
5659
 
5660
+ #: languages/vue.php:339
5661
  msgid "Custom Dimensions"
5662
  msgstr ""
5663
 
5664
+ #: languages/vue.php:342
5665
  msgid "Author Tracking"
5666
  msgstr ""
5667
 
5668
+ #: languages/vue.php:345
5669
  msgid "Google Optimize"
5670
  msgstr ""
5671
 
5672
+ #: languages/vue.php:348
5673
  msgid "Category / Tags Tracking"
5674
  msgstr ""
5675
 
5676
+ #: languages/vue.php:351
5677
  msgid "WooCommerce"
5678
  msgstr ""
5679
 
5680
+ #: languages/vue.php:355
5681
  msgid "Easy Digital Downloads"
5682
  msgstr ""
5683
 
5684
+ #: languages/vue.php:359
5685
  msgid "MemberPress"
5686
  msgstr ""
5687
 
5688
+ #: languages/vue.php:362
5689
  msgid "LifterLMS"
5690
  msgstr ""
5691
 
5692
  #. Translators: Current PHP version and recommended PHP version.
5693
+ #: languages/vue.php:366
5694
  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."
5695
  msgstr ""
5696
 
5697
  #. Translators: Current WordPress version.
5698
+ #: languages/vue.php:370
5699
  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."
5700
  msgstr ""
5701
 
5702
+ #: languages/vue.php:373
5703
  msgid "Yikes! PHP Update Required"
5704
  msgstr ""
5705
 
5706
  #. Translators: Current PHP version and recommended PHP version.
5707
+ #: languages/vue.php:377
5708
  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."
5709
  msgstr ""
5710
 
5711
+ #: languages/vue.php:380
5712
  msgid "Learn more about updating PHP"
5713
  msgstr ""
5714
 
5715
+ #: languages/vue.php:383
5716
  msgid "Yikes! WordPress Update Required"
5717
  msgstr ""
5718
 
5719
  #. Translators: Current WordPress version.
5720
+ #: languages/vue.php:387
5721
  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."
5722
  msgstr ""
5723
 
5724
+ #: languages/vue.php:390
5725
  msgid "Learn more about updating WordPress"
5726
  msgstr ""
5727
 
5728
+ #: languages/vue.php:393
5729
  msgid "MonsterInsights encountered an error loading your report data"
5730
  msgstr ""
5731
 
5732
+ #: languages/vue.php:396
5733
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5734
  msgstr ""
5735
 
5736
+ #: languages/vue.php:399
5737
  msgid "Reconnect MonsterInsights"
5738
  msgstr ""
5739
 
5740
+ #: languages/vue.php:402
5741
  msgid "Re-Authenticating"
5742
  msgstr ""
5743
 
5744
+ #: languages/vue.php:407
5745
  msgid "Ok"
5746
  msgstr ""
5747
 
5748
+ #: languages/vue.php:410
5749
  msgid "See Quick Links"
5750
  msgstr ""
5751
 
5752
+ #: languages/vue.php:413
5753
  msgid "Suggest a Feature"
5754
  msgstr ""
5755
 
5756
+ #: languages/vue.php:416
5757
  msgid "Join Our Community"
5758
  msgstr ""
5759
 
5760
+ #: languages/vue.php:419
5761
  msgid "Support & Docs"
5762
  msgstr ""
5763
 
5764
+ #: languages/vue.php:422
5765
  msgid "Upgrade to Pro &#187;"
5766
  msgstr ""
5767
 
5768
  #. Translators: Placeholder is replaced with WPForms.
5769
+ #: languages/vue.php:426
5770
  msgid "Recommended Plugin: %s"
5771
  msgstr ""
5772
 
5773
+ #: languages/vue.php:430
5774
  msgid "Install"
5775
  msgstr ""
5776
 
5777
+ #: languages/vue.php:434
5778
  msgid "Activate"
5779
  msgstr ""
5780
 
5781
+ #: languages/vue.php:440
5782
  msgid "Powered by MonsterInsights"
5783
  msgstr ""
5784
 
5785
+ #: languages/vue.php:443
5786
  #: lite/includes/admin/wp-site-health.php:253
5787
  msgid "View Reports"
5788
  msgstr ""
5789
 
5790
+ #: languages/vue.php:446
5791
  msgid "Congratulations!"
5792
  msgstr ""
5793
 
5794
  #. Translators: Add link to YouTube video and Onboarding Wizard.
5795
+ #: languages/vue.php:450
5796
  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."
5797
  msgstr ""
5798
 
5799
  #. Translators: Add link to YouTube video and Onboarding Wizard.
5800
+ #: languages/vue.php:454
5801
  msgid "Onboarding Wizard"
5802
  msgstr ""
5803
 
5804
+ #: languages/vue.php:457
5805
  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."
5806
  msgstr ""
5807
 
5808
+ #: languages/vue.php:460
5809
  msgid "Save Changes"
5810
  msgstr ""
5811
 
5812
+ #: languages/vue.php:463
5813
  msgid "Inbox"
5814
  msgstr ""
5815
 
5816
+ #: languages/vue.php:466
5817
  msgid "Back to Inbox"
5818
  msgstr ""
5819
 
5820
+ #: languages/vue.php:469
5821
  msgid "View Dismissed"
5822
  msgstr ""
5823
 
5824
+ #: languages/vue.php:472
5825
  msgid "Notifications"
5826
  msgstr ""
5827
 
5828
+ #: languages/vue.php:475
5829
  msgid "Dismiss All"
5830
  msgstr ""
5831
 
5832
+ #: languages/vue.php:478
5833
  msgid "Dismissed"
5834
  msgstr ""
5835
 
5836
+ #: languages/vue.php:481
5837
  msgid "No Notifications"
5838
  msgstr ""
5839
 
5840
+ #: languages/vue.php:493
5841
  msgid "Import Export"
5842
  msgstr ""
5843
 
5844
+ #: languages/vue.php:496
5845
  msgid "PrettyLinks Integration"
5846
  msgstr ""
5847
 
5848
+ #: languages/vue.php:502
5849
  msgid "Getting Started"
5850
  msgstr ""
5851
 
5852
+ #: languages/vue.php:505
5853
  msgid "Lite vs Pro"
5854
  msgstr ""
5855
 
5856
+ #: languages/vue.php:513
5857
  msgid "Popular Posts Widget"
5858
  msgstr ""
5859
 
5860
+ #: languages/vue.php:517
5861
  msgid "Popular Products"
5862
  msgstr ""
5863
 
5864
+ #: languages/vue.php:523
5865
  msgid "Sub menu item for WooCommerce Analytics"
5866
  msgstr ""
5867
 
5868
+ #: languages/vue.php:529
5869
  msgid "Engagement"
5870
  msgstr ""
5871
 
5872
+ #: languages/vue.php:532
5873
  #: lite/includes/admin/reports/report-ecommerce.php:22
5874
  msgid "eCommerce"
5875
  msgstr ""
5876
 
5877
+ #: languages/vue.php:535
5878
  msgid "Publisher"
5879
  msgstr ""
5880
 
5881
+ #: languages/vue.php:538
5882
  msgid "Conversions"
5883
  msgstr ""
5884
 
5885
+ #: languages/vue.php:541
5886
  msgid "Advanced"
5887
  msgstr ""
5888
 
5889
+ #: languages/vue.php:544
5890
  msgid "URL Builder"
5891
  msgstr ""
5892
 
5893
+ #: languages/vue.php:547
5894
  msgid "MonsterInsights Addons"
5895
  msgstr ""
5896
 
5897
+ #: languages/vue.php:550
5898
  msgid "Search Addons"
5899
  msgstr ""
5900
 
5901
+ #: languages/vue.php:553
5902
  msgid "Exit Setup"
5903
  msgstr ""
5904
 
5905
+ #: languages/vue.php:556
5906
  msgid "You must connect with MonsterInsights before you can view reports."
5907
  msgstr ""
5908
 
5909
+ #: languages/vue.php:559
5910
  msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5911
  msgstr ""
5912
 
5913
+ #: languages/vue.php:562
5914
  msgid "Launch Setup Wizard"
5915
  msgstr ""
5916
 
5917
+ #: languages/vue.php:565
5918
  msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
5919
  msgstr ""
5920
 
5921
+ #: languages/vue.php:571
5922
  #: lite/includes/admin/reports/report-publisher.php:22
5923
  msgid "Publishers"
5924
  msgstr ""
5925
 
5926
+ #: languages/vue.php:574
5927
  #: lite/includes/admin/reports/report-queries.php:22
5928
  msgid "Search Console"
5929
  msgstr ""
5930
 
5931
+ #: languages/vue.php:577
5932
  #: lite/includes/admin/reports/report-dimensions.php:22
5933
  msgid "Dimensions"
5934
  msgstr ""
5935
 
5936
+ #: languages/vue.php:580
5937
  #: lite/includes/admin/reports/report-forms.php:22
5938
  msgid "Forms"
5939
  msgstr ""
5940
 
5941
+ #: languages/vue.php:583
5942
  msgid "Real-Time"
5943
  msgstr ""
5944
 
5945
+ #: languages/vue.php:586
5946
  msgid "Site Speed"
5947
  msgstr ""
5948
 
5949
+ #: languages/vue.php:589
5950
  msgid "2020 Year in Review"
5951
  msgstr ""
5952
 
5953
  #. Translators: Error status and error text.
5954
+ #: languages/vue.php:593
5955
  msgid "Can't load report data. Error: %1$s, %2$s"
5956
  msgstr ""
5957
 
5958
+ #: languages/vue.php:596
5959
  msgid "Error loading report data"
5960
  msgstr ""
5961
 
5962
+ #: languages/vue.php:599
5963
  msgid "Publishers Report"
5964
  msgstr ""
5965
 
5966
+ #: languages/vue.php:602
5967
  msgid "eCommerce Report"
5968
  msgstr ""
5969
 
5970
+ #: languages/vue.php:606
5971
  msgid "Search Console Report"
5972
  msgstr ""
5973
 
5974
+ #: languages/vue.php:609
5975
  msgid "Dimensions Report"
5976
  msgstr ""
5977
 
5978
+ #: languages/vue.php:612
5979
  msgid "Forms Report"
5980
  msgstr ""
5981
 
5982
+ #: languages/vue.php:615
5983
  msgid "Real-Time Report"
5984
  msgstr ""
5985
 
5986
+ #: languages/vue.php:618
5987
  msgid "Site Speed Report"
5988
  msgstr ""
5989
 
5990
+ #: languages/vue.php:622
5991
  msgid "Time to Purchase"
5992
  msgstr ""
5993
 
5994
+ #: languages/vue.php:625
5995
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
5996
  msgstr ""
5997
 
5998
+ #: languages/vue.php:629
5999
  msgid "Sessions to Purchase"
6000
  msgstr ""
6001
 
6002
+ #: languages/vue.php:632
6003
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
6004
  msgstr ""
6005
 
6006
+ #: languages/vue.php:635
6007
  msgid "New Customers"
6008
  msgstr ""
6009
 
6010
+ #: languages/vue.php:638
6011
  msgid "This list shows the percentage of new customers who purchased a product from your website."
6012
  msgstr ""
6013
 
6014
+ #: languages/vue.php:641
6015
  msgid "Abandoned Checkouts"
6016
  msgstr ""
6017
 
6018
+ #: languages/vue.php:644
6019
  msgid "This list shows the percentage of carts that never went through the checkout process."
6020
  msgstr ""
6021
 
6022
+ #: languages/vue.php:647
6023
  msgid "Top Posts/Pages"
6024
  msgstr ""
6025
 
6026
+ #: languages/vue.php:650
6027
  msgid "This list shows the most viewed posts and pages on your website."
6028
  msgstr ""
6029
 
6030
+ #: languages/vue.php:653
6031
  msgid "New vs. Returning Visitors"
6032
  msgstr ""
6033
 
6034
+ #: languages/vue.php:656
6035
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
6036
  msgstr ""
6037
 
6038
+ #: languages/vue.php:659
6039
  msgid "Device Breakdown"
6040
  msgstr ""
6041
 
6042
+ #: languages/vue.php:662
6043
  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."
6044
  msgstr ""
6045
 
6046
+ #: languages/vue.php:666
6047
  msgid "Top Landing Pages"
6048
  msgstr ""
6049
 
6050
+ #: languages/vue.php:669
6051
  msgid "This list shows the top pages users first land on when visiting your website."
6052
  msgstr ""
6053
 
6054
+ #: languages/vue.php:673
6055
  msgid "Top Exit Pages"
6056
  msgstr ""
6057
 
6058
+ #: languages/vue.php:676
6059
  msgid "This list shows the top pages users exit your website from."
6060
  msgstr ""
6061
 
6062
+ #: languages/vue.php:680
6063
  msgid "Top Outbound Links"
6064
  msgstr ""
6065
 
6066
+ #: languages/vue.php:683
6067
  msgid "This list shows the top links clicked on your website that go to another website."
6068
  msgstr ""
6069
 
6070
+ #: languages/vue.php:686
6071
  msgid "Top Affiliate Links"
6072
  msgstr ""
6073
 
6074
+ #: languages/vue.php:689
6075
  msgid "This list shows the top affiliate links your visitors clicked on."
6076
  msgstr ""
6077
 
6078
+ #: languages/vue.php:693
6079
  msgid "Top Download Links"
6080
  msgstr ""
6081
 
6082
+ #: languages/vue.php:696
6083
  msgid "This list shows the download links your visitors clicked the most."
6084
  msgstr ""
6085
 
6086
+ #: languages/vue.php:700
6087
  msgid "Top Products"
6088
  msgstr ""
6089
 
6090
+ #: languages/vue.php:703
6091
  msgid "This list shows the top selling products on your website."
6092
  msgstr ""
6093
 
6094
+ #: languages/vue.php:707
6095
  msgid "Top Conversion Sources"
6096
  msgstr ""
6097
 
6098
+ #: languages/vue.php:710
6099
  msgid "This list shows the top referral websites in terms of product revenue."
6100
  msgstr ""
6101
 
6102
+ #: languages/vue.php:713
6103
  msgid "Total Add/Remove"
6104
  msgstr ""
6105
 
6106
  #. Translators: Adds a link to documentation.
6107
+ #: languages/vue.php:727
6108
  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"
6109
  msgstr ""
6110
 
6111
  #. Translators: Adds link to activate/install plugin and documentation.
6112
+ #: languages/vue.php:731
6113
  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"
6114
  msgstr ""
6115
 
6116
  #. Translators: Adds a link to documentation.
6117
+ #: languages/vue.php:735
6118
  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"
6119
  msgstr ""
6120
 
6121
  #. Translators: Adds link to activate/install plugin and documentation.
6122
+ #: languages/vue.php:739
6123
  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"
6124
  msgstr ""
6125
 
6126
+ #: languages/vue.php:742
6127
  msgid "GDPR Guide"
6128
  msgstr ""
6129
 
6130
+ #: languages/vue.php:745
6131
  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. "
6132
  msgstr ""
6133
 
6134
+ #: languages/vue.php:748
6135
  msgid "How to Install and Activate MonsterInsights Addons"
6136
  msgstr ""
6137
 
6138
+ #: languages/vue.php:751
6139
  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."
6140
  msgstr ""
6141
 
6142
+ #: languages/vue.php:754
6143
  msgid "Enabling eCommerce Tracking and Reports"
6144
  msgstr ""
6145
 
6146
+ #: languages/vue.php:757
6147
  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."
6148
  msgstr ""
6149
 
6150
+ #: languages/vue.php:760
6151
  msgid "Read Documentation"
6152
  msgstr ""
6153
 
6154
+ #: languages/vue.php:763
6155
  msgid "Getting Started with MonsterInsights"
6156
  msgstr ""
6157
 
6158
+ #: languages/vue.php:766
6159
  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."
6160
  msgstr ""
6161
 
6162
+ #: languages/vue.php:769
6163
  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."
6164
  msgstr ""
6165
 
6166
+ #: languages/vue.php:772
6167
  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!."
6168
  msgstr ""
6169
 
6170
+ #: languages/vue.php:775
6171
  msgid "Launch the wizard!"
6172
  msgstr ""
6173
 
6174
+ #: languages/vue.php:778
6175
  msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
6176
  msgstr ""
6177
 
6178
  #. Translators: Makes text bold.
6179
+ #: languages/vue.php:782
6180
  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."
6181
  msgstr ""
6182
 
6183
+ #: languages/vue.php:785
6184
  msgid "Universal Tracking across devices and campaigns with just a few clicks."
6185
  msgstr ""
6186
 
6187
+ #: languages/vue.php:788
6188
  msgid "See your website analytics reports inside the WordPress dashboard"
6189
  msgstr ""
6190
 
6191
+ #: languages/vue.php:791
6192
  msgid "Get real-time stats right inside WordPress"
6193
  msgstr ""
6194
 
6195
+ #: languages/vue.php:794
6196
  msgid "1-click Google Analytics Enhanced eCommerce tracking"
6197
  msgstr ""
6198
 
6199
+ #: languages/vue.php:797
6200
  msgid "Get detailed stats for each post and page."
6201
  msgstr ""
6202
 
6203
+ #: languages/vue.php:800
6204
  msgid "Automatically track clicks on your affiliate links and ads."
6205
  msgstr ""
6206
 
6207
+ #: languages/vue.php:803
6208
  msgid "Make Google Analytics GDPR compliant automatically"
6209
  msgstr ""
6210
 
6211
+ #: languages/vue.php:806
6212
  msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
6213
  msgstr ""
6214
 
6215
+ #: languages/vue.php:809
6216
  msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
6217
  msgstr ""
6218
 
6219
+ #: languages/vue.php:812
6220
  msgid "More advanced features"
6221
  msgstr ""
6222
 
6223
+ #: languages/vue.php:815
6224
  msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
6225
  msgstr ""
6226
 
6227
  #. Translators: Makes text green.
6228
+ #: languages/vue.php:819
6229
  msgid "Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6230
  msgstr ""
6231
 
6232
+ #: languages/vue.php:822
6233
  msgid "How to Connect to Google Analytics"
6234
  msgstr ""
6235
 
6236
+ #: languages/vue.php:825
6237
  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."
6238
  msgstr ""
6239
 
6240
+ #: languages/vue.php:828
6241
  msgid "Guide and Checklist for Advanced Insights"
6242
  msgstr ""
6243
 
6244
+ #: languages/vue.php:831
6245
  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."
6246
  msgstr ""
6247
 
6248
+ #: languages/vue.php:834
6249
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6250
  msgstr ""
6251
 
6252
+ #: languages/vue.php:837
6253
  msgid "WordPress Admin Area Reports"
6254
  msgstr ""
6255
 
6256
+ #: languages/vue.php:840
6257
  msgid "Standard Reports"
6258
  msgstr ""
6259
 
6260
+ #: languages/vue.php:843
6261
  msgid "Overview Reports for the last 30 days."
6262
  msgstr ""
6263
 
6264
+ #: languages/vue.php:846
6265
  msgid "Advanced Reports"
6266
  msgstr ""
6267
 
6268
+ #: languages/vue.php:849
6269
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6270
  msgstr ""
6271
 
6272
+ #: languages/vue.php:852
6273
  msgid "Dashboard Widget"
6274
  msgstr ""
6275
 
6276
+ #: languages/vue.php:855
6277
  msgid "Basic Widget"
6278
  msgstr ""
6279
 
6280
+ #: languages/vue.php:858
6281
  msgid "Overview Report Synopsis"
6282
  msgstr ""
6283
 
6284
+ #: languages/vue.php:861
6285
  msgid "Advanced Dashboard Widget"
6286
  msgstr ""
6287
 
6288
+ #: languages/vue.php:864
6289
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6290
  msgstr ""
6291
 
6292
+ #: languages/vue.php:870
6293
  msgid "Email Summaries"
6294
  msgstr ""
6295
 
6296
+ #: languages/vue.php:873
6297
  msgid "Included"
6298
  msgstr ""
6299
 
6300
+ #: languages/vue.php:876
6301
  msgid "Get weekly traffic reports directly in your inbox."
6302
  msgstr ""
6303
 
6304
+ #: languages/vue.php:879
6305
  msgid "Publisher Reports"
6306
  msgstr ""
6307
 
6308
+ #: languages/vue.php:882
6309
  msgid "Advanced Publisher Reports & Tracking"
6310
  msgstr ""
6311
 
6312
+ #: languages/vue.php:885
6313
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6314
  msgstr ""
6315
 
6316
+ #: languages/vue.php:891
6317
  msgid "Basic Options"
6318
  msgstr ""
6319
 
6320
+ #: languages/vue.php:894
6321
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6322
  msgstr ""
6323
 
6324
+ #: languages/vue.php:897
6325
  msgid "Dynamic Popular Posts & Popular Products"
6326
  msgstr ""
6327
 
6328
+ #: languages/vue.php:900
6329
  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."
6330
  msgstr ""
6331
 
6332
+ #: languages/vue.php:903
6333
  msgid "Not Available"
6334
  msgstr ""
6335
 
6336
+ #: languages/vue.php:906
6337
  msgid "Complete Custom Dimensions Tracking"
6338
  msgstr ""
6339
 
6340
+ #: languages/vue.php:909
6341
  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"
6342
  msgstr ""
6343
 
6344
+ #: languages/vue.php:915
6345
  msgid "Limited Support"
6346
  msgstr ""
6347
 
6348
+ #: languages/vue.php:918
6349
  msgid "Priority Support"
6350
  msgstr ""
6351
 
6352
+ #: languages/vue.php:921
6353
  msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
6354
  msgstr ""
6355
 
6356
+ #: languages/vue.php:924
6357
  msgid "Feature"
6358
  msgstr ""
6359
 
6360
+ #: languages/vue.php:927
6361
  msgid "Lite"
6362
  msgstr ""
6363
 
6364
+ #: languages/vue.php:930
6365
  msgid "Pro"
6366
  msgstr ""
6367
 
6368
+ #: languages/vue.php:933
6369
  msgid "Custom Google Analytics Link Tracking"
6370
  msgstr ""
6371
 
6372
+ #: languages/vue.php:936
6373
  msgid "Standard Tracking"
6374
  msgstr ""
6375
 
6376
+ #: languages/vue.php:939
6377
  msgid "Advanced Tracking"
6378
  msgstr ""
6379
 
6380
+ #: languages/vue.php:942
6381
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6382
  msgstr ""
6383
 
6384
+ #: languages/vue.php:945
6385
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6386
  msgstr ""
6387
 
6388
+ #: languages/vue.php:948
6389
  msgid "No-Code-Needed Tracking Features"
6390
  msgstr ""
6391
 
6392
+ #: languages/vue.php:951
6393
  msgid "Basic Tracking Options"
6394
  msgstr ""
6395
 
6396
+ #: languages/vue.php:954
6397
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6398
  msgstr ""
6399
 
6400
+ #: languages/vue.php:957
6401
  msgid "Advanced Tracking Options"
6402
  msgstr ""
6403
 
6404
+ #: languages/vue.php:960
6405
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6406
  msgstr ""
6407
 
6408
+ #: languages/vue.php:963
6409
  msgid "eCommerce Tracking"
6410
  msgstr ""
6411
 
6412
+ #: languages/vue.php:966
6413
  msgid "One-click Complete eCommerce tracking"
6414
  msgstr ""
6415
 
6416
+ #: languages/vue.php:969
6417
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6418
  msgstr ""
6419
 
6420
+ #: languages/vue.php:972
6421
  msgid "Forms Tracking"
6422
  msgstr ""
6423
 
6424
+ #: languages/vue.php:975
6425
  msgid "One-click Form Events Tracking"
6426
  msgstr ""
6427
 
6428
+ #: languages/vue.php:979
6429
  msgid "License Key"
6430
  msgstr ""
6431
 
6432
  #. Translators: Add link to retrieve license key from account.
6433
+ #: languages/vue.php:983
6434
  msgid "Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6435
  msgstr ""
6436
 
6437
+ #: languages/vue.php:986
6438
  msgid "Google Authentication"
6439
  msgstr ""
6440
 
6441
+ #: languages/vue.php:989
6442
  msgid "Connect Google Analytics + WordPress"
6443
  msgstr ""
6444
 
6445
+ #: languages/vue.php:992
6446
  msgid "You will be taken to the MonsterInsights website where you'll need to connect your Analytics account."
6447
  msgstr ""
6448
 
6449
+ #: languages/vue.php:995
6450
  msgid "Miscellaneous"
6451
  msgstr ""
6452
 
6453
+ #: languages/vue.php:998
6454
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6455
  msgstr ""
6456
 
6457
+ #: languages/vue.php:1001
6458
  msgid "Hide Announcements"
6459
  msgstr ""
6460
 
6461
+ #: languages/vue.php:1004
6462
  msgid "Setup Wizard"
6463
  msgstr ""
6464
 
6465
+ #: languages/vue.php:1007
6466
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6467
  msgstr ""
6468
 
6469
+ #: languages/vue.php:1010
6470
  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."
6471
  msgstr ""
6472
 
6473
+ #: languages/vue.php:1013
6474
  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."
6475
  msgstr ""
6476
 
6477
+ #: languages/vue.php:1016
6478
  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\"."
6479
  msgstr ""
6480
 
6481
+ #: languages/vue.php:1019
6482
  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."
6483
  msgstr ""
6484
 
6485
+ #: languages/vue.php:1022
6486
  msgid "Yup, we know a thing or two about building awesome products that customers love."
6487
  msgstr ""
6488
 
6489
+ #: languages/vue.php:1025
6490
  msgid "The MonsterInsights Team"
6491
  msgstr ""
6492
 
6493
+ #: languages/vue.php:1028
6494
  msgid "Make your MonsterInsights campaign links prettier with Pretty Links!"
6495
  msgstr ""
6496
 
6497
+ #: languages/vue.php:1031
6498
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
6499
  msgstr ""
6500
 
6501
+ #: languages/vue.php:1034
6502
  msgid "Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!"
6503
  msgstr ""
6504
 
6505
+ #: languages/vue.php:1037
6506
  msgid "Over 200,000 websites use Pretty Links!"
6507
  msgstr ""
6508
 
6509
+ #: languages/vue.php:1040
6510
  msgid "Install Pretty Links"
6511
  msgstr ""
6512
 
6513
+ #: languages/vue.php:1043
6514
  msgid "Pretty Links Installed & Activated"
6515
  msgstr ""
6516
 
6517
+ #: languages/vue.php:1046
6518
  msgid "Download Pretty Links"
6519
  msgstr ""
6520
 
6521
+ #: languages/vue.php:1049
6522
  msgid "Install Pretty Links from the WordPress.org plugin repository."
6523
  msgstr ""
6524
 
6525
+ #: languages/vue.php:1052
6526
  msgid "Activate Pretty Links"
6527
  msgstr ""
6528
 
6529
+ #: languages/vue.php:1055
6530
  msgid "Activating Pretty Links..."
6531
  msgstr ""
6532
 
6533
+ #: languages/vue.php:1058
6534
  msgid "Create New Pretty Link"
6535
  msgstr ""
6536
 
6537
+ #: languages/vue.php:1061
6538
  msgid "Create a New Pretty Link"
6539
  msgstr ""
6540
 
6541
+ #: languages/vue.php:1064
6542
  msgid "Grab your campaign link and paste it into the Target URL field."
6543
  msgstr ""
6544
 
6545
+ #: languages/vue.php:1067
6546
  msgid "Custom Campaign Parameters"
6547
  msgstr ""
6548
 
6549
+ #: languages/vue.php:1070
6550
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
6551
  msgstr ""
6552
 
6553
+ #: languages/vue.php:1073
6554
  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."
6555
  msgstr ""
6556
 
6557
  #. Translators: Marks the field as required.
6558
+ #: languages/vue.php:1077
6559
  msgid "Website URL %s"
6560
  msgstr ""
6561
 
6562
  #. Translators: Display the current website url in italic.
6563
+ #: languages/vue.php:1081
6564
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
6565
  msgstr ""
6566
 
6567
  #. Translators: Marks the field as required.
6568
+ #: languages/vue.php:1085
6569
  msgid "Campaign Source %s"
6570
  msgstr ""
6571
 
6572
  #. Translators: Make the text italic.
6573
+ #: languages/vue.php:1089
6574
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
6575
  msgstr ""
6576
 
6577
  #. Translators: Make the text italic.
6578
+ #: languages/vue.php:1093
6579
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
6580
  msgstr ""
6581
 
6582
  #. Translators: Make the text italic.
6583
+ #: languages/vue.php:1097
6584
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
6585
  msgstr ""
6586
 
6587
+ #: languages/vue.php:1100
6588
  msgid "Enter the paid keyword"
6589
  msgstr ""
6590
 
6591
+ #: languages/vue.php:1103
6592
  msgid "Enter something to differentiate ads"
6593
  msgstr ""
6594
 
6595
+ #: languages/vue.php:1106
6596
  msgid "Use Fragment"
6597
  msgstr ""
6598
 
6599
  #. Translators: Make the text bold.
6600
+ #: languages/vue.php:1110
6601
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
6602
  msgstr ""
6603
 
6604
+ #: languages/vue.php:1113
6605
  msgid "URL to use"
6606
  msgstr ""
6607
 
6608
+ #: languages/vue.php:1116
6609
  msgid "(Updates automatically)"
6610
  msgstr ""
6611
 
6612
+ #: languages/vue.php:1119
6613
  msgid "Copy to Clipboard"
6614
  msgstr ""
6615
 
6616
+ #: languages/vue.php:1122
6617
  msgid "Copy to Pretty Links"
6618
  msgstr ""
6619
 
6620
+ #: languages/vue.php:1125
6621
  msgid "Make your campaign links prettier!"
6622
  msgstr ""
6623
 
6624
+ #: languages/vue.php:1128
6625
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
6626
  msgstr ""
6627
 
6628
+ #: languages/vue.php:1131
6629
  msgid "More Information & Examples"
6630
  msgstr ""
6631
 
6632
+ #: languages/vue.php:1134
6633
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
6634
  msgstr ""
6635
 
6636
+ #: languages/vue.php:1137
6637
  msgid "Campaign Source"
6638
  msgstr ""
6639
 
6640
+ #: languages/vue.php:1140
6641
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
6642
  msgstr ""
6643
 
6644
+ #: languages/vue.php:1143
6645
  msgid "Campaign Medium"
6646
  msgstr ""
6647
 
6648
+ #: languages/vue.php:1146
6649
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
6650
  msgstr ""
6651
 
6652
+ #: languages/vue.php:1149
6653
  msgid "Campaign Name"
6654
  msgstr ""
6655
 
6656
+ #: languages/vue.php:1152
6657
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
6658
  msgstr ""
6659
 
6660
+ #: languages/vue.php:1155
6661
  msgid "Campaign Term"
6662
  msgstr ""
6663
 
6664
+ #: languages/vue.php:1158
6665
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
6666
  msgstr ""
6667
 
6668
+ #: languages/vue.php:1161
6669
  msgid "Campaign Content"
6670
  msgstr ""
6671
 
6672
+ #: languages/vue.php:1164
6673
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
6674
  msgstr ""
6675
 
6676
  #. Translators: Example.
6677
+ #: languages/vue.php:1168
6678
  msgid "Example: %s"
6679
  msgstr ""
6680
 
6681
  #. Translators: Examples.
6682
+ #: languages/vue.php:1172
6683
  msgid "Examples: %s"
6684
  msgstr ""
6685
 
6686
+ #: languages/vue.php:1175
6687
  msgid "About Campaigns"
6688
  msgstr ""
6689
 
6690
+ #: languages/vue.php:1178
6691
  msgid "About Custom Campaigns"
6692
  msgstr ""
6693
 
6694
+ #: languages/vue.php:1181
6695
  msgid "Best Practices for Creating Custom Campaigns"
6696
  msgstr ""
6697
 
6698
+ #: languages/vue.php:1184
6699
  msgid "About the Referral Traffic Report"
6700
  msgstr ""
6701
 
6702
+ #: languages/vue.php:1187
6703
  msgid "About Traffic Source Dimensions"
6704
  msgstr ""
6705
 
6706
+ #: languages/vue.php:1190
6707
  msgid "AdWords Auto-Tagging"
6708
  msgstr ""
6709
 
6710
+ #: languages/vue.php:1193
6711
  msgid "Additional Information"
6712
  msgstr ""
6713
 
6714
+ #: languages/vue.php:1196
6715
  msgid "Import/Export"
6716
  msgstr ""
6717
 
6718
+ #: languages/vue.php:1199
6719
  msgid "Import"
6720
  msgstr ""
6721
 
6722
+ #: languages/vue.php:1202
6723
  msgid "Import settings from another MonsterInsights website."
6724
  msgstr ""
6725
 
6726
+ #: languages/vue.php:1205
6727
  msgid "Export"
6728
  msgstr ""
6729
 
6730
+ #: languages/vue.php:1208
6731
  msgid "Export settings to import into another MonsterInsights install."
6732
  msgstr ""
6733
 
6734
+ #: languages/vue.php:1211
6735
  msgid "Import Settings"
6736
  msgstr ""
6737
 
6738
+ #: languages/vue.php:1214
6739
  msgid "Export Settings"
6740
  msgstr ""
6741
 
6742
+ #: languages/vue.php:1217
6743
  msgid "Please choose a file to import"
6744
  msgstr ""
6745
 
6746
+ #: languages/vue.php:1220
6747
  msgid "Click Choose file below to select the settings export file from another site."
6748
  msgstr ""
6749
 
6750
+ #: languages/vue.php:1223
6751
  msgid "Use the button below to export a file with your MonsterInsights settings."
6752
  msgstr ""
6753
 
6754
+ #: languages/vue.php:1226
6755
  msgid "Uploading file..."
6756
  msgstr ""
6757
 
6758
+ #: languages/vue.php:1229
6759
  msgid "File imported"
6760
  msgstr ""
6761
 
6762
+ #: languages/vue.php:1232
6763
  msgid "Settings successfully updated!"
6764
  msgstr ""
6765
 
6766
+ #: languages/vue.php:1235
6767
  msgid "Error importing settings"
6768
  msgstr ""
6769
 
6770
+ #: languages/vue.php:1238
6771
  msgid "Please choose a .json file generated by a MonsterInsights settings export."
6772
  msgstr ""
6773
 
6774
+ #: languages/vue.php:1241
6775
  msgid "MonsterInsights Recommends WPForms"
6776
  msgstr ""
6777
 
6778
+ #: languages/vue.php:1244
6779
  msgid "Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market."
6780
  msgstr ""
6781
 
6782
+ #: languages/vue.php:1247
6783
  msgid "Used on over 4,000,000 websites!"
6784
  msgstr ""
6785
 
6786
+ #: languages/vue.php:1250
6787
  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!"
6788
  msgstr ""
6789
 
6790
+ #: languages/vue.php:1253
6791
  msgid "Skip this Step"
6792
  msgstr ""
6793
 
6794
+ #: languages/vue.php:1256
6795
  msgid "Continue & Install WPForms"
6796
  msgstr ""
6797
 
6798
+ #: languages/vue.php:1259
6799
  msgid "Installing..."
6800
  msgstr ""
6801
 
6802
+ #: languages/vue.php:1262
6803
  msgid "Show in widget mode"
6804
  msgstr ""
6805
 
6806
+ #: languages/vue.php:1265
6807
  msgid "Show in full-width mode"
6808
  msgstr ""
6809
 
6810
+ #: languages/vue.php:1272
6811
  msgid "Installing Addon"
6812
  msgstr ""
6813
 
6814
+ #: languages/vue.php:1275
6815
  msgid "Activating Addon"
6816
  msgstr ""
6817
 
6818
+ #: languages/vue.php:1278
6819
  msgid "Addon Activated"
6820
  msgstr ""
6821
 
6822
+ #: languages/vue.php:1281
6823
  msgid "Loading report data"
6824
  msgstr ""
6825
 
6826
+ #: languages/vue.php:1284
6827
  msgid "Please activate manually"
6828
  msgstr ""
6829
 
6830
  #. Translators: Adds the error status and status text.
6831
+ #: languages/vue.php:1288
6832
  msgid "Error: %1$s, %2$s"
6833
  msgstr ""
6834
 
6835
+ #: languages/vue.php:1291
6836
  msgid "Error Activating Addon"
6837
  msgstr ""
6838
 
6839
+ #: languages/vue.php:1294
6840
  #: lite/includes/admin/wp-site-health.php:372
6841
  #: lite/includes/admin/wp-site-health.php:398
6842
  #: lite/includes/admin/wp-site-health.php:425
6843
  msgid "View Addons"
6844
  msgstr ""
6845
 
6846
+ #: languages/vue.php:1297
6847
  msgid "Dismiss"
6848
  msgstr ""
6849
 
6850
+ #: languages/vue.php:1300
6851
  msgid "Redirecting"
6852
  msgstr ""
6853
 
6854
+ #: languages/vue.php:1303
6855
  msgid "Please wait"
6856
  msgstr ""
6857
 
6858
+ #: languages/vue.php:1306
6859
  msgid "activate"
6860
  msgstr ""
6861
 
6862
+ #: languages/vue.php:1309
6863
  msgid "install"
6864
  msgstr ""
6865
 
6866
+ #: languages/vue.php:1312
6867
  msgid "Visit addons page"
6868
  msgstr ""
6869
 
6870
+ #: languages/vue.php:1315
6871
  msgid "Report Unavailable"
6872
  msgstr ""
6873
 
6874
  #. Translators: Install/Activate the addon.
6875
+ #: languages/vue.php:1319
6876
  msgid "%s Addon"
6877
  msgstr ""
6878
 
6879
+ #: languages/vue.php:1322
6880
  msgid "Go Back To Reports"
6881
  msgstr ""
6882
 
6883
+ #: languages/vue.php:1325
6884
  msgid "Enable Enhanced eCommerce"
6885
  msgstr ""
6886
 
6887
  #. Translators: Placeholders are used for making text bold and adding a link.
6888
+ #: languages/vue.php:1329
6889
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6890
  msgstr ""
6891
 
6892
+ #: languages/vue.php:1332
6893
  msgid "Last 30 Days Insights for:"
6894
  msgstr ""
6895
 
6896
+ #: languages/vue.php:1335
6897
  msgid "Your Website"
6898
  msgstr ""
6899
 
6900
+ #: languages/vue.php:1338
6901
  msgid "Sessions"
6902
  msgstr ""
6903
 
6904
+ #: languages/vue.php:1341
6905
  msgid "Pageviews"
6906
  msgstr ""
6907
 
6908
+ #: languages/vue.php:1344
6909
  msgid "Avg. Duration"
6910
  msgstr ""
6911
 
6912
+ #: languages/vue.php:1350
6913
  msgid "Total Users"
6914
  msgstr ""
6915
 
6916
+ #: languages/vue.php:1353
6917
  msgid "More data is available"
6918
  msgstr ""
6919
 
6920
+ #: languages/vue.php:1356
6921
  msgid "Want to see page-specific stats?"
6922
  msgstr ""
6923
 
6924
+ #: languages/vue.php:1359
6925
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6926
  msgstr ""
6927
 
6928
+ #: languages/vue.php:1362
6929
  msgid "No addons found."
6930
  msgstr ""
6931
 
6932
+ #: languages/vue.php:1365
6933
  msgid "Refresh Addons"
6934
  msgstr ""
6935
 
6936
+ #: languages/vue.php:1368
6937
  msgid "Refreshing Addons"
6938
  msgstr ""
6939
 
6940
  #. Translators: Make text green.
6941
+ #: languages/vue.php:1372
6942
  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!"
6943
  msgstr ""
6944
 
6945
+ #: languages/vue.php:1375
6946
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
6947
  msgstr ""
6948
 
6949
+ #: languages/vue.php:1378
6950
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
6951
  msgstr ""
6952
 
6953
+ #: languages/vue.php:1381
6954
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
6955
  msgstr ""
6956
 
6957
+ #: languages/vue.php:1384
6958
  msgid "See All Your Important Store Metrics in One Place"
6959
  msgstr ""
6960
 
6961
+ #: languages/vue.php:1387
6962
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
6963
  msgstr ""
6964
 
6965
+ #: languages/vue.php:1390
6966
  msgid "ONE-CLICK INTEGRATIONS"
6967
  msgstr ""
6968
 
6969
+ #: languages/vue.php:1393
6970
  msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
6971
  msgstr ""
6972
 
6973
+ #: languages/vue.php:1396
6974
  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."
6975
  msgstr ""
6976
 
6977
+ #: languages/vue.php:1399
6978
  msgid "Affiliate Tracking"
6979
  msgstr ""
6980
 
6981
+ #: languages/vue.php:1402
6982
  msgid "Automatically Track Affiliate Sales"
6983
  msgstr ""
6984
 
6985
+ #: languages/vue.php:1405
6986
  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."
6987
  msgstr ""
6988
 
6989
+ #: languages/vue.php:1408
6990
  msgid "Works with WooCommerce, MemberPress and Easy Digital Downloads."
6991
  msgstr ""
6992
 
6993
+ #: languages/vue.php:1417
6994
  msgid "Cart Funnel"
6995
  msgstr ""
6996
 
6997
+ #: languages/vue.php:1420
6998
  msgid "Customer Insights"
6999
  msgstr ""
7000
 
7001
+ #: languages/vue.php:1423
7002
  msgid "Campaign Measurement"
7003
  msgstr ""
7004
 
7005
+ #: languages/vue.php:1426
7006
  msgid "Customer Profiles"
7007
  msgstr ""
7008
 
7009
+ #: languages/vue.php:1429
7010
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
7011
  msgstr ""
7012
 
7013
+ #: languages/vue.php:1432
7014
  msgid "Truly Understand Your%1$s Customers With %2$sMonsterInsights%3$s"
7015
  msgstr ""
7016
 
7017
+ #: languages/vue.php:1435
7018
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from MonsterInsights!"
7019
  msgstr ""
7020
 
7021
+ #: languages/vue.php:1438
7022
  msgid "Track all-new metrics!"
7023
  msgstr ""
7024
 
7025
+ #: languages/vue.php:1441
7026
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
7027
  msgstr ""
7028
 
7029
+ #: languages/vue.php:1444
7030
  msgid "FEATURES"
7031
  msgstr ""
7032
 
7033
+ #: languages/vue.php:1447
7034
  msgid "Get The Unique Metrics Neccessary for Growth"
7035
  msgstr ""
7036
 
7037
+ #: languages/vue.php:1450
7038
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
7039
  msgstr ""
7040
 
7041
+ #: languages/vue.php:1453
7042
  msgid "Get Answers to the important questions %1$syou should know."
7043
  msgstr ""
7044
 
7045
+ #: languages/vue.php:1456
7046
  msgid "Did the login/registration step of the checkout put users off?"
7047
  msgstr ""
7048
 
7049
+ #: languages/vue.php:1459
7050
  msgid "Which ad campaign is driving the most revenue?"
7051
  msgstr ""
7052
 
7053
+ #: languages/vue.php:1462
7054
  msgid "Who is my typical customer?"
7055
  msgstr ""
7056
 
7057
+ #: languages/vue.php:1465
7058
  msgid "Level-up Your eCommerce store with %1$sMonsterInsights + WooCommerce!%1$s"
7059
  msgstr ""
7060
 
7061
  #. Translators: placeholders make text small.
7062
+ #: languages/vue.php:1469
7063
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
7064
  msgstr ""
7065
 
7066
  #. Translators: placeholders make text small.
7067
+ #: languages/vue.php:1473
7068
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
7069
  msgstr ""
7070
 
7071
  #. Translators: placeholders make text small.
7072
+ #: languages/vue.php:1477
7073
  msgid "None %1$s- Manually update everything.%2$s"
7074
  msgstr ""
7075
 
7076
+ #: languages/vue.php:1480
7077
  msgid "Automatic Updates"
7078
  msgstr ""
7079
 
7080
+ #: languages/vue.php:1483
7081
  msgid "Awesome, You're All Set!"
7082
  msgstr ""
7083
 
7084
+ #: languages/vue.php:1486
7085
  msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
7086
  msgstr ""
7087
 
7088
  #. Translators: Make text bold.
7089
+ #: languages/vue.php:1490
7090
  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."
7091
  msgstr ""
7092
 
7093
  #. Translators: Link to our blog.
7094
+ #: languages/vue.php:1494
7095
  msgid "%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business."
7096
  msgstr ""
7097
 
7098
+ #: languages/vue.php:1497
7099
  msgid "Finish Setup & Exit Wizard"
7100
  msgstr ""
7101
 
7102
+ #: languages/vue.php:1500
7103
  msgid "Checking your website..."
7104
  msgstr ""
7105
 
7106
+ #: languages/vue.php:1503
7107
  msgid "See All Reports"
7108
  msgstr ""
7109
 
7110
+ #: languages/vue.php:1506
7111
  msgid "Go to the Analytics Dashboard"
7112
  msgstr ""
7113
 
7114
  #. Translators: Placeholder adds a line break.
7115
+ #: languages/vue.php:1510
7116
  msgid "Unique %s Sessions"
7117
  msgstr ""
7118
 
7119
+ #. Translators: Number of unique pageviews.
7120
+ #: languages/vue.php:1514
7121
  msgid "Unique %s Pageviews"
7122
  msgstr ""
7123
 
7124
+ #: languages/vue.php:1517
7125
  msgid "A session is the browsing session of a single user to your site."
7126
  msgstr ""
7127
 
7128
+ #: languages/vue.php:1520
7129
  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."
7130
  msgstr ""
7131
 
7132
+ #: languages/vue.php:1523
7133
  msgid "Total duration of all sessions (in seconds) / number of sessions."
7134
  msgstr ""
7135
 
7136
+ #: languages/vue.php:1526
7137
  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."
7138
  msgstr ""
7139
 
7140
+ #: languages/vue.php:1529
7141
  msgid "The number of distinct tracked users"
7142
  msgstr ""
7143
 
7144
+ #: languages/vue.php:1532
7145
  msgid "Avg. Session Duration"
7146
  msgstr ""
7147
 
7148
+ #: languages/vue.php:1535
7149
  msgid "Still Calculating..."
7150
  msgstr ""
7151
 
7152
+ #: languages/vue.php:1538
7153
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7154
  msgstr ""
7155
 
7156
+ #: languages/vue.php:1541
7157
  msgid "Back to Overview Report"
7158
  msgstr ""
7159
 
7160
+ #: languages/vue.php:1544
7161
  msgid "Your 2020 Analytics Report"
7162
  msgstr ""
7163
 
7164
+ #: languages/vue.php:1547
7165
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7166
  msgstr ""
7167
 
7168
+ #: languages/vue.php:1550
7169
  msgid "Audience"
7170
  msgstr ""
7171
 
7172
+ #: languages/vue.php:1553
7173
  msgid "Congrats"
7174
  msgstr ""
7175
 
7176
+ #: languages/vue.php:1556
7177
  msgid "Your website was quite popular this year! "
7178
  msgstr ""
7179
 
7180
+ #: languages/vue.php:1559
7181
  msgid "You had "
7182
  msgstr ""
7183
 
7184
+ #: languages/vue.php:1562
7185
  msgid " visitors!"
7186
  msgstr ""
7187
 
7188
+ #: languages/vue.php:1565
7189
  msgid " visitors"
7190
  msgstr ""
7191
 
7192
+ #: languages/vue.php:1568
7193
  msgid "Total Visitors"
7194
  msgstr ""
7195
 
7196
+ #: languages/vue.php:1571
7197
  msgid "Total Sessions"
7198
  msgstr ""
7199
 
7200
+ #: languages/vue.php:1574
7201
  msgid "Visitors by Month"
7202
  msgstr ""
7203
 
7204
+ #: languages/vue.php:1577
7205
  msgid "January 1, 2020 - December 31, 2020"
7206
  msgstr ""
7207
 
7208
+ #: languages/vue.php:1580
7209
  msgid "A Tip for 2021"
7210
  msgstr ""
7211
 
7212
+ #: languages/vue.php:1584
7213
  msgid "Demographics"
7214
  msgstr ""
7215
 
7216
+ #: languages/vue.php:1587
7217
  msgid "#1"
7218
  msgstr ""
7219
 
7220
+ #: languages/vue.php:1590
7221
  msgid "You Top 5 Countries"
7222
  msgstr ""
7223
 
7224
+ #: languages/vue.php:1593
7225
  msgid "Let’s get to know your visitors a little better, shall we?"
7226
  msgstr ""
7227
 
7228
+ #: languages/vue.php:1596
7229
  msgid "Gender"
7230
  msgstr ""
7231
 
7232
+ #: languages/vue.php:1599
7233
  msgid "Female"
7234
  msgstr ""
7235
 
7236
+ #: languages/vue.php:1602
7237
  msgid "Women"
7238
  msgstr ""
7239
 
7240
+ #: languages/vue.php:1605
7241
  msgid "Male"
7242
  msgstr ""
7243
 
7244
+ #: languages/vue.php:1608
7245
  msgid "Average Age"
7246
  msgstr ""
7247
 
7248
+ #: languages/vue.php:1611
7249
  msgid "Behavior"
7250
  msgstr ""
7251
 
7252
+ #: languages/vue.php:1614
7253
  msgid "Your Top 5 Pages"
7254
  msgstr ""
7255
 
7256
+ #: languages/vue.php:1617
7257
  msgid "Time Spent on Site"
7258
  msgstr ""
7259
 
7260
+ #: languages/vue.php:1620
7261
  msgid "minutes"
7262
  msgstr ""
7263
 
7264
+ #: languages/vue.php:1623
7265
  msgid "Device Type"
7266
  msgstr ""
7267
 
7268
+ #: languages/vue.php:1626
7269
  msgid "A Tip For 2021"
7270
  msgstr ""
7271
 
7272
+ #: languages/vue.php:1629
7273
  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."
7274
  msgstr ""
7275
 
7276
+ #: languages/vue.php:1632
7277
  msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
7278
  msgstr ""
7279
 
7280
+ #: languages/vue.php:1635
7281
  msgid "So, where did all of these visitors come from?"
7282
  msgstr ""
7283
 
7284
+ #: languages/vue.php:1638
7285
  msgid "Clicks"
7286
  msgstr ""
7287
 
7288
+ #: languages/vue.php:1641
7289
  msgid "Your Top 5 Keywords"
7290
  msgstr ""
7291
 
7292
+ #: languages/vue.php:1644
7293
  msgid "What keywords visitors searched for to find your site"
7294
  msgstr ""
7295
 
7296
+ #: languages/vue.php:1647
7297
  msgid "Your Top 5 Referrals"
7298
  msgstr ""
7299
 
7300
+ #: languages/vue.php:1650
7301
  msgid "The websites that link back to your website"
7302
  msgstr ""
7303
 
7304
+ #: languages/vue.php:1653
7305
  msgid "Opportunity"
7306
  msgstr ""
7307
 
7308
+ #: languages/vue.php:1656
7309
  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."
7310
  msgstr ""
7311
 
7312
+ #: languages/vue.php:1659
7313
  msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
7314
  msgstr ""
7315
 
7316
+ #: languages/vue.php:1662
7317
  msgid "Thank you for using MonsterInsights!"
7318
  msgstr ""
7319
 
7320
+ #: languages/vue.php:1665
7321
  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."
7322
  msgstr ""
7323
 
7324
+ #: languages/vue.php:1668
7325
  msgid "Here's to an amazing 2021!"
7326
  msgstr ""
7327
 
7328
+ #: languages/vue.php:1671
7329
  msgid "Enjoying MonsterInsights"
7330
  msgstr ""
7331
 
7332
+ #: languages/vue.php:1674
7333
  msgid "Leave a five star review!"
7334
  msgstr ""
7335
 
7336
+ #: languages/vue.php:1677
7337
  msgid "Syed Balkhi"
7338
  msgstr ""
7339
 
7340
+ #: languages/vue.php:1680
7341
  msgid "Chris Christoff"
7342
  msgstr ""
7343
 
7344
+ #: languages/vue.php:1683
7345
  msgid "Write Review"
7346
  msgstr ""
7347
 
7348
+ #: languages/vue.php:1686
7349
  msgid "Did you know over 10 million websites use our plugins?"
7350
  msgstr ""
7351
 
7352
+ #: languages/vue.php:1689
7353
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7354
  msgstr ""
7355
 
7356
+ #: languages/vue.php:1692
7357
  msgid "Join our Communities!"
7358
  msgstr ""
7359
 
7360
+ #: languages/vue.php:1695
7361
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7362
  msgstr ""
7363
 
7364
+ #: languages/vue.php:1698
7365
  msgid "Facebook Group"
7366
  msgstr ""
7367
 
7368
+ #: languages/vue.php:1701
7369
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7370
  msgstr ""
7371
 
7372
+ #: languages/vue.php:1704
7373
  msgid "Join Now...It’s Free!"
7374
  msgstr ""
7375
 
7376
+ #: languages/vue.php:1707
7377
  msgid "WordPress Tutorials by WPBeginner"
7378
  msgstr ""
7379
 
7380
+ #: languages/vue.php:1710
7381
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7382
  msgstr ""
7383
 
7384
+ #: languages/vue.php:1713
7385
  msgid "Visit WPBeginner"
7386
  msgstr ""
7387
 
7388
+ #: languages/vue.php:1716
7389
  msgid "Follow Us!"
7390
  msgstr ""
7391
 
7392
+ #: languages/vue.php:1719
7393
  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."
7394
  msgstr ""
7395
 
7396
+ #: languages/vue.php:1722
7397
  msgid "Copyright MonsterInsights, 2021"
7398
  msgstr ""
7399
 
7400
+ #: languages/vue.php:1725
7401
  msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
7402
  msgstr ""
7403
 
7404
+ #: languages/vue.php:1728
7405
  msgid "January"
7406
  msgstr ""
7407
 
7408
+ #: languages/vue.php:1731
7409
  msgid "February"
7410
  msgstr ""
7411
 
7412
+ #: languages/vue.php:1734
7413
  msgid "March"
7414
  msgstr ""
7415
 
7416
+ #: languages/vue.php:1737
7417
  msgid "April"
7418
  msgstr ""
7419
 
7420
+ #: languages/vue.php:1740
7421
  msgid "May"
7422
  msgstr ""
7423
 
7424
+ #: languages/vue.php:1743
7425
  msgid "June"
7426
  msgstr ""
7427
 
7428
+ #: languages/vue.php:1746
7429
  msgid "July"
7430
  msgstr ""
7431
 
7432
+ #: languages/vue.php:1749
7433
  msgid "August"
7434
  msgstr ""
7435
 
7436
+ #: languages/vue.php:1752
7437
  msgid "September"
7438
  msgstr ""
7439
 
7440
+ #: languages/vue.php:1755
7441
  msgid "October"
7442
  msgstr ""
7443
 
7444
+ #: languages/vue.php:1758
7445
  msgid "November"
7446
  msgstr ""
7447
 
7448
+ #: languages/vue.php:1761
7449
  msgid "December"
7450
  msgstr ""
7451
 
7452
  #. Translators: Number of visitors.
7453
+ #: languages/vue.php:1765
7454
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7455
  msgstr ""
7456
 
7457
+ #: languages/vue.php:1768
7458
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7459
  msgstr ""
7460
 
7461
  #. Translators: Number of visitors.
7462
+ #: languages/vue.php:1772
7463
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7464
  msgstr ""
7465
 
7466
  #. Translators: Number of visitors.
7467
+ #: languages/vue.php:1776
7468
  msgid "%s Visitors"
7469
  msgstr ""
7470
 
7471
  #. Translators: Percent and Number of visitors.
7472
+ #: languages/vue.php:1780
7473
  msgid "%1$s&#37 of your visitors were %2$s"
7474
  msgstr ""
7475
 
7476
  #. Translators: Number of visitors and their age.
7477
+ #: languages/vue.php:1784
7478
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7479
  msgstr ""
7480
 
7481
+ #: languages/vue.php:1787
7482
  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>"
7483
  msgstr ""
7484
 
7485
  #. Translators: Number of minutes spent on site.
7486
+ #: languages/vue.php:1791
7487
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7488
  msgstr ""
7489
 
7490
  #. Translators: Name of device type.
7491
+ #: languages/vue.php:1795
7492
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7493
  msgstr ""
7494
 
7495
  #. Translators: Number of visitors and device percentage.
7496
+ #: languages/vue.php:1799
7497
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7498
  msgstr ""
7499
 
7500
+ #: languages/vue.php:1802
7501
  msgid "Desktop"
7502
  msgstr ""
7503
 
7504
+ #: languages/vue.php:1805
7505
  msgid "Tablet"
7506
  msgstr ""
7507
 
7508
+ #: languages/vue.php:1808
7509
  msgid "Mobile"
7510
  msgstr ""
7511
 
7512
+ #: languages/vue.php:1811
7513
  msgid "Right Now"
7514
  msgstr ""
7515
 
7516
+ #: languages/vue.php:1814
7517
  msgid "Active users on site"
7518
  msgstr ""
7519
 
7520
+ #: languages/vue.php:1817
7521
  msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
7522
  msgstr ""
7523
 
7524
+ #: languages/vue.php:1820
7525
  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."
7526
  msgstr ""
7527
 
7528
+ #: languages/vue.php:1823
7529
  msgid "The real-time report automatically updates approximately every 60 seconds."
7530
  msgstr ""
7531
 
7532
  #. Translators: Number of seconds that have passed since the report was refreshed.
7533
+ #: languages/vue.php:1827
7534
  msgid "The real-time report was last updated %s seconds ago."
7535
  msgstr ""
7536
 
7537
+ #: languages/vue.php:1830
7538
  msgid "The latest data will be automatically shown on this page when it becomes available."
7539
  msgstr ""
7540
 
7541
+ #: languages/vue.php:1833
7542
  msgid "There is no need to refresh the browser (doing so won't have any effect)."
7543
  msgstr ""
7544
 
7545
+ #: languages/vue.php:1836
7546
  msgid "Pageviews Per Minute"
7547
  msgstr ""
7548
 
7549
+ #: languages/vue.php:1839
7550
  msgid "Top Pages"
7551
  msgstr ""
7552
 
7553
+ #: languages/vue.php:1842
7554
  msgid "No pageviews currently."
7555
  msgstr ""
7556
 
7557
+ #: languages/vue.php:1845
7558
  msgid "Page"
7559
  msgstr ""
7560
 
7561
+ #: languages/vue.php:1848
7562
  msgid "Pageview Count"
7563
  msgstr ""
7564
 
7565
+ #: languages/vue.php:1851
7566
  msgid "Percent of Total"
7567
  msgstr ""
7568
 
7569
+ #: languages/vue.php:1854
7570
  msgid "This is the number of active users currently on your site."
7571
  msgstr ""
7572
 
7573
+ #: languages/vue.php:1857
7574
  msgid "This graph shows the number of pageviews for each of the last 30 minutes."
7575
  msgstr ""
7576
 
7577
+ #: languages/vue.php:1860
7578
  msgid "This list shows the top pages users are currently viewing on your site."
7579
  msgstr ""
7580
 
7581
+ #: languages/vue.php:1863
7582
  msgid "View All Real-Time Pageviews"
7583
  msgstr ""
7584
 
7585
+ #: languages/vue.php:1866
7586
  msgid "View All Real-Time Traffic Sources"
7587
  msgstr ""
7588
 
7589
+ #: languages/vue.php:1869
7590
  msgid "View All Real-Time Traffic by Country"
7591
  msgstr ""
7592
 
7593
+ #: languages/vue.php:1872
7594
  msgid "View All Real-Time Traffic by City"
7595
  msgstr ""
7596
 
7597
+ #: languages/vue.php:1875
7598
  msgid "Show Overview Reports"
7599
  msgstr ""
7600
 
7601
+ #: languages/vue.php:1878
7602
  msgid "Show Publishers Reports"
7603
  msgstr ""
7604
 
7605
+ #: languages/vue.php:1881
7606
  msgid "Show eCommerce Reports"
7607
  msgstr ""
7608
 
7609
+ #: languages/vue.php:1884
7610
  msgid "Settings Menu"
7611
  msgstr ""
7612
 
7613
+ #: languages/vue.php:1887
7614
  msgid "Available in PRO version"
7615
  msgstr ""
7616
 
7617
+ #: languages/vue.php:1890
7618
  msgid "Thank you for being a loyal MonsterInsights Lite user."
7619
  msgstr ""
7620
 
7621
+ #: languages/vue.php:1893
7622
  msgid "Upgrade to MonsterInsights Pro and unlock all the awesome features."
7623
  msgstr ""
7624
 
7625
  #. Translators: Gets replaced with the coupon code.
7626
+ #: languages/vue.php:1897
7627
  msgid "Use coupon code %s to get 50%% off."
7628
  msgstr ""
7629
 
7630
+ #: languages/vue.php:1900
7631
  msgid "Dashboard widget"
7632
  msgstr ""
7633
 
7634
+ #: languages/vue.php:1903
7635
  msgid "Affiliate Links"
7636
  msgstr ""
7637
 
7638
+ #: languages/vue.php:1906
7639
  msgid "Enhanced Ecommerce"
7640
  msgstr ""
7641
 
7642
+ #: languages/vue.php:1909
7643
  msgid "Banner Ads"
7644
  msgstr ""
7645
 
7646
+ #: languages/vue.php:1912
7647
  msgid "Google AMP"
7648
  msgstr ""
7649
 
7650
+ #: languages/vue.php:1915
7651
  msgid "SEO Score Tracking"
7652
  msgstr ""
7653
 
7654
+ #: languages/vue.php:1918
7655
  msgid "Activating..."
7656
  msgstr ""
7657
 
7658
+ #: languages/vue.php:1921
7659
  msgid "Deactivating..."
7660
  msgstr ""
7661
 
7662
+ #: languages/vue.php:1924
7663
  msgid "Deactivate"
7664
  msgstr ""
7665
 
7666
  #. Translators: The status of the addon (installed/active/inactive).
7667
+ #: languages/vue.php:1928
7668
  msgid "Status: %s"
7669
  msgstr ""
7670
 
7671
+ #: languages/vue.php:1931
7672
  msgid "Not Installed"
7673
  msgstr ""
7674
 
7675
+ #: languages/vue.php:1934
7676
  msgid "Network Active"
7677
  msgstr ""
7678
 
7679
+ #: languages/vue.php:1937
7680
  msgid "Active"
7681
  msgstr ""
7682
 
7683
+ #: languages/vue.php:1940
7684
  msgid "Inactive"
7685
  msgstr ""
7686
 
7687
  #. Translators: Adds a link to the general settings tab.
7688
+ #: languages/vue.php:1944
7689
  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."
7690
  msgstr ""
7691
 
7692
+ #: languages/vue.php:1947
7693
  msgid "Export PDF Reports"
7694
  msgstr ""
7695
 
7696
+ #: languages/vue.php:1950
7697
  msgid "Permissions"
7698
  msgstr ""
7699
 
7700
+ #: languages/vue.php:1953
7701
  msgid "Allow These User Roles to See Reports"
7702
  msgstr ""
7703
 
7704
+ #: languages/vue.php:1956
7705
  msgid "Users that have at least one of these roles will be able to view the reports."
7706
  msgstr ""
7707
 
7708
+ #: languages/vue.php:1959
7709
  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."
7710
  msgstr ""
7711
 
7712
+ #: languages/vue.php:1962
7713
  msgid "Allow These User Roles to Save Settings"
7714
  msgstr ""
7715
 
7716
+ #: languages/vue.php:1965
7717
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
7718
  msgstr ""
7719
 
7720
+ #: languages/vue.php:1968
7721
  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."
7722
  msgstr ""
7723
 
7724
+ #: languages/vue.php:1971
7725
  msgid "Exclude These User Roles From Tracking"
7726
  msgstr ""
7727
 
7728
+ #: languages/vue.php:1974
7729
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
7730
  msgstr ""
7731
 
7732
+ #: languages/vue.php:1977
7733
  msgid "Performance"
7734
  msgstr ""
7735
 
7736
+ #: languages/vue.php:1980
7737
  msgid "Custom code"
7738
  msgstr ""
7739
 
7740
  #. Translators: Adds a link to the Google reference.
7741
+ #: languages/vue.php:1984
7742
  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."
7743
  msgstr ""
7744
 
7745
+ #: languages/vue.php:1990
7746
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
7747
  msgstr ""
7748
 
7749
+ #: languages/vue.php:1993
7750
  msgid "Hide Admin Bar Reports"
7751
  msgstr ""
7752
 
7753
  #. Translators: placeholders make text small.
7754
+ #: languages/vue.php:1997
7755
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
7756
  msgstr ""
7757
 
7758
  #. Translators: placeholders make text small.
7759
+ #: languages/vue.php:2001
7760
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
7761
  msgstr ""
7762
 
7763
  #. Translators: placeholders make text small.
7764
+ #: languages/vue.php:2005
7765
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
7766
  msgstr ""
7767
 
7768
+ #: languages/vue.php:2008
7769
  msgid "View notifications"
7770
  msgstr ""
7771
 
7772
  #. Translators: Error status and error text.
7773
+ #: languages/vue.php:2012
7774
  msgid "Can't load settings. Error: %1$s, %2$s"
7775
  msgstr ""
7776
 
7777
+ #: languages/vue.php:2015
7778
  msgid "You appear to be offline."
7779
  msgstr ""
7780
 
7781
  #. Translators: Error status and error text.
7782
+ #: languages/vue.php:2019
7783
  msgid "Can't save settings. Error: %1$s, %2$s"
7784
  msgstr ""
7785
 
7786
+ #: languages/vue.php:2022
7787
  msgid "Network error encountered. Settings not saved."
7788
  msgstr ""
7789
 
7790
  #. Translators: Error status and error text.
7791
+ #: languages/vue.php:2026
7792
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
7793
  msgstr ""
7794
 
7795
  #. Translators: Error status and error text.
7796
+ #: languages/vue.php:2030
7797
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
7798
  msgstr ""
7799
 
7800
  #. Translators: Error status and error text.
7801
+ #: languages/vue.php:2034
7802
  msgid "Can't load license details. Error: %1$s, %2$s"
7803
  msgstr ""
7804
 
7805
+ #: languages/vue.php:2037
7806
  msgid "Error loading license details"
7807
  msgstr ""
7808
 
7809
  #. Translators: Error status and error text.
7810
+ #: languages/vue.php:2041
7811
  msgid "Can't verify the license. Error: %1$s, %2$s"
7812
  msgstr ""
7813
 
7814
  #. Translators: Error status and error text.
7815
+ #: languages/vue.php:2045
7816
  msgid "Can't validate the license. Error: %1$s, %2$s"
7817
  msgstr ""
7818
 
7819
  #. Translators: Error status and error text.
7820
+ #: languages/vue.php:2049
7821
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7822
  msgstr ""
7823
 
7824
  #. Translators: Error status and error text.
7825
+ #: languages/vue.php:2053
7826
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7827
  msgstr ""
7828
 
7829
+ #: languages/vue.php:2056
7830
  msgid "You appear to be offline. Settings not saved."
7831
  msgstr ""
7832
 
7833
  #. Translators: Error status and error text.
7834
+ #: languages/vue.php:2060
7835
  msgid "Can't authenticate. Error: %1$s, %2$s"
7836
  msgstr ""
7837
 
7838
  #. Translators: Error status and error text.
7839
+ #: languages/vue.php:2064
7840
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7841
  msgstr ""
7842
 
7843
  #. Translators: Error status and error text.
7844
+ #: languages/vue.php:2068
7845
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7846
  msgstr ""
7847
 
7848
+ #: languages/vue.php:2071
7849
  msgid "Proceed"
7850
  msgstr ""
7851
 
7852
+ #: languages/vue.php:2074
7853
  msgid "Connection Information"
7854
  msgstr ""
7855
 
7856
+ #: languages/vue.php:2077
7857
  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."
7858
  msgstr ""
7859
 
7860
+ #: languages/vue.php:2080
7861
  msgid "Hostname"
7862
  msgstr ""
7863
 
7864
+ #: languages/vue.php:2083
7865
  msgid "FTP Username"
7866
  msgstr ""
7867
 
7868
+ #: languages/vue.php:2086
7869
  msgid "FTP Password"
7870
  msgstr ""
7871
 
7872
+ #: languages/vue.php:2089
7873
  msgid "This password will not be stored on the server."
7874
  msgstr ""
7875
 
7876
+ #: languages/vue.php:2092
7877
  msgid "Connection Type"
7878
  msgstr ""
7879
 
7880
+ #: languages/vue.php:2095
7881
  msgid "Cancel"
7882
  msgstr ""
7883
 
7884
+ #: languages/vue.php:2098
7885
  msgid "You appear to be offline. WPForms not installed."
7886
  msgstr ""
7887
 
7888
  #. Translators: Error status and error text.
7889
+ #: languages/vue.php:2102
7890
  msgid "Can't activate addon. Error: %1$s, %2$s"
7891
  msgstr ""
7892
 
7893
+ #: languages/vue.php:2105
7894
  msgid "You appear to be offline. Addon not activated."
7895
  msgstr ""
7896
 
7897
  #. Translators: Error status and error text.
7898
+ #: languages/vue.php:2109
7899
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
7900
  msgstr ""
7901
 
7902
+ #: languages/vue.php:2112
7903
  msgid "You appear to be offline. Addon not deactivated."
7904
  msgstr ""
7905
 
7906
  #. Translators: Error status and error text.
7907
+ #: languages/vue.php:2116
7908
  msgid "Can't install plugin. Error: %1$s, %2$s"
7909
  msgstr ""
7910
 
7911
+ #: languages/vue.php:2119
7912
  msgid "You appear to be offline. Plugin not installed."
7913
  msgstr ""
7914
 
7915
  #. Translators: Error status and error text.
7916
+ #: languages/vue.php:2123
7917
  msgid "Can't install addon. Error: %1$s, %2$s"
7918
  msgstr ""
7919
 
7920
+ #: languages/vue.php:2126
7921
  msgid "You appear to be offline. Addon not installed."
7922
  msgstr ""
7923
 
7924
  #. Translators: Error status and error text.
7925
+ #: languages/vue.php:2130
7926
  msgid "Can't install WPForms. Error: %1$s, %2$s"
7927
  msgstr ""
7928
 
7929
  #. Translators: Example path (/go/).
7930
+ #: languages/vue.php:2134
7931
  msgid "Path (example: %s)"
7932
  msgstr ""
7933
 
7934
+ #: languages/vue.php:2137
7935
  msgid "Path has to start with a / and have no spaces"
7936
  msgstr ""
7937
 
7938
  #. Translators: Example label (aff).
7939
+ #: languages/vue.php:2141
7940
  msgid "Label (example: %s)"
7941
  msgstr ""
7942
 
7943
+ #: languages/vue.php:2144
7944
  msgid "Label can't contain any spaces"
7945
  msgstr ""
7946
 
7947
  #. Translators: Add links to documentation.
7948
+ #: languages/vue.php:2148
7949
  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."
7950
  msgstr ""
7951
 
7952
+ #: languages/vue.php:2151
7953
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
7954
  msgstr ""
7955
 
7956
+ #: languages/vue.php:2154
7957
  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."
7958
  msgstr ""
7959
 
7960
+ #: languages/vue.php:2157
7961
  msgid "Disable the Headline Analyzer"
7962
  msgstr ""
7963
 
7964
+ #: languages/vue.php:2160
7965
  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."
7966
  msgstr ""
7967
 
7968
+ #: languages/vue.php:2163
7969
  msgid "Or manually enter UA code (limited functionality)"
7970
  msgstr ""
7971
 
7972
+ #: languages/vue.php:2167
7973
  msgid "Dual Tracking Profile"
7974
  msgstr ""
7975
 
7976
+ #: languages/vue.php:2171
7977
  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."
7978
  msgstr ""
7979
 
7980
+ #: languages/vue.php:2175
7981
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
7982
  msgstr ""
7983
 
7984
+ #: languages/vue.php:2179
7985
  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."
7986
  msgstr ""
7987
 
7988
+ #: languages/vue.php:2182
7989
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
7990
  msgstr ""
7991
 
7992
+ #: languages/vue.php:2186
7993
  msgid "Measurement Protocol API Secret"
7994
  msgstr ""
7995
 
7996
+ #: languages/vue.php:2190
7997
  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."
7998
  msgstr ""
7999
 
8000
+ #: languages/vue.php:2193
8001
  msgid "Force Deauthenticate"
8002
  msgstr ""
8003
 
8004
+ #: languages/vue.php:2196
8005
  msgid "Disconnect MonsterInsights"
8006
  msgstr ""
8007
 
8008
+ #: languages/vue.php:2199
8009
  msgid "Authenticating"
8010
  msgstr ""
8011
 
8012
+ #: languages/vue.php:2202
8013
  msgid "Verifying Credentials"
8014
  msgstr ""
8015
 
8016
+ #: languages/vue.php:2205
8017
  msgid "Your site is connected to MonsterInsights!"
8018
  msgstr ""
8019
 
8020
+ #: languages/vue.php:2208
8021
  msgid "Deauthenticating"
8022
  msgstr ""
8023
 
8024
+ #: languages/vue.php:2211
8025
  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."
8026
  msgstr ""
8027
 
8028
+ #: languages/vue.php:2214
8029
  msgid "Connect MonsterInsights"
8030
  msgstr ""
8031
 
8032
+ #: languages/vue.php:2217
8033
  msgid "Verify Credentials"
8034
  msgstr ""
8035
 
8036
+ #: languages/vue.php:2220
8037
  msgid "Website Profile"
8038
  msgstr ""
8039
 
8040
+ #: languages/vue.php:2223
8041
  msgid "Active Profile"
8042
  msgstr ""
8043
 
8044
+ #: languages/vue.php:2226
8045
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
8046
  msgstr ""
8047
 
8048
+ #: languages/vue.php:2229
8049
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
8050
  msgstr ""
8051
 
8052
+ #: languages/vue.php:2232
8053
  msgid "Manually enter your UA code"
8054
  msgstr ""
8055
 
8056
+ #: languages/vue.php:2235
8057
  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."
8058
  msgstr ""
8059
 
8060
+ #: languages/vue.php:2239
8061
  msgid "Manually enter your GA4 Measurement ID"
8062
  msgstr ""
8063
 
8064
+ #: languages/vue.php:2242
8065
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
8066
  msgstr ""
8067
 
8068
+ #: languages/vue.php:2245
8069
  msgid "Anonymize IP Addresses"
8070
  msgstr ""
8071
 
8072
+ #: languages/vue.php:2248
8073
  msgid "Link Attribution"
8074
  msgstr ""
8075
 
8076
+ #: languages/vue.php:2251
8077
  msgid "Enable Enhanced Link Attribution"
8078
  msgstr ""
8079
 
8080
+ #: languages/vue.php:2254
8081
  msgid "Enable Anchor Tracking"
8082
  msgstr ""
8083
 
8084
+ #: languages/vue.php:2257
8085
  msgid "Enable allowAnchor"
8086
  msgstr ""
8087
 
8088
+ #: languages/vue.php:2260
8089
  msgid "Enable allowLinker"
8090
  msgstr ""
8091
 
8092
+ #: languages/vue.php:2263
8093
  msgid "Enable Tag Links in RSS"
8094
  msgstr ""
8095
 
8096
+ #: languages/vue.php:2266
8097
  msgid "File Downloads"
8098
  msgstr ""
8099
 
8100
+ #: languages/vue.php:2269
8101
  msgid "Extensions of Files to Track as Downloads"
8102
  msgstr ""
8103
 
8104
+ #: languages/vue.php:2272
8105
  msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
8106
  msgstr ""
8107
 
8108
  #. Translators: Add links to the documentation.
8109
+ #: languages/vue.php:2276
8110
  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."
8111
  msgstr ""
8112
 
8113
  #. Translators: Adds a link to the documentation.
8114
+ #: languages/vue.php:2280
8115
  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."
8116
  msgstr ""
8117
 
8118
  #. Translators: Adds a link to the documentation.
8119
+ #: languages/vue.php:2284
8120
  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."
8121
  msgstr ""
8122
 
8123
+ #: languages/vue.php:2287
8124
  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."
8125
  msgstr ""
8126
 
8127
  #. Translators: Adds a link to the documentation.
8128
+ #: languages/vue.php:2291
8129
  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."
8130
  msgstr ""
8131
 
8132
  #. Translators: Adds a link to the documentation.
8133
+ #: languages/vue.php:2295
8134
  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."
8135
  msgstr ""
8136
 
8137
  #. Translators: Adds a link to the documentation.
8138
+ #: languages/vue.php:2299
8139
  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."
8140
  msgstr ""
8141
 
8142
+ #: languages/vue.php:2302
8143
  msgid "Add domain"
8144
  msgstr ""
8145
 
8146
  #. Translators: Example domain.
8147
+ #: languages/vue.php:2306
8148
  msgid "Domain (example: %s)"
8149
  msgstr ""
8150
 
8151
  #. Translators: Current site domain to be avoided.
8152
+ #: languages/vue.php:2310
8153
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
8154
  msgstr ""
8155
 
8156
+ #: languages/vue.php:2313
8157
  msgid "Cross Domain Tracking"
8158
  msgstr ""
8159
 
8160
  #. Translators: Adds a link to the documentation.
8161
+ #: languages/vue.php:2317
8162
  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."
8163
  msgstr ""
8164
 
8165
  #. Translators: Number of days.
8166
+ #: languages/vue.php:2321
8167
  msgid "vs. Previous Day"
8168
  msgstr ""
8169
 
8170
+ #: languages/vue.php:2324
8171
  msgid "No change"
8172
  msgstr ""
8173
 
8174
+ #: languages/vue.php:2327
8175
  msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
8176
  msgstr ""
8177
 
8178
+ #: languages/vue.php:2330
8179
  msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
8180
  msgstr ""
8181
 
8182
+ #: languages/vue.php:2333
8183
  msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
8184
  msgstr ""
8185
 
8186
+ #: languages/vue.php:2336
8187
  msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
8188
  msgstr ""
8189
 
8190
+ #: languages/vue.php:2339
8191
  msgid "Use Google Optimize to easily perform A/B split tests on your site."
8192
  msgstr ""
8193
 
8194
+ #: languages/vue.php:2342
8195
  msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
8196
  msgstr ""
8197
 
8198
+ #: languages/vue.php:2345
8199
  msgid "Unlock search console report to see your top performing keywords in Google."
8200
  msgstr ""
8201
 
8202
+ #: languages/vue.php:2348
8203
  msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
8204
  msgstr ""
8205
 
8206
+ #: languages/vue.php:2351
8207
  msgid "Publishers Report shows your top performing pages, audience demographics, and more."
8208
  msgstr ""
8209
 
8210
+ #: languages/vue.php:2354
8211
  msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
8212
  msgstr ""
8213
 
8214
+ #: languages/vue.php:2357
8215
  msgid "Upgrade to Pro »"
8216
  msgstr ""
8217
 
8218
+ #: languages/vue.php:2360
8219
  msgid "Pro Tip:"
8220
  msgstr ""
8221
 
8222
+ #: languages/vue.php:2363
8223
  msgid "Show"
8224
  msgstr ""
8225
 
8226
+ #: languages/vue.php:2366
8227
  msgid "Hide dashboard widget"
8228
  msgstr ""
8229
 
8230
+ #: languages/vue.php:2369
8231
  msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
8232
  msgstr ""
8233
 
8234
+ #: languages/vue.php:2372
8235
  msgid "Yes, hide it!"
8236
  msgstr ""
8237
 
8238
+ #: languages/vue.php:2375
8239
  msgid "No, cancel!"
8240
  msgstr ""
8241
 
8242
+ #: languages/vue.php:2378
8243
  msgid "MonsterInsights Widget Hidden"
8244
  msgstr ""
8245
 
8246
+ #: languages/vue.php:2381
8247
  msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
8248
  msgstr ""
8249
 
8250
+ #: languages/vue.php:2388
8251
  msgid "Usage Tracking"
8252
  msgstr ""
8253
 
8254
+ #: languages/vue.php:2391
8255
  msgid "Allow Usage Tracking"
8256
  msgstr ""
8257
 
8258
+ #: languages/vue.php:2395
8259
  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."
8260
  msgstr ""
8261
 
8262
  #. Translators: Add links to documentation.
8263
+ #: languages/vue.php:2400
8264
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
8265
  msgstr ""
8266
 
8267
  #. Translators: Make text green and add smiley face.
8268
+ #: languages/vue.php:2404
8269
  msgid "You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s"
8270
  msgstr ""
8271
 
8272
  #. Translators: Add link to upgrade.
8273
+ #: languages/vue.php:2408
8274
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
8275
  msgstr ""
8276
 
8277
  #. Translators: Make text green.
8278
+ #: languages/vue.php:2412
8279
  msgid "As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
8280
  msgstr ""
8281
 
8282
+ #: languages/vue.php:2415
8283
  msgid "Unlock PRO Features Now"
8284
  msgstr ""
8285
 
8286
+ #: languages/vue.php:2418
8287
  msgid "Paste your license key here"
8288
  msgstr ""
8289
 
8290
+ #: languages/vue.php:2421
8291
  msgid "Verify"
8292
  msgstr ""
8293
 
8294
  #. Translators: Add link to retrieve license from account area.
8295
+ #: languages/vue.php:2425
8296
  msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s."
8297
  msgstr ""
8298
 
8299
+ #: languages/vue.php:2428
8300
  msgid "There was an error unlocking MonsterInsights PRO please try again or install manually."
8301
  msgstr ""
8302
 
8303
  #. Translators: Error status and error text.
8304
+ #: languages/vue.php:2432
8305
  msgid "Can't load errors. Error: %1$s, %2$s"
8306
  msgstr ""
8307
 
8308
+ #: languages/vue.php:2435
8309
  msgid "No options available"
8310
  msgstr ""
8311
 
8312
+ #: languages/vue.php:2438
8313
  msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
8314
  msgstr ""
8315
 
8316
+ #: languages/vue.php:2441
8317
  msgid "Automatically migrate all of your SEO settings with just 1 click!"
8318
  msgstr ""
8319
 
8320
+ #: languages/vue.php:2444
8321
  msgid "1,938"
8322
  msgstr ""
8323
 
8324
+ #: languages/vue.php:2447
8325
  msgid "2+ Million Active Installs"
8326
  msgstr ""
8327
 
8328
+ #: languages/vue.php:2450
8329
  msgid "AIOSEO is the DIY Solution for Managing your SEO"
8330
  msgstr ""
8331
 
8332
+ #: languages/vue.php:2453
8333
  msgid "Set up the proper SEO foundations in less than 10 minutes."
8334
  msgstr ""
8335
 
8336
+ #: languages/vue.php:2456
8337
  msgid "SEO Audit Checklist"
8338
  msgstr ""
8339
 
8340
+ #: languages/vue.php:2459
8341
  msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
8342
  msgstr ""
8343
 
8344
+ #: languages/vue.php:2462
8345
  msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
8346
  msgstr ""
8347
 
8348
+ #: languages/vue.php:2465
8349
  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."
8350
  msgstr ""
8351
 
8352
+ #: languages/vue.php:2468
8353
  msgid "Get AIOSEO for WordPress"
8354
  msgstr ""
8355
 
8356
+ #: languages/vue.php:2471
8357
  msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
8358
  msgstr ""
8359
 
8360
+ #: languages/vue.php:2474
8361
  msgid "Try it out today, for free."
8362
  msgstr ""
8363
 
8364
+ #: languages/vue.php:2477
8365
  msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
8366
  msgstr ""
8367
 
8368
+ #: languages/vue.php:2480
8369
  msgid "Activate and Install the Plugin with just one click!"
8370
  msgstr ""
8371
 
8372
+ #: languages/vue.php:2483
8373
  msgid "Installing AIOSEO..."
8374
  msgstr ""
8375
 
8376
+ #: languages/vue.php:2486
8377
  msgid "Congrats! All-in-One SEO Installed."
8378
  msgstr ""
8379
 
8380
+ #: languages/vue.php:2489
8381
  msgid "Switch to AIOSEO"
8382
  msgstr ""
8383
 
8384
+ #: languages/vue.php:2492
8385
  msgid "Installation Failed. Please refresh and try again."
8386
  msgstr ""
8387
 
8388
+ #: languages/vue.php:2495
8389
  msgid "Activating AIOSEO..."
8390
  msgstr ""
8391
 
8392
+ #: languages/vue.php:2498
8393
  msgid "Activate AIOSEO"
8394
  msgstr ""
8395
 
8396
+ #: languages/vue.php:2501
8397
  msgid "Activation Failed. Please refresh and try again."
8398
  msgstr ""
8399
 
8400
  #. Translators: The name of the field that is throwing a validation error.
8401
+ #: languages/vue.php:2505
8402
  msgid "%s can't be empty."
8403
  msgstr ""
8404
 
8405
+ #: languages/vue.php:2508
8406
  msgid "Duplicate values are not allowed."
8407
  msgstr ""
8408
 
8409
+ #: languages/vue.php:2511
8410
  msgid "You can add maximum 5 items."
8411
  msgstr ""
8412
 
8413
+ #: languages/vue.php:2514
8414
  msgid "At least 0 item required."
8415
  msgstr ""
8416
 
8417
+ #: languages/vue.php:2517
8418
  msgid "Add Another Link Path"
8419
  msgstr ""
8420
 
8421
+ #: languages/vue.php:2520
8422
  msgid "Remove row"
8423
  msgstr ""
8424
 
8425
+ #: languages/vue.php:2523
8426
  msgid "New"
8427
  msgstr ""
8428
 
8429
+ #: languages/vue.php:2526
8430
  msgid "Returning"
8431
  msgstr ""
8432
 
8433
+ #: languages/vue.php:2529
8434
  msgid "Top 10 Countries"
8435
  msgstr ""
8436
 
8437
+ #: languages/vue.php:2532
8438
  msgid "View Countries Report"
8439
  msgstr ""
8440
 
8441
+ #: languages/vue.php:2535
8442
  msgid "Top 10 Referrals"
8443
  msgstr ""
8444
 
8445
+ #: languages/vue.php:2538
8446
  msgid "View All Referral Sources"
8447
  msgstr ""
8448
 
8449
+ #: languages/vue.php:2541
8450
  msgid "View Full Posts/Pages Report"
8451
  msgstr ""
8452
 
8453
+ #: languages/vue.php:2544
8454
  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."
8455
  msgstr ""
8456
 
8457
+ #: languages/vue.php:2547
8458
  msgid "This list shows the top countries your website visitors are from."
8459
  msgstr ""
8460
 
8461
+ #: languages/vue.php:2550
8462
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8463
  msgstr ""
8464
 
8465
+ #: languages/vue.php:2553
8466
  msgid "Export PDF Overview Report"
8467
  msgstr ""
8468
 
8469
+ #: languages/vue.php:2556
8470
  msgid "Reset to default"
8471
  msgstr ""
8472
 
8473
+ #: languages/vue.php:2559
8474
  msgid "The value entered does not match the required format"
8475
  msgstr ""
8476
 
8477
+ #: languages/vue.php:2562
8478
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
8479
  msgstr ""
8480
 
8481
+ #: languages/vue.php:2565
8482
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
8483
  msgstr ""
8484
 
8485
+ #: languages/vue.php:2568
8486
  msgid "Recommended Settings"
8487
  msgstr ""
8488
 
8489
+ #: languages/vue.php:2571
8490
  msgid "MonsterInsights recommends the following settings based on your configuration."
8491
  msgstr ""
8492
 
8493
+ #: languages/vue.php:2574
8494
  msgid "Events Tracking"
8495
  msgstr ""
8496
 
8497
+ #: languages/vue.php:2577
8498
  msgid "Must have for all click tracking on site."
8499
  msgstr ""
8500
 
8501
+ #: languages/vue.php:2580
8502
  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."
8503
  msgstr ""
8504
 
8505
+ #: languages/vue.php:2583
8506
  msgid "Enhanced Link Attribution"
8507
  msgstr ""
8508
 
8509
+ #: languages/vue.php:2586
8510
  msgid "Improves the accuracy of your In-Page Analytics."
8511
  msgstr ""
8512
 
8513
+ #: languages/vue.php:2589
8514
  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."
8515
  msgstr ""
8516
 
8517
+ #: languages/vue.php:2592
8518
  msgid "Install Updates Automatically"
8519
  msgstr ""
8520
 
8521
+ #: languages/vue.php:2595
8522
  msgid "Get the latest features, bug fixes, and security updates as they are released."
8523
  msgstr ""
8524
 
8525
+ #: languages/vue.php:2598
8526
  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."
8527
  msgstr ""
8528
 
8529
+ #: languages/vue.php:2601
8530
  msgid "File Download Tracking"
8531
  msgstr ""
8532
 
8533
+ #: languages/vue.php:2604
8534
  msgid "Helps you see file downloads data."
8535
  msgstr ""
8536
 
8537
+ #: languages/vue.php:2607
8538
  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."
8539
  msgstr ""
8540
 
8541
+ #: languages/vue.php:2610
8542
  msgid "Helps you increase affiliate revenue."
8543
  msgstr ""
8544
 
8545
+ #: languages/vue.php:2613
8546
  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."
8547
  msgstr ""
8548
 
8549
+ #: languages/vue.php:2616
8550
  msgid "Affiliate Link Tracking"
8551
  msgstr ""
8552
 
8553
+ #: languages/vue.php:2619
8554
  msgid "Who Can See Reports"
8555
  msgstr ""
8556
 
8557
+ #: languages/vue.php:2622
8558
  msgid "These user roles will be able to access MonsterInsights' reports in the WordPress admin area."
8559
  msgstr ""
8560
 
8561
+ #: languages/vue.php:2625
8562
  msgid "Save and continue"
8563
  msgstr ""
8564
 
8565
+ #: languages/vue.php:2628
8566
  msgid "Events Tracking is enabled the moment you set up MonsterInsights"
8567
  msgstr ""
8568
 
8569
+ #: languages/vue.php:2631
8570
  msgid "Enhanced Link Attribution is enabled the moment you set up MonsterInsights"
8571
  msgstr ""
8572
 
8573
+ #: languages/vue.php:2634
8574
  msgid "+ Add Role"
8575
  msgstr ""
8576
 
8577
+ #: languages/vue.php:2637
8578
  msgid "Connect MonsterInsights to Your Website"
8579
  msgstr ""
8580
 
8581
+ #: languages/vue.php:2640
8582
  msgid "MonsterInsights connects Google Analytics to WordPress and shows you stats that matter."
8583
  msgstr ""
8584
 
8585
+ #: languages/vue.php:2643
8586
  msgid "Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
8587
  msgstr ""
8588
 
8589
+ #: languages/vue.php:2646
8590
  msgid "Save and Continue"
8591
  msgstr ""
8592
 
8593
+ #: languages/vue.php:2649
8594
  msgid "UA code can't be empty"
8595
  msgstr ""
8596
 
8597
+ #: languages/vue.php:2652
8598
  msgid "Saving UA code..."
8599
  msgstr ""
8600
 
8601
+ #: languages/vue.php:2655
8602
  msgid "Allow usage tracking"
8603
  msgstr ""
8604
 
8605
+ #: languages/vue.php:2658
8606
  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."
8607
  msgstr ""
8608
 
8609
+ #: languages/vue.php:2661
8610
  msgid "Install All-in-One SEO"
8611
  msgstr ""
8612
 
8613
+ #: languages/vue.php:2664
8614
  msgid "Improve Your Website Search Rankings With All-In-One SEO"
8615
  msgstr ""
8616
 
8617
+ #: languages/vue.php:2667
8618
  msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8619
  msgstr ""
8620
 
8621
+ #: languages/vue.php:2670
8622
  msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8623
  msgstr ""
8624
 
8625
+ #: languages/vue.php:2673
8626
  msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8627
  msgstr ""
8628
 
8629
+ #: languages/vue.php:2676
8630
  msgid "Local SEO"
8631
  msgstr ""
8632
 
8633
+ #: languages/vue.php:2679
8634
  msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8635
  msgstr ""
8636
 
8637
+ #: languages/vue.php:2682
8638
  msgid "WooCommerce SEO"
8639
  msgstr ""
8640
 
8641
+ #: languages/vue.php:2685
8642
  msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8643
  msgstr ""
8644
 
8645
+ #: languages/vue.php:2688
8646
  msgid "SEO Custom User Roles"
8647
  msgstr ""
8648
 
8649
+ #: languages/vue.php:2691
8650
  msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8651
  msgstr ""
8652
 
8653
+ #: languages/vue.php:2694
8654
  msgid "Google News Sitemap"
8655
  msgstr ""
8656
 
8657
+ #: languages/vue.php:2697
8658
  msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8659
  msgstr ""
8660
 
8661
+ #: languages/vue.php:2700
8662
  msgid "Smart XML Sitemaps"
8663
  msgstr ""
8664
 
8665
+ #: languages/vue.php:2703
8666
  msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8667
  msgstr ""
8668
 
8669
+ #: languages/vue.php:2706
8670
  msgid "Social Media Integration"
8671
  msgstr ""
8672
 
8673
+ #: languages/vue.php:2709
8674
  msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8675
  msgstr ""
8676
 
8677
+ #: languages/vue.php:2712
8678
  msgid "TruSEO On-Page Analysis"
8679
  msgstr ""
8680
 
8681
+ #: languages/vue.php:2715
8682
  msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8683
  msgstr ""
8684
 
8685
+ #: languages/vue.php:2718
8686
  msgid "& Many More!"
8687
  msgstr ""
8688
 
8689
+ #: languages/vue.php:2721
8690
  msgid "Installing. Please wait.."
8691
  msgstr ""
8692
 
8693
+ #: languages/vue.php:2724
8694
  msgid "Install All-in-One-SEO"
8695
  msgstr ""
8696
 
8697
+ #: languages/vue.php:2727
8698
  msgid "Welcome to MonsterInsights!"
8699
  msgstr ""
8700
 
8701
+ #: languages/vue.php:2730
8702
  msgid "Let's get you set up."
8703
  msgstr ""
8704
 
8705
+ #: languages/vue.php:2733
8706
  msgid "Which category best describes your website?"
8707
  msgstr ""
8708
 
8709
+ #: languages/vue.php:2736
8710
  msgid "We will recommend the optimal settings for MonsterInsights based on your choice."
8711
  msgstr ""
8712
 
8713
+ #: languages/vue.php:2739
8714
  msgid "Business Website"
8715
  msgstr ""
8716
 
8717
  #. Translators: Make text bold.
8718
+ #: languages/vue.php:2743
8719
  msgid "Publisher %1$s(Blog)%2$s"
8720
  msgstr ""
8721
 
8722
+ #: languages/vue.php:2746
8723
  msgid "Ecommerce"
8724
  msgstr ""
8725
 
8726
+ #: languages/vue.php:2749
8727
  msgid "Caching"
8728
  msgstr ""
8729
 
8730
+ #: languages/vue.php:2752
8731
  msgid "Enable Data Caching"
8732
  msgstr ""
8733
 
8734
+ #: languages/vue.php:2755
8735
  msgid "Refresh Cache Every"
8736
  msgstr ""
8737
 
8738
+ #: languages/vue.php:2758
8739
  msgid "Choose how often to refresh the cache."
8740
  msgstr ""
8741
 
8742
+ #: languages/vue.php:2761
8743
  msgid "Enable Ajaxify"
8744
  msgstr ""
8745
 
8746
+ #: languages/vue.php:2764
8747
  msgid "Ajaxify Widget"
8748
  msgstr ""
8749
 
8750
+ #: languages/vue.php:2767
8751
  msgid "Use to bypass page caching."
8752
  msgstr ""
8753
 
8754
+ #: languages/vue.php:2770
8755
  msgid "Empty Cache"
8756
  msgstr ""
8757
 
8758
+ #: languages/vue.php:2773
8759
  msgid "Click to manually wipe the cache right now."
8760
  msgstr ""
8761
 
8762
+ #: languages/vue.php:2776
8763
  msgid "Popular posts cache emptied"
8764
  msgstr ""
8765
 
8766
+ #: languages/vue.php:2779
8767
  msgid "Error emptying the popular posts cache. Please try again."
8768
  msgstr ""
8769
 
8770
+ #: languages/vue.php:2782
8771
  msgid "Choose Theme"
8772
  msgstr ""
8773
 
8774
+ #: languages/vue.php:2785
8775
  msgid "Widget Styling"
8776
  msgstr ""
8777
 
8778
+ #: languages/vue.php:2788
8779
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
8780
  msgstr ""
8781
 
8782
+ #: languages/vue.php:2791
8783
  msgid "Sort By"
8784
  msgstr ""
8785
 
8786
+ #: languages/vue.php:2794
8787
  msgid "Choose how you'd like the widget to determine your popular posts."
8788
  msgstr ""
8789
 
8790
+ #: languages/vue.php:2797
8791
  msgid "Display Title"
8792
  msgstr ""
8793
 
8794
+ #: languages/vue.php:2803
8795
  msgid "Title your widget and set its display preferences."
8796
  msgstr ""
8797
 
8798
+ #: languages/vue.php:2806
8799
  msgid "Include in Post Types"
8800
  msgstr ""
8801
 
8802
+ #: languages/vue.php:2809
8803
  msgid "Exclude from specific posts"
8804
  msgstr ""
8805
 
8806
  #. Translators: Placeholders make the text bold.
8807
+ #: languages/vue.php:2813
8808
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
8809
  msgstr ""
8810
 
8811
  #. Translators: Placeholders make the text bold.
8812
+ #: languages/vue.php:2817
8813
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
8814
  msgstr ""
8815
 
8816
+ #: languages/vue.php:2820
8817
  msgid "Loading Themes"
8818
  msgstr ""
8819
 
8820
  #. Translators: placeholders make text small.
8821
+ #: languages/vue.php:2824
8822
  msgid "Default Styles %1$s- As seen above.%2$s"
8823
  msgstr ""
8824
 
8825
  #. Translators: placeholders make text small.
8826
+ #: languages/vue.php:2828
8827
  msgid "No Styles %1$s- Use your own CSS.%2$s"
8828
  msgstr ""
8829
 
8830
  #. Translators: placeholders make text small.
8831
+ #: languages/vue.php:2832
8832
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
8833
  msgstr ""
8834
 
8835
  #. Translators: placeholders make text small.
8836
+ #: languages/vue.php:2836
8837
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
8838
  msgstr ""
8839
 
8840
  #. Translators: placeholders make text small.
8841
+ #: languages/vue.php:2840
8842
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
8843
  msgstr ""
8844
 
8845
+ #: languages/vue.php:2843
8846
  msgid "Placement"
8847
  msgstr ""
8848
 
8849
+ #: languages/vue.php:2846
8850
  msgid "Choose how you'd like to place the widget."
8851
  msgstr ""
8852
 
8853
+ #: languages/vue.php:2849
8854
  msgid "Insert After"
8855
  msgstr ""
8856
 
8857
+ #: languages/vue.php:2852
8858
  msgid "Choose where in the post body the widget will be placed."
8859
  msgstr ""
8860
 
8861
+ #: languages/vue.php:2855
8862
  msgid "Customize Design"
8863
  msgstr ""
8864
 
8865
+ #: languages/vue.php:2858
8866
  msgid "words"
8867
  msgstr ""
8868
 
8869
+ #: languages/vue.php:2861
8870
  msgid "Please select at least one post to display."
8871
  msgstr ""
8872
 
8873
  #. Translators: placeholders make text small.
8874
+ #: languages/vue.php:2865
8875
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
8876
  msgstr ""
8877
 
8878
  #. Translators: placeholders make text small.
8879
+ #: languages/vue.php:2869
8880
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
8881
  msgstr ""
8882
 
8883
+ #: languages/vue.php:2872
8884
  msgid "Facebook Instant Articles"
8885
  msgstr ""
8886
 
8887
+ #: languages/vue.php:2875
8888
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
8889
  msgstr ""
8890
 
8891
+ #: languages/vue.php:2878
8892
  msgid "Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
8893
  msgstr ""
8894
 
8895
+ #: languages/vue.php:2881
8896
  msgid "Ads Tracking"
8897
  msgstr ""
8898
 
8899
+ #: languages/vue.php:2884
8900
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
8901
  msgstr ""
8902
 
8903
+ #: languages/vue.php:2887
8904
  msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8905
  msgstr ""
8906
 
8907
+ #: languages/vue.php:2890
8908
  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."
8909
  msgstr ""
8910
 
8911
+ #: languages/vue.php:2893
8912
  msgid "Jack Brown"
8913
  msgstr ""
8914
 
8915
+ #: languages/vue.php:2896
8916
  msgid "PJB Internet Marketing"
8917
  msgstr ""
8918
 
8919
+ #: languages/vue.php:2899
8920
  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."
8921
  msgstr ""
8922
 
8923
+ #: languages/vue.php:2902
8924
  msgid "Joel Steinmann"
8925
  msgstr ""
8926
 
8927
+ #: languages/vue.php:2905
8928
  msgid "CEO, Solergo"
8929
  msgstr ""
8930
 
8931
+ #: languages/vue.php:2908
8932
  msgid "Recommended Addons"
8933
  msgstr ""
8934
 
8935
+ #: languages/vue.php:2911
8936
  msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
8937
  msgstr ""
8938
 
8939
+ #: languages/vue.php:2914
8940
  msgid "Other Addons"
8941
  msgstr ""
8942
 
8943
+ #: languages/vue.php:2917
8944
  msgid "View all MonsterInsights addons"
8945
  msgstr ""
8946
 
8947
+ #: languages/vue.php:2920
8948
  msgid "Scroll Tracking"
8949
  msgstr ""
8950
 
8951
+ #: languages/vue.php:2923
8952
  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."
8953
  msgstr ""
8954
 
8955
+ #: languages/vue.php:2926
8956
  msgid ""
8957
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
8958
  " and other privacy regulations."
8959
  msgstr ""
8960
 
8961
+ #: languages/vue.php:2930
8962
  msgid "EU Compliance"
8963
  msgstr ""
8964
 
8965
+ #: languages/vue.php:2933
8966
  msgid "Compatibility mode"
8967
  msgstr ""
8968
 
8969
+ #: languages/vue.php:2936
8970
  msgid "Enable _gtagTracker Compatibility"
8971
  msgstr ""
8972
 
8973
  #. Translators: Placeholder gets replaced with default GA js function.
8974
+ #: languages/vue.php:2940
8975
  msgid "This enables MonsterInsights to work with plugins that use %1$s and don't support %2$s"
8976
  msgstr ""
8977
 
8978
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
8979
+ #: languages/vue.php:2944
8980
  msgid "%1$sPage %3$s%2$s of %4$s"
8981
  msgstr ""
8982
 
8983
+ #: languages/vue.php:2947
8984
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
8985
  msgid "Theme Preview"
8986
  msgstr ""
8987
 
8988
+ #: languages/vue.php:2950
8989
  msgid "Wide"
8990
  msgstr ""
8991
 
8992
+ #: languages/vue.php:2953
8993
  msgid "Narrow"
8994
  msgstr ""
8995
 
8996
+ #: languages/vue.php:2956
8997
  msgid "Title"
8998
  msgstr ""
8999
 
9000
+ #: languages/vue.php:2959
9001
  msgid "Color"
9002
  msgstr ""
9003
 
9004
+ #: languages/vue.php:2962
9005
  msgid "Size"
9006
  msgstr ""
9007
 
9008
+ #: languages/vue.php:2965
9009
  msgid "Border"
9010
  msgstr ""
9011
 
9012
+ #: languages/vue.php:2968
9013
  msgid "Author/Date"
9014
  msgstr ""
9015
 
9016
+ #: languages/vue.php:2971
9017
  msgid "Label"
9018
  msgstr ""
9019
 
9020
+ #: languages/vue.php:2974
9021
  msgid "Background"
9022
  msgstr ""
9023
 
9024
+ #: languages/vue.php:2986
9025
  msgid "Choose which content you would like displayed in the widget."
9026
  msgstr ""
9027
 
9028
+ #: languages/vue.php:2998
9029
  msgid "Comments"
9030
  msgstr ""
9031
 
9032
+ #: languages/vue.php:3004
9033
  msgid "Choose how many posts you’d like displayed in the widget."
9034
  msgstr ""
9035
 
9036
+ #: languages/vue.php:3007
9037
  msgid "Popular Posts data can be fetched correctly"
9038
  msgstr ""
9039
 
9040
+ #: languages/vue.php:3010
9041
  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."
9042
  msgstr ""
9043
 
9044
+ #: languages/vue.php:3013
9045
  msgid "Close"
9046
  msgstr ""
9047
 
9048
+ #: languages/vue.php:3017
9049
  msgid "Add Top 5 Posts from Google Analytics"
9050
  msgstr ""
9051
 
9052
+ #: languages/vue.php:3020
9053
  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."
9054
  msgstr ""
9055
 
9056
+ #: languages/vue.php:3023
9057
  msgid "Test Automated Posts"
9058
  msgstr ""
9059
 
9060
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
9061
+ #: languages/vue.php:3027
9062
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
9063
  msgstr ""
9064
 
9065
+ #: languages/vue.php:3031
9066
  msgid "Automated + Curated"
9067
  msgstr ""
9068
 
9069
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9070
+ #: languages/vue.php:3035
9071
  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."
9072
  msgstr ""
9073
 
9074
  #. Translators: Placeholder gets replaced with current license version.
9075
+ #: languages/vue.php:3039
9076
  msgid "Pro version is required."
9077
  msgstr ""
9078
 
9079
+ #: languages/vue.php:3042
9080
  msgid "Verifying Popular Posts data"
9081
  msgstr ""
9082
 
9083
+ #: languages/vue.php:3045
9084
  msgid "Select posts/search"
9085
  msgstr ""
9086
 
9087
+ #: languages/vue.php:3048
9088
  msgid "Oops! No posts found."
9089
  msgstr ""
9090
 
9091
+ #: languages/vue.php:3051
9092
  msgid "Search by post title"
9093
  msgstr ""
9094
 
9095
+ #: languages/vue.php:3054
9096
  msgid "Can't load posts."
9097
  msgstr ""
9098
 
9099
+ #: languages/vue.php:3057
9100
  msgid "SharedCount API Key"
9101
  msgstr ""
9102
 
9103
+ #: languages/vue.php:3060
9104
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
9105
  msgstr ""
9106
 
9107
+ #: languages/vue.php:3063
9108
  msgid "Start Indexing"
9109
  msgstr ""
9110
 
9111
+ #: languages/vue.php:3066
9112
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
9113
  msgstr ""
9114
 
9115
+ #: languages/vue.php:3069
9116
  msgid "Indexing completed, counts will update automatically every day."
9117
  msgstr ""
9118
 
9119
+ #: languages/vue.php:3072
9120
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
9121
  msgstr ""
9122
 
9123
+ #: languages/vue.php:3075
9124
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
9125
  msgstr ""
9126
 
9127
+ #: languages/vue.php:3078
9128
  msgid "Icon"
9129
  msgstr ""
9130
 
9131
  #. Translators: Minimum and maximum number that can be used.
9132
+ #: languages/vue.php:3082
9133
  msgid "Please enter a value between %1$s and %2$s"
9134
  msgstr ""
9135
 
9136
  #. Translators: The minimum set value.
9137
+ #: languages/vue.php:3086
9138
  msgid "Please enter a value higher than %s"
9139
  msgstr ""
9140
 
9141
  #. Translators: The maximum set value.
9142
+ #: languages/vue.php:3090
9143
  msgid "Please enter a value lower than %s"
9144
  msgstr ""
9145
 
9146
+ #: languages/vue.php:3093
9147
  msgid "Please enter a number"
9148
  msgstr ""
9149
 
9150
+ #: languages/vue.php:3096
9151
  msgid "Value has to be a round number"
9152
  msgstr ""
9153
 
9154
+ #: languages/vue.php:3099
9155
  msgid "Export PDF Report"
9156
  msgstr ""
9157
 
9158
+ #: languages/vue.php:3102
9159
  msgid "You can export PDF reports only in the PRO version."
9160
  msgstr ""
9161
 
9162
+ #: languages/vue.php:3105
9163
  msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
9164
  msgstr ""
9165
 
9166
+ #: languages/vue.php:3108
9167
  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!"
9168
  msgstr ""
9169
 
9170
+ #: languages/vue.php:3111
9171
  msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
9172
  msgstr ""
9173
 
9174
  #. Translators: Makes text bold.
9175
+ #: languages/vue.php:3115
9176
  msgid "Use coupon code %1$sLITEUPGRADE%2$s"
9177
  msgstr ""
9178
 
9179
  #. Translators: Make text green.
9180
+ #: languages/vue.php:3119
9181
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9182
  msgstr ""
9183
 
9184
  #. Translators: Placeholder adds a line break.
9185
+ #: languages/vue.php:3123
9186
  msgid "You can customize your %sdate range only in the PRO version."
9187
  msgstr ""
9188
 
9189
+ #: languages/vue.php:3126
9190
  msgid "Help Us Improve"
9191
  msgstr ""
9192
 
9193
+ #: languages/vue.php:3129
9194
  msgid "Help us better understand our users and their website needs."
9195
  msgstr ""
9196
 
9197
  #. Translators: Adds a link to the documentation.
9198
+ #: languages/vue.php:3133
9199
  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"
9200
  msgstr ""
9201
 
9202
+ #: languages/vue.php:3136
9203
  msgid "Website profile"
9204
  msgstr ""
9205
 
9206
+ #: languages/vue.php:3139
9207
  msgid "Active profile"
9208
  msgstr ""
9209
 
9210
+ #: languages/vue.php:3142
9211
  msgid "Skip and Keep Connection"
9212
  msgstr ""
9213
 
9214
+ #: languages/vue.php:3145
9215
  msgid "This feature requires MonsterInsights Pro"
9216
  msgstr ""
9217
 
9218
+ #: languages/vue.php:3148
9219
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
9220
  msgstr ""
9221
 
9222
+ #: languages/vue.php:3151
9223
  msgid "Upgrade to Pro and Unlock Popular Products"
9224
  msgstr ""
9225
 
9226
+ #: languages/vue.php:3154
9227
  msgid "View all Pro features"
9228
  msgstr ""
9229
 
9230
+ #: languages/vue.php:3157
9231
  msgid "Days"
9232
  msgstr ""
9233
 
9234
  #. Translators: placeholders make text small.
9235
+ #: languages/vue.php:3161
9236
  msgid "7 days"
9237
  msgstr ""
9238
 
9239
+ #: languages/vue.php:3164
9240
  msgid "30 days"
9241
  msgstr ""
9242
 
9243
+ #: languages/vue.php:3167
9244
  msgid "Custom"
9245
  msgstr ""
9246
 
9247
+ #: languages/vue.php:3170
9248
  msgid "Only Show Posts from These Categories"
9249
  msgstr ""
9250
 
9251
+ #: languages/vue.php:3173
9252
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
9253
  msgstr ""
9254
 
9255
+ #: languages/vue.php:3176
9256
  msgid "Multiple Entries"
9257
  msgstr ""
9258
 
9259
+ #: languages/vue.php:3179
9260
  msgid "Total Number of Widgets to Show"
9261
  msgstr ""
9262
 
9263
+ #: languages/vue.php:3182
9264
  msgid "Choose how many widgets will be placed in a single Post."
9265
  msgstr ""
9266
 
9267
+ #: languages/vue.php:3185
9268
  msgid "Minimum Distance Between Widgets"
9269
  msgstr ""
9270
 
9271
+ #: languages/vue.php:3188
9272
  msgid "Choose the distance between widgets."
9273
  msgstr ""
9274
 
9275
+ #: languages/vue.php:3191
9276
  msgid "Minimum Word Count to Display Multiple Widgets"
9277
  msgstr ""
9278
 
9279
+ #: languages/vue.php:3194
9280
  msgid "Choose the minimum word count for a Post to have multiple entries."
9281
  msgstr ""
9282
 
9283
+ #: languages/vue.php:3197
9284
  msgid "Pro version is required"
9285
  msgstr ""
9286
 
9287
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9288
+ #: languages/vue.php:3201
9289
  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)."
9290
  msgstr ""
9291
 
9292
+ #: languages/vue.php:3204
9293
  msgid "Unlock with %s"
9294
  msgstr ""
9295
 
9296
+ #: languages/vue.php:3207
9297
  msgid "Automatic Placement"
9298
  msgstr ""
9299
 
9300
+ #: languages/vue.php:3210
9301
  msgid "Display using Gutenberg Blocks"
9302
  msgstr ""
9303
 
9304
+ #: languages/vue.php:3213
9305
  msgid "Embed Options"
9306
  msgstr ""
9307
 
9308
+ #: languages/vue.php:3216
9309
  msgid "All Embed Options can be used in conjunction with one another."
9310
  msgstr ""
9311
 
9312
+ #: languages/vue.php:3219
9313
  msgid "Using the Gutenberg Block"
9314
  msgstr ""
9315
 
9316
+ #: languages/vue.php:3222
9317
  msgid "Using Automatic Embed"
9318
  msgstr ""
9319
 
9320
+ #: languages/vue.php:3225
9321
  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."
9322
  msgstr ""
9323
 
9324
+ #: languages/vue.php:3228
9325
  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."
9326
  msgstr ""
9327
 
9328
+ #: languages/vue.php:3231
9329
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9330
  msgstr ""
9331
 
9332
+ #: languages/vue.php:3234
9333
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9334
  msgstr ""
9335
 
9336
+ #: languages/vue.php:3237
9337
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
9338
  msgstr ""
9339
 
9340
+ #: languages/vue.php:3240
9341
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9342
  msgstr ""
9343
 
9344
+ #: languages/vue.php:3243
9345
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9346
  msgstr ""
9347
 
9348
+ #: languages/vue.php:3246
9349
  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."
9350
  msgstr ""
9351
 
9352
+ #: languages/vue.php:3249
9353
  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."
9354
  msgstr ""
9355
 
9356
+ #: languages/vue.php:3252
9357
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9358
  msgstr ""
9359
 
9360
+ #: languages/vue.php:3255
9361
  msgid "Display using a Shortcode"
9362
  msgstr ""
9363
 
9364
+ #: languages/vue.php:3258
9365
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9366
  msgstr ""
9367
 
9368
+ #: languages/vue.php:3261
9369
  msgid "Copy Shortcode"
9370
  msgstr ""
9371
 
9372
+ #: languages/vue.php:3264
9373
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9374
  msgstr ""
9375
 
9376
+ #: languages/vue.php:3267
9377
  msgid "Enable Automatic Placement"
9378
  msgstr ""
9379
 
9380
+ #: languages/vue.php:3270
9381
  msgid "Display in a Sidebar"
9382
  msgstr ""
9383
 
9384
+ #: languages/vue.php:3273
9385
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9386
  msgstr ""
9387
 
9388
+ #: languages/vue.php:3276
9389
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9390
  msgstr ""
9391
 
9392
+ #: languages/vue.php:3279
9393
  msgid "Display Method"
9394
  msgstr ""
9395
 
9396
+ #: languages/vue.php:3282
9397
  msgid "There are two ways to manual include the widget in your posts."
9398
  msgstr ""
9399
 
9400
+ #: languages/vue.php:3285
9401
  msgid "Using the Shortcode"
9402
  msgstr ""
9403
 
9404
+ #: languages/vue.php:3288
9405
  msgid "Learn how to insert the widget using Gutenberg blocks."
9406
  msgstr ""
9407
 
9408
+ #: languages/vue.php:3291
9409
  msgid "Learn how to insert the widget using out Shortcode."
9410
  msgstr ""
9411
 
9412
+ #: languages/vue.php:3294
9413
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9414
  msgstr ""
9415
 
9416
+ #: languages/vue.php:3297
9417
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”."
9418
  msgstr ""
9419
 
9420
+ #: languages/vue.php:3300
9421
  msgid "Shortcode"
9422
  msgstr ""
9423
 
9424
+ #: languages/vue.php:3303
9425
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9426
  msgstr ""
9427
 
9428
+ #: languages/vue.php:3306
9429
  msgid "Facebook Instant Articleasdasdasds"
9430
  msgstr ""
9431
 
9432
+ #: languages/vue.php:3309
9433
  msgid "Media"
9434
  msgstr ""
9435
 
9436
+ #: languages/vue.php:3312
9437
  msgid "Track how your users interact with videos on your website. Upgrade to MonsterInsights Pro."
9438
  msgstr ""
9439
 
9440
+ #: languages/vue.php:3315
9441
  msgid "Improve Your Conversion Rate With Insights Into Which Content Works Best."
9442
  msgstr ""
9443
 
9444
+ #: languages/vue.php:3318
9445
  msgid "Top Affilliate Links"
9446
  msgstr ""
9447
 
9448
+ #: languages/vue.php:3321
9449
  msgid "Scroll Depth"
9450
  msgstr ""
9451
 
9452
+ #: languages/vue.php:3324
9453
  msgid "Increase Sales and Make More Money With Enhanced eCommerce Insights."
9454
  msgstr ""
9455
 
9456
+ #: languages/vue.php:3327
9457
  msgid "10+ eCommerce Integrations"
9458
  msgstr ""
9459
 
9460
+ #: languages/vue.php:3330
9461
  msgid "Average Order Value"
9462
  msgstr ""
9463
 
9464
+ #: languages/vue.php:3333
9465
  msgid "Total Revenue"
9466
  msgstr ""
9467
 
9468
+ #: languages/vue.php:3336
9469
  msgid "Number of Transactions"
9470
  msgstr ""
9471
 
9472
+ #: languages/vue.php:3339
9473
  msgid "Increase Engagement and Unlock New Insights About Your Site."
9474
  msgstr ""
9475
 
9476
+ #: languages/vue.php:3342
9477
  msgid "User ID Tracking"
9478
  msgstr ""
9479
 
9480
+ #: languages/vue.php:3345
9481
  msgid "Post Types"
9482
  msgstr ""
9483
 
9484
+ #: languages/vue.php:3348
9485
  msgid "Tag Tracking"
9486
  msgstr ""
9487
 
9488
+ #: languages/vue.php:3351
9489
  msgid "Categories"
9490
  msgstr ""
9491
 
9492
+ #: languages/vue.php:3354
9493
  msgid "SEO Scores"
9494
  msgstr ""
9495
 
9496
+ #: languages/vue.php:3357
9497
  msgid "Publish Times"
9498
  msgstr ""
9499
 
9500
+ #: languages/vue.php:3360
9501
  msgid "Focus Keywords"
9502
  msgstr ""
9503
 
9504
+ #: languages/vue.php:3363
9505
  msgid "Track Every Type of Web Form and Gain Visibility Into Your Customer Journey."
9506
  msgstr ""
9507
 
9508
+ #: languages/vue.php:3366
9509
  msgid "Conversion Counts"
9510
  msgstr ""
9511
 
9512
+ #: languages/vue.php:3369
9513
  msgid "Impression Counts"
9514
  msgstr ""
9515
 
9516
+ #: languages/vue.php:3372
9517
  msgid "Conversion Rates"
9518
  msgstr ""
9519
 
9520
+ #: languages/vue.php:3375
9521
  msgid "See Exactly How Visitors Find Your Website From Google."
9522
  msgstr ""
9523
 
9524
+ #: languages/vue.php:3378
9525
  msgid "Top Google Search Terms"
9526
  msgstr ""
9527
 
9528
+ #: languages/vue.php:3381
9529
  msgid "Number of Clicks"
9530
  msgstr ""
9531
 
9532
+ #: languages/vue.php:3384
9533
  msgid "Click-through Ratio"
9534
  msgstr ""
9535
 
9536
+ #: languages/vue.php:3387
9537
  msgid "Average Results Position"
9538
  msgstr ""
9539
 
9540
+ #: languages/vue.php:3390
9541
  msgid "Realtime Report"
9542
  msgstr ""
9543
 
9544
+ #: languages/vue.php:3393
9545
  msgid "See Who And What is Happening on Your Website in Realtime."
9546
  msgstr ""
9547
 
9548
+ #: languages/vue.php:3396
9549
  msgid "Top Page Views"
9550
  msgstr ""
9551
 
9552
+ #: languages/vue.php:3399
9553
  msgid "Current Active Users"
9554
  msgstr ""
9555
 
9556
+ #: languages/vue.php:3402
9557
  msgid "Top Referral Sources"
9558
  msgstr ""
9559
 
9560
+ #: languages/vue.php:3405
9561
  msgid "Top Countries"
9562
  msgstr ""
9563
 
9564
+ #: languages/vue.php:3408
9565
  msgid "Top Cities"
9566
  msgstr ""
9567
 
9568
+ #: languages/vue.php:3411
9569
  msgid "Improve Your User Experience and Improve Search Engine Rankings."
9570
  msgstr ""
9571
 
9572
+ #: languages/vue.php:3414
9573
  msgid "Overall Site Speed Score"
9574
  msgstr ""
9575
 
9576
+ #: languages/vue.php:3417
9577
  msgid "Server Response Times"
9578
  msgstr ""
9579
 
9580
+ #: languages/vue.php:3420
9581
  msgid "Mobile and Desktop Scores"
9582
  msgstr ""
9583
 
9584
+ #: languages/vue.php:3423
9585
  msgid "First Contentful Paint"
9586
  msgstr ""
9587
 
9588
+ #: languages/vue.php:3426
9589
  msgid "Automatic Recommendations"
9590
  msgstr ""
9591
 
9592
+ #: languages/vue.php:3429
9593
  msgid "Total Blocking Time"
9594
  msgstr ""
9595
 
9596
+ #: languages/vue.php:3432
9597
  msgid "On-Demand Audits"
9598
  msgstr ""
9599
 
9600
+ #: languages/vue.php:3435
9601
  msgid "Time to Interactive"
9602
  msgstr ""
9603
 
9604
+ #: languages/vue.php:3438
9605
  msgid "2021 Year in Review"
9606
  msgstr ""
9607
 
9608
+ #: languages/vue.php:3441
9609
  msgid "Realtime"
9610
  msgstr ""
9611
 
9612
  #. Translators: Placeholders are used for making text bold and adding a link.
9613
+ #: languages/vue.php:3445
9614
  msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9615
  msgstr ""
9616
 
9617
+ #: languages/vue.php:3448
9618
  msgid "Featured"
9619
  msgstr ""
9620
 
9621
+ #: languages/vue.php:3451
9622
  msgid "Traffic"
9623
  msgstr ""
9624
 
9625
+ #: languages/vue.php:3454
9626
  msgid "Revenue"
9627
  msgstr ""
9628
 
9629
+ #: languages/vue.php:3457
9630
  msgid "Guides & Resources"
9631
  msgstr ""
9632
 
9633
+ #: languages/vue.php:3460
9634
  msgid "Upgrade and Unlock"
9635
  msgstr ""
9636
 
9637
+ #: languages/vue.php:3463
9638
  msgid "What’s in the %1$s?"
9639
  msgstr ""
9640
 
9641
+ #: languages/vue.php:3466
9642
  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"
9643
  msgstr ""
9644
 
9645
+ #: languages/vue.php:3469
9646
  msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9647
  msgstr ""
9648
 
9649
+ #: languages/vue.php:3472
9650
  msgid "Your 2021 Analytics Report"
9651
  msgstr ""
9652
 
9653
+ #: languages/vue.php:3478
9654
  msgid "January 1, 2021 - December 31, 2021"
9655
  msgstr ""
9656
 
9657
+ #: languages/vue.php:3481
9658
  msgid "A Tip for 2022"
9659
  msgstr ""
9660
 
9661
+ #: languages/vue.php:3484
9662
  msgid "A Tip For 2022"
9663
  msgstr ""
9664
 
9665
+ #: languages/vue.php:3487
9666
  msgid "Here's to an amazing 2022!"
9667
  msgstr ""
9668
 
9669
+ #: languages/vue.php:3490
9670
  msgid "Try our other popular WordPress plugins to grow your website in 2022."
9671
  msgstr ""
9672
 
9673
+ #: languages/vue.php:3493
9674
  msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9675
  msgstr ""
9676
 
9677
+ #: languages/vue.php:3496
9678
  msgid "Copyright MonsterInsights, 2022"
9679
  msgstr ""
9680
 
9681
  #. Translators: Number of minutes spent on site.
9682
+ #: languages/vue.php:3500
9683
  msgid "Each visitor spent an average of %s minutes on your website in 2021."
9684
  msgstr ""
9685
 
9686
+ #: languages/vue.php:3503
9687
  msgid "RafflePress"
9688
  msgstr ""
9689
 
9690
+ #: languages/vue.php:3506
9691
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9692
  msgstr ""
9693
 
9694
+ #: languages/vue.php:3509
9695
  msgid "Constant Contact"
9696
  msgstr ""
9697
 
9698
+ #: languages/vue.php:3512
9699
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9700
  msgstr ""
9701
 
9702
+ #: languages/vue.php:3515
9703
  msgid "SEMRUSH"
9704
  msgstr ""
9705
 
9706
+ #: languages/vue.php:3518
9707
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9708
  msgstr ""
9709
 
9710
+ #: languages/vue.php:3521
9711
  msgid "Engagement Tools"
9712
  msgstr ""
9713
 
9714
+ #: languages/vue.php:3524
9715
  msgid "WPForms"
9716
  msgstr ""
9717
 
9718
+ #: languages/vue.php:3527
9719
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9720
  msgstr ""
9721
 
9722
+ #: languages/vue.php:3530
9723
  msgid "OptinMonster"
9724
  msgstr ""
9725
 
9726
+ #: languages/vue.php:3533
9727
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9728
  msgstr ""
9729
 
9730
+ #: languages/vue.php:3536
9731
  msgid "Smash Balloon - Facebook"
9732
  msgstr ""
9733
 
9734
+ #: languages/vue.php:3539
9735
  msgid "Smash Balloon - Instagram"
9736
  msgstr ""
9737
 
9738
+ #: languages/vue.php:3542
9739
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9740
  msgstr ""
9741
 
9742
+ #: languages/vue.php:3545
9743
  msgid "Popular Posts by MonsterInsights"
9744
  msgstr ""
9745
 
9746
+ #: languages/vue.php:3548
9747
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9748
  msgstr ""
9749
 
9750
+ #: languages/vue.php:3551
9751
  msgid "Popular Products by MonsterInsights"
9752
  msgstr ""
9753
 
9754
+ #: languages/vue.php:3554
9755
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9756
  msgstr ""
9757
 
9758
+ #: languages/vue.php:3557
9759
  msgid "Revenue Tools"
9760
  msgstr ""
9761
 
9762
+ #: languages/vue.php:3560
9763
  msgid "SeedProd"
9764
  msgstr ""
9765
 
9766
+ #: languages/vue.php:3563
9767
  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."
9768
  msgstr ""
9769
 
9770
+ #: languages/vue.php:3566
9771
  msgid "Featured Tools"
9772
  msgstr ""
9773
 
9774
+ #: languages/vue.php:3569
9775
  msgid "Easy Affiliate"
9776
  msgstr ""
9777
 
9778
+ #: languages/vue.php:3572
9779
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with MonsterInsights."
9780
  msgstr ""
9781
 
9782
+ #: languages/vue.php:3575
9783
  msgid "SearchWP"
9784
  msgstr ""
9785
 
9786
+ #: languages/vue.php:3578
9787
  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."
9788
  msgstr ""
9789
 
9790
+ #: languages/vue.php:3581
9791
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9792
  msgstr ""
9793
 
9794
+ #: languages/vue.php:3584
9795
  msgid "Create a membership website. Works automatically with MonsterInsights, no coding needed."
9796
  msgstr ""
9797
 
9798
+ #: languages/vue.php:3587
9799
  msgid "Thirsty Affiliates"
9800
  msgstr ""
9801
 
9802
+ #: languages/vue.php:3590
9803
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9804
  msgstr ""
9805
 
9806
+ #: languages/vue.php:3593
9807
  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."
9808
  msgstr ""
9809
 
9810
+ #: languages/vue.php:3596
9811
  msgid "Advanced Coupons"
9812
  msgstr ""
9813
 
9814
+ #: languages/vue.php:3599
9815
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9816
  msgstr ""
9817
 
9818
+ #: languages/vue.php:3602
9819
  msgid "PrettyLinks"
9820
  msgstr ""
9821
 
9822
+ #: languages/vue.php:3605
9823
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9824
  msgstr ""
9825
 
9826
+ #: languages/vue.php:3608
9827
  msgid "Install Now"
9828
  msgstr ""
9829
 
9830
+ #: languages/vue.php:3611
9831
  msgid "Online Marketing Guides & Resources"
9832
  msgstr ""
9833
 
9834
+ #: languages/vue.php:3614
9835
  msgid "MonsterInsights Pro"
9836
  msgstr ""
9837
 
9838
+ #: languages/vue.php:3617
9839
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9840
  msgstr ""
9841
 
9842
+ #: languages/vue.php:3620
9843
  msgid "Traffic Tools"
9844
  msgstr ""
9845
 
9846
+ #: languages/vue.php:3623
9847
  msgid "All in One SEO (AIOSEO)"
9848
  msgstr ""
9849
 
9850
+ #: languages/vue.php:3626
9851
  msgid "The best WordPress SEO plugin that works automatically with MonsterInsights."
9852
  msgstr ""
9853
 
9854
+ #: languages/vue.php:3629
9855
  msgid "PushEngage"
9856
  msgstr ""
9857
 
9858
+ #: languages/vue.php:3632
9859
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9860
  msgstr ""
9861
 
9862
+ #: languages/vue.php:3635
9863
  msgid "With MonsterInsights Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9864
  msgstr ""
9865
 
9866
+ #: languages/vue.php:3638
9867
  msgid "Works automatically with WooCommerce, MemberPress, and EasyDigitalDownloads."
9868
  msgstr ""
9869
 
9870
+ #: languages/vue.php:3641
9871
  msgid "Media Tracking"
9872
  msgstr ""
9873
 
9874
+ #: languages/vue.php:3644
9875
  msgid "Get Started"
9876
  msgstr ""
9877
 
9878
+ #: languages/vue.php:3647
9879
  msgid "Awesome! Tracking and Analytics are All Setup!"
9880
  msgstr ""
9881
 
9882
+ #: languages/vue.php:3650
9883
  msgid "MonsterInsights is connected to Google Analytics and data is being collected."
9884
  msgstr ""
9885
 
9886
+ #: languages/vue.php:3653
9887
  msgid "Complete Setup without Upgrading"
9888
  msgstr ""
9889
 
9890
+ #: languages/vue.php:3656
9891
  msgid "Success"
9892
  msgstr ""
9893
 
9894
+ #: languages/vue.php:3659
9895
  msgid "Connected to Google Analytics"
9896
  msgstr ""
9897
 
9898
+ #: languages/vue.php:3662
9899
  msgid "Tracking Code Installed"
9900
  msgstr ""
9901
 
9902
+ #: languages/vue.php:3665
9903
  msgid "Data Being Collected"
9904
  msgstr ""
9905
 
9906
  #. Translators: Add link to retrieve license from account area.
9907
+ #: languages/vue.php:3669
9908
  msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO!"
9909
  msgstr ""
9910
 
9911
+ #: languages/vue.php:3672
9912
  msgid "Verify License Key"
9913
  msgstr ""
9914
 
9915
+ #: languages/vue.php:3675
9916
  msgid "Upgrade to Unlock These Features"
9917
  msgstr ""
9918
 
9919
+ #: languages/vue.php:3678
9920
  msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
9921
  msgstr ""
9922
 
9923
+ #: languages/vue.php:3681
9924
  msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
9925
  msgstr ""
9926
 
9927
+ #: languages/vue.php:3684
9928
  msgid "Verifying License..."
9929
  msgstr ""
9930
 
9931
+ #: languages/vue.php:3687
9932
  msgid "Privacy Compliance Addon"
9933
  msgstr ""
9934
 
9935
+ #: languages/vue.php:3690
9936
  msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
9937
  msgstr ""
9938
 
9939
+ #: languages/vue.php:3693
9940
  msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
9941
  msgstr ""
9942
 
9943
+ #: languages/vue.php:3696
9944
  msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
9945
  msgstr ""
9946
 
9947
+ #: languages/vue.php:3699
9948
  msgid "20+ Advanced Tracking"
9949
  msgstr ""
9950
 
9951
+ #: languages/vue.php:3702
9952
  msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
9953
  msgstr ""
9954
 
9955
+ #: languages/vue.php:3705
9956
  msgid "Advanced Growth Tools"
9957
  msgstr ""
9958
 
9959
+ #: languages/vue.php:3708
9960
  msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
9961
  msgstr ""
9962
 
9963
+ #: languages/vue.php:3711
9964
  msgid "Track how your users interact with videos on your website."
9965
  msgstr ""
9966
 
9967
+ #: languages/vue.php:3714
9968
  msgid "Error Processing"
9969
  msgstr ""
9970
 
9971
+ #: languages/vue.php:3717
9972
  msgid "There was an error while processing some features. Please try again or you can skip this process for now"
9973
  msgstr ""
9974
 
9975
+ #: languages/vue.php:3720
9976
  msgid "Which website features would you like to enable?"
9977
  msgstr ""
9978
 
9979
+ #: languages/vue.php:3723
9980
  msgid "We’ve already selected our recommended features based on your site. "
9981
  msgstr ""
9982
 
9983
+ #: languages/vue.php:3726
9984
  msgid "Continue"
9985
  msgstr ""
9986
 
9987
+ #: languages/vue.php:3729
9988
  msgid "Standard Analytics & Reports"
9989
  msgstr ""
9990
 
9991
+ #: languages/vue.php:3732
9992
  msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
9993
  msgstr ""
9994
 
9995
+ #: languages/vue.php:3735
9996
  msgid "Helps you see what links your users are clicking on your site."
9997
  msgstr ""
9998
 
9999
+ #: languages/vue.php:3738
10000
  msgid "All In One SEO Toolkit"
10001
  msgstr ""
10002
 
10003
+ #: languages/vue.php:3741
10004
  msgid "The best WordPress SEO plugin that works with MonsterInsights to boost your rankings."
10005
  msgstr ""
10006
 
10007
+ #: languages/vue.php:3744
10008
  msgid "Smart Form Builder by WPForms"
10009
  msgstr ""
10010
 
10011
+ #: languages/vue.php:3747
10012
  msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
10013
  msgstr ""
10014
 
10015
+ #: languages/vue.php:3750
10016
  msgid "The following plugins will be installed: "
10017
  msgstr ""
10018
 
10019
+ #: languages/vue.php:3753
10020
  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 combination of numbers and letters."
10021
  msgstr ""
10022
 
10023
+ #: languages/vue.php:3757
10024
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
10025
  msgstr ""
10026
 
10027
+ #: languages/vue.php:3761
10028
  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 UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
10029
  msgstr ""
10030
 
10031
+ #: languages/vue.php:3764
10032
  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 a combination of numbers and letters."
10033
  msgstr ""
10034
 
10035
+ #: languages/vue.php:3767
10036
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
10037
  msgstr ""
10038
 
10108
  msgid "Time on Page"
10109
  msgstr ""
10110
 
10111
+ #: lite/includes/admin/onboarding-wizard.php:166
10112
  msgid "MonsterInsights &rsaquo; Onboarding Wizard"
10113
  msgstr ""
10114
 
10115
+ #: lite/includes/admin/onboarding-wizard.php:181
10116
  msgid "Return to Dashboard"
10117
  msgstr ""
10118
 
languages/vue.php CHANGED
@@ -7,7 +7,9 @@ $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/reports/components/ReportReAuth.vue:45
 
 
11
  __( 'Error', 'google-analytics-for-wordpress' ),
12
 
13
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:206
@@ -28,7 +30,7 @@ $generated_i18n_strings = array(
28
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:370
29
  __( 'Last 7 days', 'google-analytics-for-wordpress' ),
30
 
31
- // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewDatePicker-Lite.vue:48
32
  __( 'Last 30 days', 'google-analytics-for-wordpress' ),
33
 
34
  // Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:13
@@ -242,10 +244,10 @@ $generated_i18n_strings = array(
242
  // Reference: src/modules/frontend/monsterinsights-frontend.vue:36
243
  __( 'Insights', 'google-analytics-for-wordpress' ),
244
 
245
- // Reference: src/modules/reports/routes/index.js:25
246
  __( 'Overview Report', 'google-analytics-for-wordpress' ),
247
 
248
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:125
249
  __( 'Welcome to MonsterInsights', 'google-analytics-for-wordpress' ),
250
 
251
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:126
@@ -269,19 +271,20 @@ $generated_i18n_strings = array(
269
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:132
270
  __( 'See All Features', 'google-analytics-for-wordpress' ),
271
 
272
- // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewDatePicker-Lite.vue:51
273
  __( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
274
 
275
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:134
276
  __( 'per year', 'google-analytics-for-wordpress' ),
277
 
278
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:135
 
279
  __( 'Upgrade Now', 'google-analytics-for-wordpress' ),
280
 
281
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:136
282
  __( 'Testimonials', 'google-analytics-for-wordpress' ),
283
 
284
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:62
285
  __( 'Universal Tracking', 'google-analytics-for-wordpress' ),
286
 
287
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:141
@@ -332,11 +335,10 @@ $generated_i18n_strings = array(
332
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:30
333
  __( 'Form Conversions', 'google-analytics-for-wordpress' ),
334
 
335
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:153
336
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:26
337
  __( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
338
 
339
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:29
340
  __( 'Author Tracking', 'google-analytics-for-wordpress' ),
341
 
342
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:185
@@ -348,9 +350,11 @@ $generated_i18n_strings = array(
348
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:187
349
  __( 'WooCommerce', 'google-analytics-for-wordpress' ),
350
 
 
351
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:188
352
  __( 'Easy Digital Downloads', 'google-analytics-for-wordpress' ),
353
 
 
354
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:189
355
  __( 'MemberPress', 'google-analytics-for-wordpress' ),
356
 
@@ -391,13 +395,15 @@ $generated_i18n_strings = array(
391
  // Reference: src/modules/reports/components/ReportReAuth.vue:20
392
  __( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-for-wordpress' ),
393
 
394
- // Reference: src/modules/reports/components/ReportReAuth.vue:21
395
  __( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
396
 
397
- // Reference: src/modules/reports/components/ReportReAuth.vue:30
398
  __( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
399
 
400
- // Reference: src/modules/reports/components/ReportReAuth.vue:47
 
 
401
  __( 'Ok', 'google-analytics-for-wordpress' ),
402
 
403
  // Reference: src/components/TheQuickLinks.vue:31
@@ -419,13 +425,15 @@ $generated_i18n_strings = array(
419
  /* Translators: Placeholder is replaced with WPForms. */
420
  __( 'Recommended Plugin: %s', 'google-analytics-for-wordpress' ),
421
 
422
- // Reference: src/modules/addons/store/actions.js:49
 
423
  __( 'Install', 'google-analytics-for-wordpress' ),
424
 
425
- // Reference: src/modules/addons/store/actions.js:49
 
426
  __( 'Activate', 'google-analytics-for-wordpress' ),
427
 
428
- // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:246
429
  __( 'Learn More', 'google-analytics-for-wordpress' ),
430
 
431
  // Reference: src/modules/frontend/components/FrontendPoweredBy.vue:12
@@ -481,7 +489,7 @@ $generated_i18n_strings = array(
481
  // Reference: src/modules/frontend/components/FrontendNoAuth.vue:26
482
  __( 'Connect MonsterInsights and Setup Website Analytics', 'google-analytics-for-wordpress' ),
483
 
484
- // Reference: src/modules/tools/components/ToolsNavigation.vue:14
485
  __( 'Import Export', 'google-analytics-for-wordpress' ),
486
 
487
  // Reference: src/modules/settings/routes/site.js:111
@@ -493,15 +501,18 @@ $generated_i18n_strings = array(
493
  // Reference: src/modules/settings/routes/site.js:133
494
  __( 'Getting Started', 'google-analytics-for-wordpress' ),
495
 
496
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:52
497
  __( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
498
 
 
499
  // Reference: src/modules/settings/routes/site.js:163
500
  __( 'Inline Popular Posts', 'google-analytics-for-wordpress' ),
501
 
 
502
  // Reference: src/modules/settings/routes/site.js:171
503
  __( 'Popular Posts Widget', 'google-analytics-for-wordpress' ),
504
 
 
505
  // Reference: src/modules/settings/routes/site.js:180
506
  __( 'Popular Products', 'google-analytics-for-wordpress' ),
507
 
@@ -517,7 +528,6 @@ $generated_i18n_strings = array(
517
  // Reference: src/modules/settings/routes/site.js:46
518
  __( 'Engagement', 'google-analytics-for-wordpress' ),
519
 
520
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportEcommerce-Lite.vue:22
521
  // Reference: src/modules/settings/routes/site.js:54
522
  __( 'eCommerce', 'google-analytics-for-wordpress' ),
523
 
@@ -530,7 +540,7 @@ $generated_i18n_strings = array(
530
  // Reference: src/modules/settings/routes/site.js:78
531
  __( 'Advanced', 'google-analytics-for-wordpress' ),
532
 
533
- // Reference: src/modules/tools/components/ToolsNavigation.vue:15
534
  __( 'URL Builder', 'google-analytics-for-wordpress' ),
535
 
536
  // Reference: src/modules/addons/components/AddonsNavigation.vue:18
@@ -548,7 +558,7 @@ $generated_i18n_strings = array(
548
  // Reference: src/modules/reports/components/ReportNoAuth.vue:26
549
  __( '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' ),
550
 
551
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:101
552
  __( 'Launch Setup Wizard', 'google-analytics-for-wordpress' ),
553
 
554
  // Reference: src/modules/reports/components/ReportNoAuth.vue:28
@@ -564,7 +574,6 @@ $generated_i18n_strings = array(
564
  __( 'Search Console', 'google-analytics-for-wordpress' ),
565
 
566
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:47
567
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportDimensions-Lite.vue:22
568
  __( 'Dimensions', 'google-analytics-for-wordpress' ),
569
 
570
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:48
@@ -573,7 +582,7 @@ $generated_i18n_strings = array(
573
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:49
574
  __( 'Real-Time', 'google-analytics-for-wordpress' ),
575
 
576
- // Reference: src/modules/reports/components/reports/monsterinsights-SiteSpeed-Lite.vue:23
577
  __( 'Site Speed', 'google-analytics-for-wordpress' ),
578
 
579
  // Reference: src/modules/reports/routes/index.js:94
@@ -586,34 +595,37 @@ $generated_i18n_strings = array(
586
  // Reference: src/modules/reports/api/index.js:28
587
  __( 'Error loading report data', 'google-analytics-for-wordpress' ),
588
 
589
- // Reference: src/modules/reports/routes/index.js:33
590
  __( 'Publishers Report', 'google-analytics-for-wordpress' ),
591
 
592
- // Reference: src/modules/reports/routes/index.js:41
593
  __( 'eCommerce Report', 'google-analytics-for-wordpress' ),
594
 
595
- // Reference: src/modules/reports/routes/index.js:49
 
596
  __( 'Search Console Report', 'google-analytics-for-wordpress' ),
597
 
598
- // Reference: src/modules/reports/routes/index.js:57
599
  __( 'Dimensions Report', 'google-analytics-for-wordpress' ),
600
 
601
- // Reference: src/modules/reports/routes/index.js:65
602
  __( 'Forms Report', 'google-analytics-for-wordpress' ),
603
 
604
- // Reference: src/modules/reports/routes/index.js:73
605
  __( 'Real-Time Report', 'google-analytics-for-wordpress' ),
606
 
607
- // Reference: src/modules/reports/routes/index.js:81
608
  __( 'Site Speed Report', 'google-analytics-for-wordpress' ),
609
 
610
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:132
 
611
  __( 'Time to Purchase', 'google-analytics-for-wordpress' ),
612
 
613
  // Reference: src/modules/widget/store/index.js:104
614
  __( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-for-wordpress' ),
615
 
616
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:127
 
617
  __( 'Sessions to Purchase', 'google-analytics-for-wordpress' ),
618
 
619
  // Reference: src/modules/widget/store/index.js:112
@@ -649,18 +661,21 @@ $generated_i18n_strings = array(
649
  // Reference: src/modules/widget/store/index.js:35
650
  __( 'This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site.', 'google-analytics-for-wordpress' ),
651
 
 
652
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:252
653
  __( 'Top Landing Pages', 'google-analytics-for-wordpress' ),
654
 
655
  // Reference: src/modules/widget/store/index.js:42
656
  __( 'This list shows the top pages users first land on when visiting your website.', 'google-analytics-for-wordpress' ),
657
 
 
658
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:254
659
  __( 'Top Exit Pages', 'google-analytics-for-wordpress' ),
660
 
661
  // Reference: src/modules/widget/store/index.js:49
662
  __( 'This list shows the top pages users exit your website from.', 'google-analytics-for-wordpress' ),
663
 
 
664
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:256
665
  __( 'Top Outbound Links', 'google-analytics-for-wordpress' ),
666
 
@@ -673,18 +688,21 @@ $generated_i18n_strings = array(
673
  // Reference: src/modules/widget/store/index.js:64
674
  __( 'This list shows the top affiliate links your visitors clicked on.', 'google-analytics-for-wordpress' ),
675
 
 
676
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:255
677
  __( 'Top Download Links', 'google-analytics-for-wordpress' ),
678
 
679
  // Reference: src/modules/widget/store/index.js:71
680
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-for-wordpress' ),
681
 
 
682
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:269
683
  __( 'Top Products', 'google-analytics-for-wordpress' ),
684
 
685
  // Reference: src/modules/widget/store/index.js:84
686
  __( 'This list shows the top selling products on your website.', 'google-analytics-for-wordpress' ),
687
 
 
688
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:268
689
  __( 'Top Conversion Sources', 'google-analytics-for-wordpress' ),
690
 
@@ -824,7 +842,7 @@ $generated_i18n_strings = array(
824
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:107
825
  __( 'Overview Reports for the last 30 days.', 'google-analytics-for-wordpress' ),
826
 
827
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:108
828
  __( 'Advanced Reports', 'google-analytics-for-wordpress' ),
829
 
830
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:109
@@ -845,10 +863,10 @@ $generated_i18n_strings = array(
845
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:118
846
  __( 'Includes the complete Overview report, Publisher reports and 6 different eCommerce reports', 'google-analytics-for-wordpress' ),
847
 
848
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:121
849
  __( 'Headline Analyzer', 'google-analytics-for-wordpress' ),
850
 
851
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:128
852
  __( 'Email Summaries', 'google-analytics-for-wordpress' ),
853
 
854
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:130
@@ -881,7 +899,7 @@ $generated_i18n_strings = array(
881
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:150
882
  __( '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' ),
883
 
884
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:156
885
  __( 'Not Available', 'google-analytics-for-wordpress' ),
886
 
887
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:157
@@ -941,7 +959,7 @@ $generated_i18n_strings = array(
941
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:84
942
  __( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-for-wordpress' ),
943
 
944
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:87
945
  __( 'eCommerce Tracking', 'google-analytics-for-wordpress' ),
946
 
947
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:91
@@ -956,35 +974,36 @@ $generated_i18n_strings = array(
956
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:99
957
  __( 'One-click Form Events Tracking', 'google-analytics-for-wordpress' ),
958
 
959
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:94
 
960
  __( 'License Key', 'google-analytics-for-wordpress' ),
961
 
962
  // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:47
963
  /* Translators: Add link to retrieve license key from account. */
964
  __( 'Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
965
 
966
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:95
967
  __( 'Google Authentication', 'google-analytics-for-wordpress' ),
968
 
969
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:96
970
  __( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
971
 
972
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:97
973
  __( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
974
 
975
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:35
976
  __( 'Miscellaneous', 'google-analytics-for-wordpress' ),
977
 
978
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:37
979
  __( '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' ),
980
 
981
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:38
982
  __( 'Hide Announcements', 'google-analytics-for-wordpress' ),
983
 
984
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:99
985
  __( 'Setup Wizard', 'google-analytics-for-wordpress' ),
986
 
987
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:100
988
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-for-wordpress' ),
989
 
990
  // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:31
@@ -1023,7 +1042,7 @@ $generated_i18n_strings = array(
1023
  // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:88
1024
  __( 'Pretty Links Installed & Activated', 'google-analytics-for-wordpress' ),
1025
 
1026
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:192
1027
  __( 'Download Pretty Links', 'google-analytics-for-wordpress' ),
1028
 
1029
  // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:90
@@ -1236,7 +1255,7 @@ $generated_i18n_strings = array(
1236
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
1237
  __( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
1238
 
1239
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:46
1240
  __( 'Installing...', 'google-analytics-for-wordpress' ),
1241
 
1242
  // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
@@ -1246,6 +1265,7 @@ $generated_i18n_strings = array(
1246
  __( 'Show in full-width mode', 'google-analytics-for-wordpress' ),
1247
 
1248
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:34
 
1249
  __( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
1250
 
1251
  // Reference: src/modules/reports/store/actions.js:138
@@ -1274,7 +1294,6 @@ $generated_i18n_strings = array(
1274
  __( 'View Addons', 'google-analytics-for-wordpress' ),
1275
 
1276
  // Reference: src/modules/notifications/components/Notification.vue:34
1277
- // Reference: src/modules/seo/components/aioseo.vue:246
1278
  __( 'Dismiss', 'google-analytics-for-wordpress' ),
1279
 
1280
  // Reference: src/modules/reports/store/actions.js:217
@@ -1490,8 +1509,8 @@ $generated_i18n_strings = array(
1490
  /* Translators: Placeholder adds a line break. */
1491
  __( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
1492
 
1493
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:262
1494
- /* Translators: Placeholder adds a line break. */
1495
  __( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
1496
 
1497
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:275
@@ -1560,6 +1579,7 @@ $generated_i18n_strings = array(
1560
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:275
1561
  __( 'A Tip for 2021', 'google-analytics-for-wordpress' ),
1562
 
 
1563
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:59
1564
  __( 'Demographics', 'google-analytics-for-wordpress' ),
1565
 
@@ -1587,7 +1607,7 @@ $generated_i18n_strings = array(
1587
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:284
1588
  __( 'Average Age', 'google-analytics-for-wordpress' ),
1589
 
1590
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:101
1591
  __( 'Behavior', 'google-analytics-for-wordpress' ),
1592
 
1593
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:286
@@ -1879,7 +1899,7 @@ $generated_i18n_strings = array(
1879
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:24
1880
  __( 'Dashboard widget', 'google-analytics-for-wordpress' ),
1881
 
1882
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:25
1883
  __( 'Affiliate Links', 'google-analytics-for-wordpress' ),
1884
 
1885
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:27
@@ -1991,14 +2011,14 @@ $generated_i18n_strings = array(
1991
  /* Translators: Error status and error text. */
1992
  __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
1993
 
1994
- // Reference: src/modules/auth/api/index.js:123
1995
  __( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
1996
 
1997
- // Reference: src/modules/auth/api/index.js:232
1998
  /* Translators: Error status and error text. */
1999
  __( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2000
 
2001
- // Reference: src/modules/popular-posts/api/index.js:47
2002
  __( 'Network error encountered. Settings not saved.', 'google-analytics-for-wordpress' ),
2003
 
2004
  // Reference: src/modules/license/api/index.js:118
@@ -2110,21 +2130,17 @@ $generated_i18n_strings = array(
2110
  __( 'Can\'t install WPForms. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2111
 
2112
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:53
2113
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:71
2114
  /* Translators: Example path (/go/). */
2115
  __( 'Path (example: %s)', 'google-analytics-for-wordpress' ),
2116
 
2117
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:55
2118
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:73
2119
  __( 'Path has to start with a / and have no spaces', 'google-analytics-for-wordpress' ),
2120
 
2121
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:60
2122
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:78
2123
  /* Translators: Example label (aff). */
2124
  __( 'Label (example: %s)', 'google-analytics-for-wordpress' ),
2125
 
2126
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:62
2127
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:80
2128
  __( 'Label can\'t contain any spaces', 'google-analytics-for-wordpress' ),
2129
 
2130
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:67
@@ -2146,25 +2162,31 @@ $generated_i18n_strings = array(
2146
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:111
2147
  __( 'Or manually enter UA code (limited functionality)', 'google-analytics-for-wordpress' ),
2148
 
2149
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:112
 
2150
  __( 'Dual Tracking Profile', 'google-analytics-for-wordpress' ),
2151
 
2152
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:114
 
2153
  __( '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' ),
2154
 
2155
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:118
 
2156
  __( 'Your Universal Analytics code should look like UA-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
2157
 
2158
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:120
 
2159
  __( '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' ),
2160
 
2161
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:120
2162
  __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
2163
 
2164
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:125
 
2165
  __( 'Measurement Protocol API Secret', 'google-analytics-for-wordpress' ),
2166
 
2167
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:127
 
2168
  __( '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' ),
2169
 
2170
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:139
@@ -2173,7 +2195,7 @@ $generated_i18n_strings = array(
2173
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:139
2174
  __( 'Disconnect MonsterInsights', 'google-analytics-for-wordpress' ),
2175
 
2176
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:195
2177
  __( 'Authenticating', 'google-analytics-for-wordpress' ),
2178
 
2179
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:249
@@ -2188,7 +2210,7 @@ $generated_i18n_strings = array(
2188
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:300
2189
  __( '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' ),
2190
 
2191
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:100
2192
  __( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
2193
 
2194
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:101
@@ -2200,19 +2222,20 @@ $generated_i18n_strings = array(
2200
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:104
2201
  __( 'Active Profile', 'google-analytics-for-wordpress' ),
2202
 
2203
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:105
2204
  __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-for-wordpress' ),
2205
 
2206
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:106
2207
  __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-for-wordpress' ),
2208
 
2209
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:107
2210
  __( 'Manually enter your UA code', 'google-analytics-for-wordpress' ),
2211
 
2212
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:108
2213
  __( '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' ),
2214
 
2215
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:109
 
2216
  __( 'Manually enter your GA4 Measurement ID', 'google-analytics-for-wordpress' ),
2217
 
2218
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:60
@@ -2336,7 +2359,7 @@ $generated_i18n_strings = array(
2336
  // Reference: src/modules/widget/components/WidgetTips.vue:70
2337
  __( 'Pro Tip:', 'google-analytics-for-wordpress' ),
2338
 
2339
- // Reference: src/modules/reports/components/reports-year-in-review/ReportYearInReviewListBox.vue:38
2340
  __( 'Show', 'google-analytics-for-wordpress' ),
2341
 
2342
  // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:14
@@ -2357,8 +2380,7 @@ $generated_i18n_strings = array(
2357
  // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:41
2358
  __( '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' ),
2359
 
2360
- // Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:24
2361
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputEmailSummaries-Lite.vue:16
2362
  __( 'Upgrade', 'google-analytics-for-wordpress' ),
2363
 
2364
  // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:39
@@ -2405,7 +2427,7 @@ $generated_i18n_strings = array(
2405
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:69
2406
  __( 'There was an error unlocking MonsterInsights PRO please try again or install manually.', 'google-analytics-for-wordpress' ),
2407
 
2408
- // Reference: src/modules/wizard-onboarding/api/index.js:39
2409
  /* Translators: Error status and error text. */
2410
  __( 'Can\'t load errors. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2411
 
@@ -2620,7 +2642,7 @@ $generated_i18n_strings = array(
2620
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:65
2621
  __( 'Whoops, something went wrong and we weren\'t able to connect to MonsterInsights. Please enter your Google UA code manually.', 'google-analytics-for-wordpress' ),
2622
 
2623
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:34
2624
  __( 'Save and Continue', 'google-analytics-for-wordpress' ),
2625
 
2626
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:120
@@ -2756,19 +2778,19 @@ $generated_i18n_strings = array(
2756
  // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:92
2757
  __( 'Error emptying the popular posts cache. Please try again.', 'google-analytics-for-wordpress' ),
2758
 
2759
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:100
2760
  __( 'Choose Theme', 'google-analytics-for-wordpress' ),
2761
 
2762
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:102
2763
  __( 'Widget Styling', 'google-analytics-for-wordpress' ),
2764
 
2765
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:103
2766
  __( 'Choose how you want to determine the colors, font sizes and spacing of the widget.', 'google-analytics-for-wordpress' ),
2767
 
2768
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:104
2769
  __( 'Sort By', 'google-analytics-for-wordpress' ),
2770
 
2771
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:105
2772
  __( 'Choose how you\'d like the widget to determine your popular posts.', 'google-analytics-for-wordpress' ),
2773
 
2774
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:106
@@ -2780,40 +2802,40 @@ $generated_i18n_strings = array(
2780
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:108
2781
  __( 'Title your widget and set its display preferences.', 'google-analytics-for-wordpress' ),
2782
 
2783
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:109
2784
  __( 'Include in Post Types', 'google-analytics-for-wordpress' ),
2785
 
2786
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:110
2787
  __( 'Exclude from specific posts', 'google-analytics-for-wordpress' ),
2788
 
2789
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:112
2790
  /* Translators: Placeholders make the text bold. */
2791
  __( 'Choose which Post Types the widget %1$sWILL%2$s be placed.', 'google-analytics-for-wordpress' ),
2792
 
2793
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:114
2794
  /* Translators: Placeholders make the text bold. */
2795
  __( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-for-wordpress' ),
2796
 
2797
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:115
2798
  __( 'Loading Themes', 'google-analytics-for-wordpress' ),
2799
 
2800
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:120
2801
  /* Translators: placeholders make text small. */
2802
  __( 'Default Styles %1$s- As seen above.%2$s', 'google-analytics-for-wordpress' ),
2803
 
2804
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:125
2805
  /* Translators: placeholders make text small. */
2806
  __( 'No Styles %1$s- Use your own CSS.%2$s', 'google-analytics-for-wordpress' ),
2807
 
2808
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:132
2809
  /* Translators: placeholders make text small. */
2810
  __( 'Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s', 'google-analytics-for-wordpress' ),
2811
 
2812
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:137
2813
  /* Translators: placeholders make text small. */
2814
  __( 'SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s', 'google-analytics-for-wordpress' ),
2815
 
2816
- // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:142
2817
  /* Translators: placeholders make text small. */
2818
  __( 'Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s', 'google-analytics-for-wordpress' ),
2819
 
@@ -2830,7 +2852,6 @@ $generated_i18n_strings = array(
2830
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-for-wordpress' ),
2831
 
2832
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:121
2833
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:109
2834
  __( 'Customize Design', 'google-analytics-for-wordpress' ),
2835
 
2836
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
@@ -2992,6 +3013,7 @@ $generated_i18n_strings = array(
2992
  __( 'Close', 'google-analytics-for-wordpress' ),
2993
 
2994
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:28
 
2995
  __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-for-wordpress' ),
2996
 
2997
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49
@@ -3005,6 +3027,7 @@ $generated_i18n_strings = array(
3005
  __( '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' ),
3006
 
3007
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:30
 
3008
  __( 'Automated + Curated', 'google-analytics-for-wordpress' ),
3009
 
3010
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
@@ -3411,7 +3434,7 @@ $generated_i18n_strings = array(
3411
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:332
3412
  __( 'Time to Interactive', 'google-analytics-for-wordpress' ),
3413
 
3414
- // Reference: src/modules/reports/routes/index.js:95
3415
  __( '2021 Year in Review', 'google-analytics-for-wordpress' ),
3416
 
3417
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:49
@@ -3729,9 +3752,11 @@ $generated_i18n_strings = array(
3729
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:110
3730
  __( '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 combination of numbers and letters.', 'google-analytics-for-wordpress' ),
3731
 
 
3732
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:89
3733
  __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
3734
 
 
3735
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:76
3736
  __( '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 UA code should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
3737
 
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/SettingsInputLicense-Lite.vue:71
11
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:178
12
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:205
13
  __( 'Error', 'google-analytics-for-wordpress' ),
14
 
15
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:206
30
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:370
31
  __( 'Last 7 days', 'google-analytics-for-wordpress' ),
32
 
33
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:376
34
  __( 'Last 30 days', 'google-analytics-for-wordpress' ),
35
 
36
  // Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:13
244
  // Reference: src/modules/frontend/monsterinsights-frontend.vue:36
245
  __( 'Insights', 'google-analytics-for-wordpress' ),
246
 
247
+ // Reference: src/modules/widget/store/index.js:14
248
  __( 'Overview Report', 'google-analytics-for-wordpress' ),
249
 
250
+ // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:41
251
  __( 'Welcome to MonsterInsights', 'google-analytics-for-wordpress' ),
252
 
253
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:126
271
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:132
272
  __( 'See All Features', 'google-analytics-for-wordpress' ),
273
 
274
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:133
275
  __( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
276
 
277
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:134
278
  __( 'per year', 'google-analytics-for-wordpress' ),
279
 
280
+ // Reference: src/modules/addons/components/AddonButton.vue:30
281
+ // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:22
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/wizard-onboarding/monsterinsights-welcome-Lite.vue:140
288
  __( 'Universal Tracking', 'google-analytics-for-wordpress' ),
289
 
290
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:141
335
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:30
336
  __( 'Form Conversions', 'google-analytics-for-wordpress' ),
337
 
 
338
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:26
339
  __( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
340
 
341
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:278
342
  __( 'Author Tracking', 'google-analytics-for-wordpress' ),
343
 
344
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:185
350
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:187
351
  __( 'WooCommerce', 'google-analytics-for-wordpress' ),
352
 
353
+ // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:254
354
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:188
355
  __( 'Easy Digital Downloads', 'google-analytics-for-wordpress' ),
356
 
357
+ // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:265
358
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:189
359
  __( 'MemberPress', 'google-analytics-for-wordpress' ),
360
 
395
  // Reference: src/modules/reports/components/ReportReAuth.vue:20
396
  __( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-for-wordpress' ),
397
 
398
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:64
399
  __( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
400
 
401
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:162
402
  __( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
403
 
404
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:78
405
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:180
406
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:323
407
  __( 'Ok', 'google-analytics-for-wordpress' ),
408
 
409
  // Reference: src/components/TheQuickLinks.vue:31
425
  /* Translators: Placeholder is replaced with WPForms. */
426
  __( 'Recommended Plugin: %s', 'google-analytics-for-wordpress' ),
427
 
428
+ // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:42
429
+ // Reference: src/modules/widget/components/WidgetFooter.vue:20
430
  __( 'Install', 'google-analytics-for-wordpress' ),
431
 
432
+ // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:38
433
+ // Reference: src/modules/widget/components/WidgetFooter.vue:21
434
  __( 'Activate', 'google-analytics-for-wordpress' ),
435
 
436
+ // Reference: src/modules/widget/components/WidgetFooter.vue:22
437
  __( 'Learn More', 'google-analytics-for-wordpress' ),
438
 
439
  // Reference: src/modules/frontend/components/FrontendPoweredBy.vue:12
489
  // Reference: src/modules/frontend/components/FrontendNoAuth.vue:26
490
  __( 'Connect MonsterInsights and Setup Website Analytics', 'google-analytics-for-wordpress' ),
491
 
492
+ // Reference: src/modules/settings/routes/site.js:103
493
  __( 'Import Export', 'google-analytics-for-wordpress' ),
494
 
495
  // Reference: src/modules/settings/routes/site.js:111
501
  // Reference: src/modules/settings/routes/site.js:133
502
  __( 'Getting Started', 'google-analytics-for-wordpress' ),
503
 
504
+ // Reference: src/modules/settings/routes/site.js:142
505
  __( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
506
 
507
+ // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:22
508
  // Reference: src/modules/settings/routes/site.js:163
509
  __( 'Inline Popular Posts', 'google-analytics-for-wordpress' ),
510
 
511
+ // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:23
512
  // Reference: src/modules/settings/routes/site.js:171
513
  __( 'Popular Posts Widget', 'google-analytics-for-wordpress' ),
514
 
515
+ // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:24
516
  // Reference: src/modules/settings/routes/site.js:180
517
  __( 'Popular Products', 'google-analytics-for-wordpress' ),
518
 
528
  // Reference: src/modules/settings/routes/site.js:46
529
  __( 'Engagement', 'google-analytics-for-wordpress' ),
530
 
 
531
  // Reference: src/modules/settings/routes/site.js:54
532
  __( 'eCommerce', 'google-analytics-for-wordpress' ),
533
 
540
  // Reference: src/modules/settings/routes/site.js:78
541
  __( 'Advanced', 'google-analytics-for-wordpress' ),
542
 
543
+ // Reference: src/modules/settings/routes/site.js:95
544
  __( 'URL Builder', 'google-analytics-for-wordpress' ),
545
 
546
  // Reference: src/modules/addons/components/AddonsNavigation.vue:18
558
  // Reference: src/modules/reports/components/ReportNoAuth.vue:26
559
  __( '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' ),
560
 
561
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:57
562
  __( 'Launch Setup Wizard', 'google-analytics-for-wordpress' ),
563
 
564
  // Reference: src/modules/reports/components/ReportNoAuth.vue:28
574
  __( 'Search Console', 'google-analytics-for-wordpress' ),
575
 
576
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:47
 
577
  __( 'Dimensions', 'google-analytics-for-wordpress' ),
578
 
579
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:48
582
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:49
583
  __( 'Real-Time', 'google-analytics-for-wordpress' ),
584
 
585
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:50
586
  __( 'Site Speed', 'google-analytics-for-wordpress' ),
587
 
588
  // Reference: src/modules/reports/routes/index.js:94
595
  // Reference: src/modules/reports/api/index.js:28
596
  __( 'Error loading report data', 'google-analytics-for-wordpress' ),
597
 
598
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:249
599
  __( 'Publishers Report', 'google-analytics-for-wordpress' ),
600
 
601
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:261
602
  __( 'eCommerce Report', 'google-analytics-for-wordpress' ),
603
 
604
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportSearchConsole-Lite.vue:26
605
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:299
606
  __( 'Search Console Report', 'google-analytics-for-wordpress' ),
607
 
608
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:275
609
  __( 'Dimensions Report', 'google-analytics-for-wordpress' ),
610
 
611
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:289
612
  __( 'Forms Report', 'google-analytics-for-wordpress' ),
613
 
614
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:51
615
  __( 'Real-Time Report', 'google-analytics-for-wordpress' ),
616
 
617
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:322
618
  __( 'Site Speed Report', 'google-analytics-for-wordpress' ),
619
 
620
+ // Reference: src/modules/widget/store/index.js:103
621
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:271
622
  __( 'Time to Purchase', 'google-analytics-for-wordpress' ),
623
 
624
  // Reference: src/modules/widget/store/index.js:104
625
  __( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-for-wordpress' ),
626
 
627
+ // Reference: src/modules/widget/store/index.js:111
628
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:267
629
  __( 'Sessions to Purchase', 'google-analytics-for-wordpress' ),
630
 
631
  // Reference: src/modules/widget/store/index.js:112
661
  // Reference: src/modules/widget/store/index.js:35
662
  __( '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' ),
663
 
664
+ // Reference: src/modules/widget/store/index.js:41
665
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:252
666
  __( 'Top Landing Pages', 'google-analytics-for-wordpress' ),
667
 
668
  // Reference: src/modules/widget/store/index.js:42
669
  __( 'This list shows the top pages users first land on when visiting your website.', 'google-analytics-for-wordpress' ),
670
 
671
+ // Reference: src/modules/widget/store/index.js:48
672
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:254
673
  __( 'Top Exit Pages', 'google-analytics-for-wordpress' ),
674
 
675
  // Reference: src/modules/widget/store/index.js:49
676
  __( 'This list shows the top pages users exit your website from.', 'google-analytics-for-wordpress' ),
677
 
678
+ // Reference: src/modules/widget/store/index.js:56
679
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:256
680
  __( 'Top Outbound Links', 'google-analytics-for-wordpress' ),
681
 
688
  // Reference: src/modules/widget/store/index.js:64
689
  __( 'This list shows the top affiliate links your visitors clicked on.', 'google-analytics-for-wordpress' ),
690
 
691
+ // Reference: src/modules/widget/store/index.js:70
692
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:255
693
  __( 'Top Download Links', 'google-analytics-for-wordpress' ),
694
 
695
  // Reference: src/modules/widget/store/index.js:71
696
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-for-wordpress' ),
697
 
698
+ // Reference: src/modules/widget/store/index.js:83
699
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:269
700
  __( 'Top Products', 'google-analytics-for-wordpress' ),
701
 
702
  // Reference: src/modules/widget/store/index.js:84
703
  __( 'This list shows the top selling products on your website.', 'google-analytics-for-wordpress' ),
704
 
705
+ // Reference: src/modules/widget/store/index.js:90
706
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:268
707
  __( 'Top Conversion Sources', 'google-analytics-for-wordpress' ),
708
 
842
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:107
843
  __( 'Overview Reports for the last 30 days.', 'google-analytics-for-wordpress' ),
844
 
845
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:131
846
  __( 'Advanced Reports', 'google-analytics-for-wordpress' ),
847
 
848
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:109
863
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:118
864
  __( 'Includes the complete Overview report, Publisher reports and 6 different eCommerce reports', 'google-analytics-for-wordpress' ),
865
 
866
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:70
867
  __( 'Headline Analyzer', 'google-analytics-for-wordpress' ),
868
 
869
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:57
870
  __( 'Email Summaries', 'google-analytics-for-wordpress' ),
871
 
872
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:130
899
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:150
900
  __( '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' ),
901
 
902
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:84
903
  __( 'Not Available', 'google-analytics-for-wordpress' ),
904
 
905
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:157
959
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:84
960
  __( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-for-wordpress' ),
961
 
962
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:142
963
  __( 'eCommerce Tracking', 'google-analytics-for-wordpress' ),
964
 
965
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:91
974
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:99
975
  __( 'One-click Form Events Tracking', 'google-analytics-for-wordpress' ),
976
 
977
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:45
978
+ // Reference: src/modules/wizard-onboarding/components/inputs/monsterinsights-OnboardingLicense-Lite.vue:27
979
  __( 'License Key', 'google-analytics-for-wordpress' ),
980
 
981
  // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:47
982
  /* Translators: Add link to retrieve license key from account. */
983
  __( 'Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
984
 
985
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:48
986
  __( 'Google Authentication', 'google-analytics-for-wordpress' ),
987
 
988
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:63
989
  __( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
990
 
991
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:64
992
  __( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
993
 
994
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:51
995
  __( 'Miscellaneous', 'google-analytics-for-wordpress' ),
996
 
997
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:53
998
  __( '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' ),
999
 
1000
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:54
1001
  __( 'Hide Announcements', 'google-analytics-for-wordpress' ),
1002
 
1003
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:55
1004
  __( 'Setup Wizard', 'google-analytics-for-wordpress' ),
1005
 
1006
+ // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:56
1007
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-for-wordpress' ),
1008
 
1009
  // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:31
1042
  // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:88
1043
  __( 'Pretty Links Installed & Activated', 'google-analytics-for-wordpress' ),
1044
 
1045
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:89
1046
  __( 'Download Pretty Links', 'google-analytics-for-wordpress' ),
1047
 
1048
  // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:90
1255
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
1256
  __( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
1257
 
1258
+ // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:30
1259
  __( 'Installing...', 'google-analytics-for-wordpress' ),
1260
 
1261
  // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
1265
  __( 'Show in full-width mode', 'google-analytics-for-wordpress' ),
1266
 
1267
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:34
1268
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:47
1269
  __( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
1270
 
1271
  // Reference: src/modules/reports/store/actions.js:138
1294
  __( 'View Addons', 'google-analytics-for-wordpress' ),
1295
 
1296
  // Reference: src/modules/notifications/components/Notification.vue:34
 
1297
  __( 'Dismiss', 'google-analytics-for-wordpress' ),
1298
 
1299
  // Reference: src/modules/reports/store/actions.js:217
1509
  /* Translators: Placeholder adds a line break. */
1510
  __( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
1511
 
1512
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:63
1513
+ /* Translators: Number of unique pageviews. */
1514
  __( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
1515
 
1516
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:275
1579
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:275
1580
  __( 'A Tip for 2021', 'google-analytics-for-wordpress' ),
1581
 
1582
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:276
1583
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:59
1584
  __( 'Demographics', 'google-analytics-for-wordpress' ),
1585
 
1607
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:284
1608
  __( 'Average Age', 'google-analytics-for-wordpress' ),
1609
 
1610
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:106
1611
  __( 'Behavior', 'google-analytics-for-wordpress' ),
1612
 
1613
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:286
1899
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:24
1900
  __( 'Dashboard widget', 'google-analytics-for-wordpress' ),
1901
 
1902
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:65
1903
  __( 'Affiliate Links', 'google-analytics-for-wordpress' ),
1904
 
1905
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:27
2011
  /* Translators: Error status and error text. */
2012
  __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2013
 
2014
+ // Reference: src/modules/settings/api/index.js:27
2015
  __( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
2016
 
2017
+ // Reference: src/modules/settings/api/index.js:77
2018
  /* Translators: Error status and error text. */
2019
  __( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2020
 
2021
+ // Reference: src/modules/settings/api/index.js:81
2022
  __( 'Network error encountered. Settings not saved.', 'google-analytics-for-wordpress' ),
2023
 
2024
  // Reference: src/modules/license/api/index.js:118
2130
  __( 'Can\'t install WPForms. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2131
 
2132
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:53
 
2133
  /* Translators: Example path (/go/). */
2134
  __( 'Path (example: %s)', 'google-analytics-for-wordpress' ),
2135
 
2136
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:55
 
2137
  __( 'Path has to start with a / and have no spaces', 'google-analytics-for-wordpress' ),
2138
 
2139
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:60
 
2140
  /* Translators: Example label (aff). */
2141
  __( 'Label (example: %s)', 'google-analytics-for-wordpress' ),
2142
 
2143
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:62
 
2144
  __( 'Label can\'t contain any spaces', 'google-analytics-for-wordpress' ),
2145
 
2146
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:67
2162
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:111
2163
  __( 'Or manually enter UA code (limited functionality)', 'google-analytics-for-wordpress' ),
2164
 
2165
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:72
2166
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:77
2167
  __( 'Dual Tracking Profile', 'google-analytics-for-wordpress' ),
2168
 
2169
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:74
2170
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:79
2171
  __( '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' ),
2172
 
2173
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:78
2174
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:83
2175
  __( 'Your Universal Analytics code should look like UA-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
2176
 
2177
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:80
2178
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:85
2179
  __( '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' ),
2180
 
2181
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:120
2182
  __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
2183
 
2184
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:85
2185
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:90
2186
  __( 'Measurement Protocol API Secret', 'google-analytics-for-wordpress' ),
2187
 
2188
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:87
2189
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:92
2190
  __( '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' ),
2191
 
2192
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:139
2195
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:139
2196
  __( 'Disconnect MonsterInsights', 'google-analytics-for-wordpress' ),
2197
 
2198
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:133
2199
  __( 'Authenticating', 'google-analytics-for-wordpress' ),
2200
 
2201
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:249
2210
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:300
2211
  __( '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' ),
2212
 
2213
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:63
2214
  __( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
2215
 
2216
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:101
2222
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:104
2223
  __( 'Active Profile', 'google-analytics-for-wordpress' ),
2224
 
2225
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:67
2226
  __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-for-wordpress' ),
2227
 
2228
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:68
2229
  __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-for-wordpress' ),
2230
 
2231
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:66
2232
  __( 'Manually enter your UA code', 'google-analytics-for-wordpress' ),
2233
 
2234
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:67
2235
  __( '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' ),
2236
 
2237
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:70
2238
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:75
2239
  __( 'Manually enter your GA4 Measurement ID', 'google-analytics-for-wordpress' ),
2240
 
2241
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:60
2359
  // Reference: src/modules/widget/components/WidgetTips.vue:70
2360
  __( 'Pro Tip:', 'google-analytics-for-wordpress' ),
2361
 
2362
+ // Reference: src/modules/reports/components/monsterinsights-ReportsPagination.vue:29
2363
  __( 'Show', 'google-analytics-for-wordpress' ),
2364
 
2365
  // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:14
2380
  // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:41
2381
  __( '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' ),
2382
 
2383
+ // Reference: src/modules/settings/components/SettingsAddonUpgrade.vue:37
 
2384
  __( 'Upgrade', 'google-analytics-for-wordpress' ),
2385
 
2386
  // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:39
2427
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:69
2428
  __( 'There was an error unlocking MonsterInsights PRO please try again or install manually.', 'google-analytics-for-wordpress' ),
2429
 
2430
+ // Reference: src/modules/wizard-onboarding/api/index.js:18
2431
  /* Translators: Error status and error text. */
2432
  __( 'Can\'t load errors. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2433
 
2642
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:65
2643
  __( 'Whoops, something went wrong and we weren\'t able to connect to MonsterInsights. Please enter your Google UA code manually.', 'google-analytics-for-wordpress' ),
2644
 
2645
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:68
2646
  __( 'Save and Continue', 'google-analytics-for-wordpress' ),
2647
 
2648
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:120
2778
  // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:92
2779
  __( 'Error emptying the popular posts cache. Please try again.', 'google-analytics-for-wordpress' ),
2780
 
2781
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:105
2782
  __( 'Choose Theme', 'google-analytics-for-wordpress' ),
2783
 
2784
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:107
2785
  __( 'Widget Styling', 'google-analytics-for-wordpress' ),
2786
 
2787
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:108
2788
  __( 'Choose how you want to determine the colors, font sizes and spacing of the widget.', 'google-analytics-for-wordpress' ),
2789
 
2790
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:109
2791
  __( 'Sort By', 'google-analytics-for-wordpress' ),
2792
 
2793
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:110
2794
  __( 'Choose how you\'d like the widget to determine your popular posts.', 'google-analytics-for-wordpress' ),
2795
 
2796
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:106
2802
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:108
2803
  __( 'Title your widget and set its display preferences.', 'google-analytics-for-wordpress' ),
2804
 
2805
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:115
2806
  __( 'Include in Post Types', 'google-analytics-for-wordpress' ),
2807
 
2808
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:116
2809
  __( 'Exclude from specific posts', 'google-analytics-for-wordpress' ),
2810
 
2811
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:118
2812
  /* Translators: Placeholders make the text bold. */
2813
  __( 'Choose which Post Types the widget %1$sWILL%2$s be placed.', 'google-analytics-for-wordpress' ),
2814
 
2815
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:120
2816
  /* Translators: Placeholders make the text bold. */
2817
  __( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-for-wordpress' ),
2818
 
2819
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:122
2820
  __( 'Loading Themes', 'google-analytics-for-wordpress' ),
2821
 
2822
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:129
2823
  /* Translators: placeholders make text small. */
2824
  __( 'Default Styles %1$s- As seen above.%2$s', 'google-analytics-for-wordpress' ),
2825
 
2826
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:134
2827
  /* Translators: placeholders make text small. */
2828
  __( 'No Styles %1$s- Use your own CSS.%2$s', 'google-analytics-for-wordpress' ),
2829
 
2830
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:141
2831
  /* Translators: placeholders make text small. */
2832
  __( 'Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s', 'google-analytics-for-wordpress' ),
2833
 
2834
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:146
2835
  /* Translators: placeholders make text small. */
2836
  __( 'SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s', 'google-analytics-for-wordpress' ),
2837
 
2838
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:151
2839
  /* Translators: placeholders make text small. */
2840
  __( 'Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s', 'google-analytics-for-wordpress' ),
2841
 
2852
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-for-wordpress' ),
2853
 
2854
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:121
 
2855
  __( 'Customize Design', 'google-analytics-for-wordpress' ),
2856
 
2857
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
3013
  __( 'Close', 'google-analytics-for-wordpress' ),
3014
 
3015
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:28
3016
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:48
3017
  __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-for-wordpress' ),
3018
 
3019
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49
3027
  __( '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' ),
3028
 
3029
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:30
3030
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:53
3031
  __( 'Automated + Curated', 'google-analytics-for-wordpress' ),
3032
 
3033
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
3434
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:332
3435
  __( 'Time to Interactive', 'google-analytics-for-wordpress' ),
3436
 
3437
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:52
3438
  __( '2021 Year in Review', 'google-analytics-for-wordpress' ),
3439
 
3440
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:49
3752
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:110
3753
  __( '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 combination of numbers and letters.', 'google-analytics-for-wordpress' ),
3754
 
3755
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:84
3756
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:89
3757
  __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
3758
 
3759
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:71
3760
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:76
3761
  __( '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 UA code should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
3762
 
lite/assets/vue/js/wizard.js CHANGED
@@ -1 +1 @@
1
- (function(t){function e(e){for(var o,r,i=e[0],l=e[1],c=e[2],u=0,g=[];u<i.length;u++)r=i[u],a[r]&&g.push(a[r][0]),a[r]=0;for(o in l)Object.prototype.hasOwnProperty.call(l,o)&&(t[o]=l[o]);d&&d(e);while(g.length)g.shift()();return n.push.apply(n,c||[]),s()}function s(){for(var t,e=0;e<n.length;e++){for(var s=n[e],o=!0,i=1;i<s.length;i++){var l=s[i];0!==a[l]&&(o=!1)}o&&(n.splice(e--,1),t=r(r.s=s[0]))}return t}var o={},a={wizard:0},n=[];function r(e){if(o[e])return o[e].exports;var s=o[e]={i:e,l:!1,exports:{}};return t[e].call(s.exports,s,s.exports,r),s.l=!0,s.exports}r.m=t,r.c=o,r.d=function(t,e,s){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:s})},r.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,e){if(1&e&&(t=r(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var s=Object.create(null);if(r.r(s),Object.defineProperty(s,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)r.d(s,o,function(e){return t[e]}.bind(null,o));return s},r.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="https://am-plugins.site/";var i=window["monsterinsightsjsonp"]=window["monsterinsightsjsonp"]||[],l=i.push.bind(i);i.push=e,i=i.slice();for(var c=0;c<i.length;c++)e(i[c]);var d=l;n.push([1,"chunk-vendors","chunk-common"]),s()})({"0951":function(t,e,s){"use strict";s.r(e);s("e260"),s("e6cf"),s("cca6"),s("a79d");var o=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-admin-page onboarding-wizard"},[s("the-wizard-header"),s("the-wizard-timeline"),s("div",{staticClass:"monsterinsights-onboarding-wizard-container"},[s("div",{staticClass:"monsterinsights-onboarding-wizard-content"},[s("router-view")],1)]),"success"===t.route?s("OnboardingBottomUpsell"):t._e(),t.blocked?s("div",{staticClass:"monsterinsights-blocked"}):t._e()],1)},a=[],n=(s("a4d3"),s("4de4"),s("4160"),s("b0c0"),s("e439"),s("dbb4"),s("b64b"),s("159b"),s("fc11")),r=s("8c4f"),i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-onboarding-step-welcome"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"monsterinsights-onboarding-wizard-form"},[s("div",{staticClass:"monsterinsights-separator"}),s("form",{on:{submit:function(e){return e.preventDefault(),t.handleSubmit(e)}}},[s("div",{staticClass:"monsterinsights-form-row"},[s("div",{staticClass:"monsterinsights-form-label"},[s("label",{domProps:{textContent:t._s(t.text_category_label)}}),s("p",{staticClass:"monsterinsights-description",domProps:{textContent:t._s(t.text_category_sublabel)}})]),s("settings-input-radio",{attrs:{name:"site_type",options:t.options,auth_disabled:!1}})],1),s("div",{staticClass:"monsterinsights-separator"}),s("div",{staticClass:"monsterinsights-form-row monsterinsights-form-buttons"},[s("button",{staticClass:"monsterinsights-onboarding-button monsterinsights-onboarding-button-large",attrs:{type:"submit",name:"next_step"},domProps:{textContent:t._s(t.text_save)}})])])])],1)},l=[],c=s("561c"),d=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("header",[s("h2",{domProps:{innerHTML:t._s(t.title)}}),t.subtitle?s("p",{staticClass:"subtitle",domProps:{innerHTML:t._s(t.subtitle)}}):t._e()])},u=[],g={name:"OnboardingContentHeader",props:{title:String,subtitle:String}},p=g,h=s("2877"),m=Object(h["a"])(p,d,u,!1,null,null,null),f=m.exports,_=s("6d70"),b={name:"OnboardingStepWelcome",components:{SettingsInputRadio:_["a"],OnboardingContentHeader:f},data:function(){return{text_header_title:Object(c["a"])("Welcome to MonsterInsights!","google-analytics-for-wordpress"),text_header_subtitle:Object(c["a"])("Let's get you set up.","google-analytics-for-wordpress"),text_save:Object(c["a"])("Save and Continue","google-analytics-for-wordpress"),text_category_label:Object(c["a"])("Which category best describes your website?","google-analytics-for-wordpress"),text_category_sublabel:Object(c["a"])("We will recommend the optimal settings for MonsterInsights based on your choice.","google-analytics-for-wordpress"),options:[{value:"business",label:Object(c["a"])("Business Website","google-analytics-for-wordpress")},{value:"publisher",label:Object(c["d"])(Object(c["a"])("Publisher %1$s(Blog)%2$s","google-analytics-for-wordpress"),"<small>","</small>")},{value:"ecommerce",label:Object(c["a"])("Ecommerce","google-analytics-for-wordpress")}]}},methods:{handleSubmit:function(){this.$router.push(this.$wizard_steps[1])}}},w=b,y=Object(h["a"])(w,i,l,!1,null,null,null),v=y.exports,x=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-onboarding-step-authenticate"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"monsterinsights-onboarding-wizard-form"},[s("form",[s("div",{staticClass:"monsterinsights-form-row"},[s("onboarding-license")],1),s("div",{staticClass:"monsterinsights-separator"}),t.auth_error?[t.auth.network_manual_ua||t.auth.manual_ua?t._e():s("div",{staticClass:"monsterinsights-notice monsterinsights-notice-error"},[s("div",{staticClass:"monsterinsights-notice-inner"},[s("span",{domProps:{textContent:t._s(t.text_error_auth)}})])]),t.auth.network_manual_ua||t.auth.manual_ua?t._e():s("div",{staticClass:"monsterinsights-separator"}),s("label",{domProps:{textContent:t._s(t.text_manual_label)}}),s("p",{domProps:{innerHTML:t._s(t.text_manual_description)}}),s("input",{staticClass:"monsterinsights-manual-ua",attrs:{id:"monsterinsights-auth-manual-ua-input",type:"text"},domProps:{value:t.is_network?t.auth.network_manual_ua:t.auth.manual_ua},on:{change:t.updateManualUa,input:t.fieldInput}}),t.has_ua_error?s("label",{staticClass:"monsterinsights-error"},[s("i",{staticClass:"monstericon-warning-triangle"}),s("span",{domProps:{innerHTML:t._s(t.has_error)}})]):t._e(),s("div",{staticClass:"monsterinsights-separator"}),s("label",{staticClass:"monsterinsights-dark",domProps:{textContent:t._s(t.text_manual_v4_label)}}),s("p",{domProps:{innerHTML:t._s(t.text_manual_v4_description)}}),s("input",{staticClass:"monsterinsights-manual-ua",attrs:{id:"monsterinsights-auth-manual-v4-input",type:"text"},domProps:{value:t.is_network?t.auth.network_manual_v4:t.auth.manual_v4},on:{change:t.updateManualV4}}),t.has_v4_error?s("label",{staticClass:"monsterinsights-error"},[s("i",{staticClass:"monstericon-warning-triangle"}),s("span",{domProps:{innerHTML:t._s(t.has_error)}})]):t._e(),t.auth.manual_v4||t.auth.network_manual_v4?[s("div",{staticClass:"monsterinsights-separator"}),s("label",{staticClass:"monsterinsights-dark",attrs:{for:"monsterinsights-v4-measurement-protocol"},domProps:{textContent:t._s(t.text_v4_measurement_protocol)}}),s("p",{staticClass:"monsterinsights-field-description",domProps:{innerHTML:t._s(t.text_v4_measurement_protocol_description)}}),s("input",{staticClass:"monsterinsights-manual-ua",attrs:{id:"monsterinsights-v4-measurement-protocol",type:"text"},domProps:{value:t.measurement_protocol_secret},on:{change:t.updateMeasurementProtocolSecret}})]:t._e(),s("div",{staticClass:"monsterinsights-separator"}),s("div",{staticClass:"monsterinsights-form-row monsterinsights-form-buttons"},[s("button",{class:t.manual_button_class,attrs:{type:"submit",name:"next_step"},domProps:{textContent:t._s(t.text_save)},on:{click:function(e){return e.preventDefault(),t.handleSubmit(e)}}})])]:[s("onboarding-authenticate",{attrs:{label:t.text_authenticate_label,description:t.text_authenticate_description},on:{nextstep:t.handleSubmit}})]],2)])],1)},O=[],A=(s("d3b7"),s("e25e"),s("ac1f"),s("3ca3"),s("841c"),s("ddb0"),s("2b3d"),s("2f62")),k=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-onboarding-license-lite"},[s("div",{staticClass:"monsterinsights-separator"}),s("label",{domProps:{textContent:t._s(t.text_license_label)}}),s("settings-input-license")],1)},C=[],j=s("3bc9");function P(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function $(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?P(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):P(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var S={name:"OnboardingLicense",components:{SettingsInputLicense:j["a"]},computed:$({},Object(A["b"])({license:"$_license/license",license_network:"$_license/license_network",auth:"$_auth/auth"})),data:function(){return{text_license_label:Object(c["a"])("License Key","google-analytics-for-wordpress")}}},M=S,E=Object(h["a"])(M,k,C,!1,null,null,null),L=E.exports,T=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-settings-input monsterinsights-settings-input-authenticate"},[!t.auth.network_ua||t.is_network||t.auth.ua||t.auth.v4?t._e():s("settings-network-notice",[s("strong",{domProps:{textContent:t._s(t.text_auth_network)}}),s("span",{domProps:{textContent:t._s(t.text_auth_network_2)}})]),(t.is_network?t.auth.network_ua||t.auth.network_v4:t.auth.ua||t.auth.v4)?s("div",{staticClass:"monsterinsights-auth-info"},[s("span",{staticClass:"monsterinsights-dark",domProps:{textContent:t._s(t.text_website_profile)}}),s("p",[s("span",{domProps:{textContent:t._s(t.text_active_profile)}}),t._v(": "),s("span",{domProps:{textContent:t._s(t.is_network?t.auth.network_viewname:t.auth.viewname)}})]),s("div",{staticClass:"monsterinsights-separator"}),s("label",{staticClass:"monsterinsights-dark",attrs:{for:"monsterinsights-dual-tracking-id"},domProps:{textContent:t._s(t.text_dual_tracking_profile)}}),s("p",{staticClass:"monsterinsights-field-description"},[s("span",{domProps:{innerHTML:t._s("ua"===t.auth.connected_type?t.text_dual_v4:t.text_dual_ua)}}),s("br"),s("span",{domProps:{innerHTML:t._s("ua"===t.auth.connected_type?t.text_dual_v4_tip:t.text_dual_ua_tip)}})]),s("input",{staticClass:"monsterinsights-manual-ua",attrs:{id:"monsterinsights-dual-tracking-id",type:"text"},domProps:{value:t.dual_tracking_id},on:{change:t.updateDualTrackingId}}),t.has_dual_error?s("label",{staticClass:"monsterinsights-error"},[s("i",{staticClass:"monstericon-warning-triangle"}),s("span",{domProps:{innerHTML:t._s(t.has_error)}})]):t._e(),t.auth.v4?[s("div",{staticClass:"monsterinsights-separator"}),s("label",{staticClass:"monsterinsights-dark",attrs:{for:"monsterinsights-v4-measurement-protocol"},domProps:{textContent:t._s(t.text_v4_measurement_protocol)}}),s("p",{staticClass:"monsterinsights-field-description",domProps:{innerHTML:t._s(t.text_v4_measurement_protocol_description)}}),s("input",{staticClass:"monsterinsights-manual-ua",attrs:{id:"monsterinsights-v4-measurement-protocol",type:"text"},domProps:{value:t.measurement_protocol_secret},on:{change:t.updateMeasurementProtocolSecret}})]:t._e(),s("div",{staticClass:"monsterinsights-separator"}),s("div",[s("div",{staticClass:"monsterinsights-auth-actions"},[s("button",{staticClass:"monsterinsights-onboarding-button monsterinsights-onboarding-button-large",domProps:{textContent:t._s(t.text_button_reconnect)},on:{click:t.doReAuth}}),s("button",{staticClass:"monsterinsights-text-button monsterinsights-pull-right",attrs:{type:"submit"},on:{click:function(e){return e.preventDefault(),t.submitForm(e)}}},[s("span",{domProps:{textContent:t._s(t.text_skip)}}),s("i",{staticClass:"monstericon-arrow-right"})])])])],2):s("div",[s("span",{staticClass:"monsterinsights-dark",domProps:{textContent:t._s(t.label)}}),s("p",{domProps:{innerHTML:t._s(t.description)}}),s("button",{staticClass:"monsterinsights-onboarding-button monsterinsights-onboarding-button-large",domProps:{textContent:t._s(t.text_button_connect)},on:{click:t.doAuth}})])],1)},I=[],U=s("b333");function H(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function z(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?H(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):H(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var D={name:"OnboardingAuthenticate",components:{SettingsNetworkNotice:U["a"]},props:{label:String,description:String},data:function(){return{is_network:this.$mi.network,text_button_connect:Object(c["a"])("Connect MonsterInsights","google-analytics-for-wordpress"),text_button_reconnect:Object(c["a"])("Reconnect MonsterInsights","google-analytics-for-wordpress"),text_website_profile:Object(c["a"])("Website profile","google-analytics-for-wordpress"),text_active_profile:Object(c["a"])("Active profile","google-analytics-for-wordpress"),text_auth_network:Object(c["a"])("Your website profile has been set at the network level of your WordPress Multisite.","google-analytics-for-wordpress"),text_auth_network_2:Object(c["a"])("If you would like to use a different profile for this subsite, you can authenticate below.","google-analytics-for-wordpress"),text_skip:Object(c["a"])("Skip and Keep Connection","google-analytics-for-wordpress"),text_manual_v4_label:Object(c["a"])("Manually enter your GA4 Measurement ID","google-analytics-for-wordpress"),text_manual_v4_description:Object(c["a"])("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 UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters.","google-analytics-for-wordpress"),text_dual_tracking_profile:Object(c["a"])("Dual Tracking Profile","google-analytics-for-wordpress"),text_dual_ua:Object(c["d"])(Object(c["a"])("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"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.monsterinsights.com/introducing-google-analytics-4-dual-analytics-tracking-for-wordpress/")+'" target="_blank">',"</a>"),text_dual_ua_tip:Object(c["a"])("Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers.","google-analytics-for-wordpress"),text_dual_v4:Object(c["d"])(Object(c["a"])("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"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.monsterinsights.com/introducing-google-analytics-4-dual-analytics-tracking-for-wordpress/")+'" target="_blank">',"</a>"),text_dual_v4_tip:Object(c["a"])("Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters.","google-analytics-for-wordpress"),text_v4_measurement_protocol:Object(c["a"])("Measurement Protocol API Secret","google-analytics-for-wordpress"),text_v4_measurement_protocol_description:Object(c["d"])(Object(c["a"])("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"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.monsterinsights.com/docs/how-to-create-your-measurement-protocol-api-secret-in-ga4/")+'" target="_blank">',"</a>"),has_error:!1,has_ua_error:!1,has_v4_error:!1,has_dual_error:!1}},computed:z({},Object(A["b"])({license:"$_license/license",license_network:"$_license/license_network",auth:"$_auth/auth"}),{iconClass:function(){var t="monstericon-arrow";return this.showButtons&&(t+=" monstericon-down"),t},dual_tracking_key:function(){var t="ua"===this.auth.connected_type?"v4":"ua",e=this.is_network?"network_":"";return e+t},dual_tracking_id:function(){return this.auth[this.dual_tracking_key]},measurement_protocol_secret:function(){return this.is_network?this.auth.network_measurement_protocol_secret:this.auth.measurement_protocol_secret}}),methods:{submitForm:function(){this.$emit("nextstep",!0)},doAuth:function(t){t.preventDefault();var e=this;this.$swal({customContainerClass:"monsterinsights-swal monsterinsights-swal-loading",type:"info",title:Object(c["a"])("Authenticating","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){e.$swal.showLoading(),e.$addCustomLoader()}}),this.$store.dispatch("$_auth/doAuth",this.is_network).then((function(t){t.data.redirect?window.location=t.data.redirect:e.$swal({type:"error",title:Object(c["a"])("Error","google-analytics-for-wordpress"),html:t.data.message,confirmButtonText:Object(c["a"])("Ok","google-analytics-for-wordpress")})}))},doReAuth:function(t){t.preventDefault();var e=this;this.$swal({customContainerClass:"monsterinsights-swal monsterinsights-swal-loading",type:"info",title:Object(c["a"])("Re-Authenticating","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){e.$swal.showLoading(),e.$addCustomLoader()}}),this.$store.dispatch("$_auth/doReAuth",this.is_network).then((function(t){t.data.redirect?window.location=t.data.redirect:e.$swal({type:"error",title:Object(c["a"])("Error","google-analytics-for-wordpress"),html:t.data.message,confirmButtonText:Object(c["a"])("Ok","google-analytics-for-wordpress")})}))},processActionResponse:function(t){!1===t.success?(t.data.ua_error?(this.has_v4_error=!1,this.has_ua_error=!0):t.data.v4_error?(this.has_ua_error=!1,this.has_v4_error=!0):t.data.error&&(this.has_ua_error=!1,this.has_v4_error=!1,this.has_dual_error=!0),this.has_error=t.data.error,this.$mi_error_toast({})):(this.has_v4_error=!1,this.has_ua_error=!1,this.has_error=!1,this.has_dual_error=!1,this.$mi_success_toast({}))},updateDualTrackingId:function(t){this.$mi_saving_toast({}),this.has_error=!1,this.$store.dispatch("$_auth/updateDualTrackingId",{value:t.target.value,network:this.is_network}).then(this.processActionResponse)},updateMeasurementProtocolSecret:function(t){this.$mi_saving_toast({}),this.has_error=!1,this.$store.dispatch("$_auth/updateMeasurementProtocolSecret",{value:t.target.value,network:this.is_network}).then(this.processActionResponse)}}},B=D,X=Object(h["a"])(B,T,I,!1,null,null,null),R=X.exports,W=s("f7fe"),G=s.n(W);function V(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function F(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?V(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):V(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var Z={name:"OnboardingStepWelcome",components:{OnboardingAuthenticate:R,OnboardingLicense:L,OnboardingContentHeader:f},data:function(){return{text_header_title:Object(c["a"])("Connect MonsterInsights to Your Website","google-analytics-for-wordpress"),text_header_subtitle:Object(c["a"])("MonsterInsights connects Google Analytics to WordPress and shows you stats that matter.","google-analytics-for-wordpress"),text_authenticate_label:Object(c["a"])("Connect Google Analytics + WordPress","google-analytics-for-wordpress"),text_authenticate_description:Object(c["a"])("You will be taken to the MonsterInsights website where you'll need to connect your Analytics account.","google-analytics-for-wordpress"),text_error_auth:Object(c["a"])("Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually.","google-analytics-for-wordpress"),text_manual_label:Object(c["a"])("Manually enter your UA code","google-analytics-for-wordpress"),text_manual_description:Object(c["a"])("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"),text_save:Object(c["a"])("Save and Continue","google-analytics-for-wordpress"),is_network:this.$mi.network,has_error:!1,auth_error:!1,manual_valid:!0,has_ua_error:!1,has_v4_error:!1,text_manual_v4_label:Object(c["a"])("Manually enter your GA4 Measurement ID","google-analytics-for-wordpress"),text_manual_v4_description:Object(c["a"])("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 UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters.","google-analytics-for-wordpress"),text_dual_tracking_profile:Object(c["a"])("Dual Tracking Profile","google-analytics-for-wordpress"),text_dual_ua:Object(c["d"])(Object(c["a"])("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"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.monsterinsights.com/introducing-google-analytics-4-dual-analytics-tracking-for-wordpress/")+'" target="_blank">',"</a>"),text_dual_ua_tip:Object(c["a"])("Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers.","google-analytics-for-wordpress"),text_dual_v4:Object(c["d"])(Object(c["a"])("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"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.monsterinsights.com/introducing-google-analytics-4-dual-analytics-tracking-for-wordpress/")+'" target="_blank">',"</a>"),text_dual_v4_tip:Object(c["a"])("Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters.","google-analytics-for-wordpress"),text_v4_measurement_protocol:Object(c["a"])("Measurement Protocol API Secret","google-analytics-for-wordpress"),text_v4_measurement_protocol_description:Object(c["d"])(Object(c["a"])("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"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.monsterinsights.com/docs/how-to-create-your-measurement-protocol-api-secret-in-ga4/")+'" target="_blank">',"</a>")}},computed:F({},Object(A["b"])({auth:"$_auth/auth"}),{manual_button_class:function(){var t="monsterinsights-onboarding-button monsterinsights-onboarding-button-large";return this.manual_valid||(t+=" monsterinsights-button-disabled"),t},measurement_protocol_secret:function(){return this.is_network?this.auth.network_measurement_protocol_secret:this.auth.measurement_protocol_secret}}),methods:{fieldInput:G()((function(t){this.updateManualUa(t)}),500),handleSubmit:function(){if(this.auth_error&&""===this.auth.manual_ua&&""===this.auth.network_manual_ua)return this.manual_valid=!1,void(this.has_error=Object(c["a"])("UA code can't be empty","google-analytics-for-wordpress"));this.auth_error&&!this.manual_valid||this.$router.push(this.$wizard_steps[2])},updateManualUa:function(t){var e=this;e.$swal({type:"info",title:Object(c["a"])("Saving UA code...","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){e.$swal.showLoading()}}),e.has_error=!1,e.manual_valid=!1,this.$store.dispatch("$_auth/updateManualUa",{ua:t.target.value,network:this.is_network}).then((function(s){!1===s.success?(e.has_error=s.data.error,e.has_ua_error=!0,e.has_v4_error=!1,e.$swal.close(),t.target.value=""):(e.has_error=!1,e.has_ua_error=!1,e.has_v4_error=!1,e.manual_valid=!0,e.$swal.close())}))},updateManualV4:function(t){var e=this;this.$mi_saving_toast({}),e.has_error=!1,this.$store.dispatch("$_auth/updateManualV4",{v4:t.target.value,network:this.is_network}).then((function(s){!1===s.success?(e.has_error=s.data.error,e.has_v4_error=!0,e.has_ua_error=!1,e.$swal.close(),t.target.value=""):(e.has_error=!1,e.has_v4_error=!1,e.has_ua_error=!1,e.manual_valid=!0,e.$swal.close())}))},updateMeasurementProtocolSecret:function(t){this.$mi_saving_toast({}),this.has_error=!1,this.$store.dispatch("$_auth/updateMeasurementProtocolSecret",{value:t.target.value,network:this.is_network}).then((function(e){!1===e.success?(self.has_error=e.data.error,self.$swal.close(),t.target.value=""):(self.has_error=!1,self.manual_valid=!0,self.$swal.close())}))}},mounted:function(){if("undefined"!==typeof URLSearchParams){var t=new URLSearchParams(window.location.search);if(t){var e=t.get("mi-auth-error");"1"!==e&&"2"!==e||(this.auth_error=parseInt(e),this.auth.manual_ua&&(this.manual_valid=!0))}}}},N=Z,Q=Object(h["a"])(N,x,O,!1,null,null,null),Y=Q.exports,K=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-onboarding-step-recommended-settings"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"monsterinsights-onboarding-wizard-form"},[s("form",{attrs:{action:"",method:"post"},on:{submit:function(e){return e.preventDefault(),t.handleSubmit(e)}}},[s("div",{staticClass:"monsterinsights-separator"}),s("settings-input-checkbox",{attrs:{label:t.text_events_label,description:t.text_events_description,tooltip:t.text_events_tooltip,faux:!0,faux_tooltip:t.text_events_faux_tooltip}}),s("div",{staticClass:"monsterinsights-separator"}),s("settings-input-checkbox",{attrs:{label:t.text_link_attribution_label,description:t.text_link_attribution_description,tooltip:t.text_link_attribution_tooltip,faux:!0,faux_tooltip:t.text_link_attribution_faux_tooltip}}),s("div",{staticClass:"monsterinsights-separator"}),s("settings-input-text",{attrs:{default_value:"doc,pdf,ppt,zip,xls,docx,pptx,xlsx",name:"extensions_of_files",label:t.text_extensions_of_files_label,description:t.text_extensions_of_files_description,tooltip:t.text_extensions_of_files_tooltip}}),s("div",{staticClass:"monsterinsights-separator"}),s("p",[s("label",{domProps:{textContent:t._s(t.text_affiliate_label)}}),s("span",{staticClass:"monsterinsights-sublabel",domProps:{innerHTML:t._s(t.text_affiliate_repeater_description)}}),s("settings-info-tooltip",{attrs:{content:t.text_affiliate_tooltip_content}})],1),s("settings-input-repeater",{attrs:{structure:t.repeater_structure,name:"affiliate_links",data:t.settings["affiliate_links"]}}),s("div",{staticClass:"monsterinsights-separator"}),s("settings-input-select",{attrs:{options:t.user_roles,forced:t.user_roles_manage_options,multiple:!0,name:"view_reports",label:t.text_permissions_view_label,description:t.text_permissions_view_description,tooltip:t.text_permissions_view_tooltip,addtext:t.text_add_role}}),s("div",{staticClass:"monsterinsights-separator"}),s("settings-input-checkbox",{attrs:{"value-on":"all","value-off":"none",name:"automatic_updates",label:t.text_updates_label,description:t.text_updates_description,tooltip:t.text_updates_tooltip}}),s("div",{staticClass:"monsterinsights-separator"}),s("onboarding-improve"),s("div",{staticClass:"monsterinsights-form-row monsterinsights-form-buttons"},[s("button",{staticClass:"monsterinsights-onboarding-button monsterinsights-onboarding-button-large",attrs:{type:"submit",name:"next_step"},domProps:{textContent:t._s(t.text_save)}})])],1)])],1)},q=[],J=s("088d"),tt=s("c472"),et=s("6ffa"),st=s("93ec"),ot=s("aa9f"),at=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",[s("settings-input-checkbox",{attrs:{name:"anonymous_data",label:t.text_anonymous_label,description:t.text_anonymous_description,tooltip:t.text_anonymous_tooltip}}),s("div",{staticClass:"monsterinsights-separator"})],1)},nt=[],rt={name:"OnboardingImprove",components:{SettingsInputCheckbox:J["a"]},data:function(){return{text_anonymous_label:Object(c["a"])("Help Us Improve","google-analytics-for-wordpress"),text_anonymous_description:Object(c["a"])("Help us better understand our users and their website needs.","google-analytics-for-wordpress"),text_anonymous_tooltip:Object(c["d"])(Object(c["a"])("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"),'<a target="_blank" href="'+this.$getUrl("onboarding-wizard","usage-tracking","https://www.monsterinsights.com/docs/usage-tracking/")+'">',"</a>")}}},it=rt,lt=Object(h["a"])(it,at,nt,!1,null,null,null),ct=lt.exports;function dt(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function ut(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?dt(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):dt(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var gt={name:"OnboardingStepRecommendedSettings",components:{OnboardingImprove:ct,SettingsInputSelect:ot["a"],SettingsInfoTooltip:st["a"],SettingsInputRepeater:et["a"],SettingsInputText:tt["a"],SettingsInputCheckbox:J["a"],OnboardingContentHeader:f},data:function(){return{text_header_title:Object(c["a"])("Recommended Settings","google-analytics-for-wordpress"),text_header_subtitle:Object(c["a"])("MonsterInsights recommends the following settings based on your configuration.","google-analytics-for-wordpress"),text_events_label:Object(c["a"])("Events Tracking","google-analytics-for-wordpress"),text_events_description:Object(c["a"])("Must have for all click tracking on site.","google-analytics-for-wordpress"),text_events_tooltip:Object(c["a"])("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"),text_link_attribution_label:Object(c["a"])("Enhanced Link Attribution","google-analytics-for-wordpress"),text_link_attribution_description:Object(c["a"])("Improves the accuracy of your In-Page Analytics.","google-analytics-for-wordpress"),text_link_attribution_tooltip:Object(c["a"])("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"),text_updates_label:Object(c["a"])("Install Updates Automatically","google-analytics-for-wordpress"),text_updates_description:Object(c["a"])("Get the latest features, bug fixes, and security updates as they are released.","google-analytics-for-wordpress"),text_updates_tooltip:Object(c["a"])("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"),text_extensions_of_files_label:Object(c["a"])("File Download Tracking","google-analytics-for-wordpress"),text_extensions_of_files_description:Object(c["a"])("Helps you see file downloads data.","google-analytics-for-wordpress"),text_extensions_of_files_tooltip:Object(c["a"])("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"),repeater_structure:[{name:"path",label:Object(c["d"])(Object(c["a"])("Path (example: %s)","google-analytics-for-wordpress"),"/go/"),pattern:/^\/\S+$/,error:Object(c["a"])("Path has to start with a / and have no spaces","google-analytics-for-wordpress")},{name:"label",label:Object(c["d"])(Object(c["a"])("Label (example: %s)","google-analytics-for-wordpress"),"aff"),pattern:/^\S+$/,error:Object(c["a"])("Label can't contain any spaces","google-analytics-for-wordpress")}],text_affiliate_repeater_description:Object(c["a"])("Helps you increase affiliate revenue.","google-analytics-for-wordpress"),text_affiliate_tooltip_content:Object(c["a"])("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"),text_affiliate_label:Object(c["a"])("Affiliate Link Tracking","google-analytics-for-wordpress"),text_permissions_view_label:Object(c["a"])("Who Can See Reports","google-analytics-for-wordpress"),text_permissions_view_description:Object(c["a"])("These user roles will be able to access MonsterInsights' reports in the WordPress admin area.","google-analytics-for-wordpress"),text_permissions_view_tooltip:Object(c["a"])("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"),text_save:Object(c["a"])("Save and continue","google-analytics-for-wordpress"),text_events_faux_tooltip:Object(c["a"])("Events Tracking is enabled the moment you set up MonsterInsights","google-analytics-for-wordpress"),text_link_attribution_faux_tooltip:Object(c["a"])("Enhanced Link Attribution is enabled the moment you set up MonsterInsights","google-analytics-for-wordpress"),text_add_role:Object(c["a"])("+ Add Role","google-analytics-for-wordpress")}},mounted:function(){this.turnOnAutoUpdatesOption(),this.turnOnUsageTrackingOption()},methods:{handleSubmit:function(){this.$router.push(this.$wizard_steps[3])},turnOnAutoUpdatesOption:function(){this.$store.dispatch("$_settings/updateSettings",{name:"automatic_updates",value:"all"})},turnOnUsageTrackingOption:function(){this.$store.dispatch("$_settings/updateSettings",{name:"anonymous_data",value:"all"})}},computed:ut({},Object(A["b"])({settings:"$_settings/settings"}),{user_roles:function(){var t=[];for(var e in this.$mi.roles)t.push({label:this.$mi.roles[e],value:e});return t},user_roles_manage_options:function(){var t=[];for(var e in this.$mi.roles_manage_options)t.push({label:this.$mi.roles_manage_options[e],value:e});return t}})},pt=gt,ht=Object(h["a"])(pt,K,q,!1,null,null,null),mt=ht.exports,ft=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",[s("div",{staticClass:"monsterinsights-onboarding-step-recommended-addons"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"monsterinsights-onboarding-wizard-form"},[s("div",{staticClass:"monsterinsights-separator"}),t._l(t.adddonList,(function(e,o){return s("div",{key:o},[s("onboarding-addon",{attrs:{feature:e,features_awaiting_install:t.features_awaiting_install},on:{"update-feature-await":t.updateFeatureAwaitInstall}}),s("div",{staticClass:"monsterinsights-separator"})],1)})),s("button",{staticClass:"monsterinsights-onboarding-button monsterinsights-onboarding-button-large",attrs:{type:"button",name:"next_step"},domProps:{textContent:t._s(t.text_save)},on:{click:function(e){return e.preventDefault(),t.continueNextStep(e)}}}),s("a",{staticClass:"monsterinsights-skip-addons",attrs:{href:"#",title:""},on:{click:function(e){return e.preventDefault(),t.skipAddons()}}},[s("span",[t._v("Skip for Now")]),s("svg",{attrs:{width:"16",height:"9",viewBox:"0 0 16 9",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[s("path",{attrs:{d:"M11.1289 3.34375H0.546875C0.300781 3.34375 0.125 3.55469 0.125 3.76562V5.73438C0.125 5.98047 0.300781 6.15625 0.546875 6.15625H11.1289V7.80859C11.1289 8.54688 12.043 8.93359 12.5703 8.40625L15.5938 5.34766C15.9453 5.03125 15.9453 4.50391 15.5938 4.1875L12.5703 1.12891C12.043 0.601562 11.1289 0.988281 11.1289 1.72656V3.34375Z",fill:"#586074"}})])])],2)],1),t.features_awaiting_install.length?s("div",{staticClass:"monsterinsights-features-awaiting-install"},[s("span",{domProps:{textContent:t._s(t.features_awaiting_install_text)}}),s("span",{domProps:{textContent:t._s(t.featureAwaitingInstall)}})]):t._e()])},_t=[],bt=(s("a15b"),s("25f0"),s("96cf"),s("c964"));s("e01a"),s("d28b");function wt(t){return wt="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},wt(t)}function yt(t){return yt="function"===typeof Symbol&&"symbol"===wt(Symbol.iterator)?function(t){return wt(t)}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":wt(t)},yt(t)}var vt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-features monsterinsights-flex"},[s("div",{staticClass:"monsterinsights-feat-content"},[s("p",[t._v(t._s(t.feature.data.title))]),s("p",[t._v(t._s(t.feature.data.description))])]),s("div",{staticClass:"monsterinsights-feat-checkbox"},[t.feature.data.faux?s("label",{staticClass:"monsterinsights-checkbox-round"},[s("input",{staticClass:"faux",attrs:{id:t.feature.id,type:"checkbox",checked:"",disabled:""}}),s("span",{staticClass:"checkmark",attrs:{id:"checkmark-loader-"+t.feature.id}})]):t.feature.data.checked?s("label",{staticClass:"monsterinsights-checkbox-round"},[s("div",{staticClass:"loader",attrs:{id:"loader-"+t.feature.id}}),s("input",{staticClass:"addon-checkbox",attrs:{id:t.feature.id,type:"checkbox",checked:"",name:t.feature.id},on:{click:function(e){return e.preventDefault(),t.toggleCheck(e,t.feature.data.title,t.feature.id)}}}),s("span",{staticClass:"checkmark",attrs:{id:"checkmark-loader-"+t.feature.id}})]):s("label",{staticClass:"monsterinsights-checkbox-round"},[s("div",{staticClass:"loader",attrs:{id:"loader-"+t.feature.id}}),s("input",{staticClass:"addon-checkbox",attrs:{id:t.feature.id,type:"checkbox",name:t.feature.id},on:{click:function(e){return e.preventDefault(),t.toggleCheck(e,t.feature.data.title,t.feature.id)}}}),s("span",{staticClass:"checkmark remove",attrs:{id:"checkmark-loader-"+t.feature.id}})])])])},xt=[];s("caad"),s("2532");function Ot(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function At(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?Ot(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):Ot(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var kt={name:"OnboardingAddon",props:{feature:Object,installed_addons:Object,features_awaiting_install:Array},data:function(){return{}},computed:At({},Object(A["b"])({addons:"$_addons/addons"})),methods:{toggleCheck:function(t,e,s){var o=t.target.nextElementSibling;if(o.classList.toggle("remove"),t.target.toggleAttribute("checked"),"aioseo"===s||"wpforms_lite"===s){var a=this.features_awaiting_install;a.includes(e)?a=a.filter((function(t){return t!==e})):a.push(e),this.$emit("update-feature-await",a)}}}},Ct=kt,jt=Object(h["a"])(Ct,vt,xt,!1,null,null,null),Pt=jt.exports;function $t(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function St(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?$t(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):$t(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var Mt={name:"OnboardingStepRecommendedFeatures",components:{OnboardingContentHeader:f,OnboardingAddon:Pt},data:function(){return{text_header_title:Object(c["a"])("Which website features would you like to enable?","google-analytics-for-wordpress"),text_header_subtitle:Object(c["a"])("We’ve already selected our recommended features based on your site. ","google-analytics-for-wordpress"),text_other_addons:Object(c["a"])("Other Addons","google-analytics-for-wordpress"),text_other_addons_button:Object(c["a"])("View all MonsterInsights addons","google-analytics-for-wordpress"),text_save:Object(c["a"])("Continue","google-analytics-for-wordpress"),features_awaiting_install:[],features_awaiting_install_text:Object(c["a"])("The following plugins will be installed: ","google-analytics-for-wordpress")}},computed:St({},Object(A["b"])({settings:"$_settings/settings",addons:"$_addons/addons"}),{adddonList:function(){return this.addonState(this.addons)},featureAwaitingInstall:function(){return this.features_awaiting_install.join(", ")}}),mounted:function(){localStorage.removeItem("activated_addons"),this.featuresToInstall()},methods:{featuresList:function(){var t=[{id:"standard",standard:{addons:"standard"},data:{feature:"standard",title:Object(c["a"])("Standard Analytics & Reports","google-analytics-for-wordpress"),description:Object(c["a"])("Get the reports and stats that matter right inside your WordPress Dashboard.","google-analytics-for-wordpress"),faux:!0}},{id:"enhanced_link",enhanced_link:{addons:"enhanced-link"},data:{feature:"enhanced-link",title:Object(c["a"])("Enhanced Link Attribution","google-analytics-for-wordpress"),description:Object(c["a"])("Helps you see what links your users are clicking on your site.","google-analytics-for-wordpress"),faux:!0}},{id:"aioseo",aioseo:{addons:"aioseo"},data:{feature:"aioseo",title:Object(c["a"])("All In One SEO Toolkit","google-analytics-for-wordpress"),description:Object(c["a"])("The best WordPress SEO plugin that works with MonsterInsights to boost your rankings.","google-analytics-for-wordpress"),checked:!0}},{id:"wpforms_lite",wpforms_lite:{addons:"wpforms-lite"},data:{feature:"wpforms-lite",title:Object(c["a"])("Smart Form Builder by WPForms","google-analytics-for-wordpress"),description:Object(c["a"])("The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more.","google-analytics-for-wordpress"),checked:!0}},{id:"eu_compliance",eu_compliance:{addons:"eu-compliance"},data:{feature:"eu-compliance",title:Object(c["a"])("Privacy Compliance Addon","google-analytics-for-wordpress"),description:Object(c["a"])("Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA.","google-analytics-for-wordpress")}},{id:"advanced_reports",advanced_reports:{addons:["dimensions","forms","ecommerce","page-insights"]},data:{feature:["dimensions","forms","ecommerce","page-insights"],title:Object(c["a"])("Advanced Reports","google-analytics-for-wordpress"),description:Object(c["a"])("Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more.","google-analytics-for-wordpress")}},{id:"ecommerce",ecommerce:{addons:"ecommerce"},data:{feature:"ecommerce",title:Object(c["a"])("eCommerce Tracking","google-analytics-for-wordpress"),description:Object(c["a"])("Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more.","google-analytics-for-wordpress")}},{id:"advanced_tracking",advanced_tracking:{addons:["dimensions","forms"]},data:{feature:["dimensions","forms"],title:Object(c["a"])("20+ Advanced Tracking","google-analytics-for-wordpress"),description:Object(c["a"])("Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more.","google-analytics-for-wordpress")}},{id:"google_optimize",google_optimize:{addons:"google-optimize"},data:{feature:"google-optimize",title:Object(c["a"])("Advanced Growth Tools","google-analytics-for-wordpress"),description:Object(c["a"])("Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more.","google-analytics-for-wordpress")}},{id:"media",media:{addons:"media"},data:{feature:"media",title:Object(c["a"])("Media Tracking","google-analytics-for-wordpress"),description:Object(c["a"])("Track how your users interact with videos on your website.","google-analytics-for-wordpress")}}];return t},skipAddons:function(){void 0!==this.$wizard_steps[4]?this.$router.push(this.$wizard_steps[4]):this.$router.push({name:"success"})},addonState:function(t){for(var e=this.featuresList(),s=0;s<e.length;s++){var o=e[s].data.feature;if("standard"!==o&&"enhanced-link"!==o&&("string"===typeof o&&t[o]&&(t[o].active?e[s].data.faux=!0:t[o].installed&&(e[s].data.checked=!0)),"object"===yt(o))){var a=o.length,n=[],r=[];for(var i in o){var l=o[i];t[l]&&(t[l].active?(r.push(l),n.push(l)):t[l].installed&&n.push(l))}a===r.length?e[s].data.faux=!0:a===n.length&&(e[s].data.checked=!0)}}return e},continueNextStep:function(){var t=Object(bt["a"])(regeneratorRuntime.mark((function t(e){var s,o,a,n,r,i,l,d,u,g,p,h,m,f,_,b,w,y,v,x,O,A,k,C,j,P;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:for(s=this,o=this.featuresList(),a=document.querySelectorAll(".addon-checkbox"),n=[],r=0;r<a.length;r++)a[r].hasAttribute("checked")&&(i=a[r].name,n.push(i));for(l in n)d=n[l],u="checkmark-loader-"+d,g=document.getElementById(u),g&&(g.style.visibility="hidden"),p="loader-"+d,h=document.getElementById(p),h&&(h.style.display="block");m=[],f=[],_=0;case 9:if(!(_<o.length)){t.next=36;break}t.t0=regeneratorRuntime.keys(n);case 11:if((t.t1=t.t0()).done){t.next=33;break}if(b=t.t1.value,w=n[b],!o[_].hasOwnProperty(w)){t.next=31;break}if(e.target.setAttribute("disabled",!0),e.target.innerHTML="Please Wait...",y=document.querySelector(".monsterinsights-skip-addons"),y.style.visibility="hidden",v="checkmark-loader-"+w,x=document.getElementById(v),x&&(x.style.visibility="hidden"),O="loader-"+w,A=document.getElementById(O),A&&(A.style.display="block"),k=document.getElementById(w),C=o[_][w].addons,"wpforms-lite"!==C&&"aioseo"!==C){t.next=31;break}return j=this.addons[C],t.next=31,s.executeAddon(j,C,A,x,k,f,m);case 31:t.next=11;break;case 33:_++,t.next=9;break;case 36:0===f.length?(localStorage.setItem("activated_addons",m),void 0!==this.$wizard_steps[4]?this.$router.push(this.$wizard_steps[4]):this.$router.push({name:"success"})):(console.log("===================================================================="),console.log("MonsterInsights Onboarding Wizard Debug"),console.log("Following addons were not installed:"),console.log(f.toString()),console.log("===================================================================="),s.$swal({type:"error",title:Object(c["a"])("Error Processing","google-analytics-for-wordpress"),text:Object(c["a"])("There was an error while processing some features. Please try again or you can skip this process for now","google-analytics-for-wordpress"),confirmButtonText:Object(c["a"])("Ok","google-analytics-for-wordpress")}),e.target.removeAttribute("disabled"),e.target.innerHTML="Continue",P=document.querySelector(".monsterinsights-skip-addons"),P.style.visibility="visible");case 37:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),executeAddon:function(){var t=Object(bt["a"])(regeneratorRuntime.mark((function t(e,s,o,a,n,r,i){var l,c,d,u;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:if(l=this,void 0===e){t.next=28;break}if(a&&(a.style.visibility="hidden"),e.installed){t.next=21;break}if(c="","wpforms-lite"!==s&&"aioseo"!==s){t.next=9;break}return t.next=8,l.installPlugin(e);case 8:c=t.sent;case 9:if(!0!==c){t.next=16;break}return t.next=12,l.activateAddon(e);case 12:d=t.sent,!0===d?("wpforms-lite"!==s&&"aioseo"!==s||(o.style.display="none",n.classList.add("faux"),a.style.visibility="visible"),i.push(e.title)):(r.push(s),o.style.display="none",a.classList.add("error")),t.next=19;break;case 16:r.push(s),o.style.display="none",a.classList.add("error");case 19:t.next=26;break;case 21:if(!e.installed||e.active){t.next=26;break}return t.next=24,l.activateAddon(e);case 24:u=t.sent,!0===u?i.push(e.title):(r.push(s),o.style.display="none",a.classList.add("error"));case 26:t.next=31;break;case 28:r.push(s),o.style.display="none",a.classList.add("error");case 31:n.checked=!0,a&&(a.style.visibility="visible");case 33:case"end":return t.stop()}}),t,this)})));function e(e,s,o,a,n,r,i){return t.apply(this,arguments)}return e}(),installAddon:function(){var t=Object(bt["a"])(regeneratorRuntime.mark((function t(e){var s;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,this.$store.dispatch("$_addons/installAddon",e);case 2:if(s=t.sent,void 0===s){t.next=7;break}if(!(s&&"plugin"in s)){t.next=7;break}if(e.basename!==s.plugin){t.next=7;break}return t.abrupt("return",!0);case 7:return t.abrupt("return",!1);case 8:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),installPlugin:function(){var t=Object(bt["a"])(regeneratorRuntime.mark((function t(e){var s;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,this.$store.dispatch("$_addons/installOnboardingPlugin",e);case 2:if(s=t.sent,void 0===s){t.next=7;break}if(!(s&&"success"in s)){t.next=7;break}if(!0!==s.success){t.next=7;break}return t.abrupt("return",!0);case 7:return t.abrupt("return",!1);case 8:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),activateAddon:function(){var t=Object(bt["a"])(regeneratorRuntime.mark((function t(e){var s;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,this.$store.dispatch("$_addons/activateOnboardingAddon",e);case 2:return s=t.sent,t.abrupt("return",s);case 4:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),featuresToInstall:function(){for(var t=document.querySelectorAll(".addon-checkbox"),e=this.featuresList(),s=[],o=[],a=0;a<t.length;a++)if(t[a].hasAttribute("checked")&&!t[a].classList.contains("faux")){var n=t[a].name;"aioseo"!==n&&"wpforms_lite"!==n||s.push(n)}s.length>0&&(s.forEach((function(t){for(var s=0;s<e.length;s++)e[s].id==t&&o.push(e[s].data.title)})),this.features_awaiting_install=o)},updateFeatureAwaitInstall:function(t){this.features_awaiting_install=t}}},Et=Mt,Lt=Object(h["a"])(Et,ft,_t,!1,null,null,null),Tt=Lt.exports,It=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-onboarding-step-wpforms"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"monsterinsights-onboarding-wizard-form"},[s("form",{attrs:{action:"",method:"post"},on:{submit:function(e){return e.preventDefault(),t.handleSubmit(e)}}},[s("div",{staticClass:"monsterinsights-separator"}),s("div",{staticClass:"monsterinsights-addon-row monsterinsights-wpforms-row"},[t._m(0),s("div",{staticClass:"monsterinsights-addon-text"},[s("label",{domProps:{textContent:t._s(t.text_wpforms_label)}}),s("p",{domProps:{textContent:t._s(t.text_wpforms_description)}})])]),s("div",{staticClass:"monsterinsights-separator"}),s("div",{staticClass:"monsterinsights-form-row monsterinsights-form-buttons"},[s("div",{staticClass:"monsterinsights-form-input"},[s("button",{class:t.buttonClass(),attrs:{type:"button"},domProps:{textContent:t._s(t.button_text)},on:{click:function(e){return e.preventDefault(),t.installPlugin(e)}}}),t.loading?t._e():s("button",{staticClass:"monsterinsights-text-button monsterinsights-pull-right",attrs:{type:"submit",name:"next_step"}},[s("span",{domProps:{textContent:t._s(t.text_skip_step)}}),s("i",{staticClass:"monstericon-arrow-right"})])])])])])],1)},Ut=[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-addon-icon"},[s("div",{staticClass:"monsterinsights-addon-wpforms"})])}],Ht={name:"OnboardingStepWpforms",components:{OnboardingContentHeader:f},data:function(){return{text_header_title:Object(c["a"])("MonsterInsights Recommends WPForms","google-analytics-for-wordpress"),text_header_subtitle:Object(c["a"])("Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market.","google-analytics-for-wordpress"),text_wpforms_label:Object(c["a"])("Used on over 4,000,000 websites!","google-analytics-for-wordpress"),text_wpforms_description:Object(c["a"])("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"),text_skip_step:Object(c["a"])("Skip this Step","google-analytics-for-wordpress"),text_install_wpforms:Object(c["a"])("Continue & Install WPForms","google-analytics-for-wordpress"),text_installing_wpforms:Object(c["a"])("Installing...","google-analytics-for-wordpress"),button_text:"",loading:!1}},mounted:function(){this.button_text=this.text_install_wpforms},methods:{handleSubmit:function(){this.$router.push(this.$wizard_steps[5])},buttonClass:function(){var t="monsterinsights-onboarding-button monsterinsights-onboarding-button-large monsterinsights-install-wpforms";return this.loading&&(t+=" monsterinsights-button-disabled"),t},installPlugin:function(){var t=this;this.loading=!0,this.button_text=this.text_installing_wpforms,this.$store.dispatch("$_addons/installWPForms").then((function(){t.loading=!1,t.button_text=t.text_install_wpforms,t.handleSubmit()}))}}},zt=Ht,Dt=Object(h["a"])(zt,It,Ut,!1,null,null,null),Bt=Dt.exports,Xt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-onboarding-step-success"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"monsterinsights-onboarding-wizard-form"},[s("ol",[s("li",{domProps:{innerHTML:t._s(t.text_notice)}}),t._l(t.install_errors,(function(e,o){return[s("li",{key:o,domProps:{innerHTML:t._s(e)}})]}))],2),s("div",{staticClass:"monsterinsights-tracking-info-container"},[s("div",{staticClass:"monsterinsights-flex monsterinsights-tracking-info"},[s("div",{staticClass:"monsterinsights-tracking-info-text"},[s("p",[t._v(t._s(t.text_connected))])]),s("div",{staticClass:"monsterinsights-tracking-info-icon"},[s("span",{staticClass:"monsterinsights-success",domProps:{innerHTML:t._s(t.text_success)}}),s("span",{staticClass:"monsterinsights-success-icon",domProps:{innerHTML:t._s(t.icon_success)}})])])]),s("div",{staticClass:"monsterinsights-separator"}),s("div",{staticClass:"monsterinsights-tracking-info-container"},[s("div",{staticClass:"monsterinsights-flex monsterinsights-tracking-info"},[s("div",{staticClass:"monsterinsights-tracking-info-text"},[s("p",[t._v(t._s(t.text_code_installed))])]),s("div",{staticClass:"monsterinsights-tracking-info-icon"},[s("span",{staticClass:"monsterinsights-success",domProps:{innerHTML:t._s(t.text_success)}}),s("span",{staticClass:"monsterinsights-success-icon",domProps:{innerHTML:t._s(t.icon_success)}})])])]),s("div",{staticClass:"monsterinsights-separator"}),s("div",{staticClass:"monsterinsights-tracking-info-container"},[s("div",{staticClass:"monsterinsights-flex monsterinsights-tracking-info"},[s("div",{staticClass:"monsterinsights-tracking-info-text"},[s("p",[t._v(t._s(t.text_data_collected))])]),s("div",{staticClass:"monsterinsights-tracking-info-icon"},[s("span",{staticClass:"monsterinsights-success",domProps:{innerHTML:t._s(t.text_success)}}),s("span",{staticClass:"monsterinsights-success-icon",domProps:{innerHTML:t._s(t.icon_success)}})])])]),t.activated_addons?s("div",t._l(t.activated_addons,(function(e,o){return s("div",{key:o},[s("div",{staticClass:"monsterinsights-separator"}),s("div",{staticClass:"monsterinsights-tracking-info-container"},[s("div",{staticClass:"monsterinsights-flex monsterinsights-tracking-info"},[s("div",{staticClass:"monsterinsights-tracking-info-text"},[s("p",[t._v(t._s(e+" Installed"))])]),s("div",{staticClass:"monsterinsights-tracking-info-icon"},[s("span",{staticClass:"monsterinsights-success"},[t._v(t._s(t.text_success))]),s("span",{staticClass:"monsterinsights-success-icon",domProps:{innerHTML:t._s(t.icon_success)}})])])])])})),0):t._e(),"pro"!==t.license.type&&"pro"!==t.license_network.type?s("div",[s("div",{staticClass:"monsterinsights-onboarding-upsell"},[s("h2",[t._v(t._s(t.text_lite_user.heading))]),s("p",[t._v(t._s(t.text_lite_user.description))]),s("ul",t._l(t.text_lite_user.features,(function(e,o){return s("li",{key:o},[s("span",{staticClass:"monsterinsights-icon",domProps:{innerHTML:t._s(t.icon_checkmark)}}),s("span",{staticClass:"monsterinsights-text"},[t._v(t._s(e))])])})),0),s("div",{staticClass:"monsterinsights-upsell-upgrade-button"},[s("a",{staticClass:"monsterinsights-button monsterinsights-button-large",attrs:{target:"_blank",href:t.upgrade_button_url},domProps:{textContent:t._s(t.text_button_upgrade)}})])]),s("div",{staticClass:"monsterinsights-upsell-bottom-text"},[s("p",{domProps:{innerHTML:t._s(t.text_lite_user.bottom_text)}})]),s("div",{staticClass:"monsterinsights-settings-license-lite"},[s("label",{attrs:{for:"monsterinsights-license-key"},domProps:{innerHTML:t._s(t.text_license_label)}}),s("div",{staticClass:"monsterinsights-inline-field"},[s("input",{directives:[{name:"model",rawName:"v-model",value:t.connect_key,expression:"connect_key"}],attrs:{id:"monsterinsights-license-key",readonly:t.is_loading,type:"text",autocomplete:"off",placeholder:t.text_license_placeholder},domProps:{value:t.connect_key},on:{input:[function(e){e.target.composing||(t.connect_key=e.target.value)},t.fieldInput]}}),t.show_connect?s("span",[s("button",{staticClass:"monsterinsights-button",domProps:{textContent:t._s(t.text_upgrade_to_pro)},on:{click:function(e){return e.preventDefault(),t.startUpgradeToPro(e)}}})]):s("span",[s("button",{staticClass:"monsterinsights-button disabled",domProps:{textContent:t._s(t.text_upgrade_to_pro)}})])])])]):t._e(),"pro"!==t.license.type&&"pro"!==t.license_network.type?s("div",[s("div",{staticClass:"monsterinsights-separator"}),s("a",{staticClass:"monsterinsights-exit-link",attrs:{href:"#",title:""},on:{click:function(e){return e.preventDefault(),t.exitOnboardingWizard(e)}}},[t._v(t._s(t.text_exit_lite))])]):s("div",{staticClass:"monsterinsights-form-row monsterinsights-form-buttons"},[s("div",{staticClass:"monsterinsights-form-input"},[s("a",{staticClass:"monsterinsights-onboarding-button monsterinsights-onboarding-button-large",attrs:{href:"#"},domProps:{textContent:t._s(t.text_exit)},on:{click:function(e){return e.preventDefault(),t.exitOnboardingWizard(e)}}})])])])],1)},Rt=[],Wt=(s("5319"),s("1276"),s("dd62"));function Gt(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function Vt(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?Gt(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):Gt(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var Ft={name:"OnboardingStepSuccess",components:{OnboardingContentHeader:f},data:function(){return{text_header_title:Object(c["a"])("Awesome! Tracking and Analytics are All Setup!","google-analytics-for-wordpress"),text_header_subtitle:Object(c["a"])("MonsterInsights is connected to Google Analytics and data is being collected.","google-analytics-for-wordpress"),text_notice:Object(c["d"])(Object(c["a"])("%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"),"<strong>","</strong>"),text_newsletter:Object(c["d"])(Object(c["a"])("%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business.","google-analytics-for-wordpress"),'<a target="_blank" href="https://www.monsterinsights.com/blog/">',"</a>"),text_exit:Object(c["a"])("Finish Setup & Exit Wizard","google-analytics-for-wordpress"),text_exit_lite:Object(c["a"])("Complete Setup without Upgrading","google-analytics-for-wordpress"),exit_url:this.$mi.exit_url,text_success:Object(c["a"])("Success","google-analytics-for-wordpress"),text_connected:Object(c["a"])("Connected to Google Analytics","google-analytics-for-wordpress"),text_code_installed:Object(c["a"])("Tracking Code Installed","google-analytics-for-wordpress"),text_data_collected:Object(c["a"])("Data Being Collected","google-analytics-for-wordpress"),icon_success:'<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="16" height="16" rx="8" fill="#EAFAEE"/><path d="M6.70312 10.875C6.85938 11.0312 7.125 11.0312 7.28125 10.875L11.875 6.28125C12.0312 6.125 12.0312 5.85938 11.875 5.70312L11.3125 5.14062C11.1562 4.98438 10.9062 4.98438 10.75 5.14062L7 8.89062L5.23438 7.14062C5.07812 6.98438 4.82812 6.98438 4.67188 7.14062L4.10938 7.70312C3.95312 7.85938 3.95312 8.125 4.10938 8.28125L6.70312 10.875Z" fill="#46BF40"/></svg>',icon_checkmark:'<svg width="14" height="11" viewBox="0 0 14 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.05469 9.8125C5.28906 10.0469 5.6875 10.0469 5.92188 9.8125L12.8125 2.92188C13.0469 2.6875 13.0469 2.28906 12.8125 2.05469L11.9688 1.21094C11.7344 0.976562 11.3594 0.976562 11.125 1.21094L5.5 6.83594L2.85156 4.21094C2.61719 3.97656 2.24219 3.97656 2.00781 4.21094L1.16406 5.05469C0.929688 5.28906 0.929688 5.6875 1.16406 5.92188L5.05469 9.8125Z" fill="#46BF40"/></svg>',text_button_upgrade:Object(c["a"])("Upgrade to MonsterInsights Pro","google-analytics-for-wordpress"),upgrade_button_url:this.$getUpgradeUrl("onboarding-lite","onboarding-lite"),activated_addons:[],text_license_label:Object(c["a"])("Already purchased? Simply enter your license key below to connect with MonsterInsights PRO!","google-analytics-for-wordpress"),is_loading:!1,show_connect:!1,connect_key:"",text_license_placeholder:Object(c["a"])("Paste your license key here","google-analytics-for-wordpress"),text_license_verify:Object(c["a"])("Verify","google-analytics-for-wordpress"),text_upgrade_to_pro:Object(c["a"])("Verify License Key","google-analytics-for-wordpress"),text_lite_user:{heading:Object(c["a"])("Upgrade to Unlock These Features","google-analytics-for-wordpress"),description:Object(c["a"])("To unlock the selected features, please upgrade to Pro and enter your license key below.","google-analytics-for-wordpress"),bottom_text:Object(c["d"])(Object(c["a"])("%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)","google-analytics-for-wordpress"),"<strong>","</strong>","<strong>","</strong>"),features:["Advanced Reporting","20+ Advanced Tracking","eCommerce Tracking","Advanced Growth Tools","EU and Privacy Compliance","and Dozens More!"]}}},computed:Vt({},Object(A["b"])({install_errors:"$_onboarding/install_errors",license:"$_license/license",license_network:"$_license/license_network",auth:"$_auth/auth"})),mounted:function(){var t=this;t.$swal({type:"info",title:Object(c["a"])("Checking your website...","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){t.$swal.showLoading()}}),this.$store.dispatch("$_onboarding/getErrors").then((function(){t.$swal.close()}));var e=localStorage.getItem("activated_addons");e&&(e=e.replace(/,\s*$/,""),this.activated_addons=e.split(","))},methods:{fieldInput:G()((function(){this.show_connect=""!==this.connect_key}),100),startUpgradeToPro:function(){var t=this;this.$swal({type:"info",title:Object(c["a"])("Verifying License...","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,customContainerClass:"monsterinsights-swal",onOpen:function(){t.$swal.showLoading()}}),Wt["a"].getUpgradeLink(t.connect_key).then((function(e){if(e.success&&e.data.url)return window.location=e.data.url;var s=e.data.message?e.data.message:Object(c["a"])("There was an error unlocking MonsterInsights PRO please try again or install manually.","google-analytics-for-wordpress");t.$mi_error_toast({title:Object(c["a"])("Error","google-analytics-for-wordpress"),text:s,toast:!1,position:"center",showConfirmButton:!0,showCloseButton:!1,customClass:!1,confirmButtonText:Object(c["a"])("Ok","google-analytics-for-wordpress")}).then((function(){e.data.reload&&window.location.reload()}))})).catch((function(){t.$swal.close()}))},exitOnboardingWizard:function(){var t=this;this.$store.dispatch("$_onboarding/disableWPFormsWelcomeScreen").then((function(){window.location=t.exit_url}))}}},Zt=Ft,Nt=Object(h["a"])(Zt,Xt,Rt,!1,null,null,null),Qt=Nt.exports,Yt=new r["a"]({routes:[{path:"*",redirect:"/"},{path:"/",name:"welcome",component:v},{path:"/authenticate",name:"authenticate",component:Y},{path:"/recommended_settings",name:"recommended_settings",component:mt},{path:"/recommended_addons",name:"recommended_addons",component:Tt},{path:"/wpforms",name:"wpforms",component:Bt},{path:"/success",name:"success",component:Qt}],scrollBehavior:function(){return{x:0,y:0}}}),Kt=s("7220"),qt=s("bc3a"),Jt=s.n(qt),te=s("2b0e"),ee=function(t){return new Promise((function(e){var s=new FormData,o=te["a"].prototype.$addQueryArg(te["a"].prototype.$mi.ajax,"page","monsterinsights-onboarding");s.append("action","monsterinsights_onboarding_get_errors"),Jt.a.post(o,s).then((function(t){e(t.data)})).catch((function(e){if(t.dispatch("$_app/block",!1,{root:!0}),e.response){var s=e.response;return te["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't load errors. Error: %1$s, %2$s","google-analytics-for-wordpress"),s.status,s.statusText)})}te["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},se=function(){return new Promise((function(t){var e=new FormData;e.append("action","monsterinsights_onboarding_disable_wpforms_onboarding"),Jt.a.post(te["a"].prototype.$mi.ajax,e).then((function(e){t(e.data)})).catch((function(t){if(t.response){var e=t.response;return te["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't load errors. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}te["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},oe={fetchErrors:ee,disableWPFormsWelcomeScreen:se},ae=function(t){var e=oe.fetchErrors(t);return e.then((function(e){t.commit("ERRORS_UPDATED",e)})).catch((function(t){console.error(t)})),e},ne=function(){oe.disableWPFormsWelcomeScreen()},re={getErrors:ae,disableWPFormsWelcomeScreen:ne},ie=function(t){return t.install_errors},le={install_errors:ie},ce=function(t,e){t.install_errors=e},de={ERRORS_UPDATED:ce},ue={install_errors:[]},ge={namespaced:!0,state:ue,actions:re,getters:le,mutations:de},pe=(s("7795"),function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("header",{staticClass:"monsterinsights-onboarding-header"},[s("nav",{staticClass:"monsterinsights-header-navigation"},[s("a",{staticClass:"monsterinsights-exit-button",attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.exitOnboardingWizard(e)}}},[s("i",{staticClass:"monstericon-times-circle"}),s("span",{domProps:{textContent:t._s(t.text_exit)}})])]),t._m(0)])}),he=[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("h1",{staticClass:"monsterinsights-onboarding-wizard-logo"},[s("div",{staticClass:"monsterinsights-logo"},[s("div",{staticClass:"monsterinsights-bg-img"})])])}],me={name:"TheWizardHeader",data:function(){return{text_exit:Object(c["a"])("Exit Setup","google-analytics-for-wordpress"),href:this.$mi.exit_url}},methods:{exitOnboardingWizard:function(){var t=this;this.$store.dispatch("$_onboarding/disableWPFormsWelcomeScreen").then((function(){window.location=t.href}))}}},fe=me,_e=Object(h["a"])(fe,pe,he,!1,null,null,null),be=_e.exports,we=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-onboarding-wizard-container"},[s("div",{staticClass:"monsterinsights-onboarding-wizard-steps"},[t._l(t.steps,(function(e,o){return[o>0?s("div",{key:o+"line",class:t.lineClass(o)}):t._e(),s("div",{key:o,class:t.stepClass(o)})]}))],2)])},ye=[],ve={name:"TheWizardTimeline",data:function(){return{steps:this.$wizard_steps}},methods:{stepClass:function(t){var e="monsterinsights-onboarding-wizard-step",s=0;for(var o in this.steps)this.$route.name===this.steps[o]&&(s=o);return t<s&&(e+=" monsterinsights-onboarding-wizard-step-completed"),parseInt(t)===parseInt(s)&&(e+=" monsterinsights-onboarding-wizard-step-active"),e},lineClass:function(t){var e="monsterinsights-onboarding-wizard-step-line",s=0;for(var o in this.steps)this.$route.name===this.steps[o]&&(s=o);return t<=s&&(e+=" monsterinsights-onboarding-wizard-line-active"),e}}},xe=ve,Oe=Object(h["a"])(xe,we,ye,!1,null,null,null),Ae=Oe.exports,ke=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div")},Ce=[],je={name:"OnboardingBottomUpsell"},Pe=je,$e=Object(h["a"])(Pe,ke,Ce,!1,null,null,null),Se=$e.exports;function Me(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function Ee(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?Me(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):Me(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var Le={name:"WizardModuleOnboarding",components:{OnboardingBottomUpsell:Se,TheWizardTimeline:Ae,TheWizardHeader:be},router:Yt,created:function(){var t="$_settings";t in this.$store._modules.root._children||this.$store.registerModule(t,Kt["a"]);var e="$_onboarding";e in this.$store._modules.root._children||this.$store.registerModule(e,ge)},computed:Ee({},Object(A["b"])({blocked:"$_app/blocked"}),{route:function(){return this.$route.name}}),mounted:function(){this.$mi_loading_toast(),this.$store.dispatch("$_settings/getSettings")}},Te=Le,Ie=(s("1608"),Object(h["a"])(Te,o,a,!1,null,"283d1087",null)),Ue=Ie.exports,He=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-admin-page monsterinsights-welcome"},[s("div",{staticClass:"monsterinsights-welcome-container"},[s("div",{staticClass:"monsterinsights-welcome-block monsterinsights-welcome-block-first"},[t._m(0),s("div",{staticClass:"monsterinsights-welcome-block-inner"},[s("h3",{domProps:{textContent:t._s(t.welcome_title)}}),s("p",{staticClass:"monsterinsights-subtitle",domProps:{textContent:t._s(t.text_welcome_subtitle)}})]),s("div",{staticClass:"monsterinsights-welcome-video"},[s("div",{staticClass:"monsterinsights-welcome-video-image monsterinsights-bg-img",on:{click:function(e){t.welcome_video=!0}}}),t.welcome_video?s("welcome-overlay",{attrs:{id:"welcome-video"},on:{close:function(e){t.welcome_video=!1}}},[s("iframe",{attrs:{width:"1280",height:"720",src:"https://www.youtube.com/embed/IbdKpSygp2U?autoplay=1&modestbranding=1&showinfo=0&rel=0&fs=1",frameborder:"0",allow:"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture",allowfullscreen:""}})]):t._e()],1),s("div",{staticClass:"monsterinsights-welcome-block-inner"},[s("p",{domProps:{textContent:t._s(t.text_above_buttons)}}),s("div",{staticClass:"monsterinsights-button-wrap"},[s("div",{staticClass:"monsterinsights-welcome-left"},[s("a",{staticClass:"monsterinsights-button monsterinsights-button-large",attrs:{href:t.wizard_url},domProps:{textContent:t._s(t.text_wizard_button)}})]),s("div",{staticClass:"monsterinsights-welcome-right"},[s("a",{staticClass:"monsterinsights-button monsterinsights-button-alt monsterinsights-button-large",attrs:{href:t.$getUrl("welcome-screen","guide","https://www.monsterinsights.com/docs/connect-google-analytics/"),target:"_blank",rel:"noopener noreferrer"},domProps:{textContent:t._s(t.text_read_more_button)}})])])])]),s("div",{staticClass:"monsterinsights-welcome-block"},[s("div",{staticClass:"monsterinsights-welcome-block-inner"},[s("h3",{domProps:{textContent:t._s(t.text_features_title)}}),s("p",{staticClass:"monsterinsights-subtitle",domProps:{textContent:t._s(t.text_features_subtitle)}})]),s("div",{staticClass:"monsterinsights-welcome-block-inner monsterinsights-welcome-features"},t._l(t.features,(function(e,o){return s("div",{key:o,staticClass:"monsterinsights-welcome-feature"},[s("div",{staticClass:"monsterinsights-welcome-feature-img",domProps:{innerHTML:t._s(e.icon)}}),s("div",{staticClass:"monsterinsights-welcome-feature-text"},[s("h4",{domProps:{textContent:t._s(e.name)}}),s("p",{domProps:{textContent:t._s(e.description)}})])])})),0),s("div",{staticClass:"monsterinsights-welcome-block-inner monsterinsights-welcome-block-footer"},[s("a",{staticClass:"monsterinsights-button",attrs:{href:t.$getUrl("welcome-screen","features-button","https://monsterinsights.com/features"),target:"_blank"},domProps:{textContent:t._s(t.text_view_all_features)}})]),s("div",{staticClass:"monsterinsights-upgrade-cta"},[s("div",{staticClass:"monsterinsights-welcome-block-inner"},[s("div",{staticClass:"monsterinsights-welcome-left"},[s("h2",{domProps:{textContent:t._s(t.text_upgrade_to_pro)}}),s("ul",t._l(t.pro_features,(function(e,o){return s("li",{key:o},[s("i",{staticClass:"monstericon-check"}),t._v(" "+t._s(e)+" ")])})),0)]),s("div",{staticClass:"monsterinsights-welcome-right"},[t._m(1),s("div",{staticClass:"monsterinsights-price"},[s("span",{staticClass:"monsterinsights-amount"},[t._v(" 199 ")]),s("br"),s("span",{staticClass:"monsterinsights-term",domProps:{textContent:t._s(t.text_per_year)}})]),s("a",{staticClass:"monsterinsights-button monsterinsights-button-large",attrs:{href:t.$getUpgradeUrl("welcome-screen","upgrade-features"),rel:"noopener noreferrer",target:"_blank"},domProps:{textContent:t._s(t.text_upgrade_now)}})])])]),s("div",{staticClass:"monsterinsights-welcome-testimonials monsterinsights-welcome-block-inner"},[s("h3",{domProps:{textContent:t._s(t.text_testimonials)}}),t._l(t.testimonials,(function(e,o){return s("div",{key:o,staticClass:"monsterinsights-welcome-testimonial"},[s("div",{staticClass:"monsterinsights-welcome-testimonial-image"},[s("div",{class:e.image+" monsterinsights-bg-img"})]),s("div",{staticClass:"monsterinsights-welcome-testimonial-text"},[s("p",{domProps:{textContent:t._s(e.text)}}),s("p",[s("strong",{domProps:{textContent:t._s(e.author)}}),t._v(", "+t._s(e.function))])])])}))],2),s("div",{staticClass:"monsterinsights-welcome-footer-upsell monsterinsights-welcome-block-inner"},[s("div",{staticClass:"monsterinsights-welcome-left"},[s("a",{staticClass:"monsterinsights-button",attrs:{href:t.wizard_url},domProps:{textContent:t._s(t.text_wizard_button)}})]),s("div",{staticClass:"monsterinsights-welcome-right"},[s("a",{staticClass:"monsterinsights-button monsterinsights-button-alt",attrs:{href:t.$getUpgradeUrl("welcome-screen","upgrade-testimonials"),rel:"noopener noreferrer",target:"_blank"},domProps:{textContent:t._s(t.text_upgrade_now)}})])])])])])},ze=[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-welcome-logo-container"},[s("div",{staticClass:"monsterinsights-welcome-logo monsterinsights-bg-img"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("h2",[s("span",[t._v("PRO")])])}],De=(s("8c6a"),s("a4cc")),Be={name:"WizardModuleWelcome",components:{WelcomeOverlay:De["a"]},data:function(){return{text_welcome_title:Object(c["a"])("Welcome to MonsterInsights","google-analytics-for-wordpress"),text_welcome_subtitle:Object(c["a"])("Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin","google-analytics-for-wordpress"),text_above_buttons:Object(c["a"])("MonsterInsights makes it “effortless” to setup Google Analytics in WordPress, the RIGHT Way. You can watch the video tutorial or use our 3 minute setup wizard.","google-analytics-for-wordpress"),text_wizard_button:Object(c["a"])("Launch the Wizard!","google-analytics-for-wordpress"),text_read_more_button:Object(c["a"])("Read the Full Guide","google-analytics-for-wordpress"),text_features_title:Object(c["a"])("MonsterInsights Features & Addons","google-analytics-for-wordpress"),text_features_subtitle:Object(c["a"])("Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market.","google-analytics-for-wordpress"),text_view_all_features:Object(c["a"])("See All Features","google-analytics-for-wordpress"),text_upgrade_to_pro:Object(c["a"])("Upgrade to PRO","google-analytics-for-wordpress"),text_per_year:Object(c["a"])("per year","google-analytics-for-wordpress"),text_upgrade_now:Object(c["a"])("Upgrade Now","google-analytics-for-wordpress"),text_testimonials:Object(c["a"])("Testimonials","google-analytics-for-wordpress"),wizard_url:this.$mi.wizard_url,features:[{name:Object(c["a"])("Universal Tracking","google-analytics-for-wordpress"),description:Object(c["a"])("Setup universal website tracking across devices and campaigns with just a few clicks (without any code).","google-analytics-for-wordpress"),icon:'<svg class="" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 192 192" enable-background="new 0 0 192 192" xml:space="preserve"><rect fill="none" width="192" height="192"></rect><g><g><path fill="#509FE2" d="M130,29v132c0,14.77,10.189,23,21,23c10,0,21-7,21-23V30c0-13.54-10-22-21-22S130,17.33,130,29z"></path></g><g><path fill="#ACBDC9" d="M75,96v65c0,14.77,10.19,23,21,23c10,0,21-7,21-23V97c0-13.54-10-22-21-22S75,84.33,75,96z"></path></g><g><circle fill="#D6E2EA" cx="41" cy="163" r="21"></circle></g></g></svg>'},{name:Object(c["a"])("Google Analytics Dashboard","google-analytics-for-wordpress"),description:Object(c["a"])("See your website analytics report right inside your WordPress dashboard with actionable insights.","google-analytics-for-wordpress"),icon:'<svg class="" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 75 76"><image width="69" height="56" xlink:href="data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEUAAAA4CAMAAACc78UEAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAANlBMVEUAAADU4OrU4OrU4OrU4OrU4OrU4OrU4OrU4OrU4OrU4OrU4OrU4OrU4OrU4OrU4OrU4OoAAACAdzTSAAAAEHRSTlMAEHCvv2CPMECA35/vz1Agb16hXgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAAHdElNRQfjBgcLLAR8mk7DAAAAlklEQVRIx+3XvQ7CMAwE4GuduM0f5P2fFoewICGk2ghl8C23fUpO6VBg2ymYQhFA6OYwDjvSO86/KyHlZxPPLlyvKywrkrSsuTXpQ7peVgQZM+bRNznZ6KRV2kshnbJ/uFHWrDsfV5krV9as++Wu6ylN+ym+rXtCmeSKK6644oorrrjiykqKMUsp958oKHZk/H7FZEzEA/X+Y6vtpvg9AAAAAElFTkSuQmCC"></image> <image id="Vector_Smart_Object-2" data-name="Vector Smart Object" x="15" y="19" width="40" height="25" xlink:href="data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZCAMAAAB0BpxXAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAANlBMVEUAAABQn+BQn+BQn+BQn+BQn+BQn+BQn+BQn+BQn+BQn+BQn+BQn+BQn+BQn+BQn+BQn+AAAAD+uSRLAAAAEHRSTlMAEGCAUO/fMCCfz3Cvv0CP0Y9aNgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAAHdElNRQfjBgcLLAR8mk7DAAABC0lEQVQ4y4VS0QKEIAgrTU+tcP//tQd6npAP8dYcMca27aV25717I3EdAVzx88ZLjcfM/YWYgbynApym/QJCThoKiKITuBX46WOC1vNjREOMQPHRNvNQ7nMsYGIEXDyFn9RwpoTKQkETO/vXYUDXl0bVjgFirNdEkc1ionE88RTaXED4eyY69L/M0lBEFlfWmxaMGo+ySVqIbPZN3nsqwwsZcSw8/7+nnNdR77ACJUhVXYQWDXaJacE5iEbgCJKSzctedBTdy1UlSHvWemKLTGonnXUjPPPxy4WNBxNLj8lES/OcTGSafzSio6zyNZh0tCwgS5Cmt+NI5odtxycquyH451HcEiRxnR7AF4SxERp7xl7rAAAAAElFTkSuQmCC"></image> <image id="wordpress" x="35" y="35" width="39" height="39" xlink:href="data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAMAAAC7faEHAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAACo1BMVEX////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9/v75+/vu8vTT3OLI09vH09vI1NvN197J1NzZ4Ob19/ji6OzF0dnW3uTy9ff+/v7t8fTR2uHt8fPd5On7/Pzj6O3L1t28ydOzw86ywc24xtHAzdbT3OPs8PP+/v/6+/zQ2uH8/P3r7/LG0tr29/n7/P3V3uSsvcm6yNLk6u3F0dr2+Pnn7O/M1t62xdDBztf4+frE0Nnw8/XH0tuuv8rk6e3E0Nj8/f2tvsqyws34+vvv8/Xq7vHCz9fCz9i3xtC/zNXH0trK1dzS3OLh5+yuvsq7ydPa4ufq7/L5+vvz9ffl6+7O2N/o7fDk6u7P2eDz9ve8ytTp7vHc4+jh5+vM1962xc/Y4OXj6e319/ne5enDz9i1xM/L1d3p7fGzws2vv8v9/f7S2+L3+Pm0w86xwczY4Obx9Pbg5uvm6+/N19+9y9Tm6+7u8fTb4ufU3eOvwMvf5erQ2eDc5OnK1d33+fry9PbZ4eawwMzV3ePf5urX3+Wtvsng5+vb4+jl6u709vjp7fDv8vTe5eoAAABRfI6RAAAAW3RSTlMABRICD0uIq8jEqHc6O4734nkxW5EY6mQBmHYNpHiJaGL1IwfZmms21DX6F3JT0JAOPlkbaSthTxQm1qlsXDAg0jPdCwrcoF0Jam9FX+W4IROXjC0uKEBtf3tmY0JV1QAAAAFiS0dE4CgP/zAAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAAHdElNRQfjBgcLLAR8mk7DAAADY0lEQVQ4y4VU91/TMRANTtziwr33QNx7i3tvPUaRCtaKVMVRSqlwQquIRYoIigNlFFHrFmSIuFDcG+e/4l2+tkBx3A/Ju7v3yUsuyQlRzzwaNBT/sUaNmzT1BIBmzVu0/DurVes2UGNtvdr9kdW+Gbhbh471aV6urH+AC3bydmN17qIkAoNUwZtDVCr1llAl0LUOrVt3GQzbqtmmpLXbw1U7JOpRmydpocERWt3OXbsj9+zdt18fZQiPNnLYq4bWk/0Y04HYuD3otIPxoE8wc6KXk9abPcshf/1hrG2J5iNJTOzTV6H160/OUat2Z3IdGh48BuYUA+UGKLyBBG1JBktqXdrxNIqfCGGtQZI3mJAm3abKOKk6hZnWDLIEE+Jpedy4dK4304YQCDjDsTRLCp5N9+cynsvC8xyy6Uw0Dh1GvOEELmTn0Jgr9fII2RnkE7ho03AZRxDPh+ZgKLhE02VOWwlcYXA+CsBxNTSa/JFC+NKkuwbX42i+welkOqI2ktFNgCArqCnhKcQoLrHjFp5yCd92CmcA3CmEIt6whxjN95p3F1HvFN7nFC6G2BIsLbtH/hgxlsaI7HhEu1O4nN9BMYH7EIaYU/GA/HFiPI0P8x9RXUt/C9tp//CYwBNIQIzVKLwJNFaGPaXwxd/C6c8I0EawKiAZn4OdSzZRTOL9V9myEE2KcHlpcaAivOMFYiYkUHiyEA1B1i+TCpIjhQss+JJCIRgZlUFrlm4mZwrVmb+PPe0V6URI4ZjXGKll4Wtv6GW8fcRlmkq8aVzAd8ZC1iDhcuN7RAsLVzp4L8H8sqYTb4YU1p2jBenucl8eI8BaBbZMLMnVVxGcKd8Vf7XAaDiDyHdnthKvhBYxhCI6tCZebqzkzeIFP+QZE+XdGUq4hh8JbcECKONHM3uO8qBb8wWo9UYV391V5W/wkT6BowJcywkx148co9UCDzUASZL3+RYYskHzgWnzXP9yvmwXZVU2LQRkSV5qNe1UVc3xmQtqPvBC+Rditr6ygTnvS8XtfB28CVLL1uHXqnZDWKS0i6/qIkfM229Hv1ec3vVDRvwW121ES5YqTF22QxP06afeX3GXLXfvaytWQn3zEn8w90Y5dNXqvzTeNQt9XCxP77X/aOTCd936DT03bmrp4Rb/BQ/D/XRsuY9vAAAAAElFTkSuQmCC"></image></svg>'},{name:Object(c["a"])("Real-time Stats","google-analytics-for-wordpress"),description:Object(c["a"])("Get real-time stats right inside WordPress to see who is online, what are they doing, and more.","google-analytics-for-wordpress"),icon:'<svg class="" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="14 14 32 32"><g>\t<path fill="#ACBCC8" d="M31,20.5v-1c0-0.276-0.224-0.5-0.5-0.5S30,19.224,30,19.5v1c0,0.276,0.224,0.5,0.5,0.5S31,20.776,31,20.5z"></path> <path fill="#ACBCC8" d="M30,39.5v1c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5v-1c0-0.276-0.224-0.5-0.5-0.5S30,39.224,30,39.5z"></path> <path fill="#ACBCC8" d="M39.5,30c-0.276,0-0.5,0.224-0.5,0.5s0.224,0.5,0.5,0.5h1c0.276,0,0.5-0.224,0.5-0.5S40.776,30,40.5,30 H39.5z"></path> <path fill="#ACBCC8" d="M19.5,30c-0.276,0-0.5,0.224-0.5,0.5s0.224,0.5,0.5,0.5h1c0.276,0,0.5-0.224,0.5-0.5S20.776,30,20.5,30 H19.5z"></path> <path fill="#D6E2EA" d="M41.284,25.958C41.739,27.223,42,28.58,42,30c0,6.617-5.383,12-12,12c-6.617,0-12-5.383-12-12 s5.383-12,12-12c2.993,0,5.727,1.108,7.831,2.927l2.826-2.827C37.824,15.56,34.096,14,30,14c-8.822,0-16,7.178-16,16 s7.178,16,16,16s16-7.178,16-16c0-2.545-0.613-4.944-1.675-7.083L41.284,25.958z"></path> <path fill="#509FE1" d="M24.975,25.146C24.877,25.049,24.749,25,24.621,25s-0.256,0.049-0.354,0.146l-2.121,2.121 c-0.195,0.195-0.195,0.512,0,0.707l6.439,6.439C28.964,34.792,29.466,35,30,35s1.036-0.208,1.414-0.586l14.5-14.5 c0.195-0.195,0.195-0.512,0-0.707l-2.121-2.121c-0.098-0.098-0.226-0.146-0.354-0.146s-0.256,0.049-0.354,0.146L30,30.172 L24.975,25.146z"></path></g></svg>'},{name:Object(c["a"])("Enhanced Ecommerce Tracking","google-analytics-for-wordpress"),description:Object(c["a"])("1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress.","google-analytics-for-wordpress"),icon:'<svg class="" xmlns="http://www.w3.org/2000/svg" width="96" viewBox="0 0 96 102"><path id="package" fill="#509fe1" d="M76.513,14.5a3.346,3.346,0,0,1,2.479,1.039,3.465,3.465,0,0,1,1.021,2.523V39.431a3.466,3.466,0,0,1-1.021,2.523,3.346,3.346,0,0,1-2.479,1.039h-35a3.346,3.346,0,0,1-2.479-1.039,3.466,3.466,0,0,1-1.021-2.523V18.06a3.466,3.466,0,0,1,1.021-2.523A3.346,3.346,0,0,1,41.513,14.5h4.375a6.68,6.68,0,0,1-.729-2.968,6.337,6.337,0,0,1,1.9-4.6A6.119,6.119,0,0,1,51.575,5a6.571,6.571,0,0,1,3.938,1.261,16.639,16.639,0,0,1,3.573,3.784,16.639,16.639,0,0,1,3.573-3.784A6.571,6.571,0,0,1,66.6,5a6.119,6.119,0,0,1,4.521,1.929,6.336,6.336,0,0,1,1.9,4.6,6.68,6.68,0,0,1-.729,2.968h4.229ZM66.6,8.562a3.2,3.2,0,0,0-1.458.3,5.947,5.947,0,0,0-1.823,1.558,41.215,41.215,0,0,0-2.99,4.081H66.6a2.8,2.8,0,0,0,2.078-.853,2.9,2.9,0,0,0,.839-2.115,2.9,2.9,0,0,0-.839-2.115A2.8,2.8,0,0,0,66.6,8.562ZM48.659,11.53a2.9,2.9,0,0,0,.839,2.115,2.8,2.8,0,0,0,2.078.853h6.271a41.215,41.215,0,0,0-2.99-4.081,5.947,5.947,0,0,0-1.823-1.558,3.2,3.2,0,0,0-1.458-.3,2.8,2.8,0,0,0-2.078.853A2.9,2.9,0,0,0,48.659,11.53Zm4.375,7.717H42.679v9.5H75.346v-9.5H64.992l2.625,2.671a1.288,1.288,0,0,1,0,1.632l-0.875.891a1.232,1.232,0,0,1-1.6,0l-5.1-5.194H57.992l-5.1,5.194a1.232,1.232,0,0,1-1.6,0l-0.875-.891a1.288,1.288,0,0,1,0-1.632Zm-10.354,19H75.346V33.494H42.679v4.749Z"></path><path id="cart" fill="#d5e2ea" d="M35.868,69.2l0.958,5.132H79.791a3.479,3.479,0,0,1,2.875,1.443,3.894,3.894,0,0,1,.8,3.207l-0.958,4.009A8.924,8.924,0,1,1,72.364,97.344a8.753,8.753,0,0,1-2.635-6.415,8.369,8.369,0,0,1,2.715-6.335H38.9a8.369,8.369,0,0,1,2.715,6.335,8.753,8.753,0,0,1-2.636,6.415,8.844,8.844,0,0,1-12.618,0,8.66,8.66,0,0,1-2.635-6.335,8.864,8.864,0,0,1,1.2-4.49A9.428,9.428,0,0,1,28.2,83.151L17.021,28.145H5.84A3.825,3.825,0,0,1,2.007,24.3V21.73A3.825,3.825,0,0,1,5.84,17.881H22.291a3.489,3.489,0,0,1,2.316.882,4.075,4.075,0,0,1,1.358,2.165L27.4,28.145"></path><path id="cart-2" data-name="cart" fill="#acbdc9" d="M27.4,28.145H90.173a3.634,3.634,0,0,1,3.035,1.443,3.486,3.486,0,0,1,.639,3.207L86.34,66.152A3.749,3.749,0,0,1,84.982,68.4a3.7,3.7,0,0,1-2.316.8h-46.8"></path></svg>'},{name:Object(c["a"])("Page Level Analytics","google-analytics-for-wordpress"),description:Object(c["a"])("Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site.","google-analytics-for-wordpress"),icon:'<svg class="" xmlns="http://www.w3.org/2000/svg" width="156" viewBox="0 0 156 156"> <rect fill="#d5e2e9" y="12" width="126" height="144" rx="8" ry="8"></rect> <rect fill="#acbdc9" x="16" y="132" width="94" height="6" rx="3" ry="3"></rect> <rect fill="#acbdc9" x="16" y="79" width="26" height="47" rx="3" ry="3"></rect> <rect fill="#acbdc9" x="48" y="119" width="62" height="6" rx="3" ry="3"></rect> <rect fill="#acbdc9" x="48" y="106" width="62" height="6" rx="3" ry="3"></rect> <rect fill="#acbdc9" x="48" y="92" width="62" height="6" rx="3" ry="3"></rect> <rect fill="#acbdc9" x="48" y="79" width="62" height="6" rx="3" ry="3"></rect> <rect fill="#acbdc9" x="16" y="56" width="62" height="6" rx="3" ry="3"></rect> <rect fill="#acbdc9" x="16" y="43" width="62" height="6" rx="3" ry="3"></rect> <rect fill="#acbdc9" x="16" y="30" width="62" height="6" rx="3" ry="3"></rect> <circle fill="#ffffff" cx="94.5" cy="42.5" r="35.5"></circle> <path fill="#54a0de" d="M155.386,96.172A2.214,2.214,0,0,1,156,97.813a3,3,0,0,1-.616,1.846l-4.716,4.512a2.551,2.551,0,0,1-1.846.82,1.948,1.948,0,0,1-1.641-.82L122.164,79.356a2.729,2.729,0,0,1-.616-1.641V74.844a44.053,44.053,0,0,1-12.919,7.69,42.454,42.454,0,0,1-36.4-2.974A43.1,43.1,0,0,1,56.744,64.077,41.43,41.43,0,0,1,51,42.647a41.43,41.43,0,0,1,5.742-21.431A43.1,43.1,0,0,1,72.227,5.733a42.863,42.863,0,0,1,42.862,0,43.1,43.1,0,0,1,15.483,15.483,41.43,41.43,0,0,1,5.742,21.431,41.258,41.258,0,0,1-2.768,14.971,44.07,44.07,0,0,1-7.691,12.92h2.871a2.217,2.217,0,0,1,1.641.615ZM93.658,75.459a32.1,32.1,0,0,0,16.406-4.409,32.573,32.573,0,0,0,12-12,32.729,32.729,0,0,0,0-32.812,32.573,32.573,0,0,0-12-12,32.728,32.728,0,0,0-32.812,0,32.58,32.58,0,0,0-12,12,32.728,32.728,0,0,0,0,32.813,32.58,32.58,0,0,0,12,12A32.1,32.1,0,0,0,93.658,75.459Z"></path><path fill="#d4e2e8" d="M112.786,52.128H78.724V28.066a0.934,0.934,0,0,0-.937-0.937H74.661a0.934,0.934,0,0,0-.937.938V56.191a0.933,0.933,0,0,0,.938.938h38.125a0.933,0.933,0,0,0,.937-0.937V53.066A0.933,0.933,0,0,0,112.786,52.128Z"></path> <path fill="#acbdc9" d="M102.864,34.55v0.078a0.717,0.717,0,0,1,.742-0.2,0.826,0.826,0,0,1,.586.508l7.031,14.688h-30V41.5l6.8-11.328a0.888,0.888,0,0,1,.742-0.43,0.9,0.9,0,0,1,.82.352L96.224,39Z"></path></svg>'},{name:Object(c["a"])("Affiliate Link & Ads Tracking","google-analytics-for-wordpress"),description:Object(c["a"])("Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking.","google-analytics-for-wordpress"),icon:'<svg class="" xmlns="http://www.w3.org/2000/svg" width="96" viewBox="0 0 96 102"><rect fill="#8ba4b7" x="41" y="60" width="14" height="42"></rect><path fill="#acbdc9" d="M14,71H82a0,0,0,0,1,0,0v3a2,2,0,0,1-2,2H16a2,2,0,0,1-2-2V71A0,0,0,0,1,14,71Z"></path><rect fill="#509fe2" y="5" width="96" height="66" rx="4.129" ry="4.129"></rect><path fill="#ffffff" d="M40.866,38.665l1.266-3.727L43.4,38.665H40.866ZM54.506,37.54a1.681,1.681,0,1,1-1.2.492A1.627,1.627,0,0,1,54.506,37.54Zm7.875-13.5a3.361,3.361,0,0,1,3.375,3.375v20.25a3.361,3.361,0,0,1-3.375,3.375H33.131a3.361,3.361,0,0,1-3.375-3.375V27.415a3.361,3.361,0,0,1,3.375-3.375h29.25ZM47.4,44.29a1.01,1.01,0,0,0,.879-0.457,1.2,1.2,0,0,0,.176-1.02l-3.8-10.9a1.957,1.957,0,0,0-.633-0.809,1.6,1.6,0,0,0-.984-0.316H41.217a1.6,1.6,0,0,0-.984.316,1.955,1.955,0,0,0-.633.809l-3.8,10.9a1.2,1.2,0,0,0,.176,1.02,1.01,1.01,0,0,0,.879.457h1.2a1.185,1.185,0,0,0,.668-0.211,0.86,0.86,0,0,0,.387-0.562L39.67,42.04h4.922l0.563,1.477a0.86,0.86,0,0,0,.387.563,1.185,1.185,0,0,0,.668.211h1.2Zm12.164-1.125V31.915a1.083,1.083,0,0,0-1.125-1.125H57.319a1.083,1.083,0,0,0-1.125,1.125v2.531a5.309,5.309,0,0,0-1.687-.281,5.063,5.063,0,1,0,0,10.125,4.64,4.64,0,0,0,1.969-.422,1.064,1.064,0,0,0,.844.422h1.125A1.083,1.083,0,0,0,59.569,43.165Z"></path><path fill="#2e7fbe" d="M73,0h1a2,2,0,0,1,2,2v8H71V2A2,2,0,0,1,73,0ZM70.5,10h6a2.5,2.5,0,0,1,0,5h-6A2.5,2.5,0,0,1,70.5,10Z"></path><path fill="#2e7fbe" d="M48,0h1a2,2,0,0,1,2,2v8H46V2A2,2,0,0,1,48,0ZM45.5,10h6a2.5,2.5,0,0,1,0,5h-6A2.5,2.5,0,0,1,45.5,10Z"></path><path fill="#2e7fbe" d="M23,0h1a2,2,0,0,1,2,2v8H21V2A2,2,0,0,1,23,0ZM20.5,10h6a2.5,2.5,0,0,1,0,5h-6A2.5,2.5,0,0,1,20.5,10Z"></path></svg>'},{name:Object(c["a"])("EU Compliance (GDPR Friendly)","google-analytics-for-wordpress"),description:Object(c["a"])("Make Google Analytics compliant with GDPR and other privacy regulations automatically.","google-analytics-for-wordpress"),icon:'<svg class="" xmlns="http://www.w3.org/2000/svg" width="96" viewBox="0 0 96 102"><path fill="#adbdc7" d="M28.884,78.139a0.832,0.832,0,0,0-.479-0.437,0.932,0.932,0,0,0-.629,0,0.832,0.832,0,0,0-.479.438l-1.777,3.609-3.992.574a0.83,0.83,0,0,0-.561.328,0.914,0.914,0,0,0-.191.6,0.839,0.839,0,0,0,.26.574l2.9,2.816-0.684,3.992a0.864,0.864,0,0,0,.123.615,0.8,0.8,0,0,0,.506.369,0.843,0.843,0,0,0,.629-0.082l3.582-1.859,3.582,1.859a0.843,0.843,0,0,0,.629.082,0.8,0.8,0,0,0,.506-0.369,0.863,0.863,0,0,0,.123-0.615l-0.684-3.992,2.9-2.816a0.839,0.839,0,0,0,.26-0.574,0.912,0.912,0,0,0-.191-0.6,0.83,0.83,0,0,0-.56-0.328l-3.992-.574Zm-14-14a0.832,0.832,0,0,0-.479-0.438,0.932,0.932,0,0,0-.629,0,0.832,0.832,0,0,0-.479.438l-1.777,3.609-3.992.574a0.83,0.83,0,0,0-.561.328,0.913,0.913,0,0,0-.191.6,0.839,0.839,0,0,0,.26.574l2.9,2.816L9.251,76.635a0.864,0.864,0,0,0,.123.615,0.8,0.8,0,0,0,.506.369,0.843,0.843,0,0,0,.629-0.082l3.582-1.859,3.582,1.859a0.843,0.843,0,0,0,.629.082,0.8,0.8,0,0,0,.506-0.369,0.863,0.863,0,0,0,.123-0.615l-0.684-3.992,2.9-2.816a0.839,0.839,0,0,0,.26-0.574,0.912,0.912,0,0,0-.191-0.6,0.83,0.83,0,0,0-.561-0.328l-3.992-.574Zm-5-19A0.832,0.832,0,0,0,9.406,44.7a0.932,0.932,0,0,0-.629,0,0.832,0.832,0,0,0-.479.438L6.521,48.749l-3.992.574a0.83,0.83,0,0,0-.561.328,0.913,0.913,0,0,0-.191.6,0.839,0.839,0,0,0,.26.574l2.9,2.817L4.251,57.635a0.864,0.864,0,0,0,.123.615,0.8,0.8,0,0,0,.506.369,0.843,0.843,0,0,0,.629-0.082l3.582-1.859,3.582,1.859a0.843,0.843,0,0,0,.629.082,0.8,0.8,0,0,0,.506-0.369,0.863,0.863,0,0,0,.123-0.615l-0.684-3.992,2.9-2.817a0.839,0.839,0,0,0,.26-0.574,0.912,0.912,0,0,0-.191-0.6,0.83,0.83,0,0,0-.561-0.328l-3.992-.574Zm5-20a0.832,0.832,0,0,0-.479-0.437,0.932,0.932,0,0,0-.629,0,0.832,0.832,0,0,0-.479.438l-1.777,3.609-3.992.574a0.83,0.83,0,0,0-.561.328,0.913,0.913,0,0,0-.191.6,0.839,0.839,0,0,0,.26.574l2.9,2.817L9.251,37.635a0.864,0.864,0,0,0,.123.615,0.8,0.8,0,0,0,.506.369,0.843,0.843,0,0,0,.629-0.082l3.582-1.859,3.582,1.859a0.843,0.843,0,0,0,.629.082,0.8,0.8,0,0,0,.506-0.369,0.863,0.863,0,0,0,.123-0.615l-0.684-3.992,2.9-2.817a0.839,0.839,0,0,0,.26-0.574,0.912,0.912,0,0,0-.191-0.6,0.83,0.83,0,0,0-.561-0.328l-3.992-.574Zm14-15A0.832,0.832,0,0,0,28.406,9.7a0.931,0.931,0,0,0-.629,0,0.832,0.832,0,0,0-.479.437l-1.777,3.609-3.992.574a0.83,0.83,0,0,0-.561.328,0.914,0.914,0,0,0-.191.6,0.839,0.839,0,0,0,.26.574l2.9,2.816-0.684,3.992a0.864,0.864,0,0,0,.123.615,0.8,0.8,0,0,0,.506.369,0.843,0.843,0,0,0,.629-0.082l3.582-1.859,3.582,1.859a0.843,0.843,0,0,0,.629.082,0.8,0.8,0,0,0,.506-0.369,0.863,0.863,0,0,0,.123-0.615l-0.684-3.992,2.9-2.816a0.839,0.839,0,0,0,.26-0.574,0.912,0.912,0,0,0-.191-0.6,0.83,0.83,0,0,0-.56-0.328l-3.992-.574Zm19.232,74a0.832,0.832,0,0,1,.479-0.437,0.932,0.932,0,0,1,.629,0,0.832,0.832,0,0,1,.478.438l1.777,3.609,3.992,0.574a0.83,0.83,0,0,1,.561.328,0.914,0.914,0,0,1,.191.6,0.839,0.839,0,0,1-.26.574l-2.9,2.816,0.684,3.992a0.864,0.864,0,0,1-.123.615,0.8,0.8,0,0,1-.506.369,0.843,0.843,0,0,1-.629-0.082l-3.582-1.859-3.582,1.859a0.843,0.843,0,0,1-.629.082,0.8,0.8,0,0,1-.506-0.369,0.863,0.863,0,0,1-.123-0.615l0.684-3.992-2.9-2.816a0.839,0.839,0,0,1-.26-0.574,0.912,0.912,0,0,1,.191-0.6,0.83,0.83,0,0,1,.56-0.328l3.992-.574Zm20-6a0.832,0.832,0,0,1,.479-0.437,0.932,0.932,0,0,1,.629,0,0.832,0.832,0,0,1,.479.438l1.777,3.609,3.992,0.574a0.83,0.83,0,0,1,.561.328,0.914,0.914,0,0,1,.191.6,0.839,0.839,0,0,1-.26.574l-2.9,2.816,0.684,3.992a0.864,0.864,0,0,1-.123.615,0.8,0.8,0,0,1-.506.369,0.843,0.843,0,0,1-.629-0.082l-3.582-1.859-3.582,1.859a0.843,0.843,0,0,1-.629.082,0.8,0.8,0,0,1-.506-0.369,0.863,0.863,0,0,1-.123-0.615l0.684-3.992-2.9-2.816a0.839,0.839,0,0,1-.26-0.574,0.912,0.912,0,0,1,.191-0.6,0.83,0.83,0,0,1,.56-0.328l3.992-.574Zm14-14a0.832,0.832,0,0,1,.479-0.438,0.932,0.932,0,0,1,.629,0,0.832,0.832,0,0,1,.479.438l1.777,3.609,3.992,0.574a0.83,0.83,0,0,1,.561.328,0.914,0.914,0,0,1,.191.6,0.839,0.839,0,0,1-.26.574l-2.9,2.816,0.684,3.992a0.864,0.864,0,0,1-.123.615,0.8,0.8,0,0,1-.506.369,0.843,0.843,0,0,1-.629-0.082l-3.582-1.859-3.582,1.859a0.843,0.843,0,0,1-.629.082,0.8,0.8,0,0,1-.506-0.369,0.863,0.863,0,0,1-.123-0.615l0.684-3.992-2.9-2.816a0.839,0.839,0,0,1-.26-0.574,0.912,0.912,0,0,1,.191-0.6,0.83,0.83,0,0,1,.561-0.328l3.992-.574Zm5-19a0.832,0.832,0,0,1,.479-0.437,0.932,0.932,0,0,1,.629,0,0.832,0.832,0,0,1,.479.438l1.777,3.609,3.992,0.574a0.83,0.83,0,0,1,.561.328,0.914,0.914,0,0,1,.191.6,0.839,0.839,0,0,1-.26.574l-2.9,2.817,0.684,3.992a0.864,0.864,0,0,1-.123.615,0.8,0.8,0,0,1-.506.369,0.843,0.843,0,0,1-.629-0.082l-3.582-1.859-3.582,1.859a0.843,0.843,0,0,1-.629.082,0.8,0.8,0,0,1-.506-0.369,0.863,0.863,0,0,1-.123-0.615l0.684-3.992-2.9-2.817a0.839,0.839,0,0,1-.26-0.574,0.912,0.912,0,0,1,.191-0.6,0.83,0.83,0,0,1,.561-0.328l3.992-.574Zm-5-20a0.832,0.832,0,0,1,.479-0.437,0.932,0.932,0,0,1,.629,0,0.832,0.832,0,0,1,.479.438l1.777,3.609,3.992,0.574a0.83,0.83,0,0,1,.561.328,0.914,0.914,0,0,1,.191.6,0.839,0.839,0,0,1-.26.574l-2.9,2.817,0.684,3.992a0.864,0.864,0,0,1-.123.615,0.8,0.8,0,0,1-.506.369,0.843,0.843,0,0,1-.629-0.082l-3.582-1.859-3.582,1.859a0.843,0.843,0,0,1-.629.082,0.8,0.8,0,0,1-.506-0.369,0.863,0.863,0,0,1-.123-0.615l0.684-3.992-2.9-2.817a0.839,0.839,0,0,1-.26-0.574,0.912,0.912,0,0,1,.191-0.6,0.83,0.83,0,0,1,.561-0.328l3.992-.574Zm-14-15A0.832,0.832,0,0,1,68.594,9.7a0.931,0.931,0,0,1,.629,0,0.832,0.832,0,0,1,.479.437l1.777,3.609,3.992,0.574a0.83,0.83,0,0,1,.561.328,0.914,0.914,0,0,1,.191.6,0.839,0.839,0,0,1-.26.574l-2.9,2.816,0.684,3.992a0.864,0.864,0,0,1-.123.615,0.8,0.8,0,0,1-.506.369,0.843,0.843,0,0,1-.629-0.082l-3.582-1.859-3.582,1.859a0.843,0.843,0,0,1-.629.082,0.8,0.8,0,0,1-.506-0.369,0.863,0.863,0,0,1-.123-0.615l0.684-3.992-2.9-2.816a0.839,0.839,0,0,1-.26-0.574,0.912,0.912,0,0,1,.191-0.6,0.83,0.83,0,0,1,.56-0.328l3.992-.574Zm-20-6A0.832,0.832,0,0,1,48.594,3.7a0.931,0.931,0,0,1,.629,0,0.832,0.832,0,0,1,.478.438l1.777,3.609,3.992,0.574a0.83,0.83,0,0,1,.561.328,0.914,0.914,0,0,1,.191.6,0.839,0.839,0,0,1-.26.574l-2.9,2.816,0.684,3.992a0.864,0.864,0,0,1-.123.615,0.8,0.8,0,0,1-.506.369,0.843,0.843,0,0,1-.629-0.082l-3.582-1.859-3.582,1.859a0.843,0.843,0,0,1-.629.082,0.8,0.8,0,0,1-.506-0.369,0.863,0.863,0,0,1-.123-0.615l0.684-3.992-2.9-2.816a0.839,0.839,0,0,1-.26-0.574,0.913,0.913,0,0,1,.191-0.6,0.829,0.829,0,0,1,.56-0.328l3.992-.574Z"></path><path fill="#509fe2" d="M65.147,42.845a3.346,3.346,0,0,0-.562-1.9,3.032,3.032,0,0,0-1.547-1.2l-13.5-5.625a2.988,2.988,0,0,0-2.531,0l-13.5,5.625a3.032,3.032,0,0,0-1.547,1.2,3.346,3.346,0,0,0-.562,1.9,32.51,32.51,0,0,0,2.391,12.445,28.183,28.183,0,0,0,5.836,9.07,20.888,20.888,0,0,0,7.383,5.2,2.988,2.988,0,0,0,2.531,0,20.754,20.754,0,0,0,6.75-4.57,29.547,29.547,0,0,0,6.188-8.859A32.516,32.516,0,0,0,65.147,42.845ZM46.8,60.7a1.026,1.026,0,0,1-1.547,0l-7.312-7.312a1.106,1.106,0,0,1,0-1.617l1.547-1.547a1.106,1.106,0,0,1,1.617,0l4.922,4.922L56.569,44.6a1.106,1.106,0,0,1,1.617,0l1.547,1.547a1.106,1.106,0,0,1,0,1.617Z"></path></svg>'},{name:Object(c["a"])("Custom Dimensions","google-analytics-for-wordpress"),description:Object(c["a"])("Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click.","google-analytics-for-wordpress"),icon:'<svg class="" xmlns="http://www.w3.org/2000/svg" width="96" viewBox="0 0 96 102"><path fill="#509fe2" d="M93.623,52.744A9.542,9.542,0,0,1,91.9,64.718a8.43,8.43,0,0,1-5.919,2.29H47.033a8.569,8.569,0,0,1-5.919-2.225,9.134,9.134,0,0,1-2.991-5.627A9.485,9.485,0,0,1,39.4,52.744l14.894-24.6V8.383H53.27a2.906,2.906,0,0,1-2.164-.916,3.072,3.072,0,0,1-.891-2.225V3.149A3.072,3.072,0,0,1,51.106.924,2.906,2.906,0,0,1,53.27.008H79.748a2.906,2.906,0,0,1,2.164.916A3.072,3.072,0,0,1,82.8,3.149V5.242a3.072,3.072,0,0,1-.891,2.225,2.906,2.906,0,0,1-2.164.916H78.729v19.76ZM55.562,41.883H77.456l-6.11-10.207a3.9,3.9,0,0,1-.764-2.355V8.383H62.436V29.32a3.9,3.9,0,0,1-.764,2.355Z"></path><path fill="#d6e2ea" d="M68,99.334a11.55,11.55,0,0,0,4.246,0l1.061,1.837a1.418,1.418,0,0,0,.863.722,2.006,2.006,0,0,0,1.128.065,14.624,14.624,0,0,0,4.246-2.492,1.388,1.388,0,0,0,.6-0.984,1.94,1.94,0,0,0-.2-1.115l-1.061-1.837A13.05,13.05,0,0,0,81,91.987h2.123a1.686,1.686,0,0,0,1.128-.394,1.307,1.307,0,0,0,.464-1.05,11.23,11.23,0,0,0,0-4.855,1.175,1.175,0,0,0-.464-0.919,1.686,1.686,0,0,0-1.128-.394H81A15.309,15.309,0,0,0,78.879,80.7l1.061-1.837a1.94,1.94,0,0,0,.2-1.115,1.388,1.388,0,0,0-.6-0.984A12.6,12.6,0,0,0,75.3,74.4a1.437,1.437,0,0,0-1.128-.066,1.419,1.419,0,0,0-.863.722l-1.061,1.968A13.838,13.838,0,0,0,68,76.9l-1.062-1.837a1.419,1.419,0,0,0-.862-0.722,1.438,1.438,0,0,0-1.128.066A12.6,12.6,0,0,0,60.7,76.766a1.389,1.389,0,0,0-.6.984,1.941,1.941,0,0,0,.2,1.115L61.363,80.7a15.312,15.312,0,0,0-2.123,3.674H57.117a1.686,1.686,0,0,0-1.128.394,1.759,1.759,0,0,0-.6.919,12.766,12.766,0,0,0,.133,4.855,1.307,1.307,0,0,0,.464,1.05,1.686,1.686,0,0,0,1.128.394H59.24a13.053,13.053,0,0,0,2.123,3.543L60.3,97.366a1.941,1.941,0,0,0-.2,1.115,1.389,1.389,0,0,0,.6.984,14.624,14.624,0,0,0,4.246,2.492,2.007,2.007,0,0,0,1.128-.065,1.419,1.419,0,0,0,.862-0.722Zm-1.327-7.741A5.082,5.082,0,0,1,65.543,86.8a4.6,4.6,0,0,1,3.185-3.215,5.074,5.074,0,0,1,4.843,1.05A5.276,5.276,0,0,1,74.7,89.494a4.591,4.591,0,0,1-3.184,3.149A5.074,5.074,0,0,1,66.671,91.593Z"></path><path fill="#acbdc9" d="M51.279,72.568a21.653,21.653,0,0,0,0-8.266l4.511-2.231a3.077,3.077,0,0,0,1.393-1.706,3.115,3.115,0,0,0-.066-2.1,30.1,30.1,0,0,0-5.573-8.66,3.226,3.226,0,0,0-1.924-1.115,2.645,2.645,0,0,0-2.057.459l-3.848,2.1a25.939,25.939,0,0,0-7.3-4.068V42.521a2.878,2.878,0,0,0-.8-2.034,3.731,3.731,0,0,0-1.858-1.115,30.03,30.03,0,0,0-10.085.131,2.84,2.84,0,0,0-1.924.984,3.026,3.026,0,0,0-.73,2.034v4.461a22.237,22.237,0,0,0-7.3,4.068L9.88,48.95a3.054,3.054,0,0,0-2.189-.459A2.7,2.7,0,0,0,5.9,49.606a32.637,32.637,0,0,0-5.573,8.66,2.5,2.5,0,0,0-.133,2.1,3.408,3.408,0,0,0,1.46,1.706L6.032,64.3a21.654,21.654,0,0,0,0,8.266L1.653,74.8a2.825,2.825,0,0,0-1.46,1.64A2.643,2.643,0,0,0,.326,78.6,32.636,32.636,0,0,0,5.9,87.263a2.909,2.909,0,0,0,1.791.984,3.477,3.477,0,0,0,2.189-.328l3.848-2.23a22.345,22.345,0,0,0,7.3,4.2v4.461a3.107,3.107,0,0,0,.73,1.968,2.744,2.744,0,0,0,1.924,1.05,27.911,27.911,0,0,0,10.085,0,2.889,2.889,0,0,0,1.858-1.05,2.957,2.957,0,0,0,.8-1.968V89.887a24.326,24.326,0,0,0,7.3-4.2l3.848,2.23a3.007,3.007,0,0,0,2.057.328,3.535,3.535,0,0,0,1.924-.984q4.379-5.248,5.573-8.66a2.643,2.643,0,0,0,.133-2.165,2.825,2.825,0,0,0-1.46-1.64ZM35.754,75.323a11.432,11.432,0,0,1-7.7,2.493,8.964,8.964,0,0,1-6.17-2.69,8.772,8.772,0,0,1-2.72-6.1,10.684,10.684,0,0,1,2.521-7.479,10.691,10.691,0,0,1,7.563-2.624,9.649,9.649,0,0,1,9.023,8.922A10.684,10.684,0,0,1,35.754,75.323Z"></path></svg>'}],pro_features:[Object(c["a"])("Ecommerce Report","google-analytics-for-wordpress"),Object(c["a"])("Form Conversions","google-analytics-for-wordpress"),Object(c["a"])("Custom Dimensions","google-analytics-for-wordpress"),Object(c["a"])("Author Tracking","google-analytics-for-wordpress"),Object(c["a"])("Google Optimize","google-analytics-for-wordpress"),Object(c["a"])("Category / Tags Tracking","google-analytics-for-wordpress"),Object(c["a"])("WooCommerce","google-analytics-for-wordpress"),Object(c["a"])("Easy Digital Downloads","google-analytics-for-wordpress"),Object(c["a"])("MemberPress","google-analytics-for-wordpress"),Object(c["a"])("LifterLMS","google-analytics-for-wordpress")],testimonials:[{image:"monsterinsights-testimonial-one",text:"It just works. Really easy way to insert Google Analytics tracking code and keep it there when switching themes. No need to copy/paste code anywhere. This is the best way to handle Google Analytics in WordPress.",author:"Steven Gliebe",function:"Founder of ChurchThemes"},{image:"monsterinsights-testimonial-two",text:"Analytics for PROs! This plugin brings it all, great features and helpful info to easily see what you are doing.",author:"Frank van der Sluijs",function:"Business Consultant"}],welcome_video:!1}},computed:{welcome_title:function(){return this.$mi.first_name&&this.$mi.first_name.length<28?this.text_welcome_title+" "+this.$mi.first_name:this.text_welcome_title}},methods:{feature_class:function(t){return"monsterinsights-bg-img "+t}}},Xe=Be,Re=Object(h["a"])(Xe,He,ze,!1,null,null,null),We=Re.exports,Ge=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div")},Ve=[],Fe={name:"WizardModuleMigration"},Ze=Fe,Ne=Object(h["a"])(Ze,Ge,Ve,!1,null,null,null),Qe=Ne.exports,Ye=s("619c"),Ke=s("7460"),qe={install:function(t){t.prototype.$swal&&(t.prototype.$mi_saving_toast=function(){},t.prototype.$mi_success_toast=function(){},t.prototype.$mi_error_toast=function(){},t.prototype.$mi_loading_toast=function(){t.prototype.$swal({type:"info",title:Object(c["a"])("Loading settings","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){t.prototype.$swal.showLoading()}})})}},Je=qe,ts=s("4360"),es=s("e37d"),ss=s("6c6b"),os=document.getElementById("monsterinsights-vue-onboarding-wizard"),as=document.getElementById("monsterinsights-welcome"),ns=document.getElementById("monsterinsights-migration-wizard");if(te["a"].config.productionTip=!1,os||as||ns)if(Object(ss["a"])({ctrl:!0}),te["a"].use(r["a"]),te["a"].use(Ye["a"]),te["a"].use(es["a"],{defaultTemplate:'<div class="monsterinsights-tooltip" role="tooltip"><div class="monsterinsights-tooltip-arrow"></div><div class="monsterinsights-tooltip-inner"></div></div>',defaultArrowSelector:".monsterinsights-tooltip-arrow, .monsterinsights-tooltip__arrow",defaultInnerSelector:".monsterinsights-tooltip-inner, .monsterinsights-tooltip__inner"}),te["a"].use(Ke["a"]),Object(c["c"])(window.monsterinsights.translations,"google-analytics-for-wordpress"),as)new te["a"]({store:ts["a"],mounted:function(){ts["a"].dispatch("$_app/init")},render:function(t){return t(We)}}).$mount(as);else if(ns){var rs={install:function(t){t.prototype.$wizard_steps=["welcome","authenticate","recommended_settings"],t.prototype.$mi&&t.prototype.$mi.had_ecommerce&&t.prototype.$wizard_steps.push("pro"),t.prototype.$wizard_steps.push("success")}};te["a"].use(rs),te["a"].use(Je),new te["a"]({store:ts["a"],mounted:function(){ts["a"].dispatch("$_app/init"),ts["a"].dispatch("$_license/getLicense"),ts["a"].dispatch("$_auth/getAuth"),ts["a"].dispatch("$_addons/getAddons")},render:function(t){return t(Qe)}}).$mount(ns)}else{var is={install:function(t){t.prototype.$wizard_steps=["welcome","authenticate"],t.prototype.$mi&&!t.prototype.$mi.network&&t.prototype.$wizard_steps.push("recommended_settings"),t.prototype.$mi&&!t.prototype.$mi.migrated&&t.prototype.$wizard_steps.push("recommended_addons"),t.prototype.$wizard_steps.push("success")}};te["a"].use(is),te["a"].use(Je),new te["a"]({store:ts["a"],mounted:function(){ts["a"].dispatch("$_app/init"),ts["a"].dispatch("$_license/getLicense"),ts["a"].dispatch("$_auth/getAuth"),ts["a"].dispatch("$_addons/getAddons")},render:function(t){return t(Ue)}}).$mount(os)}},1:function(t,e,s){t.exports=s("0951")},1608:function(t,e,s){"use strict";var o=s("346d"),a=s.n(o);a.a},2532:function(t,e,s){"use strict";var o=s("23e7"),a=s("5a34"),n=s("1d80"),r=s("ab13");o({target:"String",proto:!0,forced:!r("includes")},{includes:function(t){return!!~String(n(this)).indexOf(a(t),arguments.length>1?arguments[1]:void 0)}})},"346d":function(t,e,s){},"5a34":function(t,e,s){var o=s("44e7");t.exports=function(t){if(o(t))throw TypeError("The method doesn't accept regular expressions");return t}},7795:function(t,e,s){},"8c6a":function(t,e,s){},ab13:function(t,e,s){var o=s("b622"),a=o("match");t.exports=function(t){var e=/./;try{"/./"[t](e)}catch(s){try{return e[a]=!1,"/./"[t](e)}catch(o){}}return!1}},caad:function(t,e,s){"use strict";var o=s("23e7"),a=s("4d64").includes,n=s("44d2"),r=s("ae40"),i=r("indexOf",{ACCESSORS:!0,1:0});o({target:"Array",proto:!0,forced:!i},{includes:function(t){return a(this,t,arguments.length>1?arguments[1]:void 0)}}),n("includes")}});
1
+ (function(t){function e(e){for(var o,r,i=e[0],l=e[1],c=e[2],u=0,g=[];u<i.length;u++)r=i[u],a[r]&&g.push(a[r][0]),a[r]=0;for(o in l)Object.prototype.hasOwnProperty.call(l,o)&&(t[o]=l[o]);d&&d(e);while(g.length)g.shift()();return n.push.apply(n,c||[]),s()}function s(){for(var t,e=0;e<n.length;e++){for(var s=n[e],o=!0,i=1;i<s.length;i++){var l=s[i];0!==a[l]&&(o=!1)}o&&(n.splice(e--,1),t=r(r.s=s[0]))}return t}var o={},a={wizard:0},n=[];function r(e){if(o[e])return o[e].exports;var s=o[e]={i:e,l:!1,exports:{}};return t[e].call(s.exports,s,s.exports,r),s.l=!0,s.exports}r.m=t,r.c=o,r.d=function(t,e,s){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:s})},r.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,e){if(1&e&&(t=r(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var s=Object.create(null);if(r.r(s),Object.defineProperty(s,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)r.d(s,o,function(e){return t[e]}.bind(null,o));return s},r.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="https://am-plugins.site/";var i=window["monsterinsightsjsonp"]=window["monsterinsightsjsonp"]||[],l=i.push.bind(i);i.push=e,i=i.slice();for(var c=0;c<i.length;c++)e(i[c]);var d=l;n.push([1,"chunk-vendors","chunk-common"]),s()})({"0951":function(t,e,s){"use strict";s.r(e);s("e260"),s("e6cf"),s("cca6"),s("a79d");var o=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-admin-page onboarding-wizard"},[s("the-wizard-header"),s("the-wizard-timeline"),s("div",{staticClass:"monsterinsights-onboarding-wizard-container"},[s("div",{staticClass:"monsterinsights-onboarding-wizard-content"},[s("router-view")],1)]),"success"===t.route?s("OnboardingBottomUpsell"):t._e(),t.blocked?s("div",{staticClass:"monsterinsights-blocked"}):t._e()],1)},a=[],n=(s("a4d3"),s("4de4"),s("4160"),s("b0c0"),s("e439"),s("dbb4"),s("b64b"),s("159b"),s("fc11")),r=s("8c4f"),i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-onboarding-step-welcome"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"monsterinsights-onboarding-wizard-form"},[s("div",{staticClass:"monsterinsights-separator"}),s("form",{on:{submit:function(e){return e.preventDefault(),t.handleSubmit(e)}}},[s("div",{staticClass:"monsterinsights-form-row"},[s("div",{staticClass:"monsterinsights-form-label"},[s("label",{domProps:{textContent:t._s(t.text_category_label)}}),s("p",{staticClass:"monsterinsights-description",domProps:{textContent:t._s(t.text_category_sublabel)}})]),s("settings-input-radio",{attrs:{name:"site_type",options:t.options,auth_disabled:!1}})],1),s("div",{staticClass:"monsterinsights-separator"}),s("div",{staticClass:"monsterinsights-form-row monsterinsights-form-buttons"},[s("button",{staticClass:"monsterinsights-onboarding-button monsterinsights-onboarding-button-large",attrs:{type:"submit",name:"next_step"},domProps:{textContent:t._s(t.text_save)}})])])])],1)},l=[],c=s("561c"),d=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("header",[s("h2",{domProps:{innerHTML:t._s(t.title)}}),t.subtitle?s("p",{staticClass:"subtitle",domProps:{innerHTML:t._s(t.subtitle)}}):t._e()])},u=[],g={name:"OnboardingContentHeader",props:{title:String,subtitle:String}},p=g,h=s("2877"),m=Object(h["a"])(p,d,u,!1,null,null,null),f=m.exports,_=s("6d70"),b={name:"OnboardingStepWelcome",components:{SettingsInputRadio:_["a"],OnboardingContentHeader:f},data:function(){return{text_header_title:Object(c["a"])("Welcome to MonsterInsights!","google-analytics-for-wordpress"),text_header_subtitle:Object(c["a"])("Let's get you set up.","google-analytics-for-wordpress"),text_save:Object(c["a"])("Save and Continue","google-analytics-for-wordpress"),text_category_label:Object(c["a"])("Which category best describes your website?","google-analytics-for-wordpress"),text_category_sublabel:Object(c["a"])("We will recommend the optimal settings for MonsterInsights based on your choice.","google-analytics-for-wordpress"),options:[{value:"business",label:Object(c["a"])("Business Website","google-analytics-for-wordpress")},{value:"publisher",label:Object(c["d"])(Object(c["a"])("Publisher %1$s(Blog)%2$s","google-analytics-for-wordpress"),"<small>","</small>")},{value:"ecommerce",label:Object(c["a"])("Ecommerce","google-analytics-for-wordpress")}]}},methods:{handleSubmit:function(){this.$router.push(this.$wizard_steps[1])}}},w=b,y=Object(h["a"])(w,i,l,!1,null,null,null),v=y.exports,x=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-onboarding-step-authenticate"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"monsterinsights-onboarding-wizard-form"},[s("form",[s("div",{staticClass:"monsterinsights-form-row"},[s("onboarding-license")],1),s("div",{staticClass:"monsterinsights-separator"}),t.auth_error?[t.auth.network_manual_ua||t.auth.manual_ua?t._e():s("div",{staticClass:"monsterinsights-notice monsterinsights-notice-error"},[s("div",{staticClass:"monsterinsights-notice-inner"},[s("span",{domProps:{textContent:t._s(t.text_error_auth)}})])]),t.auth.network_manual_ua||t.auth.manual_ua?t._e():s("div",{staticClass:"monsterinsights-separator"}),s("label",{domProps:{textContent:t._s(t.text_manual_label)}}),s("p",{domProps:{innerHTML:t._s(t.text_manual_description)}}),s("input",{staticClass:"monsterinsights-manual-ua",attrs:{id:"monsterinsights-auth-manual-ua-input",type:"text"},domProps:{value:t.is_network?t.auth.network_manual_ua:t.auth.manual_ua},on:{change:t.updateManualUa,input:t.fieldInput}}),t.has_ua_error?s("label",{staticClass:"monsterinsights-error"},[s("i",{staticClass:"monstericon-warning-triangle"}),s("span",{domProps:{innerHTML:t._s(t.has_error)}})]):t._e(),s("div",{staticClass:"monsterinsights-separator"}),s("label",{staticClass:"monsterinsights-dark",domProps:{textContent:t._s(t.text_manual_v4_label)}}),s("p",{domProps:{innerHTML:t._s(t.text_manual_v4_description)}}),s("input",{staticClass:"monsterinsights-manual-ua",attrs:{id:"monsterinsights-auth-manual-v4-input",type:"text"},domProps:{value:t.is_network?t.auth.network_manual_v4:t.auth.manual_v4},on:{change:t.updateManualV4}}),t.has_v4_error?s("label",{staticClass:"monsterinsights-error"},[s("i",{staticClass:"monstericon-warning-triangle"}),s("span",{domProps:{innerHTML:t._s(t.has_error)}})]):t._e(),t.auth.manual_v4||t.auth.network_manual_v4?[s("div",{staticClass:"monsterinsights-separator"}),s("label",{staticClass:"monsterinsights-dark",attrs:{for:"monsterinsights-v4-measurement-protocol"},domProps:{textContent:t._s(t.text_v4_measurement_protocol)}}),s("p",{staticClass:"monsterinsights-field-description",domProps:{innerHTML:t._s(t.text_v4_measurement_protocol_description)}}),s("input",{staticClass:"monsterinsights-manual-ua",attrs:{id:"monsterinsights-v4-measurement-protocol",type:"text"},domProps:{value:t.measurement_protocol_secret},on:{change:t.updateMeasurementProtocolSecret}})]:t._e(),s("div",{staticClass:"monsterinsights-separator"}),s("div",{staticClass:"monsterinsights-form-row monsterinsights-form-buttons"},[s("button",{class:t.manual_button_class,attrs:{type:"submit",name:"next_step"},domProps:{textContent:t._s(t.text_save)},on:{click:function(e){return e.preventDefault(),t.handleSubmit(e)}}})])]:[s("onboarding-authenticate",{attrs:{label:t.text_authenticate_label,description:t.text_authenticate_description},on:{nextstep:t.handleSubmit}})]],2)])],1)},O=[],A=(s("d3b7"),s("e25e"),s("ac1f"),s("3ca3"),s("841c"),s("ddb0"),s("2b3d"),s("2f62")),k=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-onboarding-license-lite"},[s("div",{staticClass:"monsterinsights-separator"}),s("label",{domProps:{textContent:t._s(t.text_license_label)}}),s("settings-input-license")],1)},C=[],j=s("3bc9");function P(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function $(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?P(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):P(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var S={name:"OnboardingLicense",components:{SettingsInputLicense:j["a"]},computed:$({},Object(A["b"])({license:"$_license/license",license_network:"$_license/license_network",auth:"$_auth/auth"})),data:function(){return{text_license_label:Object(c["a"])("License Key","google-analytics-for-wordpress")}}},M=S,E=Object(h["a"])(M,k,C,!1,null,null,null),L=E.exports,T=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-settings-input monsterinsights-settings-input-authenticate"},[!t.auth.network_ua||t.is_network||t.auth.ua||t.auth.v4?t._e():s("settings-network-notice",[s("strong",{domProps:{textContent:t._s(t.text_auth_network)}}),s("span",{domProps:{textContent:t._s(t.text_auth_network_2)}})]),(t.is_network?t.auth.network_ua||t.auth.network_v4:t.auth.ua||t.auth.v4)?s("div",{staticClass:"monsterinsights-auth-info"},[s("span",{staticClass:"monsterinsights-dark",domProps:{textContent:t._s(t.text_website_profile)}}),s("p",[s("span",{domProps:{textContent:t._s(t.text_active_profile)}}),t._v(": "),s("span",{domProps:{textContent:t._s(t.is_network?t.auth.network_viewname:t.auth.viewname)}})]),s("div",{staticClass:"monsterinsights-separator"}),s("label",{staticClass:"monsterinsights-dark",attrs:{for:"monsterinsights-dual-tracking-id"},domProps:{textContent:t._s(t.text_dual_tracking_profile)}}),s("p",{staticClass:"monsterinsights-field-description"},[s("span",{domProps:{innerHTML:t._s("ua"===t.auth.connected_type?t.text_dual_v4:t.text_dual_ua)}}),s("br"),s("span",{domProps:{innerHTML:t._s("ua"===t.auth.connected_type?t.text_dual_v4_tip:t.text_dual_ua_tip)}})]),s("input",{staticClass:"monsterinsights-manual-ua",attrs:{id:"monsterinsights-dual-tracking-id",type:"text"},domProps:{value:t.dual_tracking_id},on:{change:t.updateDualTrackingId}}),t.has_dual_error?s("label",{staticClass:"monsterinsights-error"},[s("i",{staticClass:"monstericon-warning-triangle"}),s("span",{domProps:{innerHTML:t._s(t.has_error)}})]):t._e(),t.auth.v4?[s("div",{staticClass:"monsterinsights-separator"}),s("label",{staticClass:"monsterinsights-dark",attrs:{for:"monsterinsights-v4-measurement-protocol"},domProps:{textContent:t._s(t.text_v4_measurement_protocol)}}),s("p",{staticClass:"monsterinsights-field-description",domProps:{innerHTML:t._s(t.text_v4_measurement_protocol_description)}}),s("input",{staticClass:"monsterinsights-manual-ua",attrs:{id:"monsterinsights-v4-measurement-protocol",type:"text"},domProps:{value:t.measurement_protocol_secret},on:{change:t.updateMeasurementProtocolSecret}})]:t._e(),s("div",{staticClass:"monsterinsights-separator"}),s("div",[s("div",{staticClass:"monsterinsights-auth-actions"},[s("button",{staticClass:"monsterinsights-onboarding-button monsterinsights-onboarding-button-large",domProps:{textContent:t._s(t.text_button_reconnect)},on:{click:t.doReAuth}}),s("button",{staticClass:"monsterinsights-text-button monsterinsights-pull-right",attrs:{type:"submit"},on:{click:function(e){return e.preventDefault(),t.submitForm(e)}}},[s("span",{domProps:{textContent:t._s(t.text_skip)}}),s("i",{staticClass:"monstericon-arrow-right"})])])])],2):s("div",[s("span",{staticClass:"monsterinsights-dark",domProps:{textContent:t._s(t.label)}}),s("p",{domProps:{innerHTML:t._s(t.description)}}),s("button",{staticClass:"monsterinsights-onboarding-button monsterinsights-onboarding-button-large",domProps:{textContent:t._s(t.text_button_connect)},on:{click:t.doAuth}})])],1)},I=[],U=s("b333");function H(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function z(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?H(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):H(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var D={name:"OnboardingAuthenticate",components:{SettingsNetworkNotice:U["a"]},props:{label:String,description:String},data:function(){return{is_network:this.$mi.network,text_button_connect:Object(c["a"])("Connect MonsterInsights","google-analytics-for-wordpress"),text_button_reconnect:Object(c["a"])("Reconnect MonsterInsights","google-analytics-for-wordpress"),text_website_profile:Object(c["a"])("Website profile","google-analytics-for-wordpress"),text_active_profile:Object(c["a"])("Active profile","google-analytics-for-wordpress"),text_auth_network:Object(c["a"])("Your website profile has been set at the network level of your WordPress Multisite.","google-analytics-for-wordpress"),text_auth_network_2:Object(c["a"])("If you would like to use a different profile for this subsite, you can authenticate below.","google-analytics-for-wordpress"),text_skip:Object(c["a"])("Skip and Keep Connection","google-analytics-for-wordpress"),text_manual_v4_label:Object(c["a"])("Manually enter your GA4 Measurement ID","google-analytics-for-wordpress"),text_manual_v4_description:Object(c["a"])("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 UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters.","google-analytics-for-wordpress"),text_dual_tracking_profile:Object(c["a"])("Dual Tracking Profile","google-analytics-for-wordpress"),text_dual_ua:Object(c["d"])(Object(c["a"])("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"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.monsterinsights.com/introducing-google-analytics-4-dual-analytics-tracking-for-wordpress/")+'" target="_blank">',"</a>"),text_dual_ua_tip:Object(c["a"])("Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers.","google-analytics-for-wordpress"),text_dual_v4:Object(c["d"])(Object(c["a"])("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"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.monsterinsights.com/introducing-google-analytics-4-dual-analytics-tracking-for-wordpress/")+'" target="_blank">',"</a>"),text_dual_v4_tip:Object(c["a"])("Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters.","google-analytics-for-wordpress"),text_v4_measurement_protocol:Object(c["a"])("Measurement Protocol API Secret","google-analytics-for-wordpress"),text_v4_measurement_protocol_description:Object(c["d"])(Object(c["a"])("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"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.monsterinsights.com/docs/how-to-create-your-measurement-protocol-api-secret-in-ga4/")+'" target="_blank">',"</a>"),has_error:!1,has_ua_error:!1,has_v4_error:!1,has_dual_error:!1}},computed:z({},Object(A["b"])({license:"$_license/license",license_network:"$_license/license_network",auth:"$_auth/auth"}),{iconClass:function(){var t="monstericon-arrow";return this.showButtons&&(t+=" monstericon-down"),t},dual_tracking_key:function(){var t="ua"===this.auth.connected_type?"v4":"ua",e=this.is_network?"network_":"";return e+t},dual_tracking_id:function(){return this.auth[this.dual_tracking_key]},measurement_protocol_secret:function(){return this.is_network?this.auth.network_measurement_protocol_secret:this.auth.measurement_protocol_secret}}),methods:{submitForm:function(){this.$emit("nextstep",!0)},doAuth:function(t){t.preventDefault();var e=this;this.$swal({customContainerClass:"monsterinsights-swal monsterinsights-swal-loading",type:"info",title:Object(c["a"])("Authenticating","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){e.$swal.showLoading(),e.$addCustomLoader()}}),this.$store.dispatch("$_auth/doAuth",this.is_network).then((function(t){t.data.redirect?window.location=t.data.redirect:e.$swal({type:"error",title:Object(c["a"])("Error","google-analytics-for-wordpress"),html:t.data.message,confirmButtonText:Object(c["a"])("Ok","google-analytics-for-wordpress")})}))},doReAuth:function(t){t.preventDefault();var e=this;this.$swal({customContainerClass:"monsterinsights-swal monsterinsights-swal-loading",type:"info",title:Object(c["a"])("Re-Authenticating","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){e.$swal.showLoading(),e.$addCustomLoader()}}),this.$store.dispatch("$_auth/doReAuth",this.is_network).then((function(t){t.data.redirect?window.location=t.data.redirect:e.$swal({type:"error",title:Object(c["a"])("Error","google-analytics-for-wordpress"),html:t.data.message,confirmButtonText:Object(c["a"])("Ok","google-analytics-for-wordpress")})}))},processActionResponse:function(t){!1===t.success?(t.data.ua_error?(this.has_v4_error=!1,this.has_ua_error=!0):t.data.v4_error?(this.has_ua_error=!1,this.has_v4_error=!0):t.data.error&&(this.has_ua_error=!1,this.has_v4_error=!1,this.has_dual_error=!0),this.has_error=t.data.error,this.$mi_error_toast({})):(this.has_v4_error=!1,this.has_ua_error=!1,this.has_error=!1,this.has_dual_error=!1,this.$mi_success_toast({}))},updateDualTrackingId:function(t){this.$mi_saving_toast({}),this.has_error=!1,this.$store.dispatch("$_auth/updateDualTrackingId",{value:t.target.value,network:this.is_network}).then(this.processActionResponse)},updateMeasurementProtocolSecret:function(t){this.$mi_saving_toast({}),this.has_error=!1,this.$store.dispatch("$_auth/updateMeasurementProtocolSecret",{value:t.target.value,network:this.is_network}).then(this.processActionResponse)}}},B=D,X=Object(h["a"])(B,T,I,!1,null,null,null),R=X.exports,W=s("f7fe"),G=s.n(W);function V(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function Z(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?V(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):V(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var F={name:"OnboardingStepWelcome",components:{OnboardingAuthenticate:R,OnboardingLicense:L,OnboardingContentHeader:f},data:function(){return{text_header_title:Object(c["a"])("Connect MonsterInsights to Your Website","google-analytics-for-wordpress"),text_header_subtitle:Object(c["a"])("MonsterInsights connects Google Analytics to WordPress and shows you stats that matter.","google-analytics-for-wordpress"),text_authenticate_label:Object(c["a"])("Connect Google Analytics + WordPress","google-analytics-for-wordpress"),text_authenticate_description:Object(c["a"])("You will be taken to the MonsterInsights website where you'll need to connect your Analytics account.","google-analytics-for-wordpress"),text_error_auth:Object(c["a"])("Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually.","google-analytics-for-wordpress"),text_manual_label:Object(c["a"])("Manually enter your UA code","google-analytics-for-wordpress"),text_manual_description:Object(c["a"])("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"),text_save:Object(c["a"])("Save and Continue","google-analytics-for-wordpress"),is_network:this.$mi.network,has_error:!1,auth_error:!1,manual_valid:!0,has_ua_error:!1,has_v4_error:!1,text_manual_v4_label:Object(c["a"])("Manually enter your GA4 Measurement ID","google-analytics-for-wordpress"),text_manual_v4_description:Object(c["a"])("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 UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters.","google-analytics-for-wordpress"),text_dual_tracking_profile:Object(c["a"])("Dual Tracking Profile","google-analytics-for-wordpress"),text_dual_ua:Object(c["d"])(Object(c["a"])("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"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.monsterinsights.com/introducing-google-analytics-4-dual-analytics-tracking-for-wordpress/")+'" target="_blank">',"</a>"),text_dual_ua_tip:Object(c["a"])("Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers.","google-analytics-for-wordpress"),text_dual_v4:Object(c["d"])(Object(c["a"])("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"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.monsterinsights.com/introducing-google-analytics-4-dual-analytics-tracking-for-wordpress/")+'" target="_blank">',"</a>"),text_dual_v4_tip:Object(c["a"])("Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters.","google-analytics-for-wordpress"),text_v4_measurement_protocol:Object(c["a"])("Measurement Protocol API Secret","google-analytics-for-wordpress"),text_v4_measurement_protocol_description:Object(c["d"])(Object(c["a"])("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"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.monsterinsights.com/docs/how-to-create-your-measurement-protocol-api-secret-in-ga4/")+'" target="_blank">',"</a>")}},computed:Z({},Object(A["b"])({auth:"$_auth/auth"}),{manual_button_class:function(){var t="monsterinsights-onboarding-button monsterinsights-onboarding-button-large";return this.manual_valid||(t+=" monsterinsights-button-disabled"),t},measurement_protocol_secret:function(){return this.is_network?this.auth.network_measurement_protocol_secret:this.auth.measurement_protocol_secret}}),methods:{fieldInput:G()((function(t){this.updateManualUa(t)}),500),handleSubmit:function(){if(this.auth_error&&""===this.auth.manual_ua&&""===this.auth.network_manual_ua)return this.manual_valid=!1,void(this.has_error=Object(c["a"])("UA code can't be empty","google-analytics-for-wordpress"));this.auth_error&&!this.manual_valid||this.$router.push(this.$wizard_steps[2])},updateManualUa:function(t){var e=this;e.$swal({type:"info",title:Object(c["a"])("Saving UA code...","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){e.$swal.showLoading()}}),e.has_error=!1,e.manual_valid=!1,this.$store.dispatch("$_auth/updateManualUa",{ua:t.target.value,network:this.is_network}).then((function(s){!1===s.success?(e.has_error=s.data.error,e.has_ua_error=!0,e.has_v4_error=!1,e.$swal.close(),t.target.value=""):(e.has_error=!1,e.has_ua_error=!1,e.has_v4_error=!1,e.manual_valid=!0,e.$swal.close())}))},updateManualV4:function(t){var e=this;this.$mi_saving_toast({}),e.has_error=!1,this.$store.dispatch("$_auth/updateManualV4",{v4:t.target.value,network:this.is_network}).then((function(s){!1===s.success?(e.has_error=s.data.error,e.has_v4_error=!0,e.has_ua_error=!1,e.$swal.close(),t.target.value=""):(e.has_error=!1,e.has_v4_error=!1,e.has_ua_error=!1,e.manual_valid=!0,e.$swal.close())}))},updateMeasurementProtocolSecret:function(t){this.$mi_saving_toast({}),this.has_error=!1,this.$store.dispatch("$_auth/updateMeasurementProtocolSecret",{value:t.target.value,network:this.is_network}).then((function(e){!1===e.success?(self.has_error=e.data.error,self.$swal.close(),t.target.value=""):(self.has_error=!1,self.manual_valid=!0,self.$swal.close())}))}},mounted:function(){if("undefined"!==typeof URLSearchParams){var t=new URLSearchParams(window.location.search);if(t){var e=t.get("mi-auth-error");"1"!==e&&"2"!==e||(this.auth_error=parseInt(e),this.auth.manual_ua&&(this.manual_valid=!0))}}}},N=F,Q=Object(h["a"])(N,x,O,!1,null,null,null),Y=Q.exports,K=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-onboarding-step-recommended-settings"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"monsterinsights-onboarding-wizard-form"},[s("form",{attrs:{action:"",method:"post"},on:{submit:function(e){return e.preventDefault(),t.handleSubmit(e)}}},[s("div",{staticClass:"monsterinsights-separator"}),s("settings-input-checkbox",{attrs:{label:t.text_events_label,description:t.text_events_description,tooltip:t.text_events_tooltip,faux:!0,faux_tooltip:t.text_events_faux_tooltip}}),s("div",{staticClass:"monsterinsights-separator"}),s("settings-input-checkbox",{attrs:{label:t.text_link_attribution_label,description:t.text_link_attribution_description,tooltip:t.text_link_attribution_tooltip,faux:!0,faux_tooltip:t.text_link_attribution_faux_tooltip}}),s("div",{staticClass:"monsterinsights-separator"}),s("settings-input-text",{attrs:{default_value:"doc,pdf,ppt,zip,xls,docx,pptx,xlsx",name:"extensions_of_files",label:t.text_extensions_of_files_label,description:t.text_extensions_of_files_description,tooltip:t.text_extensions_of_files_tooltip}}),s("div",{staticClass:"monsterinsights-separator"}),s("p",[s("label",{domProps:{textContent:t._s(t.text_affiliate_label)}}),s("span",{staticClass:"monsterinsights-sublabel",domProps:{innerHTML:t._s(t.text_affiliate_repeater_description)}}),s("settings-info-tooltip",{attrs:{content:t.text_affiliate_tooltip_content}})],1),s("settings-input-repeater",{attrs:{structure:t.repeater_structure,name:"affiliate_links",data:t.settings["affiliate_links"]}}),s("div",{staticClass:"monsterinsights-separator"}),s("settings-input-select",{attrs:{options:t.user_roles,forced:t.user_roles_manage_options,multiple:!0,name:"view_reports",label:t.text_permissions_view_label,description:t.text_permissions_view_description,tooltip:t.text_permissions_view_tooltip,addtext:t.text_add_role}}),s("div",{staticClass:"monsterinsights-separator"}),s("settings-input-checkbox",{attrs:{"value-on":"all","value-off":"none",name:"automatic_updates",label:t.text_updates_label,description:t.text_updates_description,tooltip:t.text_updates_tooltip}}),s("div",{staticClass:"monsterinsights-separator"}),s("onboarding-improve"),s("div",{staticClass:"monsterinsights-form-row monsterinsights-form-buttons"},[s("button",{staticClass:"monsterinsights-onboarding-button monsterinsights-onboarding-button-large",attrs:{type:"submit",name:"next_step"},domProps:{textContent:t._s(t.text_save)}})])],1)])],1)},q=[],J=s("088d"),tt=s("c472"),et=s("6ffa"),st=s("93ec"),ot=s("aa9f"),at=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",[s("settings-input-checkbox",{attrs:{name:"anonymous_data",label:t.text_anonymous_label,description:t.text_anonymous_description,tooltip:t.text_anonymous_tooltip}}),s("div",{staticClass:"monsterinsights-separator"})],1)},nt=[],rt={name:"OnboardingImprove",components:{SettingsInputCheckbox:J["a"]},data:function(){return{text_anonymous_label:Object(c["a"])("Help Us Improve","google-analytics-for-wordpress"),text_anonymous_description:Object(c["a"])("Help us better understand our users and their website needs.","google-analytics-for-wordpress"),text_anonymous_tooltip:Object(c["d"])(Object(c["a"])("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"),'<a target="_blank" href="'+this.$getUrl("onboarding-wizard","usage-tracking","https://www.monsterinsights.com/docs/usage-tracking/")+'">',"</a>")}}},it=rt,lt=Object(h["a"])(it,at,nt,!1,null,null,null),ct=lt.exports;function dt(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function ut(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?dt(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):dt(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var gt={name:"OnboardingStepRecommendedSettings",components:{OnboardingImprove:ct,SettingsInputSelect:ot["a"],SettingsInfoTooltip:st["a"],SettingsInputRepeater:et["a"],SettingsInputText:tt["a"],SettingsInputCheckbox:J["a"],OnboardingContentHeader:f},data:function(){return{text_header_title:Object(c["a"])("Recommended Settings","google-analytics-for-wordpress"),text_header_subtitle:Object(c["a"])("MonsterInsights recommends the following settings based on your configuration.","google-analytics-for-wordpress"),text_events_label:Object(c["a"])("Events Tracking","google-analytics-for-wordpress"),text_events_description:Object(c["a"])("Must have for all click tracking on site.","google-analytics-for-wordpress"),text_events_tooltip:Object(c["a"])("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"),text_link_attribution_label:Object(c["a"])("Enhanced Link Attribution","google-analytics-for-wordpress"),text_link_attribution_description:Object(c["a"])("Improves the accuracy of your In-Page Analytics.","google-analytics-for-wordpress"),text_link_attribution_tooltip:Object(c["a"])("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"),text_updates_label:Object(c["a"])("Install Updates Automatically","google-analytics-for-wordpress"),text_updates_description:Object(c["a"])("Get the latest features, bug fixes, and security updates as they are released.","google-analytics-for-wordpress"),text_updates_tooltip:Object(c["a"])("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"),text_extensions_of_files_label:Object(c["a"])("File Download Tracking","google-analytics-for-wordpress"),text_extensions_of_files_description:Object(c["a"])("Helps you see file downloads data.","google-analytics-for-wordpress"),text_extensions_of_files_tooltip:Object(c["a"])("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"),repeater_structure:[{name:"path",label:Object(c["d"])(Object(c["a"])("Path (example: %s)","google-analytics-for-wordpress"),"/go/"),pattern:/^\/\S+$/,error:Object(c["a"])("Path has to start with a / and have no spaces","google-analytics-for-wordpress")},{name:"label",label:Object(c["d"])(Object(c["a"])("Label (example: %s)","google-analytics-for-wordpress"),"aff"),pattern:/^\S+$/,error:Object(c["a"])("Label can't contain any spaces","google-analytics-for-wordpress")}],text_affiliate_repeater_description:Object(c["a"])("Helps you increase affiliate revenue.","google-analytics-for-wordpress"),text_affiliate_tooltip_content:Object(c["a"])("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"),text_affiliate_label:Object(c["a"])("Affiliate Link Tracking","google-analytics-for-wordpress"),text_permissions_view_label:Object(c["a"])("Who Can See Reports","google-analytics-for-wordpress"),text_permissions_view_description:Object(c["a"])("These user roles will be able to access MonsterInsights' reports in the WordPress admin area.","google-analytics-for-wordpress"),text_permissions_view_tooltip:Object(c["a"])("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"),text_save:Object(c["a"])("Save and continue","google-analytics-for-wordpress"),text_events_faux_tooltip:Object(c["a"])("Events Tracking is enabled the moment you set up MonsterInsights","google-analytics-for-wordpress"),text_link_attribution_faux_tooltip:Object(c["a"])("Enhanced Link Attribution is enabled the moment you set up MonsterInsights","google-analytics-for-wordpress"),text_add_role:Object(c["a"])("+ Add Role","google-analytics-for-wordpress")}},mounted:function(){this.turnOnAutoUpdatesOption(),this.turnOnUsageTrackingOption()},methods:{handleSubmit:function(){this.$router.push(this.$wizard_steps[3])},turnOnAutoUpdatesOption:function(){this.$store.dispatch("$_settings/updateSettings",{name:"automatic_updates",value:"all"})},turnOnUsageTrackingOption:function(){this.$store.dispatch("$_settings/updateSettings",{name:"anonymous_data",value:"all"})}},computed:ut({},Object(A["b"])({settings:"$_settings/settings"}),{user_roles:function(){var t=[];for(var e in this.$mi.roles)t.push({label:this.$mi.roles[e],value:e});return t},user_roles_manage_options:function(){var t=[];for(var e in this.$mi.roles_manage_options)t.push({label:this.$mi.roles_manage_options[e],value:e});return t}})},pt=gt,ht=Object(h["a"])(pt,K,q,!1,null,null,null),mt=ht.exports,ft=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",[s("div",{staticClass:"monsterinsights-onboarding-step-recommended-addons"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"monsterinsights-onboarding-wizard-form"},[s("div",{staticClass:"monsterinsights-separator"}),t._l(t.adddonList,(function(e,o){return s("div",{key:o},[s("onboarding-addon",{attrs:{feature:e,features_awaiting_install:t.features_awaiting_install},on:{"update-feature-await":t.updateFeatureAwaitInstall}}),s("div",{staticClass:"monsterinsights-separator"})],1)})),s("button",{staticClass:"monsterinsights-onboarding-button monsterinsights-onboarding-button-large",attrs:{type:"button",name:"next_step"},domProps:{textContent:t._s(t.text_save)},on:{click:function(e){return e.preventDefault(),t.continueNextStep(e)}}}),s("a",{staticClass:"monsterinsights-skip-addons",attrs:{href:"#",title:""},on:{click:function(e){return e.preventDefault(),t.skipAddons()}}},[s("span",[t._v("Skip for Now")]),s("svg",{attrs:{width:"16",height:"9",viewBox:"0 0 16 9",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[s("path",{attrs:{d:"M11.1289 3.34375H0.546875C0.300781 3.34375 0.125 3.55469 0.125 3.76562V5.73438C0.125 5.98047 0.300781 6.15625 0.546875 6.15625H11.1289V7.80859C11.1289 8.54688 12.043 8.93359 12.5703 8.40625L15.5938 5.34766C15.9453 5.03125 15.9453 4.50391 15.5938 4.1875L12.5703 1.12891C12.043 0.601562 11.1289 0.988281 11.1289 1.72656V3.34375Z",fill:"#586074"}})])])],2)],1),t.features_awaiting_install.length?s("div",{staticClass:"monsterinsights-features-awaiting-install"},[s("span",{domProps:{textContent:t._s(t.features_awaiting_install_text)}}),s("span",{domProps:{textContent:t._s(t.featureAwaitingInstall)}})]):t._e()])},_t=[],bt=(s("a15b"),s("25f0"),s("96cf"),s("c964"));s("e01a"),s("d28b");function wt(t){return wt="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},wt(t)}function yt(t){return yt="function"===typeof Symbol&&"symbol"===wt(Symbol.iterator)?function(t){return wt(t)}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":wt(t)},yt(t)}var vt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-features monsterinsights-flex"},[s("div",{staticClass:"monsterinsights-feat-content"},[s("p",[t._v(t._s(t.feature.data.title))]),s("p",[t._v(t._s(t.feature.data.description))])]),s("div",{staticClass:"monsterinsights-feat-checkbox"},[t.feature.data.faux?s("label",{staticClass:"monsterinsights-checkbox-round"},[s("input",{staticClass:"faux",attrs:{id:t.feature.id,type:"checkbox",checked:"",disabled:""}}),s("span",{staticClass:"checkmark",attrs:{id:"checkmark-loader-"+t.feature.id}})]):t.feature.data.checked?s("label",{staticClass:"monsterinsights-checkbox-round"},[s("div",{staticClass:"loader",attrs:{id:"loader-"+t.feature.id}}),s("input",{staticClass:"addon-checkbox",attrs:{id:t.feature.id,type:"checkbox",checked:"",name:t.feature.id},on:{click:function(e){return e.preventDefault(),t.toggleCheck(e,t.feature.data.title,t.feature.id)}}}),s("span",{staticClass:"checkmark",attrs:{id:"checkmark-loader-"+t.feature.id}})]):s("label",{staticClass:"monsterinsights-checkbox-round"},[s("div",{staticClass:"loader",attrs:{id:"loader-"+t.feature.id}}),s("input",{staticClass:"addon-checkbox",attrs:{id:t.feature.id,type:"checkbox",name:t.feature.id},on:{click:function(e){return e.preventDefault(),t.toggleCheck(e,t.feature.data.title,t.feature.id)}}}),s("span",{staticClass:"checkmark remove",attrs:{id:"checkmark-loader-"+t.feature.id}})])])])},xt=[];s("caad"),s("2532");function Ot(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function At(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?Ot(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):Ot(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var kt={name:"OnboardingAddon",props:{feature:Object,installed_addons:Object,features_awaiting_install:Array},data:function(){return{}},computed:At({},Object(A["b"])({addons:"$_addons/addons"})),methods:{toggleCheck:function(t,e,s){var o=t.target.nextElementSibling;if(o.classList.toggle("remove"),t.target.toggleAttribute("checked"),"aioseo"===s||"wpforms_lite"===s){var a=this.features_awaiting_install;a.includes(e)?a=a.filter((function(t){return t!==e})):a.push(e),this.$emit("update-feature-await",a)}}}},Ct=kt,jt=Object(h["a"])(Ct,vt,xt,!1,null,null,null),Pt=jt.exports;function $t(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function St(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?$t(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):$t(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var Mt={name:"OnboardingStepRecommendedFeatures",components:{OnboardingContentHeader:f,OnboardingAddon:Pt},data:function(){return{text_header_title:Object(c["a"])("Which website features would you like to enable?","google-analytics-for-wordpress"),text_header_subtitle:Object(c["a"])("We’ve already selected our recommended features based on your site. ","google-analytics-for-wordpress"),text_other_addons:Object(c["a"])("Other Addons","google-analytics-for-wordpress"),text_other_addons_button:Object(c["a"])("View all MonsterInsights addons","google-analytics-for-wordpress"),text_save:Object(c["a"])("Continue","google-analytics-for-wordpress"),features_awaiting_install:[],features_awaiting_install_text:Object(c["a"])("The following plugins will be installed: ","google-analytics-for-wordpress")}},computed:St({},Object(A["b"])({settings:"$_settings/settings",addons:"$_addons/addons"}),{adddonList:function(){return this.addonState(this.addons)},featureAwaitingInstall:function(){return this.features_awaiting_install.join(", ")}}),mounted:function(){localStorage.removeItem("activated_addons"),this.featuresToInstall()},methods:{featuresList:function(){var t=[{id:"standard",standard:{addons:"standard"},data:{feature:"standard",title:Object(c["a"])("Standard Analytics & Reports","google-analytics-for-wordpress"),description:Object(c["a"])("Get the reports and stats that matter right inside your WordPress Dashboard.","google-analytics-for-wordpress"),faux:!0}},{id:"enhanced_link",enhanced_link:{addons:"enhanced-link"},data:{feature:"enhanced-link",title:Object(c["a"])("Enhanced Link Attribution","google-analytics-for-wordpress"),description:Object(c["a"])("Helps you see what links your users are clicking on your site.","google-analytics-for-wordpress"),faux:!0}},{id:"aioseo",aioseo:{addons:"aioseo"},data:{feature:"aioseo",title:Object(c["a"])("All In One SEO Toolkit","google-analytics-for-wordpress"),description:Object(c["a"])("The best WordPress SEO plugin that works with MonsterInsights to boost your rankings.","google-analytics-for-wordpress"),checked:!0}},{id:"wpforms_lite",wpforms_lite:{addons:"wpforms-lite"},data:{feature:"wpforms-lite",title:Object(c["a"])("Smart Form Builder by WPForms","google-analytics-for-wordpress"),description:Object(c["a"])("The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more.","google-analytics-for-wordpress"),checked:!0}},{id:"eu_compliance",eu_compliance:{addons:"eu-compliance"},data:{feature:"eu-compliance",title:Object(c["a"])("Privacy Compliance Addon","google-analytics-for-wordpress"),description:Object(c["a"])("Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA.","google-analytics-for-wordpress")}},{id:"advanced_reports",advanced_reports:{addons:["dimensions","forms","ecommerce","page-insights"]},data:{feature:["dimensions","forms","ecommerce","page-insights"],title:Object(c["a"])("Advanced Reports","google-analytics-for-wordpress"),description:Object(c["a"])("Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more.","google-analytics-for-wordpress")}},{id:"ecommerce",ecommerce:{addons:"ecommerce"},data:{feature:"ecommerce",title:Object(c["a"])("eCommerce Tracking","google-analytics-for-wordpress"),description:Object(c["a"])("Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more.","google-analytics-for-wordpress")}},{id:"advanced_tracking",advanced_tracking:{addons:["dimensions","forms"]},data:{feature:["dimensions","forms"],title:Object(c["a"])("20+ Advanced Tracking","google-analytics-for-wordpress"),description:Object(c["a"])("Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more.","google-analytics-for-wordpress")}},{id:"google_optimize",google_optimize:{addons:"google-optimize"},data:{feature:"google-optimize",title:Object(c["a"])("Advanced Growth Tools","google-analytics-for-wordpress"),description:Object(c["a"])("Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more.","google-analytics-for-wordpress")}},{id:"media",media:{addons:"media"},data:{feature:"media",title:Object(c["a"])("Media Tracking","google-analytics-for-wordpress"),description:Object(c["a"])("Track how your users interact with videos on your website.","google-analytics-for-wordpress")}}];return t},skipAddons:function(){void 0!==this.$wizard_steps[4]?this.$router.push(this.$wizard_steps[4]):this.$router.push({name:"success"})},addonState:function(t){for(var e=this.featuresList(),s=0;s<e.length;s++){var o=e[s].data.feature;if("standard"!==o&&"enhanced-link"!==o&&("string"===typeof o&&t[o]&&(t[o].active?e[s].data.faux=!0:t[o].installed&&(e[s].data.checked=!0)),"object"===yt(o))){var a=o.length,n=[],r=[];for(var i in o){var l=o[i];t[l]&&(t[l].active?(r.push(l),n.push(l)):t[l].installed&&n.push(l))}a===r.length?e[s].data.faux=!0:a===n.length&&(e[s].data.checked=!0)}}return e},continueNextStep:function(){var t=Object(bt["a"])(regeneratorRuntime.mark((function t(e){var s,o,a,n,r,i,l,d,u,g,p,h,m,f,_,b,w,y,v,x,O,A,k,C,j,P;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:for(s=this,o=this.featuresList(),a=document.querySelectorAll(".addon-checkbox"),n=[],r=0;r<a.length;r++)a[r].hasAttribute("checked")&&(i=a[r].name,n.push(i));for(l in n)d=n[l],u="checkmark-loader-"+d,g=document.getElementById(u),g&&(g.style.visibility="hidden"),p="loader-"+d,h=document.getElementById(p),h&&(h.style.display="block");m=[],f=[],_=0;case 9:if(!(_<o.length)){t.next=36;break}t.t0=regeneratorRuntime.keys(n);case 11:if((t.t1=t.t0()).done){t.next=33;break}if(b=t.t1.value,w=n[b],!o[_].hasOwnProperty(w)){t.next=31;break}if(e.target.setAttribute("disabled",!0),e.target.innerHTML="Please Wait...",y=document.querySelector(".monsterinsights-skip-addons"),y.style.visibility="hidden",v="checkmark-loader-"+w,x=document.getElementById(v),x&&(x.style.visibility="hidden"),O="loader-"+w,A=document.getElementById(O),A&&(A.style.display="block"),k=document.getElementById(w),C=o[_][w].addons,"wpforms-lite"!==C&&"aioseo"!==C){t.next=31;break}return j=this.addons[C],t.next=31,s.executeAddon(j,C,A,x,k,f,m);case 31:t.next=11;break;case 33:_++,t.next=9;break;case 36:0===f.length?(localStorage.setItem("activated_addons",m),void 0!==this.$wizard_steps[4]?this.$router.push(this.$wizard_steps[4]):this.$router.push({name:"success"})):(console.log("===================================================================="),console.log("MonsterInsights Onboarding Wizard Debug"),console.log("Following addons were not installed:"),console.log(f.toString()),console.log("===================================================================="),s.$swal({type:"error",title:Object(c["a"])("Error Processing","google-analytics-for-wordpress"),text:Object(c["a"])("There was an error while processing some features. Please try again or you can skip this process for now","google-analytics-for-wordpress"),confirmButtonText:Object(c["a"])("Ok","google-analytics-for-wordpress")}),e.target.removeAttribute("disabled"),e.target.innerHTML="Continue",P=document.querySelector(".monsterinsights-skip-addons"),P.style.visibility="visible");case 37:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),executeAddon:function(){var t=Object(bt["a"])(regeneratorRuntime.mark((function t(e,s,o,a,n,r,i){var l,c,d,u;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:if(l=this,void 0===e){t.next=28;break}if(a&&(a.style.visibility="hidden"),e.installed){t.next=21;break}if(c="","wpforms-lite"!==s&&"aioseo"!==s){t.next=9;break}return t.next=8,l.installPlugin(e);case 8:c=t.sent;case 9:if(!0!==c){t.next=16;break}return t.next=12,l.activateAddon(e);case 12:d=t.sent,!0===d?("wpforms-lite"!==s&&"aioseo"!==s||(o.style.display="none",n.classList.add("faux"),a.style.visibility="visible"),i.push(e.title)):(r.push(s),o.style.display="none",a.classList.add("error")),t.next=19;break;case 16:r.push(s),o.style.display="none",a.classList.add("error");case 19:t.next=26;break;case 21:if(!e.installed||e.active){t.next=26;break}return t.next=24,l.activateAddon(e);case 24:u=t.sent,!0===u?i.push(e.title):(r.push(s),o.style.display="none",a.classList.add("error"));case 26:t.next=31;break;case 28:r.push(s),o.style.display="none",a.classList.add("error");case 31:n.checked=!0,a&&(a.style.visibility="visible");case 33:case"end":return t.stop()}}),t,this)})));function e(e,s,o,a,n,r,i){return t.apply(this,arguments)}return e}(),installAddon:function(){var t=Object(bt["a"])(regeneratorRuntime.mark((function t(e){var s;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,this.$store.dispatch("$_addons/installAddon",e);case 2:if(s=t.sent,void 0===s){t.next=7;break}if(!(s&&"plugin"in s)){t.next=7;break}if(e.basename!==s.plugin){t.next=7;break}return t.abrupt("return",!0);case 7:return t.abrupt("return",!1);case 8:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),installPlugin:function(){var t=Object(bt["a"])(regeneratorRuntime.mark((function t(e){var s;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,this.$store.dispatch("$_addons/installOnboardingPlugin",e);case 2:if(s=t.sent,void 0===s){t.next=7;break}if(!(s&&"success"in s)){t.next=7;break}if(!0!==s.success){t.next=7;break}return t.abrupt("return",!0);case 7:return t.abrupt("return",!1);case 8:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),activateAddon:function(){var t=Object(bt["a"])(regeneratorRuntime.mark((function t(e){var s;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,this.$store.dispatch("$_addons/activateOnboardingAddon",e);case 2:return s=t.sent,t.abrupt("return",s);case 4:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),featuresToInstall:function(){for(var t=document.querySelectorAll(".addon-checkbox"),e=this.featuresList(),s=[],o=[],a=0;a<t.length;a++)if(t[a].hasAttribute("checked")&&!t[a].classList.contains("faux")){var n=t[a].name;"aioseo"!==n&&"wpforms_lite"!==n||s.push(n)}s.length>0&&(s.forEach((function(t){for(var s=0;s<e.length;s++)e[s].id==t&&o.push(e[s].data.title)})),this.features_awaiting_install=o)},updateFeatureAwaitInstall:function(t){this.features_awaiting_install=t}}},Et=Mt,Lt=Object(h["a"])(Et,ft,_t,!1,null,null,null),Tt=Lt.exports,It=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-onboarding-step-wpforms"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"monsterinsights-onboarding-wizard-form"},[s("form",{attrs:{action:"",method:"post"},on:{submit:function(e){return e.preventDefault(),t.handleSubmit(e)}}},[s("div",{staticClass:"monsterinsights-separator"}),s("div",{staticClass:"monsterinsights-addon-row monsterinsights-wpforms-row"},[t._m(0),s("div",{staticClass:"monsterinsights-addon-text"},[s("label",{domProps:{textContent:t._s(t.text_wpforms_label)}}),s("p",{domProps:{textContent:t._s(t.text_wpforms_description)}})])]),s("div",{staticClass:"monsterinsights-separator"}),s("div",{staticClass:"monsterinsights-form-row monsterinsights-form-buttons"},[s("div",{staticClass:"monsterinsights-form-input"},[s("button",{class:t.buttonClass(),attrs:{type:"button"},domProps:{textContent:t._s(t.button_text)},on:{click:function(e){return e.preventDefault(),t.installPlugin(e)}}}),t.loading?t._e():s("button",{staticClass:"monsterinsights-text-button monsterinsights-pull-right",attrs:{type:"submit",name:"next_step"}},[s("span",{domProps:{textContent:t._s(t.text_skip_step)}}),s("i",{staticClass:"monstericon-arrow-right"})])])])])])],1)},Ut=[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-addon-icon"},[s("div",{staticClass:"monsterinsights-addon-wpforms"})])}],Ht={name:"OnboardingStepWpforms",components:{OnboardingContentHeader:f},data:function(){return{text_header_title:Object(c["a"])("MonsterInsights Recommends WPForms","google-analytics-for-wordpress"),text_header_subtitle:Object(c["a"])("Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market.","google-analytics-for-wordpress"),text_wpforms_label:Object(c["a"])("Used on over 4,000,000 websites!","google-analytics-for-wordpress"),text_wpforms_description:Object(c["a"])("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"),text_skip_step:Object(c["a"])("Skip this Step","google-analytics-for-wordpress"),text_install_wpforms:Object(c["a"])("Continue & Install WPForms","google-analytics-for-wordpress"),text_installing_wpforms:Object(c["a"])("Installing...","google-analytics-for-wordpress"),button_text:"",loading:!1}},mounted:function(){this.button_text=this.text_install_wpforms},methods:{handleSubmit:function(){this.$router.push(this.$wizard_steps[5])},buttonClass:function(){var t="monsterinsights-onboarding-button monsterinsights-onboarding-button-large monsterinsights-install-wpforms";return this.loading&&(t+=" monsterinsights-button-disabled"),t},installPlugin:function(){var t=this;this.loading=!0,this.button_text=this.text_installing_wpforms,this.$store.dispatch("$_addons/installWPForms").then((function(){t.loading=!1,t.button_text=t.text_install_wpforms,t.handleSubmit()}))}}},zt=Ht,Dt=Object(h["a"])(zt,It,Ut,!1,null,null,null),Bt=Dt.exports,Xt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-onboarding-step-success"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"monsterinsights-onboarding-wizard-form"},[s("ol",[s("li",{domProps:{innerHTML:t._s(t.text_notice)}}),t._l(t.install_errors,(function(e,o){return[s("li",{key:o,domProps:{innerHTML:t._s(e)}})]}))],2),s("div",{staticClass:"monsterinsights-tracking-info-container"},[s("div",{staticClass:"monsterinsights-flex monsterinsights-tracking-info"},[s("div",{staticClass:"monsterinsights-tracking-info-text"},[s("p",[t._v(t._s(t.text_connected))])]),s("div",{staticClass:"monsterinsights-tracking-info-icon"},[s("span",{staticClass:"monsterinsights-success",domProps:{innerHTML:t._s(t.text_success)}}),s("span",{staticClass:"monsterinsights-success-icon",domProps:{innerHTML:t._s(t.icon_success)}})])])]),s("div",{staticClass:"monsterinsights-separator"}),s("div",{staticClass:"monsterinsights-tracking-info-container"},[s("div",{staticClass:"monsterinsights-flex monsterinsights-tracking-info"},[s("div",{staticClass:"monsterinsights-tracking-info-text"},[s("p",[t._v(t._s(t.text_code_installed))])]),s("div",{staticClass:"monsterinsights-tracking-info-icon"},[s("span",{staticClass:"monsterinsights-success",domProps:{innerHTML:t._s(t.text_success)}}),s("span",{staticClass:"monsterinsights-success-icon",domProps:{innerHTML:t._s(t.icon_success)}})])])]),s("div",{staticClass:"monsterinsights-separator"}),s("div",{staticClass:"monsterinsights-tracking-info-container"},[s("div",{staticClass:"monsterinsights-flex monsterinsights-tracking-info"},[s("div",{staticClass:"monsterinsights-tracking-info-text"},[s("p",[t._v(t._s(t.text_data_collected))])]),s("div",{staticClass:"monsterinsights-tracking-info-icon"},[s("span",{staticClass:"monsterinsights-success",domProps:{innerHTML:t._s(t.text_success)}}),s("span",{staticClass:"monsterinsights-success-icon",domProps:{innerHTML:t._s(t.icon_success)}})])])]),t.activated_addons?s("div",t._l(t.activated_addons,(function(e,o){return s("div",{key:o},[s("div",{staticClass:"monsterinsights-separator"}),s("div",{staticClass:"monsterinsights-tracking-info-container"},[s("div",{staticClass:"monsterinsights-flex monsterinsights-tracking-info"},[s("div",{staticClass:"monsterinsights-tracking-info-text"},[s("p",[t._v(t._s(e+" Installed"))])]),s("div",{staticClass:"monsterinsights-tracking-info-icon"},[s("span",{staticClass:"monsterinsights-success"},[t._v(t._s(t.text_success))]),s("span",{staticClass:"monsterinsights-success-icon",domProps:{innerHTML:t._s(t.icon_success)}})])])])])})),0):t._e(),"pro"!==t.license.type&&"pro"!==t.license_network.type?s("div",[s("div",{staticClass:"monsterinsights-onboarding-upsell"},[s("h2",[t._v(t._s(t.text_lite_user.heading))]),s("p",[t._v(t._s(t.text_lite_user.description))]),s("ul",t._l(t.text_lite_user.features,(function(e,o){return s("li",{key:o},[s("span",{staticClass:"monsterinsights-icon",domProps:{innerHTML:t._s(t.icon_checkmark)}}),s("span",{staticClass:"monsterinsights-text"},[t._v(t._s(e))])])})),0),s("div",{staticClass:"monsterinsights-upsell-upgrade-button"},[s("a",{staticClass:"monsterinsights-button monsterinsights-button-large",attrs:{target:"_blank",href:t.upgrade_button_url},domProps:{textContent:t._s(t.text_button_upgrade)}})])]),s("div",{staticClass:"monsterinsights-upsell-bottom-text"},[s("p",{domProps:{innerHTML:t._s(t.text_lite_user.bottom_text)}})]),s("div",{staticClass:"monsterinsights-settings-license-lite"},[s("label",{attrs:{for:"monsterinsights-license-key"},domProps:{innerHTML:t._s(t.text_license_label)}}),s("div",{staticClass:"monsterinsights-inline-field"},[s("input",{directives:[{name:"model",rawName:"v-model",value:t.connect_key,expression:"connect_key"}],attrs:{id:"monsterinsights-license-key",readonly:t.is_loading,type:"text",autocomplete:"off",placeholder:t.text_license_placeholder},domProps:{value:t.connect_key},on:{input:[function(e){e.target.composing||(t.connect_key=e.target.value)},t.fieldInput]}}),t.show_connect?s("span",[s("button",{staticClass:"monsterinsights-button",domProps:{textContent:t._s(t.text_upgrade_to_pro)},on:{click:function(e){return e.preventDefault(),t.startUpgradeToPro(e)}}})]):s("span",[s("button",{staticClass:"monsterinsights-button disabled",domProps:{textContent:t._s(t.text_upgrade_to_pro)}})])])])]):t._e(),"pro"!==t.license.type&&"pro"!==t.license_network.type?s("div",[s("div",{staticClass:"monsterinsights-separator"}),s("a",{staticClass:"monsterinsights-exit-link",attrs:{href:"#",title:""},on:{click:function(e){return e.preventDefault(),t.exitOnboardingWizard(e)}}},[t._v(t._s(t.text_exit_lite))])]):s("div",{staticClass:"monsterinsights-form-row monsterinsights-form-buttons"},[s("div",{staticClass:"monsterinsights-form-input"},[s("a",{staticClass:"monsterinsights-onboarding-button monsterinsights-onboarding-button-large",attrs:{href:"#"},domProps:{textContent:t._s(t.text_exit)},on:{click:function(e){return e.preventDefault(),t.exitOnboardingWizard(e)}}})])])])],1)},Rt=[],Wt=(s("5319"),s("1276"),s("dd62"));function Gt(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function Vt(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?Gt(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):Gt(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var Zt={name:"OnboardingStepSuccess",components:{OnboardingContentHeader:f},data:function(){return{text_header_title:Object(c["a"])("Awesome! Tracking and Analytics are All Setup!","google-analytics-for-wordpress"),text_header_subtitle:Object(c["a"])("MonsterInsights is connected to Google Analytics and data is being collected.","google-analytics-for-wordpress"),text_notice:Object(c["d"])(Object(c["a"])("%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"),"<strong>","</strong>"),text_newsletter:Object(c["d"])(Object(c["a"])("%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business.","google-analytics-for-wordpress"),'<a target="_blank" href="https://www.monsterinsights.com/blog/">',"</a>"),text_exit:Object(c["a"])("Finish Setup & Exit Wizard","google-analytics-for-wordpress"),text_exit_lite:Object(c["a"])("Complete Setup without Upgrading","google-analytics-for-wordpress"),exit_url:this.$mi.exit_url,text_success:Object(c["a"])("Success","google-analytics-for-wordpress"),text_connected:Object(c["a"])("Connected to Google Analytics","google-analytics-for-wordpress"),text_code_installed:Object(c["a"])("Tracking Code Installed","google-analytics-for-wordpress"),text_data_collected:Object(c["a"])("Data Being Collected","google-analytics-for-wordpress"),icon_success:'<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="16" height="16" rx="8" fill="#EAFAEE"/><path d="M6.70312 10.875C6.85938 11.0312 7.125 11.0312 7.28125 10.875L11.875 6.28125C12.0312 6.125 12.0312 5.85938 11.875 5.70312L11.3125 5.14062C11.1562 4.98438 10.9062 4.98438 10.75 5.14062L7 8.89062L5.23438 7.14062C5.07812 6.98438 4.82812 6.98438 4.67188 7.14062L4.10938 7.70312C3.95312 7.85938 3.95312 8.125 4.10938 8.28125L6.70312 10.875Z" fill="#46BF40"/></svg>',icon_checkmark:'<svg width="14" height="11" viewBox="0 0 14 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.05469 9.8125C5.28906 10.0469 5.6875 10.0469 5.92188 9.8125L12.8125 2.92188C13.0469 2.6875 13.0469 2.28906 12.8125 2.05469L11.9688 1.21094C11.7344 0.976562 11.3594 0.976562 11.125 1.21094L5.5 6.83594L2.85156 4.21094C2.61719 3.97656 2.24219 3.97656 2.00781 4.21094L1.16406 5.05469C0.929688 5.28906 0.929688 5.6875 1.16406 5.92188L5.05469 9.8125Z" fill="#46BF40"/></svg>',text_button_upgrade:Object(c["a"])("Upgrade to MonsterInsights Pro","google-analytics-for-wordpress"),upgrade_button_url:this.$getUpgradeUrl("onboarding-lite","onboarding-lite"),activated_addons:[],text_license_label:Object(c["a"])("Already purchased? Simply enter your license key below to connect with MonsterInsights PRO!","google-analytics-for-wordpress"),is_loading:!1,show_connect:!1,connect_key:"",text_license_placeholder:Object(c["a"])("Paste your license key here","google-analytics-for-wordpress"),text_license_verify:Object(c["a"])("Verify","google-analytics-for-wordpress"),text_upgrade_to_pro:Object(c["a"])("Verify License Key","google-analytics-for-wordpress"),text_lite_user:{heading:Object(c["a"])("Upgrade to Unlock These Features","google-analytics-for-wordpress"),description:Object(c["a"])("To unlock the selected features, please upgrade to Pro and enter your license key below.","google-analytics-for-wordpress"),bottom_text:Object(c["d"])(Object(c["a"])("%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)","google-analytics-for-wordpress"),"<strong>","</strong>","<strong>","</strong>"),features:["Advanced Reporting","20+ Advanced Tracking","eCommerce Tracking","Advanced Growth Tools","EU and Privacy Compliance","and Dozens More!"]}}},computed:Vt({},Object(A["b"])({install_errors:"$_onboarding/install_errors",license:"$_license/license",license_network:"$_license/license_network",auth:"$_auth/auth"})),mounted:function(){var t=this;t.$swal({type:"info",title:Object(c["a"])("Checking your website...","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){t.$swal.showLoading()}}),this.$store.dispatch("$_onboarding/getErrors").then((function(){t.$swal.close()}));var e=localStorage.getItem("activated_addons");e&&(e=e.replace(/,\s*$/,""),this.activated_addons=e.split(","))},methods:{fieldInput:G()((function(){this.show_connect=""!==this.connect_key}),100),startUpgradeToPro:function(){var t=this;this.$swal({type:"info",title:Object(c["a"])("Verifying License...","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,customContainerClass:"monsterinsights-swal",onOpen:function(){t.$swal.showLoading()}}),Wt["a"].getUpgradeLink(t.connect_key).then((function(e){if(e.success&&e.data.url)return window.location=e.data.url;var s=e.data.message?e.data.message:Object(c["a"])("There was an error unlocking MonsterInsights PRO please try again or install manually.","google-analytics-for-wordpress");t.$mi_error_toast({title:Object(c["a"])("Error","google-analytics-for-wordpress"),text:s,toast:!1,position:"center",showConfirmButton:!0,showCloseButton:!1,customClass:!1,confirmButtonText:Object(c["a"])("Ok","google-analytics-for-wordpress")}).then((function(){e.data.reload&&window.location.reload()}))})).catch((function(){t.$swal.close()}))},exitOnboardingWizard:function(){window.location=this.exit_url}}},Ft=Zt,Nt=Object(h["a"])(Ft,Xt,Rt,!1,null,null,null),Qt=Nt.exports,Yt=new r["a"]({routes:[{path:"*",redirect:"/"},{path:"/",name:"welcome",component:v},{path:"/authenticate",name:"authenticate",component:Y},{path:"/recommended_settings",name:"recommended_settings",component:mt},{path:"/recommended_addons",name:"recommended_addons",component:Tt},{path:"/wpforms",name:"wpforms",component:Bt},{path:"/success",name:"success",component:Qt}],scrollBehavior:function(){return{x:0,y:0}}}),Kt=s("7220"),qt=s("bc3a"),Jt=s.n(qt),te=s("2b0e"),ee=function(t){return new Promise((function(e){var s=new FormData,o=te["a"].prototype.$addQueryArg(te["a"].prototype.$mi.ajax,"page","monsterinsights-onboarding");s.append("action","monsterinsights_onboarding_get_errors"),Jt.a.post(o,s).then((function(t){e(t.data)})).catch((function(e){if(t.dispatch("$_app/block",!1,{root:!0}),e.response){var s=e.response;return te["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't load errors. Error: %1$s, %2$s","google-analytics-for-wordpress"),s.status,s.statusText)})}te["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},se={fetchErrors:ee},oe=function(t){var e=se.fetchErrors(t);return e.then((function(e){t.commit("ERRORS_UPDATED",e)})).catch((function(t){console.error(t)})),e},ae={getErrors:oe},ne=function(t){return t.install_errors},re={install_errors:ne},ie=function(t,e){t.install_errors=e},le={ERRORS_UPDATED:ie},ce={install_errors:[]},de={namespaced:!0,state:ce,actions:ae,getters:re,mutations:le},ue=(s("7795"),function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("header",{staticClass:"monsterinsights-onboarding-header"},[s("nav",{staticClass:"monsterinsights-header-navigation"},[s("a",{staticClass:"monsterinsights-exit-button",attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.exitOnboardingWizard(e)}}},[s("i",{staticClass:"monstericon-times-circle"}),s("span",{domProps:{textContent:t._s(t.text_exit)}})])]),t._m(0)])}),ge=[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("h1",{staticClass:"monsterinsights-onboarding-wizard-logo"},[s("div",{staticClass:"monsterinsights-logo"},[s("div",{staticClass:"monsterinsights-bg-img"})])])}],pe={name:"TheWizardHeader",data:function(){return{text_exit:Object(c["a"])("Exit Setup","google-analytics-for-wordpress"),href:this.$mi.exit_url}},methods:{exitOnboardingWizard:function(){window.location=this.href}}},he=pe,me=Object(h["a"])(he,ue,ge,!1,null,null,null),fe=me.exports,_e=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-onboarding-wizard-container"},[s("div",{staticClass:"monsterinsights-onboarding-wizard-steps"},[t._l(t.steps,(function(e,o){return[o>0?s("div",{key:o+"line",class:t.lineClass(o)}):t._e(),s("div",{key:o,class:t.stepClass(o)})]}))],2)])},be=[],we={name:"TheWizardTimeline",data:function(){return{steps:this.$wizard_steps}},methods:{stepClass:function(t){var e="monsterinsights-onboarding-wizard-step",s=0;for(var o in this.steps)this.$route.name===this.steps[o]&&(s=o);return t<s&&(e+=" monsterinsights-onboarding-wizard-step-completed"),parseInt(t)===parseInt(s)&&(e+=" monsterinsights-onboarding-wizard-step-active"),e},lineClass:function(t){var e="monsterinsights-onboarding-wizard-step-line",s=0;for(var o in this.steps)this.$route.name===this.steps[o]&&(s=o);return t<=s&&(e+=" monsterinsights-onboarding-wizard-line-active"),e}}},ye=we,ve=Object(h["a"])(ye,_e,be,!1,null,null,null),xe=ve.exports,Oe=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div")},Ae=[],ke={name:"OnboardingBottomUpsell"},Ce=ke,je=Object(h["a"])(Ce,Oe,Ae,!1,null,null,null),Pe=je.exports;function $e(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,o)}return s}function Se(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?$e(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):$e(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var Me={name:"WizardModuleOnboarding",components:{OnboardingBottomUpsell:Pe,TheWizardTimeline:xe,TheWizardHeader:fe},router:Yt,created:function(){var t="$_settings";t in this.$store._modules.root._children||this.$store.registerModule(t,Kt["a"]);var e="$_onboarding";e in this.$store._modules.root._children||this.$store.registerModule(e,de)},computed:Se({},Object(A["b"])({blocked:"$_app/blocked"}),{route:function(){return this.$route.name}}),mounted:function(){this.$mi_loading_toast(),this.$store.dispatch("$_settings/getSettings")}},Ee=Me,Le=(s("1608"),Object(h["a"])(Ee,o,a,!1,null,"283d1087",null)),Te=Le.exports,Ie=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-admin-page monsterinsights-welcome"},[s("div",{staticClass:"monsterinsights-welcome-container"},[s("div",{staticClass:"monsterinsights-welcome-block monsterinsights-welcome-block-first"},[t._m(0),s("div",{staticClass:"monsterinsights-welcome-block-inner"},[s("h3",{domProps:{textContent:t._s(t.welcome_title)}}),s("p",{staticClass:"monsterinsights-subtitle",domProps:{textContent:t._s(t.text_welcome_subtitle)}})]),s("div",{staticClass:"monsterinsights-welcome-video"},[s("div",{staticClass:"monsterinsights-welcome-video-image monsterinsights-bg-img",on:{click:function(e){t.welcome_video=!0}}}),t.welcome_video?s("welcome-overlay",{attrs:{id:"welcome-video"},on:{close:function(e){t.welcome_video=!1}}},[s("iframe",{attrs:{width:"1280",height:"720",src:"https://www.youtube.com/embed/IbdKpSygp2U?autoplay=1&modestbranding=1&showinfo=0&rel=0&fs=1",frameborder:"0",allow:"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture",allowfullscreen:""}})]):t._e()],1),s("div",{staticClass:"monsterinsights-welcome-block-inner"},[s("p",{domProps:{textContent:t._s(t.text_above_buttons)}}),s("div",{staticClass:"monsterinsights-button-wrap"},[s("div",{staticClass:"monsterinsights-welcome-left"},[s("a",{staticClass:"monsterinsights-button monsterinsights-button-large",attrs:{href:t.wizard_url},domProps:{textContent:t._s(t.text_wizard_button)}})]),s("div",{staticClass:"monsterinsights-welcome-right"},[s("a",{staticClass:"monsterinsights-button monsterinsights-button-alt monsterinsights-button-large",attrs:{href:t.$getUrl("welcome-screen","guide","https://www.monsterinsights.com/docs/connect-google-analytics/"),target:"_blank",rel:"noopener noreferrer"},domProps:{textContent:t._s(t.text_read_more_button)}})])])])]),s("div",{staticClass:"monsterinsights-welcome-block"},[s("div",{staticClass:"monsterinsights-welcome-block-inner"},[s("h3",{domProps:{textContent:t._s(t.text_features_title)}}),s("p",{staticClass:"monsterinsights-subtitle",domProps:{textContent:t._s(t.text_features_subtitle)}})]),s("div",{staticClass:"monsterinsights-welcome-block-inner monsterinsights-welcome-features"},t._l(t.features,(function(e,o){return s("div",{key:o,staticClass:"monsterinsights-welcome-feature"},[s("div",{staticClass:"monsterinsights-welcome-feature-img",domProps:{innerHTML:t._s(e.icon)}}),s("div",{staticClass:"monsterinsights-welcome-feature-text"},[s("h4",{domProps:{textContent:t._s(e.name)}}),s("p",{domProps:{textContent:t._s(e.description)}})])])})),0),s("div",{staticClass:"monsterinsights-welcome-block-inner monsterinsights-welcome-block-footer"},[s("a",{staticClass:"monsterinsights-button",attrs:{href:t.$getUrl("welcome-screen","features-button","https://monsterinsights.com/features"),target:"_blank"},domProps:{textContent:t._s(t.text_view_all_features)}})]),s("div",{staticClass:"monsterinsights-upgrade-cta"},[s("div",{staticClass:"monsterinsights-welcome-block-inner"},[s("div",{staticClass:"monsterinsights-welcome-left"},[s("h2",{domProps:{textContent:t._s(t.text_upgrade_to_pro)}}),s("ul",t._l(t.pro_features,(function(e,o){return s("li",{key:o},[s("i",{staticClass:"monstericon-check"}),t._v(" "+t._s(e)+" ")])})),0)]),s("div",{staticClass:"monsterinsights-welcome-right"},[t._m(1),s("div",{staticClass:"monsterinsights-price"},[s("span",{staticClass:"monsterinsights-amount"},[t._v(" 199 ")]),s("br"),s("span",{staticClass:"monsterinsights-term",domProps:{textContent:t._s(t.text_per_year)}})]),s("a",{staticClass:"monsterinsights-button monsterinsights-button-large",attrs:{href:t.$getUpgradeUrl("welcome-screen","upgrade-features"),rel:"noopener noreferrer",target:"_blank"},domProps:{textContent:t._s(t.text_upgrade_now)}})])])]),s("div",{staticClass:"monsterinsights-welcome-testimonials monsterinsights-welcome-block-inner"},[s("h3",{domProps:{textContent:t._s(t.text_testimonials)}}),t._l(t.testimonials,(function(e,o){return s("div",{key:o,staticClass:"monsterinsights-welcome-testimonial"},[s("div",{staticClass:"monsterinsights-welcome-testimonial-image"},[s("div",{class:e.image+" monsterinsights-bg-img"})]),s("div",{staticClass:"monsterinsights-welcome-testimonial-text"},[s("p",{domProps:{textContent:t._s(e.text)}}),s("p",[s("strong",{domProps:{textContent:t._s(e.author)}}),t._v(", "+t._s(e.function))])])])}))],2),s("div",{staticClass:"monsterinsights-welcome-footer-upsell monsterinsights-welcome-block-inner"},[s("div",{staticClass:"monsterinsights-welcome-left"},[s("a",{staticClass:"monsterinsights-button",attrs:{href:t.wizard_url},domProps:{textContent:t._s(t.text_wizard_button)}})]),s("div",{staticClass:"monsterinsights-welcome-right"},[s("a",{staticClass:"monsterinsights-button monsterinsights-button-alt",attrs:{href:t.$getUpgradeUrl("welcome-screen","upgrade-testimonials"),rel:"noopener noreferrer",target:"_blank"},domProps:{textContent:t._s(t.text_upgrade_now)}})])])])])])},Ue=[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"monsterinsights-welcome-logo-container"},[s("div",{staticClass:"monsterinsights-welcome-logo monsterinsights-bg-img"})])},function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("h2",[s("span",[t._v("PRO")])])}],He=(s("8c6a"),s("a4cc")),ze={name:"WizardModuleWelcome",components:{WelcomeOverlay:He["a"]},data:function(){return{text_welcome_title:Object(c["a"])("Welcome to MonsterInsights","google-analytics-for-wordpress"),text_welcome_subtitle:Object(c["a"])("Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin","google-analytics-for-wordpress"),text_above_buttons:Object(c["a"])("MonsterInsights makes it “effortless” to setup Google Analytics in WordPress, the RIGHT Way. You can watch the video tutorial or use our 3 minute setup wizard.","google-analytics-for-wordpress"),text_wizard_button:Object(c["a"])("Launch the Wizard!","google-analytics-for-wordpress"),text_read_more_button:Object(c["a"])("Read the Full Guide","google-analytics-for-wordpress"),text_features_title:Object(c["a"])("MonsterInsights Features & Addons","google-analytics-for-wordpress"),text_features_subtitle:Object(c["a"])("Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market.","google-analytics-for-wordpress"),text_view_all_features:Object(c["a"])("See All Features","google-analytics-for-wordpress"),text_upgrade_to_pro:Object(c["a"])("Upgrade to PRO","google-analytics-for-wordpress"),text_per_year:Object(c["a"])("per year","google-analytics-for-wordpress"),text_upgrade_now:Object(c["a"])("Upgrade Now","google-analytics-for-wordpress"),text_testimonials:Object(c["a"])("Testimonials","google-analytics-for-wordpress"),wizard_url:this.$mi.wizard_url,features:[{name:Object(c["a"])("Universal Tracking","google-analytics-for-wordpress"),description:Object(c["a"])("Setup universal website tracking across devices and campaigns with just a few clicks (without any code).","google-analytics-for-wordpress"),icon:'<svg class="" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 192 192" enable-background="new 0 0 192 192" xml:space="preserve"><rect fill="none" width="192" height="192"></rect><g><g><path fill="#509FE2" d="M130,29v132c0,14.77,10.189,23,21,23c10,0,21-7,21-23V30c0-13.54-10-22-21-22S130,17.33,130,29z"></path></g><g><path fill="#ACBDC9" d="M75,96v65c0,14.77,10.19,23,21,23c10,0,21-7,21-23V97c0-13.54-10-22-21-22S75,84.33,75,96z"></path></g><g><circle fill="#D6E2EA" cx="41" cy="163" r="21"></circle></g></g></svg>'},{name:Object(c["a"])("Google Analytics Dashboard","google-analytics-for-wordpress"),description:Object(c["a"])("See your website analytics report right inside your WordPress dashboard with actionable insights.","google-analytics-for-wordpress"),icon:'<svg class="" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 75 76"><image width="69" height="56" xlink:href="data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEUAAAA4CAMAAACc78UEAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAANlBMVEUAAADU4OrU4OrU4OrU4OrU4OrU4OrU4OrU4OrU4OrU4OrU4OrU4OrU4OrU4OrU4OrU4OoAAACAdzTSAAAAEHRSTlMAEHCvv2CPMECA35/vz1Agb16hXgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAAHdElNRQfjBgcLLAR8mk7DAAAAlklEQVRIx+3XvQ7CMAwE4GuduM0f5P2fFoewICGk2ghl8C23fUpO6VBg2ymYQhFA6OYwDjvSO86/KyHlZxPPLlyvKywrkrSsuTXpQ7peVgQZM+bRNznZ6KRV2kshnbJ/uFHWrDsfV5krV9as++Wu6ylN+ym+rXtCmeSKK6644oorrrjiykqKMUsp958oKHZk/H7FZEzEA/X+Y6vtpvg9AAAAAElFTkSuQmCC"></image> <image id="Vector_Smart_Object-2" data-name="Vector Smart Object" x="15" y="19" width="40" height="25" xlink:href="data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAZCAMAAAB0BpxXAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAANlBMVEUAAABQn+BQn+BQn+BQn+BQn+BQn+BQn+BQn+BQn+BQn+BQn+BQn+BQn+BQn+BQn+BQn+AAAAD+uSRLAAAAEHRSTlMAEGCAUO/fMCCfz3Cvv0CP0Y9aNgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAAHdElNRQfjBgcLLAR8mk7DAAABC0lEQVQ4y4VS0QKEIAgrTU+tcP//tQd6npAP8dYcMca27aV25717I3EdAVzx88ZLjcfM/YWYgbynApym/QJCThoKiKITuBX46WOC1vNjREOMQPHRNvNQ7nMsYGIEXDyFn9RwpoTKQkETO/vXYUDXl0bVjgFirNdEkc1ionE88RTaXED4eyY69L/M0lBEFlfWmxaMGo+ySVqIbPZN3nsqwwsZcSw8/7+nnNdR77ACJUhVXYQWDXaJacE5iEbgCJKSzctedBTdy1UlSHvWemKLTGonnXUjPPPxy4WNBxNLj8lES/OcTGSafzSio6zyNZh0tCwgS5Cmt+NI5odtxycquyH451HcEiRxnR7AF4SxERp7xl7rAAAAAElFTkSuQmCC"></image> <image id="wordpress" x="35" y="35" width="39" height="39" xlink:href="data:img/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAMAAAC7faEHAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAACo1BMVEX////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////9/v75+/vu8vTT3OLI09vH09vI1NvN197J1NzZ4Ob19/ji6OzF0dnW3uTy9ff+/v7t8fTR2uHt8fPd5On7/Pzj6O3L1t28ydOzw86ywc24xtHAzdbT3OPs8PP+/v/6+/zQ2uH8/P3r7/LG0tr29/n7/P3V3uSsvcm6yNLk6u3F0dr2+Pnn7O/M1t62xdDBztf4+frE0Nnw8/XH0tuuv8rk6e3E0Nj8/f2tvsqyws34+vvv8/Xq7vHCz9fCz9i3xtC/zNXH0trK1dzS3OLh5+yuvsq7ydPa4ufq7/L5+vvz9ffl6+7O2N/o7fDk6u7P2eDz9ve8ytTp7vHc4+jh5+vM1962xc/Y4OXj6e319/ne5enDz9i1xM/L1d3p7fGzws2vv8v9/f7S2+L3+Pm0w86xwczY4Obx9Pbg5uvm6+/N19+9y9Tm6+7u8fTb4ufU3eOvwMvf5erQ2eDc5OnK1d33+fry9PbZ4eawwMzV3ePf5urX3+Wtvsng5+vb4+jl6u709vjp7fDv8vTe5eoAAABRfI6RAAAAW3RSTlMABRICD0uIq8jEqHc6O4734nkxW5EY6mQBmHYNpHiJaGL1IwfZmms21DX6F3JT0JAOPlkbaSthTxQm1qlsXDAg0jPdCwrcoF0Jam9FX+W4IROXjC0uKEBtf3tmY0JV1QAAAAFiS0dE4CgP/zAAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAAHdElNRQfjBgcLLAR8mk7DAAADY0lEQVQ4y4VU91/TMRANTtziwr33QNx7i3tvPUaRCtaKVMVRSqlwQquIRYoIigNlFFHrFmSIuFDcG+e/4l2+tkBx3A/Ju7v3yUsuyQlRzzwaNBT/sUaNmzT1BIBmzVu0/DurVes2UGNtvdr9kdW+Gbhbh471aV6urH+AC3bydmN17qIkAoNUwZtDVCr1llAl0LUOrVt3GQzbqtmmpLXbw1U7JOpRmydpocERWt3OXbsj9+zdt18fZQiPNnLYq4bWk/0Y04HYuD3otIPxoE8wc6KXk9abPcshf/1hrG2J5iNJTOzTV6H160/OUat2Z3IdGh48BuYUA+UGKLyBBG1JBktqXdrxNIqfCGGtQZI3mJAm3abKOKk6hZnWDLIEE+Jpedy4dK4304YQCDjDsTRLCp5N9+cynsvC8xyy6Uw0Dh1GvOEELmTn0Jgr9fII2RnkE7ho03AZRxDPh+ZgKLhE02VOWwlcYXA+CsBxNTSa/JFC+NKkuwbX42i+welkOqI2ktFNgCArqCnhKcQoLrHjFp5yCd92CmcA3CmEIt6whxjN95p3F1HvFN7nFC6G2BIsLbtH/hgxlsaI7HhEu1O4nN9BMYH7EIaYU/GA/HFiPI0P8x9RXUt/C9tp//CYwBNIQIzVKLwJNFaGPaXwxd/C6c8I0EawKiAZn4OdSzZRTOL9V9myEE2KcHlpcaAivOMFYiYkUHiyEA1B1i+TCpIjhQss+JJCIRgZlUFrlm4mZwrVmb+PPe0V6URI4ZjXGKll4Wtv6GW8fcRlmkq8aVzAd8ZC1iDhcuN7RAsLVzp4L8H8sqYTb4YU1p2jBenucl8eI8BaBbZMLMnVVxGcKd8Vf7XAaDiDyHdnthKvhBYxhCI6tCZebqzkzeIFP+QZE+XdGUq4hh8JbcECKONHM3uO8qBb8wWo9UYV391V5W/wkT6BowJcywkx148co9UCDzUASZL3+RYYskHzgWnzXP9yvmwXZVU2LQRkSV5qNe1UVc3xmQtqPvBC+Rditr6ygTnvS8XtfB28CVLL1uHXqnZDWKS0i6/qIkfM229Hv1ec3vVDRvwW121ES5YqTF22QxP06afeX3GXLXfvaytWQn3zEn8w90Y5dNXqvzTeNQt9XCxP77X/aOTCd936DT03bmrp4Rb/BQ/D/XRsuY9vAAAAAElFTkSuQmCC"></image></svg>'},{name:Object(c["a"])("Real-time Stats","google-analytics-for-wordpress"),description:Object(c["a"])("Get real-time stats right inside WordPress to see who is online, what are they doing, and more.","google-analytics-for-wordpress"),icon:'<svg class="" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="14 14 32 32"><g>\t<path fill="#ACBCC8" d="M31,20.5v-1c0-0.276-0.224-0.5-0.5-0.5S30,19.224,30,19.5v1c0,0.276,0.224,0.5,0.5,0.5S31,20.776,31,20.5z"></path> <path fill="#ACBCC8" d="M30,39.5v1c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5v-1c0-0.276-0.224-0.5-0.5-0.5S30,39.224,30,39.5z"></path> <path fill="#ACBCC8" d="M39.5,30c-0.276,0-0.5,0.224-0.5,0.5s0.224,0.5,0.5,0.5h1c0.276,0,0.5-0.224,0.5-0.5S40.776,30,40.5,30 H39.5z"></path> <path fill="#ACBCC8" d="M19.5,30c-0.276,0-0.5,0.224-0.5,0.5s0.224,0.5,0.5,0.5h1c0.276,0,0.5-0.224,0.5-0.5S20.776,30,20.5,30 H19.5z"></path> <path fill="#D6E2EA" d="M41.284,25.958C41.739,27.223,42,28.58,42,30c0,6.617-5.383,12-12,12c-6.617,0-12-5.383-12-12 s5.383-12,12-12c2.993,0,5.727,1.108,7.831,2.927l2.826-2.827C37.824,15.56,34.096,14,30,14c-8.822,0-16,7.178-16,16 s7.178,16,16,16s16-7.178,16-16c0-2.545-0.613-4.944-1.675-7.083L41.284,25.958z"></path> <path fill="#509FE1" d="M24.975,25.146C24.877,25.049,24.749,25,24.621,25s-0.256,0.049-0.354,0.146l-2.121,2.121 c-0.195,0.195-0.195,0.512,0,0.707l6.439,6.439C28.964,34.792,29.466,35,30,35s1.036-0.208,1.414-0.586l14.5-14.5 c0.195-0.195,0.195-0.512,0-0.707l-2.121-2.121c-0.098-0.098-0.226-0.146-0.354-0.146s-0.256,0.049-0.354,0.146L30,30.172 L24.975,25.146z"></path></g></svg>'},{name:Object(c["a"])("Enhanced Ecommerce Tracking","google-analytics-for-wordpress"),description:Object(c["a"])("1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress.","google-analytics-for-wordpress"),icon:'<svg class="" xmlns="http://www.w3.org/2000/svg" width="96" viewBox="0 0 96 102"><path id="package" fill="#509fe1" d="M76.513,14.5a3.346,3.346,0,0,1,2.479,1.039,3.465,3.465,0,0,1,1.021,2.523V39.431a3.466,3.466,0,0,1-1.021,2.523,3.346,3.346,0,0,1-2.479,1.039h-35a3.346,3.346,0,0,1-2.479-1.039,3.466,3.466,0,0,1-1.021-2.523V18.06a3.466,3.466,0,0,1,1.021-2.523A3.346,3.346,0,0,1,41.513,14.5h4.375a6.68,6.68,0,0,1-.729-2.968,6.337,6.337,0,0,1,1.9-4.6A6.119,6.119,0,0,1,51.575,5a6.571,6.571,0,0,1,3.938,1.261,16.639,16.639,0,0,1,3.573,3.784,16.639,16.639,0,0,1,3.573-3.784A6.571,6.571,0,0,1,66.6,5a6.119,6.119,0,0,1,4.521,1.929,6.336,6.336,0,0,1,1.9,4.6,6.68,6.68,0,0,1-.729,2.968h4.229ZM66.6,8.562a3.2,3.2,0,0,0-1.458.3,5.947,5.947,0,0,0-1.823,1.558,41.215,41.215,0,0,0-2.99,4.081H66.6a2.8,2.8,0,0,0,2.078-.853,2.9,2.9,0,0,0,.839-2.115,2.9,2.9,0,0,0-.839-2.115A2.8,2.8,0,0,0,66.6,8.562ZM48.659,11.53a2.9,2.9,0,0,0,.839,2.115,2.8,2.8,0,0,0,2.078.853h6.271a41.215,41.215,0,0,0-2.99-4.081,5.947,5.947,0,0,0-1.823-1.558,3.2,3.2,0,0,0-1.458-.3,2.8,2.8,0,0,0-2.078.853A2.9,2.9,0,0,0,48.659,11.53Zm4.375,7.717H42.679v9.5H75.346v-9.5H64.992l2.625,2.671a1.288,1.288,0,0,1,0,1.632l-0.875.891a1.232,1.232,0,0,1-1.6,0l-5.1-5.194H57.992l-5.1,5.194a1.232,1.232,0,0,1-1.6,0l-0.875-.891a1.288,1.288,0,0,1,0-1.632Zm-10.354,19H75.346V33.494H42.679v4.749Z"></path><path id="cart" fill="#d5e2ea" d="M35.868,69.2l0.958,5.132H79.791a3.479,3.479,0,0,1,2.875,1.443,3.894,3.894,0,0,1,.8,3.207l-0.958,4.009A8.924,8.924,0,1,1,72.364,97.344a8.753,8.753,0,0,1-2.635-6.415,8.369,8.369,0,0,1,2.715-6.335H38.9a8.369,8.369,0,0,1,2.715,6.335,8.753,8.753,0,0,1-2.636,6.415,8.844,8.844,0,0,1-12.618,0,8.66,8.66,0,0,1-2.635-6.335,8.864,8.864,0,0,1,1.2-4.49A9.428,9.428,0,0,1,28.2,83.151L17.021,28.145H5.84A3.825,3.825,0,0,1,2.007,24.3V21.73A3.825,3.825,0,0,1,5.84,17.881H22.291a3.489,3.489,0,0,1,2.316.882,4.075,4.075,0,0,1,1.358,2.165L27.4,28.145"></path><path id="cart-2" data-name="cart" fill="#acbdc9" d="M27.4,28.145H90.173a3.634,3.634,0,0,1,3.035,1.443,3.486,3.486,0,0,1,.639,3.207L86.34,66.152A3.749,3.749,0,0,1,84.982,68.4a3.7,3.7,0,0,1-2.316.8h-46.8"></path></svg>'},{name:Object(c["a"])("Page Level Analytics","google-analytics-for-wordpress"),description:Object(c["a"])("Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site.","google-analytics-for-wordpress"),icon:'<svg class="" xmlns="http://www.w3.org/2000/svg" width="156" viewBox="0 0 156 156"> <rect fill="#d5e2e9" y="12" width="126" height="144" rx="8" ry="8"></rect> <rect fill="#acbdc9" x="16" y="132" width="94" height="6" rx="3" ry="3"></rect> <rect fill="#acbdc9" x="16" y="79" width="26" height="47" rx="3" ry="3"></rect> <rect fill="#acbdc9" x="48" y="119" width="62" height="6" rx="3" ry="3"></rect> <rect fill="#acbdc9" x="48" y="106" width="62" height="6" rx="3" ry="3"></rect> <rect fill="#acbdc9" x="48" y="92" width="62" height="6" rx="3" ry="3"></rect> <rect fill="#acbdc9" x="48" y="79" width="62" height="6" rx="3" ry="3"></rect> <rect fill="#acbdc9" x="16" y="56" width="62" height="6" rx="3" ry="3"></rect> <rect fill="#acbdc9" x="16" y="43" width="62" height="6" rx="3" ry="3"></rect> <rect fill="#acbdc9" x="16" y="30" width="62" height="6" rx="3" ry="3"></rect> <circle fill="#ffffff" cx="94.5" cy="42.5" r="35.5"></circle> <path fill="#54a0de" d="M155.386,96.172A2.214,2.214,0,0,1,156,97.813a3,3,0,0,1-.616,1.846l-4.716,4.512a2.551,2.551,0,0,1-1.846.82,1.948,1.948,0,0,1-1.641-.82L122.164,79.356a2.729,2.729,0,0,1-.616-1.641V74.844a44.053,44.053,0,0,1-12.919,7.69,42.454,42.454,0,0,1-36.4-2.974A43.1,43.1,0,0,1,56.744,64.077,41.43,41.43,0,0,1,51,42.647a41.43,41.43,0,0,1,5.742-21.431A43.1,43.1,0,0,1,72.227,5.733a42.863,42.863,0,0,1,42.862,0,43.1,43.1,0,0,1,15.483,15.483,41.43,41.43,0,0,1,5.742,21.431,41.258,41.258,0,0,1-2.768,14.971,44.07,44.07,0,0,1-7.691,12.92h2.871a2.217,2.217,0,0,1,1.641.615ZM93.658,75.459a32.1,32.1,0,0,0,16.406-4.409,32.573,32.573,0,0,0,12-12,32.729,32.729,0,0,0,0-32.812,32.573,32.573,0,0,0-12-12,32.728,32.728,0,0,0-32.812,0,32.58,32.58,0,0,0-12,12,32.728,32.728,0,0,0,0,32.813,32.58,32.58,0,0,0,12,12A32.1,32.1,0,0,0,93.658,75.459Z"></path><path fill="#d4e2e8" d="M112.786,52.128H78.724V28.066a0.934,0.934,0,0,0-.937-0.937H74.661a0.934,0.934,0,0,0-.937.938V56.191a0.933,0.933,0,0,0,.938.938h38.125a0.933,0.933,0,0,0,.937-0.937V53.066A0.933,0.933,0,0,0,112.786,52.128Z"></path> <path fill="#acbdc9" d="M102.864,34.55v0.078a0.717,0.717,0,0,1,.742-0.2,0.826,0.826,0,0,1,.586.508l7.031,14.688h-30V41.5l6.8-11.328a0.888,0.888,0,0,1,.742-0.43,0.9,0.9,0,0,1,.82.352L96.224,39Z"></path></svg>'},{name:Object(c["a"])("Affiliate Link & Ads Tracking","google-analytics-for-wordpress"),description:Object(c["a"])("Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking.","google-analytics-for-wordpress"),icon:'<svg class="" xmlns="http://www.w3.org/2000/svg" width="96" viewBox="0 0 96 102"><rect fill="#8ba4b7" x="41" y="60" width="14" height="42"></rect><path fill="#acbdc9" d="M14,71H82a0,0,0,0,1,0,0v3a2,2,0,0,1-2,2H16a2,2,0,0,1-2-2V71A0,0,0,0,1,14,71Z"></path><rect fill="#509fe2" y="5" width="96" height="66" rx="4.129" ry="4.129"></rect><path fill="#ffffff" d="M40.866,38.665l1.266-3.727L43.4,38.665H40.866ZM54.506,37.54a1.681,1.681,0,1,1-1.2.492A1.627,1.627,0,0,1,54.506,37.54Zm7.875-13.5a3.361,3.361,0,0,1,3.375,3.375v20.25a3.361,3.361,0,0,1-3.375,3.375H33.131a3.361,3.361,0,0,1-3.375-3.375V27.415a3.361,3.361,0,0,1,3.375-3.375h29.25ZM47.4,44.29a1.01,1.01,0,0,0,.879-0.457,1.2,1.2,0,0,0,.176-1.02l-3.8-10.9a1.957,1.957,0,0,0-.633-0.809,1.6,1.6,0,0,0-.984-0.316H41.217a1.6,1.6,0,0,0-.984.316,1.955,1.955,0,0,0-.633.809l-3.8,10.9a1.2,1.2,0,0,0,.176,1.02,1.01,1.01,0,0,0,.879.457h1.2a1.185,1.185,0,0,0,.668-0.211,0.86,0.86,0,0,0,.387-0.562L39.67,42.04h4.922l0.563,1.477a0.86,0.86,0,0,0,.387.563,1.185,1.185,0,0,0,.668.211h1.2Zm12.164-1.125V31.915a1.083,1.083,0,0,0-1.125-1.125H57.319a1.083,1.083,0,0,0-1.125,1.125v2.531a5.309,5.309,0,0,0-1.687-.281,5.063,5.063,0,1,0,0,10.125,4.64,4.64,0,0,0,1.969-.422,1.064,1.064,0,0,0,.844.422h1.125A1.083,1.083,0,0,0,59.569,43.165Z"></path><path fill="#2e7fbe" d="M73,0h1a2,2,0,0,1,2,2v8H71V2A2,2,0,0,1,73,0ZM70.5,10h6a2.5,2.5,0,0,1,0,5h-6A2.5,2.5,0,0,1,70.5,10Z"></path><path fill="#2e7fbe" d="M48,0h1a2,2,0,0,1,2,2v8H46V2A2,2,0,0,1,48,0ZM45.5,10h6a2.5,2.5,0,0,1,0,5h-6A2.5,2.5,0,0,1,45.5,10Z"></path><path fill="#2e7fbe" d="M23,0h1a2,2,0,0,1,2,2v8H21V2A2,2,0,0,1,23,0ZM20.5,10h6a2.5,2.5,0,0,1,0,5h-6A2.5,2.5,0,0,1,20.5,10Z"></path></svg>'},{name:Object(c["a"])("EU Compliance (GDPR Friendly)","google-analytics-for-wordpress"),description:Object(c["a"])("Make Google Analytics compliant with GDPR and other privacy regulations automatically.","google-analytics-for-wordpress"),icon:'<svg class="" xmlns="http://www.w3.org/2000/svg" width="96" viewBox="0 0 96 102"><path fill="#adbdc7" d="M28.884,78.139a0.832,0.832,0,0,0-.479-0.437,0.932,0.932,0,0,0-.629,0,0.832,0.832,0,0,0-.479.438l-1.777,3.609-3.992.574a0.83,0.83,0,0,0-.561.328,0.914,0.914,0,0,0-.191.6,0.839,0.839,0,0,0,.26.574l2.9,2.816-0.684,3.992a0.864,0.864,0,0,0,.123.615,0.8,0.8,0,0,0,.506.369,0.843,0.843,0,0,0,.629-0.082l3.582-1.859,3.582,1.859a0.843,0.843,0,0,0,.629.082,0.8,0.8,0,0,0,.506-0.369,0.863,0.863,0,0,0,.123-0.615l-0.684-3.992,2.9-2.816a0.839,0.839,0,0,0,.26-0.574,0.912,0.912,0,0,0-.191-0.6,0.83,0.83,0,0,0-.56-0.328l-3.992-.574Zm-14-14a0.832,0.832,0,0,0-.479-0.438,0.932,0.932,0,0,0-.629,0,0.832,0.832,0,0,0-.479.438l-1.777,3.609-3.992.574a0.83,0.83,0,0,0-.561.328,0.913,0.913,0,0,0-.191.6,0.839,0.839,0,0,0,.26.574l2.9,2.816L9.251,76.635a0.864,0.864,0,0,0,.123.615,0.8,0.8,0,0,0,.506.369,0.843,0.843,0,0,0,.629-0.082l3.582-1.859,3.582,1.859a0.843,0.843,0,0,0,.629.082,0.8,0.8,0,0,0,.506-0.369,0.863,0.863,0,0,0,.123-0.615l-0.684-3.992,2.9-2.816a0.839,0.839,0,0,0,.26-0.574,0.912,0.912,0,0,0-.191-0.6,0.83,0.83,0,0,0-.561-0.328l-3.992-.574Zm-5-19A0.832,0.832,0,0,0,9.406,44.7a0.932,0.932,0,0,0-.629,0,0.832,0.832,0,0,0-.479.438L6.521,48.749l-3.992.574a0.83,0.83,0,0,0-.561.328,0.913,0.913,0,0,0-.191.6,0.839,0.839,0,0,0,.26.574l2.9,2.817L4.251,57.635a0.864,0.864,0,0,0,.123.615,0.8,0.8,0,0,0,.506.369,0.843,0.843,0,0,0,.629-0.082l3.582-1.859,3.582,1.859a0.843,0.843,0,0,0,.629.082,0.8,0.8,0,0,0,.506-0.369,0.863,0.863,0,0,0,.123-0.615l-0.684-3.992,2.9-2.817a0.839,0.839,0,0,0,.26-0.574,0.912,0.912,0,0,0-.191-0.6,0.83,0.83,0,0,0-.561-0.328l-3.992-.574Zm5-20a0.832,0.832,0,0,0-.479-0.437,0.932,0.932,0,0,0-.629,0,0.832,0.832,0,0,0-.479.438l-1.777,3.609-3.992.574a0.83,0.83,0,0,0-.561.328,0.913,0.913,0,0,0-.191.6,0.839,0.839,0,0,0,.26.574l2.9,2.817L9.251,37.635a0.864,0.864,0,0,0,.123.615,0.8,0.8,0,0,0,.506.369,0.843,0.843,0,0,0,.629-0.082l3.582-1.859,3.582,1.859a0.843,0.843,0,0,0,.629.082,0.8,0.8,0,0,0,.506-0.369,0.863,0.863,0,0,0,.123-0.615l-0.684-3.992,2.9-2.817a0.839,0.839,0,0,0,.26-0.574,0.912,0.912,0,0,0-.191-0.6,0.83,0.83,0,0,0-.561-0.328l-3.992-.574Zm14-15A0.832,0.832,0,0,0,28.406,9.7a0.931,0.931,0,0,0-.629,0,0.832,0.832,0,0,0-.479.437l-1.777,3.609-3.992.574a0.83,0.83,0,0,0-.561.328,0.914,0.914,0,0,0-.191.6,0.839,0.839,0,0,0,.26.574l2.9,2.816-0.684,3.992a0.864,0.864,0,0,0,.123.615,0.8,0.8,0,0,0,.506.369,0.843,0.843,0,0,0,.629-0.082l3.582-1.859,3.582,1.859a0.843,0.843,0,0,0,.629.082,0.8,0.8,0,0,0,.506-0.369,0.863,0.863,0,0,0,.123-0.615l-0.684-3.992,2.9-2.816a0.839,0.839,0,0,0,.26-0.574,0.912,0.912,0,0,0-.191-0.6,0.83,0.83,0,0,0-.56-0.328l-3.992-.574Zm19.232,74a0.832,0.832,0,0,1,.479-0.437,0.932,0.932,0,0,1,.629,0,0.832,0.832,0,0,1,.478.438l1.777,3.609,3.992,0.574a0.83,0.83,0,0,1,.561.328,0.914,0.914,0,0,1,.191.6,0.839,0.839,0,0,1-.26.574l-2.9,2.816,0.684,3.992a0.864,0.864,0,0,1-.123.615,0.8,0.8,0,0,1-.506.369,0.843,0.843,0,0,1-.629-0.082l-3.582-1.859-3.582,1.859a0.843,0.843,0,0,1-.629.082,0.8,0.8,0,0,1-.506-0.369,0.863,0.863,0,0,1-.123-0.615l0.684-3.992-2.9-2.816a0.839,0.839,0,0,1-.26-0.574,0.912,0.912,0,0,1,.191-0.6,0.83,0.83,0,0,1,.56-0.328l3.992-.574Zm20-6a0.832,0.832,0,0,1,.479-0.437,0.932,0.932,0,0,1,.629,0,0.832,0.832,0,0,1,.479.438l1.777,3.609,3.992,0.574a0.83,0.83,0,0,1,.561.328,0.914,0.914,0,0,1,.191.6,0.839,0.839,0,0,1-.26.574l-2.9,2.816,0.684,3.992a0.864,0.864,0,0,1-.123.615,0.8,0.8,0,0,1-.506.369,0.843,0.843,0,0,1-.629-0.082l-3.582-1.859-3.582,1.859a0.843,0.843,0,0,1-.629.082,0.8,0.8,0,0,1-.506-0.369,0.863,0.863,0,0,1-.123-0.615l0.684-3.992-2.9-2.816a0.839,0.839,0,0,1-.26-0.574,0.912,0.912,0,0,1,.191-0.6,0.83,0.83,0,0,1,.56-0.328l3.992-.574Zm14-14a0.832,0.832,0,0,1,.479-0.438,0.932,0.932,0,0,1,.629,0,0.832,0.832,0,0,1,.479.438l1.777,3.609,3.992,0.574a0.83,0.83,0,0,1,.561.328,0.914,0.914,0,0,1,.191.6,0.839,0.839,0,0,1-.26.574l-2.9,2.816,0.684,3.992a0.864,0.864,0,0,1-.123.615,0.8,0.8,0,0,1-.506.369,0.843,0.843,0,0,1-.629-0.082l-3.582-1.859-3.582,1.859a0.843,0.843,0,0,1-.629.082,0.8,0.8,0,0,1-.506-0.369,0.863,0.863,0,0,1-.123-0.615l0.684-3.992-2.9-2.816a0.839,0.839,0,0,1-.26-0.574,0.912,0.912,0,0,1,.191-0.6,0.83,0.83,0,0,1,.561-0.328l3.992-.574Zm5-19a0.832,0.832,0,0,1,.479-0.437,0.932,0.932,0,0,1,.629,0,0.832,0.832,0,0,1,.479.438l1.777,3.609,3.992,0.574a0.83,0.83,0,0,1,.561.328,0.914,0.914,0,0,1,.191.6,0.839,0.839,0,0,1-.26.574l-2.9,2.817,0.684,3.992a0.864,0.864,0,0,1-.123.615,0.8,0.8,0,0,1-.506.369,0.843,0.843,0,0,1-.629-0.082l-3.582-1.859-3.582,1.859a0.843,0.843,0,0,1-.629.082,0.8,0.8,0,0,1-.506-0.369,0.863,0.863,0,0,1-.123-0.615l0.684-3.992-2.9-2.817a0.839,0.839,0,0,1-.26-0.574,0.912,0.912,0,0,1,.191-0.6,0.83,0.83,0,0,1,.561-0.328l3.992-.574Zm-5-20a0.832,0.832,0,0,1,.479-0.437,0.932,0.932,0,0,1,.629,0,0.832,0.832,0,0,1,.479.438l1.777,3.609,3.992,0.574a0.83,0.83,0,0,1,.561.328,0.914,0.914,0,0,1,.191.6,0.839,0.839,0,0,1-.26.574l-2.9,2.817,0.684,3.992a0.864,0.864,0,0,1-.123.615,0.8,0.8,0,0,1-.506.369,0.843,0.843,0,0,1-.629-0.082l-3.582-1.859-3.582,1.859a0.843,0.843,0,0,1-.629.082,0.8,0.8,0,0,1-.506-0.369,0.863,0.863,0,0,1-.123-0.615l0.684-3.992-2.9-2.817a0.839,0.839,0,0,1-.26-0.574,0.912,0.912,0,0,1,.191-0.6,0.83,0.83,0,0,1,.561-0.328l3.992-.574Zm-14-15A0.832,0.832,0,0,1,68.594,9.7a0.931,0.931,0,0,1,.629,0,0.832,0.832,0,0,1,.479.437l1.777,3.609,3.992,0.574a0.83,0.83,0,0,1,.561.328,0.914,0.914,0,0,1,.191.6,0.839,0.839,0,0,1-.26.574l-2.9,2.816,0.684,3.992a0.864,0.864,0,0,1-.123.615,0.8,0.8,0,0,1-.506.369,0.843,0.843,0,0,1-.629-0.082l-3.582-1.859-3.582,1.859a0.843,0.843,0,0,1-.629.082,0.8,0.8,0,0,1-.506-0.369,0.863,0.863,0,0,1-.123-0.615l0.684-3.992-2.9-2.816a0.839,0.839,0,0,1-.26-0.574,0.912,0.912,0,0,1,.191-0.6,0.83,0.83,0,0,1,.56-0.328l3.992-.574Zm-20-6A0.832,0.832,0,0,1,48.594,3.7a0.931,0.931,0,0,1,.629,0,0.832,0.832,0,0,1,.478.438l1.777,3.609,3.992,0.574a0.83,0.83,0,0,1,.561.328,0.914,0.914,0,0,1,.191.6,0.839,0.839,0,0,1-.26.574l-2.9,2.816,0.684,3.992a0.864,0.864,0,0,1-.123.615,0.8,0.8,0,0,1-.506.369,0.843,0.843,0,0,1-.629-0.082l-3.582-1.859-3.582,1.859a0.843,0.843,0,0,1-.629.082,0.8,0.8,0,0,1-.506-0.369,0.863,0.863,0,0,1-.123-0.615l0.684-3.992-2.9-2.816a0.839,0.839,0,0,1-.26-0.574,0.913,0.913,0,0,1,.191-0.6,0.829,0.829,0,0,1,.56-0.328l3.992-.574Z"></path><path fill="#509fe2" d="M65.147,42.845a3.346,3.346,0,0,0-.562-1.9,3.032,3.032,0,0,0-1.547-1.2l-13.5-5.625a2.988,2.988,0,0,0-2.531,0l-13.5,5.625a3.032,3.032,0,0,0-1.547,1.2,3.346,3.346,0,0,0-.562,1.9,32.51,32.51,0,0,0,2.391,12.445,28.183,28.183,0,0,0,5.836,9.07,20.888,20.888,0,0,0,7.383,5.2,2.988,2.988,0,0,0,2.531,0,20.754,20.754,0,0,0,6.75-4.57,29.547,29.547,0,0,0,6.188-8.859A32.516,32.516,0,0,0,65.147,42.845ZM46.8,60.7a1.026,1.026,0,0,1-1.547,0l-7.312-7.312a1.106,1.106,0,0,1,0-1.617l1.547-1.547a1.106,1.106,0,0,1,1.617,0l4.922,4.922L56.569,44.6a1.106,1.106,0,0,1,1.617,0l1.547,1.547a1.106,1.106,0,0,1,0,1.617Z"></path></svg>'},{name:Object(c["a"])("Custom Dimensions","google-analytics-for-wordpress"),description:Object(c["a"])("Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click.","google-analytics-for-wordpress"),icon:'<svg class="" xmlns="http://www.w3.org/2000/svg" width="96" viewBox="0 0 96 102"><path fill="#509fe2" d="M93.623,52.744A9.542,9.542,0,0,1,91.9,64.718a8.43,8.43,0,0,1-5.919,2.29H47.033a8.569,8.569,0,0,1-5.919-2.225,9.134,9.134,0,0,1-2.991-5.627A9.485,9.485,0,0,1,39.4,52.744l14.894-24.6V8.383H53.27a2.906,2.906,0,0,1-2.164-.916,3.072,3.072,0,0,1-.891-2.225V3.149A3.072,3.072,0,0,1,51.106.924,2.906,2.906,0,0,1,53.27.008H79.748a2.906,2.906,0,0,1,2.164.916A3.072,3.072,0,0,1,82.8,3.149V5.242a3.072,3.072,0,0,1-.891,2.225,2.906,2.906,0,0,1-2.164.916H78.729v19.76ZM55.562,41.883H77.456l-6.11-10.207a3.9,3.9,0,0,1-.764-2.355V8.383H62.436V29.32a3.9,3.9,0,0,1-.764,2.355Z"></path><path fill="#d6e2ea" d="M68,99.334a11.55,11.55,0,0,0,4.246,0l1.061,1.837a1.418,1.418,0,0,0,.863.722,2.006,2.006,0,0,0,1.128.065,14.624,14.624,0,0,0,4.246-2.492,1.388,1.388,0,0,0,.6-0.984,1.94,1.94,0,0,0-.2-1.115l-1.061-1.837A13.05,13.05,0,0,0,81,91.987h2.123a1.686,1.686,0,0,0,1.128-.394,1.307,1.307,0,0,0,.464-1.05,11.23,11.23,0,0,0,0-4.855,1.175,1.175,0,0,0-.464-0.919,1.686,1.686,0,0,0-1.128-.394H81A15.309,15.309,0,0,0,78.879,80.7l1.061-1.837a1.94,1.94,0,0,0,.2-1.115,1.388,1.388,0,0,0-.6-0.984A12.6,12.6,0,0,0,75.3,74.4a1.437,1.437,0,0,0-1.128-.066,1.419,1.419,0,0,0-.863.722l-1.061,1.968A13.838,13.838,0,0,0,68,76.9l-1.062-1.837a1.419,1.419,0,0,0-.862-0.722,1.438,1.438,0,0,0-1.128.066A12.6,12.6,0,0,0,60.7,76.766a1.389,1.389,0,0,0-.6.984,1.941,1.941,0,0,0,.2,1.115L61.363,80.7a15.312,15.312,0,0,0-2.123,3.674H57.117a1.686,1.686,0,0,0-1.128.394,1.759,1.759,0,0,0-.6.919,12.766,12.766,0,0,0,.133,4.855,1.307,1.307,0,0,0,.464,1.05,1.686,1.686,0,0,0,1.128.394H59.24a13.053,13.053,0,0,0,2.123,3.543L60.3,97.366a1.941,1.941,0,0,0-.2,1.115,1.389,1.389,0,0,0,.6.984,14.624,14.624,0,0,0,4.246,2.492,2.007,2.007,0,0,0,1.128-.065,1.419,1.419,0,0,0,.862-0.722Zm-1.327-7.741A5.082,5.082,0,0,1,65.543,86.8a4.6,4.6,0,0,1,3.185-3.215,5.074,5.074,0,0,1,4.843,1.05A5.276,5.276,0,0,1,74.7,89.494a4.591,4.591,0,0,1-3.184,3.149A5.074,5.074,0,0,1,66.671,91.593Z"></path><path fill="#acbdc9" d="M51.279,72.568a21.653,21.653,0,0,0,0-8.266l4.511-2.231a3.077,3.077,0,0,0,1.393-1.706,3.115,3.115,0,0,0-.066-2.1,30.1,30.1,0,0,0-5.573-8.66,3.226,3.226,0,0,0-1.924-1.115,2.645,2.645,0,0,0-2.057.459l-3.848,2.1a25.939,25.939,0,0,0-7.3-4.068V42.521a2.878,2.878,0,0,0-.8-2.034,3.731,3.731,0,0,0-1.858-1.115,30.03,30.03,0,0,0-10.085.131,2.84,2.84,0,0,0-1.924.984,3.026,3.026,0,0,0-.73,2.034v4.461a22.237,22.237,0,0,0-7.3,4.068L9.88,48.95a3.054,3.054,0,0,0-2.189-.459A2.7,2.7,0,0,0,5.9,49.606a32.637,32.637,0,0,0-5.573,8.66,2.5,2.5,0,0,0-.133,2.1,3.408,3.408,0,0,0,1.46,1.706L6.032,64.3a21.654,21.654,0,0,0,0,8.266L1.653,74.8a2.825,2.825,0,0,0-1.46,1.64A2.643,2.643,0,0,0,.326,78.6,32.636,32.636,0,0,0,5.9,87.263a2.909,2.909,0,0,0,1.791.984,3.477,3.477,0,0,0,2.189-.328l3.848-2.23a22.345,22.345,0,0,0,7.3,4.2v4.461a3.107,3.107,0,0,0,.73,1.968,2.744,2.744,0,0,0,1.924,1.05,27.911,27.911,0,0,0,10.085,0,2.889,2.889,0,0,0,1.858-1.05,2.957,2.957,0,0,0,.8-1.968V89.887a24.326,24.326,0,0,0,7.3-4.2l3.848,2.23a3.007,3.007,0,0,0,2.057.328,3.535,3.535,0,0,0,1.924-.984q4.379-5.248,5.573-8.66a2.643,2.643,0,0,0,.133-2.165,2.825,2.825,0,0,0-1.46-1.64ZM35.754,75.323a11.432,11.432,0,0,1-7.7,2.493,8.964,8.964,0,0,1-6.17-2.69,8.772,8.772,0,0,1-2.72-6.1,10.684,10.684,0,0,1,2.521-7.479,10.691,10.691,0,0,1,7.563-2.624,9.649,9.649,0,0,1,9.023,8.922A10.684,10.684,0,0,1,35.754,75.323Z"></path></svg>'}],pro_features:[Object(c["a"])("Ecommerce Report","google-analytics-for-wordpress"),Object(c["a"])("Form Conversions","google-analytics-for-wordpress"),Object(c["a"])("Custom Dimensions","google-analytics-for-wordpress"),Object(c["a"])("Author Tracking","google-analytics-for-wordpress"),Object(c["a"])("Google Optimize","google-analytics-for-wordpress"),Object(c["a"])("Category / Tags Tracking","google-analytics-for-wordpress"),Object(c["a"])("WooCommerce","google-analytics-for-wordpress"),Object(c["a"])("Easy Digital Downloads","google-analytics-for-wordpress"),Object(c["a"])("MemberPress","google-analytics-for-wordpress"),Object(c["a"])("LifterLMS","google-analytics-for-wordpress")],testimonials:[{image:"monsterinsights-testimonial-one",text:"It just works. Really easy way to insert Google Analytics tracking code and keep it there when switching themes. No need to copy/paste code anywhere. This is the best way to handle Google Analytics in WordPress.",author:"Steven Gliebe",function:"Founder of ChurchThemes"},{image:"monsterinsights-testimonial-two",text:"Analytics for PROs! This plugin brings it all, great features and helpful info to easily see what you are doing.",author:"Frank van der Sluijs",function:"Business Consultant"}],welcome_video:!1}},computed:{welcome_title:function(){return this.$mi.first_name&&this.$mi.first_name.length<28?this.text_welcome_title+" "+this.$mi.first_name:this.text_welcome_title}},methods:{feature_class:function(t){return"monsterinsights-bg-img "+t}}},De=ze,Be=Object(h["a"])(De,Ie,Ue,!1,null,null,null),Xe=Be.exports,Re=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div")},We=[],Ge={name:"WizardModuleMigration"},Ve=Ge,Ze=Object(h["a"])(Ve,Re,We,!1,null,null,null),Fe=Ze.exports,Ne=s("619c"),Qe=s("7460"),Ye={install:function(t){t.prototype.$swal&&(t.prototype.$mi_saving_toast=function(){},t.prototype.$mi_success_toast=function(){},t.prototype.$mi_error_toast=function(){},t.prototype.$mi_loading_toast=function(){t.prototype.$swal({type:"info",title:Object(c["a"])("Loading settings","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){t.prototype.$swal.showLoading()}})})}},Ke=Ye,qe=s("4360"),Je=s("e37d"),ts=s("6c6b"),es=document.getElementById("monsterinsights-vue-onboarding-wizard"),ss=document.getElementById("monsterinsights-welcome"),os=document.getElementById("monsterinsights-migration-wizard");if(te["a"].config.productionTip=!1,es||ss||os)if(Object(ts["a"])({ctrl:!0}),te["a"].use(r["a"]),te["a"].use(Ne["a"]),te["a"].use(Je["a"],{defaultTemplate:'<div class="monsterinsights-tooltip" role="tooltip"><div class="monsterinsights-tooltip-arrow"></div><div class="monsterinsights-tooltip-inner"></div></div>',defaultArrowSelector:".monsterinsights-tooltip-arrow, .monsterinsights-tooltip__arrow",defaultInnerSelector:".monsterinsights-tooltip-inner, .monsterinsights-tooltip__inner"}),te["a"].use(Qe["a"]),Object(c["c"])(window.monsterinsights.translations,"google-analytics-for-wordpress"),ss)new te["a"]({store:qe["a"],mounted:function(){qe["a"].dispatch("$_app/init")},render:function(t){return t(Xe)}}).$mount(ss);else if(os){var as={install:function(t){t.prototype.$wizard_steps=["welcome","authenticate","recommended_settings"],t.prototype.$mi&&t.prototype.$mi.had_ecommerce&&t.prototype.$wizard_steps.push("pro"),t.prototype.$wizard_steps.push("success")}};te["a"].use(as),te["a"].use(Ke),new te["a"]({store:qe["a"],mounted:function(){qe["a"].dispatch("$_app/init"),qe["a"].dispatch("$_license/getLicense"),qe["a"].dispatch("$_auth/getAuth"),qe["a"].dispatch("$_addons/getAddons")},render:function(t){return t(Fe)}}).$mount(os)}else{var ns={install:function(t){t.prototype.$wizard_steps=["welcome","authenticate"],t.prototype.$mi&&!t.prototype.$mi.network&&t.prototype.$wizard_steps.push("recommended_settings"),t.prototype.$mi&&!t.prototype.$mi.migrated&&t.prototype.$wizard_steps.push("recommended_addons"),t.prototype.$wizard_steps.push("success")}};te["a"].use(ns),te["a"].use(Ke),new te["a"]({store:qe["a"],mounted:function(){qe["a"].dispatch("$_app/init"),qe["a"].dispatch("$_license/getLicense"),qe["a"].dispatch("$_auth/getAuth"),qe["a"].dispatch("$_addons/getAddons")},render:function(t){return t(Te)}}).$mount(es)}},1:function(t,e,s){t.exports=s("0951")},1608:function(t,e,s){"use strict";var o=s("346d"),a=s.n(o);a.a},2532:function(t,e,s){"use strict";var o=s("23e7"),a=s("5a34"),n=s("1d80"),r=s("ab13");o({target:"String",proto:!0,forced:!r("includes")},{includes:function(t){return!!~String(n(this)).indexOf(a(t),arguments.length>1?arguments[1]:void 0)}})},"346d":function(t,e,s){},"5a34":function(t,e,s){var o=s("44e7");t.exports=function(t){if(o(t))throw TypeError("The method doesn't accept regular expressions");return t}},7795:function(t,e,s){},"8c6a":function(t,e,s){},ab13:function(t,e,s){var o=s("b622"),a=o("match");t.exports=function(t){var e=/./;try{"/./"[t](e)}catch(s){try{return e[a]=!1,"/./"[t](e)}catch(o){}}return!1}},caad:function(t,e,s){"use strict";var o=s("23e7"),a=s("4d64").includes,n=s("44d2"),r=s("ae40"),i=r("indexOf",{ACCESSORS:!0,1:0});o({target:"Array",proto:!0,forced:!i},{includes:function(t){return a(this,t,arguments.length>1?arguments[1]:void 0)}}),n("includes")}});
lite/includes/admin/onboarding-wizard.php CHANGED
@@ -38,10 +38,8 @@ class MonsterInsights_Onboarding_Wizard {
38
  'get_install_errors',
39
  ) );
40
 
41
- add_action( 'wp_ajax_monsterinsights_onboarding_disable_wpforms_onboarding', array(
42
- $this,
43
- 'disable_wp_forms_onboarding_process',
44
- ) );
45
 
46
  // This will only be called in the Onboarding Wizard context because of previous checks.
47
  add_filter( 'monsterinsights_maybe_authenticate_siteurl', array( $this, 'change_return_url' ) );
@@ -443,27 +441,32 @@ class MonsterInsights_Onboarding_Wizard {
443
 
444
  }
445
 
446
- /**
447
- * Disable WPForms Welcome Screen/Onboarding.
448
- *
449
- * This needs to be done, so that MonsterInsights Onboarding goe to MonsterInsights
450
- * Screen rather than displaying WPForms Welcome Screen when a user has gone
451
- * through MonsterInsights Onboarding.
452
- *
453
- * @since 8.4.0
454
- *
455
- * @return bool
456
- */
457
- public function disable_wp_forms_onboarding_process() {
458
- if ( function_exists( 'wpforms' ) ) {
459
- if ( get_transient( 'wpforms_activation_redirect' ) ) {
460
- delete_transient( 'wpforms_activation_redirect' );
461
 
462
- wp_send_json_success();
463
- }
464
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
465
 
466
- wp_send_json_success();
467
  }
468
 
469
  }
38
  'get_install_errors',
39
  ) );
40
 
41
+ add_action( 'monsterinsights_after_ajax_activate_addon', array( $this, 'disable_aioseo_onboarding_wizard' ) );
42
+ add_action( 'monsterinsights_after_ajax_activate_addon', array( $this, 'disable_wpforms_onboarding_wizard' ) );
 
 
43
 
44
  // This will only be called in the Onboarding Wizard context because of previous checks.
45
  add_filter( 'monsterinsights_maybe_authenticate_siteurl', array( $this, 'change_return_url' ) );
441
 
442
  }
443
 
444
+ public function disable_aioseo_onboarding_wizard( $plugin ) {
445
+ if ( empty( $plugin ) ) {
446
+ return;
447
+ }
 
 
 
 
 
 
 
 
 
 
 
448
 
449
+ if ( 'all-in-one-seo-pack/all_in_one_seo_pack.php' !== $plugin ) {
450
+ return;
451
+ }
452
+
453
+ update_option( 'aioseo_activation_redirect', true );
454
+ }
455
+
456
+ public function disable_wpforms_onboarding_wizard( $plugin ) {
457
+ if ( empty( $plugin ) ) {
458
+ return;
459
+ }
460
+
461
+ if ( 'wpforms-lite/wpforms.php' !== $plugin ) {
462
+ return;
463
+ }
464
+
465
+ if ( false === get_transient( 'wpforms_activation_redirect' ) ){
466
+ return;
467
+ }
468
 
469
+ delete_transient( 'wpforms_activation_redirect' );
470
  }
471
 
472
  }
lite/includes/admin/user-journey/init.php CHANGED
@@ -67,11 +67,15 @@ final class MonsterInsights_Lite_User_Journey_Admin {
67
  public function add_admin_scripts() {
68
  $current_screen = get_current_screen();
69
 
70
- if ( is_object( $current_screen ) ) {
71
- if ( in_array( $current_screen->id, $this->screens ) ) {
72
- wp_enqueue_style( 'monsterinsights-lite-user-journey-admin', MONSTERINSIGHTS_PLUGIN_URL . 'lite/includes/admin/user-journey/assets/css/user-journey.css', MONSTERINSIGHTS_VERSION );
73
- }
74
  }
 
 
 
 
 
 
75
  }
76
  }
77
  // Initialize the class
67
  public function add_admin_scripts() {
68
  $current_screen = get_current_screen();
69
 
70
+ if ( ! is_object( $current_screen ) ) {
71
+ return;
 
 
72
  }
73
+
74
+ if ( ! in_array( $current_screen->id, $this->screens, true ) ) {
75
+ return;
76
+ }
77
+
78
+ wp_enqueue_style( 'monsterinsights-lite-user-journey-admin', MONSTERINSIGHTS_PLUGIN_URL . 'lite/includes/admin/user-journey/assets/css/user-journey.css', MONSTERINSIGHTS_VERSION );
79
  }
80
  }
81
  // Initialize the class
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.wpbeginner.com/wpbeginner-needs-your-help/
4
  Tags: WordPress analytics, google analytics, google analytics dashboard, google analytics widget, WooCommerce stats, analytics dashboard, universal google analytics, statistics, tracking, stats, google, google analytics by yoast, ga, monster insights, monsterinsights, universal analytics, web stats, ecommerce, ecommerce tracking
5
  Requires at least: 4.8.0
6
  Tested up to: 6.0
7
- Stable tag: 8.5.3
8
  Requires PHP: 5.5
9
  License: GPL v3
10
 
@@ -141,9 +141,7 @@ At MonsterInsights, we always stay ahead of the curve in helping you integrate W
141
  >Analytics for PROs! This plugin brings it all, great features and helpful info to easily see what you are doing.<br>
142
  > Frank van der Sluijs
143
 
144
- = Google AdSense Tracking and Affiliate Link Tracking =
145
-
146
- With MonsterInsights Ads tracking addon, publishers can easily track the performance of their Google AdSense Ads inside their Google Analytics dashboard.
147
 
148
  Our affiliate link tracking makes it easy for bloggers and affiliate marketers to track their affiliate links with Google Analytics.
149
 
@@ -212,8 +210,8 @@ We understand Google Analytics better than any other analytics plugin for WordPr
212
  * WooCommerce Google Analytics - Add Enhanced Ecommerce Tracking to your WooCommerce store.
213
  * WooCommerce User Journey - See exactly which pages a customer visited before before purchasing from your WooCommerce store.
214
  * Easy Digital Downloads Google Analytics - Add Enhanced Ecommerce Tracking to your EDD store.
215
- * Ads Tracking - Track your Google Adsense ads with Google Analytics.
216
  * Affiliate Link Tracking - Track your affiliate links and get stats that matter.
 
217
  * File Download Tracking - Enable file download stats with just a click.
218
  * Custom Link Tracking - Track your outbound link clicks with Google Analytics.
219
  * Events Tracking - Track custom button and banner clicks with Google Analytics.
@@ -300,6 +298,10 @@ You can also learn about other <a href="http://www.wpbeginner.com/category/plugi
300
  4. Want more features? <a href="https://www.monsterinsights.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Purchase MonsterInsights Pro</a>!
301
 
302
  == Changelog ==
 
 
 
 
303
  = 8.5.3: May 18, 2022 =
304
  - Fix: We optimized the user ID custom dimension for GAv4
305
  - Fix: We optimized the affiliate events for GAv4
@@ -438,7 +440,7 @@ The MonsterInsights Google Analytics plugin is built for all types of websites,
438
 
439
  Beyond simply providing a Google Analytics dashboard, our plugin makes configuring advanced features as easy as point-and-click that would otherwise still require a developer to implement.
440
 
441
- Our Google Analytics plugin also includes many features such as AdSense tracking, Google Optimize support, form conversion reporting, goal tracking, Search Console integration, Pagespeed insights, advanced eCommerce tracking, and more.
442
 
443
  There's a reason over 3 million users have trusted MonsterInsights to provide Google Analytics data to their website.
444
 
4
  Tags: WordPress analytics, google analytics, google analytics dashboard, google analytics widget, WooCommerce stats, analytics dashboard, universal google analytics, statistics, tracking, stats, google, google analytics by yoast, ga, monster insights, monsterinsights, universal analytics, web stats, ecommerce, ecommerce tracking
5
  Requires at least: 4.8.0
6
  Tested up to: 6.0
7
+ Stable tag: 8.6.0
8
  Requires PHP: 5.5
9
  License: GPL v3
10
 
141
  >Analytics for PROs! This plugin brings it all, great features and helpful info to easily see what you are doing.<br>
142
  > Frank van der Sluijs
143
 
144
+ = Google Affiliate Link Tracking =
 
 
145
 
146
  Our affiliate link tracking makes it easy for bloggers and affiliate marketers to track their affiliate links with Google Analytics.
147
 
210
  * WooCommerce Google Analytics - Add Enhanced Ecommerce Tracking to your WooCommerce store.
211
  * WooCommerce User Journey - See exactly which pages a customer visited before before purchasing from your WooCommerce store.
212
  * Easy Digital Downloads Google Analytics - Add Enhanced Ecommerce Tracking to your EDD store.
 
213
  * Affiliate Link Tracking - Track your affiliate links and get stats that matter.
214
+ * Google Ads Conversion Tracking - Automatically track Google Ads conversions for WooCommerce, Easy Digital Downloads, and MemberPress.
215
  * File Download Tracking - Enable file download stats with just a click.
216
  * Custom Link Tracking - Track your outbound link clicks with Google Analytics.
217
  * Events Tracking - Track custom button and banner clicks with Google Analytics.
298
  4. Want more features? <a href="https://www.monsterinsights.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Purchase MonsterInsights Pro</a>!
299
 
300
  == Changelog ==
301
+ = 8.6.0: Jun 13, 2022 =
302
+ - Enhancement: We updated the User Journey display
303
+ - Enhancement: We optimized the plugin activation process, popular posts, userID tracking, and onboarding
304
+
305
  = 8.5.3: May 18, 2022 =
306
  - Fix: We optimized the user ID custom dimension for GAv4
307
  - Fix: We optimized the affiliate events for GAv4
440
 
441
  Beyond simply providing a Google Analytics dashboard, our plugin makes configuring advanced features as easy as point-and-click that would otherwise still require a developer to implement.
442
 
443
+ Our Google Analytics plugin also includes many features such as Google Ads tracking, Google Optimize support, form conversion reporting, goal tracking, Search Console integration, Pagespeed insights, advanced eCommerce tracking, and more.
444
 
445
  There's a reason over 3 million users have trusted MonsterInsights to provide Google Analytics data to their website.
446