Google Analytics Dashboard for WP (GADWP) - Version 7.6.0

Version Description

Download this release

Release Info

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

Code changes from version 7.5.3 to 7.6.0

gadwp.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: https://exactmetrics.com
5
  * Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
6
  * Author: ExactMetrics
7
- * Version: 7.5.3
8
  * Requires at least: 4.8.0
9
  * Requires PHP: 5.5
10
  * Author URI: https://exactmetrics.com
@@ -44,7 +44,7 @@ final class ExactMetrics_Lite {
44
  * @access public
45
  * @var string $version Plugin version.
46
  */
47
- public $version = '7.5.3';
48
 
49
  /**
50
  * Plugin file.
4
  * Plugin URI: https://exactmetrics.com
5
  * Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
6
  * Author: ExactMetrics
7
+ * Version: 7.6.0
8
  * Requires at least: 4.8.0
9
  * Requires PHP: 5.5
10
  * Author URI: https://exactmetrics.com
44
  * @access public
45
  * @var string $version Plugin version.
46
  */
47
+ public $version = '7.6.0';
48
 
49
  /**
50
  * Plugin file.
includes/admin/ajax.php CHANGED
@@ -1,258 +1,260 @@
1
- <?php
2
- /**
3
- * Handles all admin ajax interactions for the ExactMetrics plugin.
4
- *
5
- * @since 6.0.0
6
- *
7
- * @package ExactMetrics
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 exactmetrics_ajax_set_user_setting() {
24
-
25
- // Run a security check first.
26
- check_ajax_referer( 'exactmetrics-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_exactmetrics_install_addon', 'exactmetrics_ajax_install_addon' );
41
-
42
- /**
43
- * Installs a ExactMetrics addon.
44
- *
45
- * @access public
46
- * @since 6.0.0
47
- */
48
- function exactmetrics_ajax_install_addon() {
49
-
50
- // Run a security check first.
51
- check_ajax_referer( 'exactmetrics-install', 'nonce' );
52
-
53
- if ( ! exactmetrics_can_install_plugins() ) {
54
- wp_send_json( array(
55
- 'error' => esc_html__( 'You are not allowed to install plugins', 'google-analytics-dashboard-for-wp' ),
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' => 'exactmetrics-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
- exactmetrics_require_upgrader( false );
96
-
97
- // Create the plugin upgrader with our custom skin.
98
- $installer = new Plugin_Upgrader( $skin = new ExactMetrics_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_exactmetrics_activate_addon', 'exactmetrics_ajax_activate_addon' );
117
- /**
118
- * Activates a ExactMetrics addon.
119
- *
120
- * @access public
121
- * @since 6.0.0
122
- */
123
- function exactmetrics_ajax_activate_addon() {
124
-
125
- // Run a security check first.
126
- check_ajax_referer( 'exactmetrics-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-dashboard-for-wp' ),
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_exactmetrics_deactivate_addon', 'exactmetrics_ajax_deactivate_addon' );
154
- /**
155
- * Deactivates a ExactMetrics addon.
156
- *
157
- * @access public
158
- * @since 6.0.0
159
- */
160
- function exactmetrics_ajax_deactivate_addon() {
161
-
162
- // Run a security check first.
163
- check_ajax_referer( 'exactmetrics-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-dashboard-for-wp' ),
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 ExactMetrics 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 exactmetrics_ajax_dismiss_notice() {
194
-
195
- // Run a security check first.
196
- check_ajax_referer( 'exactmetrics-dismiss-notice', 'nonce' );
197
-
198
- // Deactivate the notice
199
- if ( isset( $_POST['notice'] ) ) {
200
- // Init the notice class and mark notice as deactivated
201
- ExactMetrics()->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_exactmetrics_ajax_dismiss_notice', 'exactmetrics_ajax_dismiss_notice' );
214
-
215
- /**
216
- * Dismiss SEMRush CTA
217
- *
218
- * @access public
219
- * @since 7.12.3
220
- */
221
- function exactmetrics_ajax_dismiss_semrush_cta() {
222
- check_ajax_referer( 'mi-admin-nonce', 'nonce' );
223
-
224
- if ( ! current_user_can( 'exactmetrics_save_settings' ) ) {
225
- return;
226
- }
227
-
228
- // Deactivate the notice
229
- if ( update_option( 'exactmetrics_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_exactmetrics_vue_dismiss_semrush_cta', 'exactmetrics_ajax_dismiss_semrush_cta' );
244
-
245
- /**
246
- * Get the sem rush cta dismiss status value
247
- */
248
- function exactmetrics_get_sem_rush_cta_status() {
249
- check_ajax_referer( 'mi-admin-nonce', 'nonce' );
250
-
251
- $dismissed_cta = get_option( 'exactmetrics_dismiss_semrush_cta', 'no' );
252
-
253
- wp_send_json( array(
254
- 'dismissed' => $dismissed_cta,
255
- ) );
256
- }
257
-
258
- add_action( 'wp_ajax_exactmetrics_get_sem_rush_cta_status', 'exactmetrics_get_sem_rush_cta_status' );
 
 
1
+ <?php
2
+ /**
3
+ * Handles all admin ajax interactions for the ExactMetrics plugin.
4
+ *
5
+ * @since 6.0.0
6
+ *
7
+ * @package ExactMetrics
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 exactmetrics_ajax_set_user_setting() {
24
+
25
+ // Run a security check first.
26
+ check_ajax_referer( 'exactmetrics-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_exactmetrics_install_addon', 'exactmetrics_ajax_install_addon' );
41
+
42
+ /**
43
+ * Installs a ExactMetrics addon.
44
+ *
45
+ * @access public
46
+ * @since 6.0.0
47
+ */
48
+ function exactmetrics_ajax_install_addon() {
49
+
50
+ // Run a security check first.
51
+ check_ajax_referer( 'exactmetrics-install', 'nonce' );
52
+
53
+ if ( ! exactmetrics_can_install_plugins() ) {
54
+ wp_send_json( array(
55
+ 'error' => esc_html__( 'You are not allowed to install plugins', 'google-analytics-dashboard-for-wp' ),
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' => 'exactmetrics-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
+ exactmetrics_require_upgrader( false );
96
+
97
+ // Create the plugin upgrader with our custom skin.
98
+ $installer = new Plugin_Upgrader( $skin = new ExactMetrics_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_exactmetrics_activate_addon', 'exactmetrics_ajax_activate_addon' );
117
+ /**
118
+ * Activates a ExactMetrics addon.
119
+ *
120
+ * @access public
121
+ * @since 6.0.0
122
+ */
123
+ function exactmetrics_ajax_activate_addon() {
124
+
125
+ // Run a security check first.
126
+ check_ajax_referer( 'exactmetrics-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-dashboard-for-wp' ),
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( 'exactmetrics_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_exactmetrics_deactivate_addon', 'exactmetrics_ajax_deactivate_addon' );
156
+ /**
157
+ * Deactivates a ExactMetrics addon.
158
+ *
159
+ * @access public
160
+ * @since 6.0.0
161
+ */
162
+ function exactmetrics_ajax_deactivate_addon() {
163
+
164
+ // Run a security check first.
165
+ check_ajax_referer( 'exactmetrics-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-dashboard-for-wp' ),
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 ExactMetrics 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 exactmetrics_ajax_dismiss_notice() {
196
+
197
+ // Run a security check first.
198
+ check_ajax_referer( 'exactmetrics-dismiss-notice', 'nonce' );
199
+
200
+ // Deactivate the notice
201
+ if ( isset( $_POST['notice'] ) ) {
202
+ // Init the notice class and mark notice as deactivated
203
+ ExactMetrics()->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_exactmetrics_ajax_dismiss_notice', 'exactmetrics_ajax_dismiss_notice' );
216
+
217
+ /**
218
+ * Dismiss SEMRush CTA
219
+ *
220
+ * @access public
221
+ * @since 7.12.3
222
+ */
223
+ function exactmetrics_ajax_dismiss_semrush_cta() {
224
+ check_ajax_referer( 'mi-admin-nonce', 'nonce' );
225
+
226
+ if ( ! current_user_can( 'exactmetrics_save_settings' ) ) {
227
+ return;
228
+ }
229
+
230
+ // Deactivate the notice
231
+ if ( update_option( 'exactmetrics_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_exactmetrics_vue_dismiss_semrush_cta', 'exactmetrics_ajax_dismiss_semrush_cta' );
246
+
247
+ /**
248
+ * Get the sem rush cta dismiss status value
249
+ */
250
+ function exactmetrics_get_sem_rush_cta_status() {
251
+ check_ajax_referer( 'mi-admin-nonce', 'nonce' );
252
+
253
+ $dismissed_cta = get_option( 'exactmetrics_dismiss_semrush_cta', 'no' );
254
+
255
+ wp_send_json( array(
256
+ 'dismissed' => $dismissed_cta,
257
+ ) );
258
+ }
259
+
260
+ add_action( 'wp_ajax_exactmetrics_get_sem_rush_cta_status', 'exactmetrics_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 ExactMetrics_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 = exactmetrics_is_debug_mode();
24
- $this->measurement_id = exactmetrics_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
- ? ExactMetrics()->auth->get_network_measurement_protocol_secret()
34
- : ExactMetrics()->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 exactmetrics_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'] ) && exactmetrics_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( 'exactmetrics_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 exactmetrics_mp_collect_v4( $args ) {
119
- return ExactMetrics_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 ExactMetrics_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 = exactmetrics_is_debug_mode();
26
+ $this->measurement_id = exactmetrics_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
+ ? ExactMetrics()->auth->get_network_measurement_protocol_secret()
64
+ : ExactMetrics()->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 exactmetrics_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'] ) && exactmetrics_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( 'exactmetrics_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 exactmetrics_mp_collect_v4( $args ) {
197
+ return ExactMetrics_Measurement_Protocol_V4::get_instance()->collect( $args );
198
+ }
languages/google-analytics-dashboard-for-wp.pot CHANGED
@@ -2,20 +2,20 @@
2
  # This file is distributed under the same license as the ExactMetrics Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: ExactMetrics Pro 7.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:42:27+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.6.0\n"
15
  "X-Domain: google-analytics-dashboard-for-wp\n"
16
 
17
  #. Plugin Name of the plugin
18
- #: languages/vue.php:3474
19
  msgid "ExactMetrics Pro"
20
  msgstr ""
21
 
@@ -113,7 +113,7 @@ msgstr ""
113
  #: includes/admin/admin.php:34
114
  #: includes/admin/admin.php:42
115
  #: includes/admin/admin.php:222
116
- #: languages/vue.php:540
117
  msgid "Settings"
118
  msgstr ""
119
 
@@ -129,7 +129,7 @@ msgstr ""
129
 
130
  #: includes/admin/admin.php:39
131
  #: includes/admin/admin.php:130
132
- #: languages/vue.php:2298
133
  msgid "Reports"
134
  msgstr ""
135
 
@@ -139,7 +139,7 @@ msgstr ""
139
 
140
  #: includes/admin/admin.php:51
141
  #: languages/gutenberg.php:83
142
- #: languages/vue.php:995
143
  msgid "Popular Posts"
144
  msgstr ""
145
 
@@ -192,7 +192,7 @@ msgstr ""
192
  #: includes/admin/admin.php:76
193
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
194
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
195
- #: languages/vue.php:1044
196
  msgid "Upgrade to Pro"
197
  msgstr ""
198
 
@@ -220,7 +220,7 @@ msgstr ""
220
 
221
  #: includes/admin/admin.php:212
222
  #: includes/admin/admin.php:215
223
- #: languages/vue.php:1020
224
  msgid "Support"
225
  msgstr ""
226
 
@@ -232,7 +232,7 @@ msgstr ""
232
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
233
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:32
234
  #: includes/admin/reports/abstract-report.php:418
235
- #: languages/vue.php:1152
236
  msgid "Get ExactMetrics Pro"
237
  msgstr ""
238
 
@@ -242,12 +242,12 @@ msgid "Please rate %1$sExactMetrics%2$s on %3$s %4$sWordPress.org%5$s to help us
242
  msgstr ""
243
 
244
  #: includes/admin/admin.php:324
245
- #: languages/vue.php:1143
246
  msgid "Please Setup Website Analytics to See Audience Insights"
247
  msgstr ""
248
 
249
  #: includes/admin/admin.php:325
250
- #: languages/vue.php:1149
251
  msgid "Connect ExactMetrics and Setup Website Analytics"
252
  msgstr ""
253
 
@@ -261,12 +261,12 @@ msgstr ""
261
  #: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
262
  #: includes/admin/notifications/notification-returning-visitors.php:43
263
  #: includes/admin/notifications/notification-traffic-dropping.php:43
264
- #: languages/vue.php:334
265
  msgid "Learn More"
266
  msgstr ""
267
 
268
  #: includes/admin/admin.php:329
269
- #: languages/vue.php:1146
270
  msgid "ExactMetrics, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 3 million website owners use ExactMetrics to see the stats that matter and grow their business."
271
  msgstr ""
272
 
@@ -277,17 +277,17 @@ msgstr ""
277
 
278
  #. Translators: Adds a link to the license renewal.
279
  #: includes/admin/admin.php:350
280
- #: languages/vue.php:477
281
  msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
282
  msgstr ""
283
 
284
  #: includes/admin/admin.php:352
285
- #: languages/vue.php:480
286
  msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
287
  msgstr ""
288
 
289
  #: includes/admin/admin.php:354
290
- #: languages/vue.php:483
291
  msgid "Your license key for ExactMetrics is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
292
  msgstr ""
293
 
@@ -346,7 +346,7 @@ msgstr ""
346
 
347
  #: includes/admin/ajax.php:55
348
  #: includes/admin/routes.php:971
349
- #: lite/includes/admin/onboarding-wizard.php:249
350
  msgid "You are not allowed to install plugins"
351
  msgstr ""
352
 
@@ -354,7 +354,7 @@ msgstr ""
354
  msgid "You are not allowed to activate plugins"
355
  msgstr ""
356
 
357
- #: includes/admin/ajax.php:167
358
  msgid "You are not allowed to deactivate plugins"
359
  msgstr ""
360
 
@@ -491,7 +491,7 @@ msgid "View 2021 Year in Review report!"
491
  msgstr ""
492
 
493
  #: includes/admin/common.php:951
494
- #: languages/vue.php:3319
495
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
496
  msgstr ""
497
 
@@ -710,7 +710,7 @@ msgstr ""
710
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:26
711
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:26
712
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:26
713
- #: languages/vue.php:1737
714
  #: lite/includes/admin/helpers.php:85
715
  msgid "Upgrade to ExactMetrics Pro"
716
  msgstr ""
@@ -746,7 +746,7 @@ msgstr ""
746
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
747
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
748
  #: includes/admin/reports/abstract-report.php:415
749
- #: languages/vue.php:226
750
  msgid "Upgrade Now"
751
  msgstr ""
752
 
@@ -923,7 +923,7 @@ msgid "Please ask your webmaster to enable this addon."
923
  msgstr ""
924
 
925
  #: includes/admin/reports/overview.php:34
926
- #: languages/vue.php:438
927
  msgid "Overview"
928
  msgstr ""
929
 
@@ -1435,7 +1435,7 @@ msgid "Question"
1435
  msgstr ""
1436
 
1437
  #: includes/gutenberg/headline-tool/headline-tool.php:290
1438
- #: languages/vue.php:546
1439
  msgid "General"
1440
  msgstr ""
1441
 
@@ -4835,7 +4835,7 @@ msgid "Theme"
4835
  msgstr ""
4836
 
4837
  #: languages/gutenberg.php:77
4838
- #: languages/vue.php:531
4839
  msgid "Inline Popular Posts"
4840
  msgstr ""
4841
 
@@ -4908,7 +4908,7 @@ msgid "Display Widget Title"
4908
  msgstr ""
4909
 
4910
  #: languages/gutenberg.php:131
4911
- #: languages/vue.php:1953
4912
  msgid "Widget Title"
4913
  msgstr ""
4914
 
@@ -5148,7 +5148,7 @@ msgid "Goal: "
5148
  msgstr ""
5149
 
5150
  #: languages/gutenberg.php:312
5151
- #: languages/vue.php:983
5152
  msgid "Headline Analyzer"
5153
  msgstr ""
5154
 
@@ -5161,7 +5161,7 @@ msgid "This headline analyzer is part of ExactMetrics to help you increase your
5161
  msgstr ""
5162
 
5163
  #: languages/gutenberg.php:321
5164
- #: languages/vue.php:109
5165
  #: lite/includes/admin/metaboxes.php:42
5166
  msgid "Last 30 days"
5167
  msgstr ""
@@ -5173,7 +5173,7 @@ msgid "Yesterday"
5173
  msgstr ""
5174
 
5175
  #: languages/gutenberg.php:327
5176
- #: languages/vue.php:1306
5177
  #: lite/includes/admin/metaboxes.php:57
5178
  #: lite/includes/admin/metaboxes.php:111
5179
  msgid "Bounce Rate"
@@ -5229,109 +5229,109 @@ msgstr ""
5229
  msgid "Loading Settings"
5230
  msgstr ""
5231
 
5232
- #: languages/vue.php:16
5233
  msgid "Please wait..."
5234
  msgstr ""
5235
 
5236
- #: languages/vue.php:19
5237
  msgid "Saving Changes..."
5238
  msgstr ""
5239
 
5240
- #: languages/vue.php:22
5241
  msgid "Settings Updated"
5242
  msgstr ""
5243
 
5244
  #. Translators: Add a link to the onboarding wizard.
5245
- #: languages/vue.php:26
5246
  msgid "You need to %1$sconnect ExactMetrics%2$s first"
5247
  msgstr ""
5248
 
5249
- #: languages/vue.php:29
5250
  msgid "Could Not Save Changes"
5251
  msgstr ""
5252
 
5253
- #: languages/vue.php:32
5254
  msgid "Loading new report data"
5255
  msgstr ""
5256
 
5257
  #. Translators: Placeholder gets replaced with an arrow icon.
5258
- #: languages/vue.php:36
5259
  msgid "Continue %s"
5260
  msgstr ""
5261
 
5262
- #: languages/vue.php:39
5263
  msgid "Error"
5264
  msgstr ""
5265
 
5266
- #: languages/vue.php:42
5267
  msgid "Please try again."
5268
  msgstr ""
5269
 
5270
- #: languages/vue.php:45
5271
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5272
  msgstr ""
5273
 
5274
- #: languages/vue.php:48
5275
  msgid "Stop guessing about what content your visitors are interested in. ExactMetrics Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
5276
  msgstr ""
5277
 
5278
- #: languages/vue.php:51
5279
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5280
  msgstr ""
5281
 
5282
- #: languages/vue.php:54
5283
  msgid "Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions."
5284
  msgstr ""
5285
 
5286
- #: languages/vue.php:57
5287
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5288
  msgstr ""
5289
 
5290
- #: languages/vue.php:60
5291
  msgid "Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
5292
  msgstr ""
5293
 
5294
- #: languages/vue.php:63
5295
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5296
  msgstr ""
5297
 
5298
- #: languages/vue.php:66
5299
  msgid "Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
5300
  msgstr ""
5301
 
5302
- #: languages/vue.php:69
5303
  msgid "Unlock the Forms Report and Improve Conversions"
5304
  msgstr ""
5305
 
5306
- #: languages/vue.php:72
5307
  msgid "Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data."
5308
  msgstr ""
5309
 
5310
- #: languages/vue.php:75
5311
  msgid "Unlock the Search Console Report and See How People Find Your Website"
5312
  msgstr ""
5313
 
5314
- #: languages/vue.php:78
5315
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5316
  msgstr ""
5317
 
5318
- #: languages/vue.php:81
5319
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5320
  msgstr ""
5321
 
5322
- #: languages/vue.php:84
5323
  msgid "Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it."
5324
  msgstr ""
5325
 
5326
- #: languages/vue.php:87
5327
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5328
  msgstr ""
5329
 
5330
- #: languages/vue.php:90
5331
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5332
  msgstr ""
5333
 
5334
- #: languages/vue.php:93
5335
  msgid "Today"
5336
  msgstr ""
5337
 
@@ -5347,21 +5347,21 @@ msgstr ""
5347
  msgid "Last 7 days"
5348
  msgstr ""
5349
 
5350
- #: languages/vue.php:112
5351
  msgid "Loading settings"
5352
  msgstr ""
5353
 
5354
  #. Translators: Number of visitors.
5355
- #: languages/vue.php:116
5356
  msgid "See how %s visitors found your site!"
5357
  msgstr ""
5358
 
5359
  #. Translators: Number of visitors.
5360
- #: languages/vue.php:120
5361
  msgid "Your website was visited by %s users in the last 30 days."
5362
  msgstr ""
5363
 
5364
- #: languages/vue.php:123
5365
  msgid "See the full analytics report!"
5366
  msgstr ""
5367
 
@@ -5409,3560 +5409,3560 @@ msgstr ""
5409
  msgid "Getting Started"
5410
  msgstr ""
5411
 
5412
- #: languages/vue.php:163
5413
  msgid "Lite vs Pro"
5414
  msgstr ""
5415
 
5416
- #: languages/vue.php:166
5417
  msgid "Success! "
5418
  msgstr ""
5419
 
5420
- #: languages/vue.php:169
5421
  msgid "You're now using ExactMetrics Pro with all the features."
5422
  msgstr ""
5423
 
5424
  #. Translators: Placeholder gets replaced with an arrow icon.
5425
- #: languages/vue.php:173
5426
  msgid "Get Started %s"
5427
  msgstr ""
5428
 
5429
  #. Translators: Error status and error text.
5430
- #: languages/vue.php:177
5431
  msgid "Can't load report data. Error: %1$s, %2$s"
5432
  msgstr ""
5433
 
5434
- #: languages/vue.php:180
5435
  msgid "Error loading report data"
5436
  msgstr ""
5437
 
5438
  #. Translators: Makes the text bold.
5439
- #: languages/vue.php:184
5440
  msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5441
  msgstr ""
5442
 
5443
  #. Translators: Makes the text bold.
5444
- #: languages/vue.php:188
5445
  msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
5446
  msgstr ""
5447
 
5448
  #. Translators: Makes the text bold.
5449
- #: languages/vue.php:192
5450
  msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
5451
  msgstr ""
5452
 
5453
  #. Translators: Makes text bold.
5454
- #: languages/vue.php:196
5455
  msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
5456
  msgstr ""
5457
 
5458
  #. Translators: Makes the text bold.
5459
- #: languages/vue.php:200
5460
  msgid "%1$sPage Level Analytics%2$s - Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
5461
  msgstr ""
5462
 
5463
  #. Translators: Makes the text bold.
5464
- #: languages/vue.php:204
5465
  msgid "%1$sAffiliate Link & Ads Tracking%2$s - Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
5466
  msgstr ""
5467
 
5468
  #. Translators: Makes the text bold.
5469
- #: languages/vue.php:208
5470
  msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5471
  msgstr ""
5472
 
5473
  #. Translators: Makes text bold.
5474
- #: languages/vue.php:212
5475
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
5476
  msgstr ""
5477
 
5478
  #. Translators: Adds a link and an arrow icon.
5479
- #: languages/vue.php:216
5480
  msgid "%1$sSee All Features%2$s"
5481
  msgstr ""
5482
 
5483
- #: languages/vue.php:219
5484
  msgid "Pro Plan"
5485
  msgstr ""
5486
 
5487
- #: languages/vue.php:222
5488
  msgid "per year"
5489
  msgstr ""
5490
 
5491
- #: languages/vue.php:229
5492
  msgid "Upgrade to ExactMetrics Pro Now"
5493
  msgstr ""
5494
 
5495
- #: languages/vue.php:232
5496
  msgid "This is absolutely, positively, one of the TOP plugins to install on your WP site. There is no better way to quickly gauge traffic for spikes, surges, and consistency. I installed this on over a dozen WordPress installations and counting, thank you for an outstanding app!"
5497
  msgstr ""
5498
 
5499
- #: languages/vue.php:235
5500
  msgid "Daniel Monaghan - Experienced"
5501
  msgstr ""
5502
 
5503
- #: languages/vue.php:238
5504
  msgid "Very simple to configure and the results are very clearly displayed. So much easier for clients to view than in their own analytics account! Delighted with it."
5505
  msgstr ""
5506
 
5507
- #: languages/vue.php:241
5508
  msgid "Naomi Spirit - From This Day"
5509
  msgstr ""
5510
 
5511
- #: languages/vue.php:244
5512
  msgid "Love this plugin! It’s got powerful customization options, it’s easy to use, there’s good documentation, and if all that’s not enough, ExactMetrics is quick to provide support. Thanks for this wonderful plugin!"
5513
  msgstr ""
5514
 
5515
- #: languages/vue.php:247
5516
  msgid "Julie Dupuis - Faraway Land Travel"
5517
  msgstr ""
5518
 
5519
- #: languages/vue.php:250
5520
  msgid "Guides and Documentation:"
5521
  msgstr ""
5522
 
5523
- #: languages/vue.php:257
5524
  msgid "Upgrade to PRO"
5525
  msgstr ""
5526
 
5527
- #: languages/vue.php:260
5528
  msgid "eCommerce Tracking"
5529
  msgstr ""
5530
 
5531
- #: languages/vue.php:263
5532
  msgid "Custom Dimensions"
5533
  msgstr ""
5534
 
5535
- #: languages/vue.php:266
5536
  msgid "Form Tracking"
5537
  msgstr ""
5538
 
5539
- #: languages/vue.php:269
5540
  msgid "AMP Support"
5541
  msgstr ""
5542
 
5543
- #: languages/vue.php:272
5544
  msgid "Author Tracking"
5545
  msgstr ""
5546
 
5547
- #: languages/vue.php:275
5548
  msgid "EU Compliance Addon"
5549
  msgstr ""
5550
 
5551
- #: languages/vue.php:278
5552
  msgid "Real Time Report"
5553
  msgstr ""
5554
 
5555
- #: languages/vue.php:281
5556
  msgid "Google Optimize"
5557
  msgstr ""
5558
 
5559
- #: languages/vue.php:284
5560
  #: lite/includes/admin/reports/report-queries.php:22
5561
  msgid "Search Console"
5562
  msgstr ""
5563
 
5564
- #: languages/vue.php:287
5565
  msgid "Custom Date Ranges"
5566
  msgstr ""
5567
 
5568
- #: languages/vue.php:290
5569
- #: languages/vue.php:923
5570
  msgid "Getting Started with ExactMetrics"
5571
  msgstr ""
5572
 
5573
- #: languages/vue.php:293
5574
- #: languages/vue.php:926
5575
  msgid "ExactMetrics is the easiest analytics solution on the market to get started with, as we walk you through exactly what you need to do, in plain english, using our 3 minute setup wizard."
5576
  msgstr ""
5577
 
5578
- #: languages/vue.php:296
5579
  msgid "To begin with, we’ll get your site authorized with Google Analytics, so we can start tracking and generating reports for you right away."
5580
  msgstr ""
5581
 
5582
- #: languages/vue.php:299
5583
  msgid "In no time at all, and after just a few clicks, you'll have setup the most powerful Google Analytics tracking available for WordPress. It's easy to double your traffic and sales when you know exactly how people find and use your website. Let's get started!."
5584
  msgstr ""
5585
 
5586
- #: languages/vue.php:302
5587
  msgid "Launch the wizard!"
5588
  msgstr ""
5589
 
5590
- #: languages/vue.php:306
5591
  msgid "Welcome to"
5592
  msgstr ""
5593
 
5594
  #. Translators: Adds a line break.
5595
- #: languages/vue.php:310
5596
  msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
5597
  msgstr ""
5598
 
5599
  #. Translators: Makes the product name bold.
5600
- #: languages/vue.php:314
5601
  msgid "%1$sExactMetrics%2$s makes it “effortless” to setup Google Analytics in WordPress, the RIGHT Way. You can watch the video tutorial or use our 3 minute setup wizard."
5602
  msgstr ""
5603
 
5604
- #: languages/vue.php:317
5605
  msgid "ExactMetrics Features & Addons"
5606
  msgstr ""
5607
 
5608
- #: languages/vue.php:320
5609
  msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
5610
  msgstr ""
5611
 
5612
  #. Translators: Placeholder is replaced with WPForms.
5613
- #: languages/vue.php:324
5614
  msgid "Recommended Plugin: %s"
5615
  msgstr ""
5616
 
5617
- #: languages/vue.php:327
5618
  msgid "Install"
5619
  msgstr ""
5620
 
5621
- #: languages/vue.php:330
5622
  msgid "Activate"
5623
  msgstr ""
5624
 
5625
- #: languages/vue.php:337
5626
  msgid "ExactMetrics encountered an error loading your report data"
5627
  msgstr ""
5628
 
5629
- #: languages/vue.php:340
5630
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5631
  msgstr ""
5632
 
5633
- #: languages/vue.php:343
5634
- #: languages/vue.php:1850
5635
  msgid "Reconnect ExactMetrics"
5636
  msgstr ""
5637
 
5638
- #: languages/vue.php:346
5639
  msgid "Re-Authenticating"
5640
  msgstr ""
5641
 
5642
- #: languages/vue.php:350
5643
  msgid "Ok"
5644
  msgstr ""
5645
 
5646
- #: languages/vue.php:353
5647
- #: languages/vue.php:862
5648
  msgid "ExactMetrics Addons"
5649
  msgstr ""
5650
 
5651
- #: languages/vue.php:356
5652
  msgid "Search Addons"
5653
  msgstr ""
5654
 
5655
- #: languages/vue.php:359
5656
  msgid "Save Changes"
5657
  msgstr ""
5658
 
5659
- #: languages/vue.php:362
5660
  msgid "Exit Setup"
5661
  msgstr ""
5662
 
5663
- #: languages/vue.php:365
5664
  msgid "Time to Purchase"
5665
  msgstr ""
5666
 
5667
- #: languages/vue.php:368
5668
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
5669
  msgstr ""
5670
 
5671
- #: languages/vue.php:371
5672
  msgid "Sessions to Purchase"
5673
  msgstr ""
5674
 
5675
- #: languages/vue.php:374
5676
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5677
  msgstr ""
5678
 
5679
- #: languages/vue.php:377
5680
  msgid "New Customers"
5681
  msgstr ""
5682
 
5683
- #: languages/vue.php:380
5684
  msgid "This list shows the percentage of new customers who purchased a product from your website."
5685
  msgstr ""
5686
 
5687
- #: languages/vue.php:383
5688
  msgid "Abandoned Checkouts"
5689
  msgstr ""
5690
 
5691
- #: languages/vue.php:386
5692
  msgid "This list shows the percentage of carts that never went through the checkout process."
5693
  msgstr ""
5694
 
5695
- #: languages/vue.php:389
5696
  msgid "Top Posts/Pages"
5697
  msgstr ""
5698
 
5699
- #: languages/vue.php:392
5700
  msgid "This list shows the most viewed posts and pages on your website."
5701
  msgstr ""
5702
 
5703
- #: languages/vue.php:395
5704
  msgid "New vs. Returning Visitors"
5705
  msgstr ""
5706
 
5707
- #: languages/vue.php:398
5708
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5709
  msgstr ""
5710
 
5711
- #: languages/vue.php:401
5712
  msgid "Device Breakdown"
5713
  msgstr ""
5714
 
5715
- #: languages/vue.php:404
5716
  msgid "This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site."
5717
  msgstr ""
5718
 
5719
- #: languages/vue.php:407
5720
  msgid "Top Landing Pages"
5721
  msgstr ""
5722
 
5723
- #: languages/vue.php:410
5724
  msgid "This list shows the top pages users first land on when visiting your website."
5725
  msgstr ""
5726
 
5727
- #: languages/vue.php:413
5728
  msgid "Top Exit Pages"
5729
  msgstr ""
5730
 
5731
- #: languages/vue.php:416
5732
  msgid "This list shows the top pages users exit your website from."
5733
  msgstr ""
5734
 
5735
- #: languages/vue.php:419
5736
  msgid "Top Outbound Links"
5737
  msgstr ""
5738
 
5739
- #: languages/vue.php:422
5740
  msgid "This list shows the top links clicked on your website that go to another website."
5741
  msgstr ""
5742
 
5743
- #: languages/vue.php:425
5744
  msgid "Top Affiliate Links"
5745
  msgstr ""
5746
 
5747
- #: languages/vue.php:428
5748
  msgid "This list shows the top affiliate links your visitors clicked on."
5749
  msgstr ""
5750
 
5751
- #: languages/vue.php:431
5752
  msgid "Top Download Links"
5753
  msgstr ""
5754
 
5755
- #: languages/vue.php:434
5756
  msgid "This list shows the download links your visitors clicked the most."
5757
  msgstr ""
5758
 
5759
- #: languages/vue.php:441
5760
  msgid "Top Products"
5761
  msgstr ""
5762
 
5763
- #: languages/vue.php:444
5764
  msgid "This list shows the top selling products on your website."
5765
  msgstr ""
5766
 
5767
- #: languages/vue.php:447
5768
  msgid "Top Conversion Sources"
5769
  msgstr ""
5770
 
5771
- #: languages/vue.php:450
5772
  msgid "This list shows the top referral websites in terms of product revenue."
5773
  msgstr ""
5774
 
5775
- #: languages/vue.php:453
5776
  msgid "Total Add/Remove"
5777
  msgstr ""
5778
 
5779
- #: languages/vue.php:456
5780
  msgid "Analytics"
5781
  msgstr ""
5782
 
5783
  #. Translators: Adds an arrow icon.
5784
- #: languages/vue.php:461
5785
  msgid "View All Reports %s"
5786
  msgstr ""
5787
 
5788
- #: languages/vue.php:464
5789
  msgid "You must connect with ExactMetrics before you can view reports."
5790
  msgstr ""
5791
 
5792
- #: languages/vue.php:467
5793
  msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5794
  msgstr ""
5795
 
5796
- #: languages/vue.php:470
5797
  msgid "Launch Setup Wizard"
5798
  msgstr ""
5799
 
5800
- #: languages/vue.php:473
5801
  msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
5802
  msgstr ""
5803
 
5804
- #: languages/vue.php:486
5805
  msgid "See Quick Links"
5806
  msgstr ""
5807
 
5808
- #: languages/vue.php:489
5809
  msgid "Suggest a Feature"
5810
  msgstr ""
5811
 
5812
- #: languages/vue.php:492
5813
  msgid "Join Our Community"
5814
  msgstr ""
5815
 
5816
- #: languages/vue.php:495
5817
  msgid "Support & Docs"
5818
  msgstr ""
5819
 
5820
- #: languages/vue.php:498
5821
  msgid "Upgrade to Pro &#187;"
5822
  msgstr ""
5823
 
5824
- #: languages/vue.php:501
5825
  #: lite/includes/admin/reports/report-publisher.php:22
5826
  msgid "Publishers"
5827
  msgstr ""
5828
 
5829
- #: languages/vue.php:505
5830
  #: lite/includes/admin/reports/report-ecommerce.php:22
5831
  msgid "eCommerce"
5832
  msgstr ""
5833
 
5834
- #: languages/vue.php:508
5835
  msgid "Dimensions Report"
5836
  msgstr ""
5837
 
5838
- #: languages/vue.php:511
5839
  #: lite/includes/admin/reports/report-forms.php:22
5840
  msgid "Forms"
5841
  msgstr ""
5842
 
5843
- #: languages/vue.php:514
5844
  msgid "Real-Time"
5845
  msgstr ""
5846
 
5847
- #: languages/vue.php:518
5848
  msgid "Site Speed Report"
5849
  msgstr ""
5850
 
5851
- #: languages/vue.php:522
5852
  msgid "2020 Year in Review"
5853
  msgstr ""
5854
 
5855
- #: languages/vue.php:525
5856
  msgid "Import Export"
5857
  msgstr ""
5858
 
5859
- #: languages/vue.php:528
5860
  msgid "PrettyLinks Integration"
5861
  msgstr ""
5862
 
5863
- #: languages/vue.php:534
5864
  msgid "Popular Posts Widget"
5865
  msgstr ""
5866
 
5867
- #: languages/vue.php:537
5868
  msgid "Popular Products"
5869
  msgstr ""
5870
 
5871
- #: languages/vue.php:543
5872
  msgid "Sub menu item for WooCommerce Analytics"
5873
  msgstr ""
5874
 
5875
- #: languages/vue.php:549
5876
  msgid "Engagement"
5877
  msgstr ""
5878
 
5879
- #: languages/vue.php:552
5880
  msgid "Publisher"
5881
  msgstr ""
5882
 
5883
- #: languages/vue.php:555
5884
  msgid "Conversions"
5885
  msgstr ""
5886
 
5887
- #: languages/vue.php:558
5888
  msgid "Advanced"
5889
  msgstr ""
5890
 
5891
- #: languages/vue.php:561
5892
  msgid "URL Builder"
5893
  msgstr ""
5894
 
5895
  #. Translators: Adds a link to documentation.
5896
- #: languages/vue.php:565
5897
  msgid "In order for the ExactMetrics Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s"
5898
  msgstr ""
5899
 
5900
  #. Translators: Adds link to activate/install plugin and documentation.
5901
- #: languages/vue.php:569
5902
  msgid "In order for the ExactMetrics Google AMP addon to work properly, you need to install the WordPress AMP plugin by Automattic. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s"
5903
  msgstr ""
5904
 
5905
  #. Translators: Adds a link to documentation.
5906
- #: languages/vue.php:573
5907
  msgid "In order for the ExactMetrics Instant Articles addon to work properly, please ask your webmaster to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$sLearn More%2$s"
5908
  msgstr ""
5909
 
5910
  #. Translators: Adds link to activate/install plugin and documentation.
5911
- #: languages/vue.php:577
5912
  msgid "In order for the ExactMetrics Instant Articles addon to work properly, you need to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s"
5913
  msgstr ""
5914
 
5915
- #: languages/vue.php:580
5916
  msgid "Installing Addon"
5917
  msgstr ""
5918
 
5919
- #: languages/vue.php:583
5920
  msgid "Activating Addon"
5921
  msgstr ""
5922
 
5923
- #: languages/vue.php:586
5924
  msgid "Addon Activated"
5925
  msgstr ""
5926
 
5927
- #: languages/vue.php:589
5928
  msgid "Loading report data"
5929
  msgstr ""
5930
 
5931
- #: languages/vue.php:592
5932
  msgid "Please activate manually"
5933
  msgstr ""
5934
 
5935
  #. Translators: Adds the error status and status text.
5936
- #: languages/vue.php:596
5937
  msgid "Error: %1$s, %2$s"
5938
  msgstr ""
5939
 
5940
- #: languages/vue.php:599
5941
  msgid "Error Activating Addon"
5942
  msgstr ""
5943
 
5944
- #: languages/vue.php:602
5945
  #: lite/includes/admin/wp-site-health.php:372
5946
  #: lite/includes/admin/wp-site-health.php:398
5947
  #: lite/includes/admin/wp-site-health.php:425
5948
  msgid "View Addons"
5949
  msgstr ""
5950
 
5951
- #: languages/vue.php:605
5952
  msgid "Dismiss"
5953
  msgstr ""
5954
 
5955
- #: languages/vue.php:608
5956
  msgid "Redirecting"
5957
  msgstr ""
5958
 
5959
- #: languages/vue.php:611
5960
  msgid "Please wait"
5961
  msgstr ""
5962
 
5963
- #: languages/vue.php:614
5964
  msgid "activate"
5965
  msgstr ""
5966
 
5967
- #: languages/vue.php:617
5968
  msgid "install"
5969
  msgstr ""
5970
 
5971
- #: languages/vue.php:620
5972
  msgid "Visit addons page"
5973
  msgstr ""
5974
 
5975
- #: languages/vue.php:623
5976
  msgid "Report Unavailable"
5977
  msgstr ""
5978
 
5979
  #. Translators: Install/Activate the addon.
5980
- #: languages/vue.php:627
5981
  msgid "%s Addon"
5982
  msgstr ""
5983
 
5984
- #: languages/vue.php:630
5985
  msgid "Go Back To Reports"
5986
  msgstr ""
5987
 
5988
- #: languages/vue.php:633
5989
  msgid "Enable Enhanced eCommerce"
5990
  msgstr ""
5991
 
5992
  #. Translators: Placeholders are replaced with the current step number out of the total number of steps.
5993
- #: languages/vue.php:637
5994
  msgid "Step %1$s of %2$s"
5995
  msgstr ""
5996
 
5997
- #: languages/vue.php:640
5998
  msgid "Go back"
5999
  msgstr ""
6000
 
6001
- #: languages/vue.php:643
6002
  msgid "Welcome to ExactMetrics!"
6003
  msgstr ""
6004
 
6005
- #: languages/vue.php:646
6006
  msgid "Let's get you set up."
6007
  msgstr ""
6008
 
6009
- #: languages/vue.php:649
6010
  msgid "Save and Continue"
6011
  msgstr ""
6012
 
6013
- #: languages/vue.php:652
6014
  msgid "Which category best describes your website?"
6015
  msgstr ""
6016
 
6017
- #: languages/vue.php:655
6018
  msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
6019
  msgstr ""
6020
 
6021
- #: languages/vue.php:658
6022
  msgid "Business Website"
6023
  msgstr ""
6024
 
6025
  #. Translators: Make text bold.
6026
- #: languages/vue.php:662
6027
  msgid "Publisher %1$s(Blog)%2$s"
6028
  msgstr ""
6029
 
6030
- #: languages/vue.php:665
6031
  msgid "Ecommerce"
6032
  msgstr ""
6033
 
6034
- #: languages/vue.php:668
6035
  msgid "Connect ExactMetrics to Your Website"
6036
  msgstr ""
6037
 
6038
- #: languages/vue.php:671
6039
  msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
6040
  msgstr ""
6041
 
6042
- #: languages/vue.php:674
6043
  msgid "Connect Google Analytics + WordPress"
6044
  msgstr ""
6045
 
6046
- #: languages/vue.php:677
6047
  msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
6048
  msgstr ""
6049
 
6050
- #: languages/vue.php:680
6051
  msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
6052
  msgstr ""
6053
 
6054
- #: languages/vue.php:683
6055
  msgid "Manually enter your UA code"
6056
  msgstr ""
6057
 
6058
- #: languages/vue.php:686
6059
  msgid "Warning: If you use a manual UA code, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X's are numbers."
6060
  msgstr ""
6061
 
6062
- #: languages/vue.php:689
6063
  msgid "UA code can't be empty"
6064
  msgstr ""
6065
 
6066
- #: languages/vue.php:692
6067
  msgid "Saving UA code..."
6068
  msgstr ""
6069
 
6070
- #: languages/vue.php:695
6071
  msgid "ExactMetrics Recommends WPForms"
6072
  msgstr ""
6073
 
6074
- #: languages/vue.php:698
6075
  msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
6076
  msgstr ""
6077
 
6078
- #: languages/vue.php:701
6079
  msgid "Used on over 4,000,000 websites!"
6080
  msgstr ""
6081
 
6082
- #: languages/vue.php:704
6083
  msgid "WPForms allow you to create beautiful contact forms, subscription forms, payment forms, and other types of forms for your site in minutes, not hours!"
6084
  msgstr ""
6085
 
6086
- #: languages/vue.php:707
6087
  msgid "Skip this Step"
6088
  msgstr ""
6089
 
6090
- #: languages/vue.php:710
6091
  msgid "Continue & Install WPForms"
6092
  msgstr ""
6093
 
6094
- #: languages/vue.php:713
6095
  msgid "Installing..."
6096
  msgstr ""
6097
 
6098
- #: languages/vue.php:716
6099
  msgid "Recommended Settings"
6100
  msgstr ""
6101
 
6102
- #: languages/vue.php:719
6103
  msgid "ExactMetrics recommends the following settings based on your configuration."
6104
  msgstr ""
6105
 
6106
- #: languages/vue.php:722
6107
  msgid "Events Tracking"
6108
  msgstr ""
6109
 
6110
- #: languages/vue.php:725
6111
  msgid "Must have for all click tracking on site."
6112
  msgstr ""
6113
 
6114
- #: languages/vue.php:728
6115
  msgid "ExactMetrics uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don't have to write any code."
6116
  msgstr ""
6117
 
6118
- #: languages/vue.php:731
6119
  msgid "Enhanced Link Attribution"
6120
  msgstr ""
6121
 
6122
- #: languages/vue.php:734
6123
  msgid "Improves the accuracy of your In-Page Analytics."
6124
  msgstr ""
6125
 
6126
- #: languages/vue.php:737
6127
  msgid "ExactMetrics will automatically help Google determine which links are unique and where they are on your site so that your In-Page Analytics reporting will be more accurate."
6128
  msgstr ""
6129
 
6130
- #: languages/vue.php:740
6131
  msgid "Install Updates Automatically"
6132
  msgstr ""
6133
 
6134
- #: languages/vue.php:743
6135
  msgid "Get the latest features, bug fixes, and security updates as they are released."
6136
  msgstr ""
6137
 
6138
- #: languages/vue.php:746
6139
  msgid "To ensure you get the latest bug fixes and security updates and avoid needing to spend time logging into your WordPress site to update ExactMetrics, we offer the ability to automatically have ExactMetrics update itself."
6140
  msgstr ""
6141
 
6142
- #: languages/vue.php:749
6143
  msgid "File Download Tracking"
6144
  msgstr ""
6145
 
6146
- #: languages/vue.php:752
6147
  msgid "Helps you see file downloads data."
6148
  msgstr ""
6149
 
6150
- #: languages/vue.php:755
6151
  msgid "ExactMetrics will automatically track downloads of common file types from links you have inserted onto your website. For example: want to know how many of your site's visitors have downloaded a PDF or other file you offer your visitors to download on your site? ExactMetrics makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
6152
  msgstr ""
6153
 
6154
  #. Translators: Example path (/go/).
6155
- #: languages/vue.php:759
6156
  msgid "Path (example: %s)"
6157
  msgstr ""
6158
 
6159
- #: languages/vue.php:762
6160
  msgid "Path has to start with a / and have no spaces"
6161
  msgstr ""
6162
 
6163
  #. Translators: Example label (aff).
6164
- #: languages/vue.php:766
6165
  msgid "Label (example: %s)"
6166
  msgstr ""
6167
 
6168
- #: languages/vue.php:769
6169
  msgid "Label can't contain any spaces"
6170
  msgstr ""
6171
 
6172
- #: languages/vue.php:772
6173
  msgid "Helps you increase affiliate revenue."
6174
  msgstr ""
6175
 
6176
- #: languages/vue.php:775
6177
  msgid "ExactMetrics will automatically help you track affiliate links that use internal looking urls like example.com/go/ or example.com/refer/. You can add custom affiliate patterns on our settings panel when you finish the onboarding wizard."
6178
  msgstr ""
6179
 
6180
- #: languages/vue.php:778
6181
  msgid "Affiliate Link Tracking"
6182
  msgstr ""
6183
 
6184
- #: languages/vue.php:781
6185
  msgid "Who Can See Reports"
6186
  msgstr ""
6187
 
6188
- #: languages/vue.php:784
6189
  msgid "These user roles will be able to access ExactMetrics' reports in the WordPress admin area."
6190
  msgstr ""
6191
 
6192
- #: languages/vue.php:787
6193
  msgid "Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability."
6194
  msgstr ""
6195
 
6196
- #: languages/vue.php:790
6197
  msgid "Save and continue"
6198
  msgstr ""
6199
 
6200
- #: languages/vue.php:793
6201
  msgid "Events Tracking is enabled the moment you set up ExactMetrics"
6202
  msgstr ""
6203
 
6204
- #: languages/vue.php:796
6205
  msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
6206
  msgstr ""
6207
 
6208
- #: languages/vue.php:799
6209
  msgid "+ Add Role"
6210
  msgstr ""
6211
 
6212
  #. Translators: Placeholders are used for making text bold and adding a link.
6213
- #: languages/vue.php:803
6214
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6215
  msgstr ""
6216
 
6217
- #: languages/vue.php:806
6218
  #: lite/includes/admin/reports/report-dimensions.php:22
6219
  msgid "Dimensions"
6220
  msgstr ""
6221
 
6222
- #: languages/vue.php:809
6223
  msgid "Site Speed"
6224
  msgstr ""
6225
 
6226
- #: languages/vue.php:812
6227
  msgid "License Key"
6228
  msgstr ""
6229
 
6230
  #. Translators: Add link to retrieve license key from account.
6231
- #: languages/vue.php:816
6232
  msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6233
  msgstr ""
6234
 
6235
- #: languages/vue.php:819
6236
  msgid "Google Authentication"
6237
  msgstr ""
6238
 
6239
- #: languages/vue.php:822
6240
  msgid "Miscellaneous"
6241
  msgstr ""
6242
 
6243
- #: languages/vue.php:825
6244
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6245
  msgstr ""
6246
 
6247
- #: languages/vue.php:828
6248
  msgid "Hide Announcements"
6249
  msgstr ""
6250
 
6251
- #: languages/vue.php:831
6252
  msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
6253
  msgstr ""
6254
 
6255
- #. Translators: Add link to upgrade.
6256
- #: languages/vue.php:835
6257
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
6258
  msgstr ""
6259
 
6260
- #: languages/vue.php:838
6261
  msgid "Receive 50% off automatically applied at the checkout!"
6262
  msgstr ""
6263
 
6264
- #: languages/vue.php:841
6265
  msgid "See all features"
6266
  msgstr ""
6267
 
6268
- #: languages/vue.php:844
6269
  msgid "Setup Wizard"
6270
  msgstr ""
6271
 
6272
- #: languages/vue.php:847
6273
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6274
  msgstr ""
6275
 
6276
- #: languages/vue.php:850
6277
  msgid "Relaunch Setup Wizard"
6278
  msgstr ""
6279
 
6280
- #: languages/vue.php:853
6281
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6282
  msgstr ""
6283
 
6284
- #: languages/vue.php:856
6285
  msgid "No addons found."
6286
  msgstr ""
6287
 
6288
- #: languages/vue.php:859
6289
  msgid "Refresh Addons"
6290
  msgstr ""
6291
 
6292
  #. Translators: Adds a line break.
6293
- #: languages/vue.php:866
6294
  msgid "Upgrade to Pro to unlock addons and other great features."
6295
  msgstr ""
6296
 
6297
- #: languages/vue.php:869
6298
  msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
6299
  msgstr ""
6300
 
6301
- #: languages/vue.php:872
6302
  msgid "Refreshing Addons"
6303
  msgstr ""
6304
 
6305
- #: languages/vue.php:875
6306
  msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
6307
  msgstr ""
6308
 
6309
  #. Translators: Placeholders make the text green.
6310
- #: languages/vue.php:879
6311
  msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6312
  msgstr ""
6313
 
6314
- #: languages/vue.php:882
6315
  msgid "How to Connect to Google Analytics"
6316
  msgstr ""
6317
 
6318
- #: languages/vue.php:885
6319
  msgid "After you install ExactMetrics, you’ll need to connect your WordPress site with your Google Analytics account. ExactMetrics makes the process easy, with no coding required."
6320
  msgstr ""
6321
 
6322
- #: languages/vue.php:888
6323
  msgid "Guide and Checklist for Advanced Insights"
6324
  msgstr ""
6325
 
6326
- #: languages/vue.php:891
6327
  msgid "Our goal is to make it as easy as possible for you to measure and track your stats so you can grow your business. This easy-to-follow guide and checklist will get you set up with ExactMetrics’ advanced tracking."
6328
  msgstr ""
6329
 
6330
- #: languages/vue.php:894
6331
  msgid "GDPR Guide"
6332
  msgstr ""
6333
 
6334
- #: languages/vue.php:897
6335
  msgid "Compliance with European data laws including GDPR can be confusing and time-consuming. In order to help ExactMetrics users comply with these laws, we’ve created an addon that automates a lot of the necessary configuration changes for you. "
6336
  msgstr ""
6337
 
6338
- #: languages/vue.php:900
6339
  msgid "How to Install and Activate ExactMetrics Addons"
6340
  msgstr ""
6341
 
6342
- #: languages/vue.php:903
6343
  msgid "The process for installing and activating addons is quick and easy after you install the ExactMetrics plugin. In this guide we’ll walk you through the process, step by step."
6344
  msgstr ""
6345
 
6346
- #: languages/vue.php:906
6347
  msgid "Enabling eCommerce Tracking and Reports"
6348
  msgstr ""
6349
 
6350
- #: languages/vue.php:909
6351
  msgid "Want to track your eCommerce sales data for your WooCommerce, MemberPress, or Easy Digital Downloads store with ExactMetrics? In this guide, we’ll show you how to enable eCommerce tracking in Google Analytics in just a few clicks."
6352
  msgstr ""
6353
 
6354
- #: languages/vue.php:912
6355
  msgid "Read Documentation"
6356
  msgstr ""
6357
 
6358
  #. Translators: Makes the text bold.
6359
- #: languages/vue.php:916
6360
  msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
6361
  msgstr ""
6362
 
6363
  #. Translators: Makes the text bold.
6364
- #: languages/vue.php:920
6365
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
6366
  msgstr ""
6367
 
6368
- #: languages/vue.php:929
6369
  msgid "One-click Complete eCommerce tracking"
6370
  msgstr ""
6371
 
6372
- #: languages/vue.php:932
6373
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6374
  msgstr ""
6375
 
6376
- #: languages/vue.php:935
6377
  msgid "Forms Tracking"
6378
  msgstr ""
6379
 
6380
- #: languages/vue.php:938
6381
  msgid "One-click Form Events Tracking"
6382
  msgstr ""
6383
 
6384
- #: languages/vue.php:941
6385
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6386
  msgstr ""
6387
 
6388
- #: languages/vue.php:944
6389
  msgid "WordPress Admin Area Reports"
6390
  msgstr ""
6391
 
6392
- #: languages/vue.php:947
6393
  msgid "Standard Reports"
6394
  msgstr ""
6395
 
6396
- #: languages/vue.php:950
6397
  msgid "Overview Reports for the last 30 days."
6398
  msgstr ""
6399
 
6400
- #: languages/vue.php:953
6401
  msgid "Advanced Reports"
6402
  msgstr ""
6403
 
6404
- #: languages/vue.php:956
6405
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6406
  msgstr ""
6407
 
6408
- #: languages/vue.php:959
6409
  msgid "Dashboard Widget"
6410
  msgstr ""
6411
 
6412
- #: languages/vue.php:962
6413
  msgid "Basic Widget"
6414
  msgstr ""
6415
 
6416
- #: languages/vue.php:965
6417
  msgid "Overview Report Synopsis"
6418
  msgstr ""
6419
 
6420
- #: languages/vue.php:968
6421
  msgid "Advanced Dashboard Widget"
6422
  msgstr ""
6423
 
6424
- #: languages/vue.php:971
6425
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6426
  msgstr ""
6427
 
6428
- #: languages/vue.php:974
6429
  msgid "Publisher Reports"
6430
  msgstr ""
6431
 
6432
- #: languages/vue.php:977
6433
  msgid "Advanced Publisher Reports & Tracking"
6434
  msgstr ""
6435
 
6436
- #: languages/vue.php:980
6437
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6438
  msgstr ""
6439
 
6440
- #: languages/vue.php:986
6441
  msgid "Email Summaries"
6442
  msgstr ""
6443
 
6444
- #: languages/vue.php:989
6445
  msgid "Included"
6446
  msgstr ""
6447
 
6448
- #: languages/vue.php:992
6449
  msgid "Get weekly traffic reports directly in your inbox."
6450
  msgstr ""
6451
 
6452
- #: languages/vue.php:998
6453
  msgid "Basic Options"
6454
  msgstr ""
6455
 
6456
- #: languages/vue.php:1001
6457
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6458
  msgstr ""
6459
 
6460
- #: languages/vue.php:1004
6461
  msgid "Dynamic Popular Posts & Popular Products"
6462
  msgstr ""
6463
 
6464
- #: languages/vue.php:1007
6465
  msgid "Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks."
6466
  msgstr ""
6467
 
6468
- #: languages/vue.php:1011
6469
  msgid "Not Available"
6470
  msgstr ""
6471
 
6472
- #: languages/vue.php:1014
6473
  msgid "Complete Custom Dimensions Tracking"
6474
  msgstr ""
6475
 
6476
- #: languages/vue.php:1017
6477
  msgid "Track and measure by the Author, Post Type, Category, Tag, SEO Score, Focus Keyword, Logged-in User, User ID and Published Time of each post and page"
6478
  msgstr ""
6479
 
6480
- #: languages/vue.php:1023
6481
  msgid "Limited Support"
6482
  msgstr ""
6483
 
6484
- #: languages/vue.php:1026
6485
  msgid "Priority Support"
6486
  msgstr ""
6487
 
6488
- #: languages/vue.php:1029
6489
  msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
6490
  msgstr ""
6491
 
6492
- #: languages/vue.php:1032
6493
  msgid "Feature"
6494
  msgstr ""
6495
 
6496
- #: languages/vue.php:1035
6497
  msgid "Lite"
6498
  msgstr ""
6499
 
6500
- #: languages/vue.php:1038
6501
  msgid "Pro"
6502
  msgstr ""
6503
 
6504
- #: languages/vue.php:1041
6505
  msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
6506
  msgstr ""
6507
 
6508
- #: languages/vue.php:1047
6509
  msgid "Universal Tracking"
6510
  msgstr ""
6511
 
6512
- #: languages/vue.php:1050
6513
  msgid "Custom Google Analytics Link Tracking"
6514
  msgstr ""
6515
 
6516
- #: languages/vue.php:1053
6517
  msgid "Standard Tracking"
6518
  msgstr ""
6519
 
6520
- #: languages/vue.php:1056
6521
  msgid "Advanced Tracking"
6522
  msgstr ""
6523
 
6524
- #: languages/vue.php:1059
6525
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6526
  msgstr ""
6527
 
6528
- #: languages/vue.php:1062
6529
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6530
  msgstr ""
6531
 
6532
- #: languages/vue.php:1065
6533
  msgid "No-Code-Needed Tracking Features"
6534
  msgstr ""
6535
 
6536
- #: languages/vue.php:1068
6537
  msgid "Basic Tracking Options"
6538
  msgstr ""
6539
 
6540
- #: languages/vue.php:1071
6541
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6542
  msgstr ""
6543
 
6544
- #: languages/vue.php:1074
6545
  msgid "Advanced Tracking Options"
6546
  msgstr ""
6547
 
6548
- #: languages/vue.php:1077
6549
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6550
  msgstr ""
6551
 
6552
- #: languages/vue.php:1080
6553
  msgid "Inbox"
6554
  msgstr ""
6555
 
6556
- #: languages/vue.php:1083
6557
  msgid "Back to Inbox"
6558
  msgstr ""
6559
 
6560
- #: languages/vue.php:1086
6561
  msgid "View Dismissed"
6562
  msgstr ""
6563
 
6564
- #: languages/vue.php:1089
6565
  msgid "Notifications"
6566
  msgstr ""
6567
 
6568
- #: languages/vue.php:1092
6569
  msgid "Dismiss All"
6570
  msgstr ""
6571
 
6572
- #: languages/vue.php:1095
6573
  msgid "Dismissed"
6574
  msgstr ""
6575
 
6576
- #: languages/vue.php:1098
6577
  msgid "No Notifications"
6578
  msgstr ""
6579
 
6580
  #. Translators: Error status and error text.
6581
- #: languages/vue.php:1102
6582
  msgid "Can't load settings. Error: %1$s, %2$s"
6583
  msgstr ""
6584
 
6585
- #: languages/vue.php:1105
6586
  msgid "You appear to be offline."
6587
  msgstr ""
6588
 
6589
  #. Translators: Error status and error text.
6590
- #: languages/vue.php:1109
6591
  msgid "Can't save settings. Error: %1$s, %2$s"
6592
  msgstr ""
6593
 
6594
- #: languages/vue.php:1113
6595
  msgid "Network error encountered. Settings not saved."
6596
  msgstr ""
6597
 
6598
- #: languages/vue.php:1116
6599
  msgid "Show in widget mode"
6600
  msgstr ""
6601
 
6602
- #: languages/vue.php:1119
6603
  msgid "Show in full-width mode"
6604
  msgstr ""
6605
 
6606
- #: languages/vue.php:1122
6607
  msgid "Show Overview Reports"
6608
  msgstr ""
6609
 
6610
- #: languages/vue.php:1125
6611
  msgid "Show Publishers Reports"
6612
  msgstr ""
6613
 
6614
- #: languages/vue.php:1128
6615
  msgid "Show eCommerce Reports"
6616
  msgstr ""
6617
 
6618
- #: languages/vue.php:1131
6619
  msgid "Settings Menu"
6620
  msgstr ""
6621
 
6622
- #: languages/vue.php:1134
6623
  msgid "Available in PRO version"
6624
  msgstr ""
6625
 
6626
- #: languages/vue.php:1137
6627
  msgid "See All Reports"
6628
  msgstr ""
6629
 
6630
- #: languages/vue.php:1140
6631
  msgid "Go to the Analytics Dashboard"
6632
  msgstr ""
6633
 
6634
- #: languages/vue.php:1155
6635
  msgid "Cart Funnel"
6636
  msgstr ""
6637
 
6638
- #: languages/vue.php:1158
6639
  msgid "Customer Insights"
6640
  msgstr ""
6641
 
6642
- #: languages/vue.php:1161
6643
  msgid "Campaign Measurement"
6644
  msgstr ""
6645
 
6646
- #: languages/vue.php:1164
6647
  msgid "Customer Profiles"
6648
  msgstr ""
6649
 
6650
- #: languages/vue.php:1167
6651
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
6652
  msgstr ""
6653
 
6654
- #: languages/vue.php:1170
6655
  msgid "Truly Understand Your%1$s Customers With %2$sExactMetrics%3$s"
6656
  msgstr ""
6657
 
6658
- #: languages/vue.php:1173
6659
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from ExactMetrics!"
6660
  msgstr ""
6661
 
6662
- #: languages/vue.php:1176
6663
  msgid "Track all-new metrics!"
6664
  msgstr ""
6665
 
6666
- #: languages/vue.php:1179
6667
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
6668
  msgstr ""
6669
 
6670
- #: languages/vue.php:1182
6671
  msgid "FEATURES"
6672
  msgstr ""
6673
 
6674
- #: languages/vue.php:1185
6675
  msgid "Get The Unique Metrics Neccessary for Growth"
6676
  msgstr ""
6677
 
6678
- #: languages/vue.php:1188
6679
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
6680
  msgstr ""
6681
 
6682
- #: languages/vue.php:1191
6683
  msgid "Get Answers to the important questions %1$syou should know."
6684
  msgstr ""
6685
 
6686
- #: languages/vue.php:1194
6687
  msgid "Did the login/registration step of the checkout put users off?"
6688
  msgstr ""
6689
 
6690
- #: languages/vue.php:1197
6691
  msgid "Which ad campaign is driving the most revenue?"
6692
  msgstr ""
6693
 
6694
- #: languages/vue.php:1200
6695
  msgid "Who is my typical customer?"
6696
  msgstr ""
6697
 
6698
- #: languages/vue.php:1203
6699
  msgid "Level-up Your eCommerce store with %1$sExactMetrics + WooCommerce!%1$s"
6700
  msgstr ""
6701
 
6702
  #. Translators: Error status and error text.
6703
- #: languages/vue.php:1207
6704
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
6705
  msgstr ""
6706
 
6707
  #. Translators: Error status and error text.
6708
- #: languages/vue.php:1211
6709
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
6710
  msgstr ""
6711
 
6712
  #. Translators: Error status and error text.
6713
- #: languages/vue.php:1215
6714
  msgid "Can't load license details. Error: %1$s, %2$s"
6715
  msgstr ""
6716
 
6717
- #: languages/vue.php:1218
6718
  msgid "Error loading license details"
6719
  msgstr ""
6720
 
6721
  #. Translators: Error status and error text.
6722
- #: languages/vue.php:1222
6723
  msgid "Can't verify the license. Error: %1$s, %2$s"
6724
  msgstr ""
6725
 
6726
  #. Translators: Error status and error text.
6727
- #: languages/vue.php:1226
6728
  msgid "Can't validate the license. Error: %1$s, %2$s"
6729
  msgstr ""
6730
 
6731
- #: languages/vue.php:1229
6732
  msgid "Reset to default"
6733
  msgstr ""
6734
 
6735
- #: languages/vue.php:1232
6736
  msgid "The value entered does not match the required format"
6737
  msgstr ""
6738
 
6739
- #: languages/vue.php:1235
6740
  msgid "Check out the newly added classic mode"
6741
  msgstr ""
6742
 
6743
  #. Translators: Placeholder adds a line break.
6744
- #: languages/vue.php:1239
6745
  msgid "You can customize your %sdate range only in the PRO version."
6746
  msgstr ""
6747
 
6748
- #: languages/vue.php:1242
6749
  msgid "Help Us Improve"
6750
  msgstr ""
6751
 
6752
- #: languages/vue.php:1245
6753
  msgid "Help us better understand our users and their website needs."
6754
  msgstr ""
6755
 
6756
  #. Translators: Adds a link to the documentation.
6757
- #: languages/vue.php:1249
6758
  msgid "If enabled ExactMetrics will send some information about your WordPress site like what plugins and themes you use and which ExactMetrics settings you use to us so that we can improve our product. For a complete list of what we send and what we use it for, %1$svisit our website.%2$s"
6759
  msgstr ""
6760
 
6761
  #. Translators: The name of the field that is throwing a validation error.
6762
- #: languages/vue.php:1253
6763
  msgid "%s can't be empty."
6764
  msgstr ""
6765
 
6766
- #: languages/vue.php:1256
6767
  msgid "Duplicate values are not allowed."
6768
  msgstr ""
6769
 
6770
- #: languages/vue.php:1259
6771
  msgid "You can add maximum 5 items."
6772
  msgstr ""
6773
 
6774
- #: languages/vue.php:1262
6775
  msgid "At least 0 item required."
6776
  msgstr ""
6777
 
6778
- #: languages/vue.php:1265
6779
  msgid "Add Another Link Path"
6780
  msgstr ""
6781
 
6782
- #: languages/vue.php:1268
6783
  msgid "Remove row"
6784
  msgstr ""
6785
 
6786
- #: languages/vue.php:1272
6787
  msgid "Sessions"
6788
  msgstr ""
6789
 
6790
  #. Translators: Line break.
6791
- #: languages/vue.php:1276
6792
  msgid "Unique %s Sessions"
6793
  msgstr ""
6794
 
6795
- #: languages/vue.php:1280
6796
  msgid "Pageviews"
6797
  msgstr ""
6798
 
6799
  #. Translators: Line break.
6800
- #: languages/vue.php:1284
6801
  msgid "Unique %s Pageviews"
6802
  msgstr ""
6803
 
6804
- #: languages/vue.php:1287
6805
  msgid "A session is the browsing session of a single user to your site."
6806
  msgstr ""
6807
 
6808
- #: languages/vue.php:1290
6809
  msgid "A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview."
6810
  msgstr ""
6811
 
6812
- #: languages/vue.php:1293
6813
  msgid "Total duration of all sessions (in seconds) / number of sessions."
6814
  msgstr ""
6815
 
6816
- #: languages/vue.php:1296
6817
  msgid "Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further."
6818
  msgstr ""
6819
 
6820
- #: languages/vue.php:1299
6821
  msgid "The number of distinct tracked users"
6822
  msgstr ""
6823
 
6824
- #: languages/vue.php:1302
6825
  msgid "Avg. Session Duration"
6826
  msgstr ""
6827
 
6828
- #: languages/vue.php:1310
6829
  msgid "Total Users"
6830
  msgstr ""
6831
 
6832
- #: languages/vue.php:1313
6833
  msgid "No options available"
6834
  msgstr ""
6835
 
6836
  #. Translators: Placeholders make the text highlighted.
6837
- #: languages/vue.php:1317
6838
  msgid "%1$sNeed%2$s to Grow FASTER??"
6839
  msgstr ""
6840
 
6841
- #: languages/vue.php:1320
6842
  msgid "Get additional, actionable insights by going Pro."
6843
  msgstr ""
6844
 
6845
- #: languages/vue.php:1323
6846
  msgid "Skip"
6847
  msgstr ""
6848
 
6849
- #: languages/vue.php:1326
6850
  msgid "See All Features"
6851
  msgstr ""
6852
 
6853
- #: languages/vue.php:1329
6854
  msgid "Upgrade to Pro to get the complete ExactMetrics experience including 1 click tracking integrations for your favorite WordPress plugins and insightful reports backed by our legendary support team."
6855
  msgstr ""
6856
 
6857
- #: languages/vue.php:1332
6858
  msgid "Our Pro plan includes:"
6859
  msgstr ""
6860
 
6861
  #. Translators: Error status and error text.
6862
- #: languages/vue.php:1336
6863
  msgid "Can't load errors. Error: %1$s, %2$s"
6864
  msgstr ""
6865
 
6866
- #: languages/vue.php:1339
6867
  msgid "Real-Time Report"
6868
  msgstr ""
6869
 
6870
- #: languages/vue.php:1342
6871
  msgid "Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitor's activity when you need it."
6872
  msgstr ""
6873
 
6874
  #. Translators: add link to blog.
6875
- #: languages/vue.php:1346
6876
  msgid "To comply with Google's API policies we've had to remove the real time report from the lite version. You can read about this decision and why it was made in %1$sthis blog post%2$s. To access the real time report in the WordPress backend, you will need to upgrade to Pro."
6877
  msgstr ""
6878
 
6879
- #: languages/vue.php:1350
6880
  msgid "Here's what you get:"
6881
  msgstr ""
6882
 
6883
- #: languages/vue.php:1353
6884
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
6885
  msgstr ""
6886
 
6887
- #: languages/vue.php:1356
6888
  msgid "See Your Top Pages Immediately After Making Changes"
6889
  msgstr ""
6890
 
6891
- #: languages/vue.php:1359
6892
  msgid "See Your Top Referral Sources and Adapt Faster"
6893
  msgstr ""
6894
 
6895
- #: languages/vue.php:1362
6896
  msgid "See Your Traffic Demographics"
6897
  msgstr ""
6898
 
6899
- #: languages/vue.php:1365
6900
  msgid "Get Fresh Report Data Every 60 Seconds"
6901
  msgstr ""
6902
 
6903
- #: languages/vue.php:1368
6904
  msgid "See Where Your Visitors are Connecting From (country & city)"
6905
  msgstr ""
6906
 
6907
- #: languages/vue.php:1371
6908
  msgid "Forms Report"
6909
  msgstr ""
6910
 
6911
- #: languages/vue.php:1374
6912
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
6913
  msgstr ""
6914
 
6915
- #: languages/vue.php:1377
6916
  msgid "See Your Top Converting Forms and Optimize"
6917
  msgstr ""
6918
 
6919
- #: languages/vue.php:1380
6920
  msgid "See Your Forms Impressions Count to Find the Best Placement"
6921
  msgstr ""
6922
 
6923
- #: languages/vue.php:1383
6924
  msgid "Awesome, You're All Set!"
6925
  msgstr ""
6926
 
6927
- #: languages/vue.php:1386
6928
  msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
6929
  msgstr ""
6930
 
6931
  #. Translators: Make text bold.
6932
- #: languages/vue.php:1390
6933
  msgid "%1$sPlease Note:%2$s While Google Analytics is properly setup and tracking everything, it does not send the data back to WordPress immediately. Depending on the size of your website, it can take between a few hours to 24 hours for reports to populate."
6934
  msgstr ""
6935
 
6936
  #. Translators: Add link to blog.
6937
  #. Translators: Link to our blog.
6938
- #: languages/vue.php:1394
6939
- #: languages/vue.php:3586
6940
  msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
6941
  msgstr ""
6942
 
6943
- #: languages/vue.php:1397
6944
  msgid "Finish Setup & Exit Wizard"
6945
  msgstr ""
6946
 
6947
- #: languages/vue.php:1400
6948
  msgid "Google Analytics"
6949
  msgstr ""
6950
 
6951
- #: languages/vue.php:1403
6952
  msgid "Subscribe"
6953
  msgstr ""
6954
 
6955
- #: languages/vue.php:1406
6956
  msgid "Checking your website..."
6957
  msgstr ""
6958
 
6959
- #: languages/vue.php:1409
6960
  msgid "Recommended Addons"
6961
  msgstr ""
6962
 
6963
  #. Translators: Add a link to upgrade and make the text green.
6964
- #: languages/vue.php:1413
6965
  msgid "To unlock more features consider %1$supgrading to PRO%2$s.%3$s As a valued ExactMetrics Lite user you %4$sreceive 50%% off%5$s, automatically applied at checkout!"
6966
  msgstr ""
6967
 
6968
- #: languages/vue.php:1416
6969
  msgid "Upgrade to PRO Now"
6970
  msgstr ""
6971
 
6972
- #: languages/vue.php:1419
6973
  msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
6974
  msgstr ""
6975
 
6976
- #: languages/vue.php:1422
6977
  msgid "See All Your Important Store Metrics in One Place."
6978
  msgstr ""
6979
 
6980
- #: languages/vue.php:1425
6981
  msgid "... and more:"
6982
  msgstr ""
6983
 
6984
- #: languages/vue.php:1428
6985
  msgid "Dimensions- Track authors, categories, trags, searches, users and more."
6986
  msgstr ""
6987
 
6988
- #: languages/vue.php:1431
6989
  msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
6990
  msgstr ""
6991
 
6992
- #: languages/vue.php:1434
6993
  msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
6994
  msgstr ""
6995
 
6996
- #: languages/vue.php:1437
6997
  msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
6998
  msgstr ""
6999
 
7000
- #: languages/vue.php:1440
7001
  msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
7002
  msgstr ""
7003
 
7004
- #: languages/vue.php:1443
7005
  msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
7006
  msgstr ""
7007
 
7008
- #: languages/vue.php:1446
7009
  msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
7010
  msgstr ""
7011
 
7012
- #: languages/vue.php:1449
7013
  msgid "Ads- See who’s clicking on your Google Adsense banner ads."
7014
  msgstr ""
7015
 
7016
- #: languages/vue.php:1452
7017
  msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
7018
  msgstr ""
7019
 
7020
- #: languages/vue.php:1455
7021
  msgid "Ready to take your website to the next level? ExactMetrics gives you the accurate insights you need to make data-driven decisions to grow your traffic and conversions faster than ever before. Now you can easily enable advanced tracking on your website without having to know any code."
7022
  msgstr ""
7023
 
7024
- #: languages/vue.php:1458
7025
  msgid "The ExactMetrics Team"
7026
  msgstr ""
7027
 
7028
- #: languages/vue.php:1461
7029
  msgid "Custom Dimensions Report"
7030
  msgstr ""
7031
 
7032
- #: languages/vue.php:1464
7033
  msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
7034
  msgstr ""
7035
 
7036
- #: languages/vue.php:1467
7037
  msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
7038
  msgstr ""
7039
 
7040
- #: languages/vue.php:1470
7041
  msgid "Author tracking to see which author’s posts generate the most traffic"
7042
  msgstr ""
7043
 
7044
- #: languages/vue.php:1473
7045
  msgid "Post Type tracking to see which WordPress post types perform better"
7046
  msgstr ""
7047
 
7048
- #: languages/vue.php:1476
7049
  msgid "Category tracking to see which sections of your sites are the most popular"
7050
  msgstr ""
7051
 
7052
- #: languages/vue.php:1479
7053
  msgid "SEO score tracking to see which blog SEO scores are the most popular"
7054
  msgstr ""
7055
 
7056
- #: languages/vue.php:1482
7057
  msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
7058
  msgstr ""
7059
 
7060
- #: languages/vue.php:1485
7061
  msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
7062
  msgstr ""
7063
 
7064
  #. Translators: add link to blog.
7065
- #: languages/vue.php:1489
7066
  msgid "One of the factors that help deliver an outstanding user experience is having a website that loads quickly. With the Site Speed report you'll be able to check your site's performance directly from your ExactMetrics dashboard."
7067
  msgstr ""
7068
 
7069
- #: languages/vue.php:1492
7070
  msgid "See Your Homepage's Overall Performance Score"
7071
  msgstr ""
7072
 
7073
- #: languages/vue.php:1495
7074
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
7075
  msgstr ""
7076
 
7077
- #: languages/vue.php:1498
7078
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
7079
  msgstr ""
7080
 
7081
- #: languages/vue.php:1501
7082
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
7083
  msgstr ""
7084
 
7085
- #: languages/vue.php:1504
7086
  msgid "Hide dashboard widget"
7087
  msgstr ""
7088
 
7089
- #: languages/vue.php:1507
7090
  msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
7091
  msgstr ""
7092
 
7093
- #: languages/vue.php:1510
7094
  msgid "Yes, hide it!"
7095
  msgstr ""
7096
 
7097
- #: languages/vue.php:1513
7098
  msgid "No, cancel!"
7099
  msgstr ""
7100
 
7101
- #: languages/vue.php:1516
7102
  msgid "ExactMetrics Widget Hidden"
7103
  msgstr ""
7104
 
7105
- #: languages/vue.php:1519
7106
  msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
7107
  msgstr ""
7108
 
7109
  #. Translators: Error status and error text.
7110
- #: languages/vue.php:1523
7111
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7112
  msgstr ""
7113
 
7114
  #. Translators: Error status and error text.
7115
- #: languages/vue.php:1527
7116
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7117
  msgstr ""
7118
 
7119
- #: languages/vue.php:1530
7120
  msgid "You appear to be offline. Settings not saved."
7121
  msgstr ""
7122
 
7123
  #. Translators: Error status and error text.
7124
- #: languages/vue.php:1534
7125
  msgid "Can't authenticate. Error: %1$s, %2$s"
7126
  msgstr ""
7127
 
7128
  #. Translators: Error status and error text.
7129
- #: languages/vue.php:1538
7130
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7131
  msgstr ""
7132
 
7133
  #. Translators: Error status and error text.
7134
- #: languages/vue.php:1542
7135
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7136
  msgstr ""
7137
 
7138
- #: languages/vue.php:1545
7139
  msgid "Still Calculating..."
7140
  msgstr ""
7141
 
7142
- #: languages/vue.php:1548
7143
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7144
  msgstr ""
7145
 
7146
- #: languages/vue.php:1551
7147
  msgid "Back to Overview Report"
7148
  msgstr ""
7149
 
7150
- #: languages/vue.php:1554
7151
  msgid "Your 2020 Analytics Report"
7152
  msgstr ""
7153
 
7154
- #: languages/vue.php:1557
7155
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7156
  msgstr ""
7157
 
7158
- #: languages/vue.php:1560
7159
  msgid "Audience"
7160
  msgstr ""
7161
 
7162
- #: languages/vue.php:1563
7163
  msgid "Congrats"
7164
  msgstr ""
7165
 
7166
- #: languages/vue.php:1566
7167
  msgid "Your website was quite popular this year! "
7168
  msgstr ""
7169
 
7170
- #: languages/vue.php:1569
7171
  msgid "You had "
7172
  msgstr ""
7173
 
7174
- #: languages/vue.php:1572
7175
  msgid " visitors!"
7176
  msgstr ""
7177
 
7178
- #: languages/vue.php:1575
7179
  msgid " visitors"
7180
  msgstr ""
7181
 
7182
- #: languages/vue.php:1578
7183
  msgid "Total Visitors"
7184
  msgstr ""
7185
 
7186
- #: languages/vue.php:1581
7187
  msgid "Total Sessions"
7188
  msgstr ""
7189
 
7190
- #: languages/vue.php:1584
7191
  msgid "Visitors by Month"
7192
  msgstr ""
7193
 
7194
- #: languages/vue.php:1587
7195
  msgid "January 1, 2020 - December 31, 2020"
7196
  msgstr ""
7197
 
7198
- #: languages/vue.php:1590
7199
  msgid "A Tip for 2021"
7200
  msgstr ""
7201
 
7202
- #: languages/vue.php:1593
7203
  msgid "Demographics"
7204
  msgstr ""
7205
 
7206
- #: languages/vue.php:1596
7207
  msgid "#1"
7208
  msgstr ""
7209
 
7210
- #: languages/vue.php:1599