Version Description
Download this release
Release Info
Developer | manejaam |
Plugin | 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 +2 -2
- includes/admin/ajax.php +260 -258
- includes/measurement-protocol-v4.php +198 -120
- languages/google-analytics-dashboard-for-wp.pot +1064 -1064
- languages/vue.php +125 -117
- lite/assets/vue/js/wizard.js +1 -1
- lite/includes/admin/onboarding-wizard.php +26 -23
- lite/includes/admin/user-journey/init.php +8 -4
- readme.txt +9 -5
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.
|
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.
|
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 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
*
|
158 |
-
*
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
$deactivate = deactivate_plugins( $_POST['plugin'] );
|
177 |
-
}
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
*
|
188 |
-
*
|
189 |
-
*
|
190 |
-
*
|
191 |
-
*
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
*
|
219 |
-
*
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
|
|
|
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
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
array(
|
38 |
-
'
|
39 |
-
'
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
$
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
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.
|
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-
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
246 |
msgid "Please Setup Website Analytics to See Audience Insights"
|
247 |
msgstr ""
|
248 |
|
249 |
#: includes/admin/admin.php:325
|
250 |
-
#: languages/vue.php:
|
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:
|
265 |
msgid "Learn More"
|
266 |
msgstr ""
|
267 |
|
268 |
#: includes/admin/admin.php:329
|
269 |
-
#: languages/vue.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
1439 |
msgid "General"
|
1440 |
msgstr ""
|
1441 |
|
@@ -4835,7 +4835,7 @@ msgid "Theme"
|
|
4835 |
msgstr ""
|
4836 |
|
4837 |
#: languages/gutenberg.php:77
|
4838 |
-
#: languages/vue.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
5233 |
msgid "Please wait..."
|
5234 |
msgstr ""
|
5235 |
|
5236 |
-
#: languages/vue.php:
|
5237 |
msgid "Saving Changes..."
|
5238 |
msgstr ""
|
5239 |
|
5240 |
-
#: languages/vue.php:
|
5241 |
msgid "Settings Updated"
|
5242 |
msgstr ""
|
5243 |
|
5244 |
#. Translators: Add a link to the onboarding wizard.
|
5245 |
-
#: languages/vue.php:
|
5246 |
msgid "You need to %1$sconnect ExactMetrics%2$s first"
|
5247 |
msgstr ""
|
5248 |
|
5249 |
-
#: languages/vue.php:
|
5250 |
msgid "Could Not Save Changes"
|
5251 |
msgstr ""
|
5252 |
|
5253 |
-
#: languages/vue.php:
|
5254 |
msgid "Loading new report data"
|
5255 |
msgstr ""
|
5256 |
|
5257 |
#. Translators: Placeholder gets replaced with an arrow icon.
|
5258 |
-
#: languages/vue.php:
|
5259 |
msgid "Continue %s"
|
5260 |
msgstr ""
|
5261 |
|
5262 |
-
#: languages/vue.php:
|
5263 |
msgid "Error"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
-
#: languages/vue.php:
|
5267 |
msgid "Please try again."
|
5268 |
msgstr ""
|
5269 |
|
5270 |
-
#: languages/vue.php:
|
5271 |
msgid "Unlock the Publishers Report and Focus on the Content that Matters"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
-
#: languages/vue.php:
|
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:
|
5279 |
msgid "Unlock the Publishers Report and Focus on the Content That Matters"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
-
#: languages/vue.php:
|
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:
|
5287 |
msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
|
5288 |
msgstr ""
|
5289 |
|
5290 |
-
#: languages/vue.php:
|
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:
|
5295 |
msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
|
5296 |
msgstr ""
|
5297 |
|
5298 |
-
#: languages/vue.php:
|
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:
|
5303 |
msgid "Unlock the Forms Report and Improve Conversions"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
-
#: languages/vue.php:
|
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:
|
5311 |
msgid "Unlock the Search Console Report and See How People Find Your Website"
|
5312 |
msgstr ""
|
5313 |
|
5314 |
-
#: languages/vue.php:
|
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:
|
5319 |
msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
|
5320 |
msgstr ""
|
5321 |
|
5322 |
-
#: languages/vue.php:
|
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:
|
5327 |
msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
|
5328 |
msgstr ""
|
5329 |
|
5330 |
-
#: languages/vue.php:
|
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:
|
5335 |
msgid "Today"
|
5336 |
msgstr ""
|
5337 |
|
@@ -5347,21 +5347,21 @@ msgstr ""
|
|
5347 |
msgid "Last 7 days"
|
5348 |
msgstr ""
|
5349 |
|
5350 |
-
#: languages/vue.php:
|
5351 |
msgid "Loading settings"
|
5352 |
msgstr ""
|
5353 |
|
5354 |
#. Translators: Number of visitors.
|
5355 |
-
#: languages/vue.php:
|
5356 |
msgid "See how %s visitors found your site!"
|
5357 |
msgstr ""
|
5358 |
|
5359 |
#. Translators: Number of visitors.
|
5360 |
-
#: languages/vue.php:
|
5361 |
msgid "Your website was visited by %s users in the last 30 days."
|
5362 |
msgstr ""
|
5363 |
|
5364 |
-
#: languages/vue.php:
|
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:
|
5413 |
msgid "Lite vs Pro"
|
5414 |
msgstr ""
|
5415 |
|
5416 |
-
#: languages/vue.php:
|
5417 |
msgid "Success! "
|
5418 |
msgstr ""
|
5419 |
|
5420 |
-
#: languages/vue.php:
|
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:
|
5426 |
msgid "Get Started %s"
|
5427 |
msgstr ""
|
5428 |
|
5429 |
#. Translators: Error status and error text.
|
5430 |
-
#: languages/vue.php:
|
5431 |
msgid "Can't load report data. Error: %1$s, %2$s"
|
5432 |
msgstr ""
|
5433 |
|
5434 |
-
#: languages/vue.php:
|
5435 |
msgid "Error loading report data"
|
5436 |
msgstr ""
|
5437 |
|
5438 |
#. Translators: Makes the text bold.
|
5439 |
-
#: languages/vue.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
5480 |
msgid "%1$sSee All Features%2$s"
|
5481 |
msgstr ""
|
5482 |
|
5483 |
-
#: languages/vue.php:
|
5484 |
msgid "Pro Plan"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
-
#: languages/vue.php:
|
5488 |
msgid "per year"
|
5489 |
msgstr ""
|
5490 |
|
5491 |
-
#: languages/vue.php:
|
5492 |
msgid "Upgrade to ExactMetrics Pro Now"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
-
#: languages/vue.php:
|
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:
|
5500 |
msgid "Daniel Monaghan - Experienced"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
-
#: languages/vue.php:
|
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:
|
5508 |
msgid "Naomi Spirit - From This Day"
|
5509 |
msgstr ""
|
5510 |
|
5511 |
-
#: languages/vue.php:
|
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:
|
5516 |
msgid "Julie Dupuis - Faraway Land Travel"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
-
#: languages/vue.php:
|
5520 |
msgid "Guides and Documentation:"
|
5521 |
msgstr ""
|
5522 |
|
5523 |
-
#: languages/vue.php:
|
5524 |
msgid "Upgrade to PRO"
|
5525 |
msgstr ""
|
5526 |
|
5527 |
-
#: languages/vue.php:
|
5528 |
msgid "eCommerce Tracking"
|
5529 |
msgstr ""
|
5530 |
|
5531 |
-
#: languages/vue.php:
|
5532 |
msgid "Custom Dimensions"
|
5533 |
msgstr ""
|
5534 |
|
5535 |
-
#: languages/vue.php:
|
5536 |
msgid "Form Tracking"
|
5537 |
msgstr ""
|
5538 |
|
5539 |
-
#: languages/vue.php:
|
5540 |
msgid "AMP Support"
|
5541 |
msgstr ""
|
5542 |
|
5543 |
-
#: languages/vue.php:
|
5544 |
msgid "Author Tracking"
|
5545 |
msgstr ""
|
5546 |
|
5547 |
-
#: languages/vue.php:
|
5548 |
msgid "EU Compliance Addon"
|
5549 |
msgstr ""
|
5550 |
|
5551 |
-
#: languages/vue.php:
|
5552 |
msgid "Real Time Report"
|
5553 |
msgstr ""
|
5554 |
|
5555 |
-
#: languages/vue.php:
|
5556 |
msgid "Google Optimize"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
-
#: languages/vue.php:
|
5560 |
#: lite/includes/admin/reports/report-queries.php:22
|
5561 |
msgid "Search Console"
|
5562 |
msgstr ""
|
5563 |
|
5564 |
-
#: languages/vue.php:
|
5565 |
msgid "Custom Date Ranges"
|
5566 |
msgstr ""
|
5567 |
|
5568 |
-
#: languages/vue.php:
|
5569 |
-
#: languages/vue.php:
|
5570 |
msgid "Getting Started with ExactMetrics"
|
5571 |
msgstr ""
|
5572 |
|
5573 |
-
#: languages/vue.php:
|
5574 |
-
#: languages/vue.php:
|
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:
|
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:
|
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:
|
5587 |
msgid "Launch the wizard!"
|
5588 |
msgstr ""
|
5589 |
|
5590 |
-
#: languages/vue.php:
|
5591 |
msgid "Welcome to"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
#. Translators: Adds a line break.
|
5595 |
-
#: languages/vue.php:
|
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:
|
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:
|
5605 |
msgid "ExactMetrics Features & Addons"
|
5606 |
msgstr ""
|
5607 |
|
5608 |
-
#: languages/vue.php:
|
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:
|
5614 |
msgid "Recommended Plugin: %s"
|
5615 |
msgstr ""
|
5616 |
|
5617 |
-
#: languages/vue.php:
|
5618 |
msgid "Install"
|
5619 |
msgstr ""
|
5620 |
|
5621 |
-
#: languages/vue.php:
|
5622 |
msgid "Activate"
|
5623 |
msgstr ""
|
5624 |
|
5625 |
-
#: languages/vue.php:
|
5626 |
msgid "ExactMetrics encountered an error loading your report data"
|
5627 |
msgstr ""
|
5628 |
|
5629 |
-
#: languages/vue.php:
|
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:
|
5634 |
-
#: languages/vue.php:
|
5635 |
msgid "Reconnect ExactMetrics"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
-
#: languages/vue.php:
|
5639 |
msgid "Re-Authenticating"
|
5640 |
msgstr ""
|
5641 |
|
5642 |
-
#: languages/vue.php:
|
5643 |
msgid "Ok"
|
5644 |
msgstr ""
|
5645 |
|
5646 |
-
#: languages/vue.php:
|
5647 |
-
#: languages/vue.php:
|
5648 |
msgid "ExactMetrics Addons"
|
5649 |
msgstr ""
|
5650 |
|
5651 |
-
#: languages/vue.php:
|
5652 |
msgid "Search Addons"
|
5653 |
msgstr ""
|
5654 |
|
5655 |
-
#: languages/vue.php:
|
5656 |
msgid "Save Changes"
|
5657 |
msgstr ""
|
5658 |
|
5659 |
-
#: languages/vue.php:
|
5660 |
msgid "Exit Setup"
|
5661 |
msgstr ""
|
5662 |
|
5663 |
-
#: languages/vue.php:
|
5664 |
msgid "Time to Purchase"
|
5665 |
msgstr ""
|
5666 |
|
5667 |
-
#: languages/vue.php:
|
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:
|
5672 |
msgid "Sessions to Purchase"
|
5673 |
msgstr ""
|
5674 |
|
5675 |
-
#: languages/vue.php:
|
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:
|
5680 |
msgid "New Customers"
|
5681 |
msgstr ""
|
5682 |
|
5683 |
-
#: languages/vue.php:
|
5684 |
msgid "This list shows the percentage of new customers who purchased a product from your website."
|
5685 |
msgstr ""
|
5686 |
|
5687 |
-
#: languages/vue.php:
|
5688 |
msgid "Abandoned Checkouts"
|
5689 |
msgstr ""
|
5690 |
|
5691 |
-
#: languages/vue.php:
|
5692 |
msgid "This list shows the percentage of carts that never went through the checkout process."
|
5693 |
msgstr ""
|
5694 |
|
5695 |
-
#: languages/vue.php:
|
5696 |
msgid "Top Posts/Pages"
|
5697 |
msgstr ""
|
5698 |
|
5699 |
-
#: languages/vue.php:
|
5700 |
msgid "This list shows the most viewed posts and pages on your website."
|
5701 |
msgstr ""
|
5702 |
|
5703 |
-
#: languages/vue.php:
|
5704 |
msgid "New vs. Returning Visitors"
|
5705 |
msgstr ""
|
5706 |
|
5707 |
-
#: languages/vue.php:
|
5708 |
msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
|
5709 |
msgstr ""
|
5710 |
|
5711 |
-
#: languages/vue.php:
|
5712 |
msgid "Device Breakdown"
|
5713 |
msgstr ""
|
5714 |
|
5715 |
-
#: languages/vue.php:
|
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:
|
5720 |
msgid "Top Landing Pages"
|
5721 |
msgstr ""
|
5722 |
|
5723 |
-
#: languages/vue.php:
|
5724 |
msgid "This list shows the top pages users first land on when visiting your website."
|
5725 |
msgstr ""
|
5726 |
|
5727 |
-
#: languages/vue.php:
|
5728 |
msgid "Top Exit Pages"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
-
#: languages/vue.php:
|
5732 |
msgid "This list shows the top pages users exit your website from."
|
5733 |
msgstr ""
|
5734 |
|
5735 |
-
#: languages/vue.php:
|
5736 |
msgid "Top Outbound Links"
|
5737 |
msgstr ""
|
5738 |
|
5739 |
-
#: languages/vue.php:
|
5740 |
msgid "This list shows the top links clicked on your website that go to another website."
|
5741 |
msgstr ""
|
5742 |
|
5743 |
-
#: languages/vue.php:
|
5744 |
msgid "Top Affiliate Links"
|
5745 |
msgstr ""
|
5746 |
|
5747 |
-
#: languages/vue.php:
|
5748 |
msgid "This list shows the top affiliate links your visitors clicked on."
|
5749 |
msgstr ""
|
5750 |
|
5751 |
-
#: languages/vue.php:
|
5752 |
msgid "Top Download Links"
|
5753 |
msgstr ""
|
5754 |
|
5755 |
-
#: languages/vue.php:
|
5756 |
msgid "This list shows the download links your visitors clicked the most."
|
5757 |
msgstr ""
|
5758 |
|
5759 |
-
#: languages/vue.php:
|
5760 |
msgid "Top Products"
|
5761 |
msgstr ""
|
5762 |
|
5763 |
-
#: languages/vue.php:
|
5764 |
msgid "This list shows the top selling products on your website."
|
5765 |
msgstr ""
|
5766 |
|
5767 |
-
#: languages/vue.php:
|
5768 |
msgid "Top Conversion Sources"
|
5769 |
msgstr ""
|
5770 |
|
5771 |
-
#: languages/vue.php:
|
5772 |
msgid "This list shows the top referral websites in terms of product revenue."
|
5773 |
msgstr ""
|
5774 |
|
5775 |
-
#: languages/vue.php:
|
5776 |
msgid "Total Add/Remove"
|
5777 |
msgstr ""
|
5778 |
|
5779 |
-
#: languages/vue.php:
|
5780 |
msgid "Analytics"
|
5781 |
msgstr ""
|
5782 |
|
5783 |
#. Translators: Adds an arrow icon.
|
5784 |
-
#: languages/vue.php:
|
5785 |
msgid "View All Reports %s"
|
5786 |
msgstr ""
|
5787 |
|
5788 |
-
#: languages/vue.php:
|
5789 |
msgid "You must connect with ExactMetrics before you can view reports."
|
5790 |
msgstr ""
|
5791 |
|
5792 |
-
#: languages/vue.php:
|
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:
|
5797 |
msgid "Launch Setup Wizard"
|
5798 |
msgstr ""
|
5799 |
|
5800 |
-
#: languages/vue.php:
|
5801 |
msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
|
5802 |
msgstr ""
|
5803 |
|
5804 |
-
#: languages/vue.php:
|
5805 |
msgid "See Quick Links"
|
5806 |
msgstr ""
|
5807 |
|
5808 |
-
#: languages/vue.php:
|
5809 |
msgid "Suggest a Feature"
|
5810 |
msgstr ""
|
5811 |
|
5812 |
-
#: languages/vue.php:
|
5813 |
msgid "Join Our Community"
|
5814 |
msgstr ""
|
5815 |
|
5816 |
-
#: languages/vue.php:
|
5817 |
msgid "Support & Docs"
|
5818 |
msgstr ""
|
5819 |
|
5820 |
-
#: languages/vue.php:
|
5821 |
msgid "Upgrade to Pro »"
|
5822 |
msgstr ""
|
5823 |
|
5824 |
-
#: languages/vue.php:
|
5825 |
#: lite/includes/admin/reports/report-publisher.php:22
|
5826 |
msgid "Publishers"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
-
#: languages/vue.php:
|
5830 |
#: lite/includes/admin/reports/report-ecommerce.php:22
|
5831 |
msgid "eCommerce"
|
5832 |
msgstr ""
|
5833 |
|
5834 |
-
#: languages/vue.php:
|
5835 |
msgid "Dimensions Report"
|
5836 |
msgstr ""
|
5837 |
|
5838 |
-
#: languages/vue.php:
|
5839 |
#: lite/includes/admin/reports/report-forms.php:22
|
5840 |
msgid "Forms"
|
5841 |
msgstr ""
|
5842 |
|
5843 |
-
#: languages/vue.php:
|
5844 |
msgid "Real-Time"
|
5845 |
msgstr ""
|
5846 |
|
5847 |
-
#: languages/vue.php:
|
5848 |
msgid "Site Speed Report"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
-
#: languages/vue.php:
|
5852 |
msgid "2020 Year in Review"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
-
#: languages/vue.php:
|
5856 |
msgid "Import Export"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
-
#: languages/vue.php:
|
5860 |
msgid "PrettyLinks Integration"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
-
#: languages/vue.php:
|
5864 |
msgid "Popular Posts Widget"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
-
#: languages/vue.php:
|
5868 |
msgid "Popular Products"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
-
#: languages/vue.php:
|
5872 |
msgid "Sub menu item for WooCommerce Analytics"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
-
#: languages/vue.php:
|
5876 |
msgid "Engagement"
|
5877 |
msgstr ""
|
5878 |
|
5879 |
-
#: languages/vue.php:
|
5880 |
msgid "Publisher"
|
5881 |
msgstr ""
|
5882 |
|
5883 |
-
#: languages/vue.php:
|
5884 |
msgid "Conversions"
|
5885 |
msgstr ""
|
5886 |
|
5887 |
-
#: languages/vue.php:
|
5888 |
msgid "Advanced"
|
5889 |
msgstr ""
|
5890 |
|
5891 |
-
#: languages/vue.php:
|
5892 |
msgid "URL Builder"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
#. Translators: Adds a link to documentation.
|
5896 |
-
#: languages/vue.php:
|
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:
|
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:
|
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:
|
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:
|
5916 |
msgid "Installing Addon"
|
5917 |
msgstr ""
|
5918 |
|
5919 |
-
#: languages/vue.php:
|
5920 |
msgid "Activating Addon"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
-
#: languages/vue.php:
|
5924 |
msgid "Addon Activated"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
-
#: languages/vue.php:
|
5928 |
msgid "Loading report data"
|
5929 |
msgstr ""
|
5930 |
|
5931 |
-
#: languages/vue.php:
|
5932 |
msgid "Please activate manually"
|
5933 |
msgstr ""
|
5934 |
|
5935 |
#. Translators: Adds the error status and status text.
|
5936 |
-
#: languages/vue.php:
|
5937 |
msgid "Error: %1$s, %2$s"
|
5938 |
msgstr ""
|
5939 |
|
5940 |
-
#: languages/vue.php:
|
5941 |
msgid "Error Activating Addon"
|
5942 |
msgstr ""
|
5943 |
|
5944 |
-
#: languages/vue.php:
|
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:
|
5952 |
msgid "Dismiss"
|
5953 |
msgstr ""
|
5954 |
|
5955 |
-
#: languages/vue.php:
|
5956 |
msgid "Redirecting"
|
5957 |
msgstr ""
|
5958 |
|
5959 |
-
#: languages/vue.php:
|
5960 |
msgid "Please wait"
|
5961 |
msgstr ""
|
5962 |
|
5963 |
-
#: languages/vue.php:
|
5964 |
msgid "activate"
|
5965 |
msgstr ""
|
5966 |
|
5967 |
-
#: languages/vue.php:
|
5968 |
msgid "install"
|
5969 |
msgstr ""
|
5970 |
|
5971 |
-
#: languages/vue.php:
|
5972 |
msgid "Visit addons page"
|
5973 |
msgstr ""
|
5974 |
|
5975 |
-
#: languages/vue.php:
|
5976 |
msgid "Report Unavailable"
|
5977 |
msgstr ""
|
5978 |
|
5979 |
#. Translators: Install/Activate the addon.
|
5980 |
-
#: languages/vue.php:
|
5981 |
msgid "%s Addon"
|
5982 |
msgstr ""
|
5983 |
|
5984 |
-
#: languages/vue.php:
|
5985 |
msgid "Go Back To Reports"
|
5986 |
msgstr ""
|
5987 |
|
5988 |
-
#: languages/vue.php:
|
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:
|
5994 |
msgid "Step %1$s of %2$s"
|
5995 |
msgstr ""
|
5996 |
|
5997 |
-
#: languages/vue.php:
|
5998 |
msgid "Go back"
|
5999 |
msgstr ""
|
6000 |
|
6001 |
-
#: languages/vue.php:
|
6002 |
msgid "Welcome to ExactMetrics!"
|
6003 |
msgstr ""
|
6004 |
|
6005 |
-
#: languages/vue.php:
|
6006 |
msgid "Let's get you set up."
|
6007 |
msgstr ""
|
6008 |
|
6009 |
-
#: languages/vue.php:
|
6010 |
msgid "Save and Continue"
|
6011 |
msgstr ""
|
6012 |
|
6013 |
-
#: languages/vue.php:
|
6014 |
msgid "Which category best describes your website?"
|
6015 |
msgstr ""
|
6016 |
|
6017 |
-
#: languages/vue.php:
|
6018 |
msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
|
6019 |
msgstr ""
|
6020 |
|
6021 |
-
#: languages/vue.php:
|
6022 |
msgid "Business Website"
|
6023 |
msgstr ""
|
6024 |
|
6025 |
#. Translators: Make text bold.
|
6026 |
-
#: languages/vue.php:
|
6027 |
msgid "Publisher %1$s(Blog)%2$s"
|
6028 |
msgstr ""
|
6029 |
|
6030 |
-
#: languages/vue.php:
|
6031 |
msgid "Ecommerce"
|
6032 |
msgstr ""
|
6033 |
|
6034 |
-
#: languages/vue.php:
|
6035 |
msgid "Connect ExactMetrics to Your Website"
|
6036 |
msgstr ""
|
6037 |
|
6038 |
-
#: languages/vue.php:
|
6039 |
msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
|
6040 |
msgstr ""
|
6041 |
|
6042 |
-
#: languages/vue.php:
|
6043 |
msgid "Connect Google Analytics + WordPress"
|
6044 |
msgstr ""
|
6045 |
|
6046 |
-
#: languages/vue.php:
|
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:
|
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:
|
6055 |
msgid "Manually enter your UA code"
|
6056 |
msgstr ""
|
6057 |
|
6058 |
-
#: languages/vue.php:
|
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:
|
6063 |
msgid "UA code can't be empty"
|
6064 |
msgstr ""
|
6065 |
|
6066 |
-
#: languages/vue.php:
|
6067 |
msgid "Saving UA code..."
|
6068 |
msgstr ""
|
6069 |
|
6070 |
-
#: languages/vue.php:
|
6071 |
msgid "ExactMetrics Recommends WPForms"
|
6072 |
msgstr ""
|
6073 |
|
6074 |
-
#: languages/vue.php:
|
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:
|
6079 |
msgid "Used on over 4,000,000 websites!"
|
6080 |
msgstr ""
|
6081 |
|
6082 |
-
#: languages/vue.php:
|
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:
|
6087 |
msgid "Skip this Step"
|
6088 |
msgstr ""
|
6089 |
|
6090 |
-
#: languages/vue.php:
|
6091 |
msgid "Continue & Install WPForms"
|
6092 |
msgstr ""
|
6093 |
|
6094 |
-
#: languages/vue.php:
|
6095 |
msgid "Installing..."
|
6096 |
msgstr ""
|
6097 |
|
6098 |
-
#: languages/vue.php:
|
6099 |
msgid "Recommended Settings"
|
6100 |
msgstr ""
|
6101 |
|
6102 |
-
#: languages/vue.php:
|
6103 |
msgid "ExactMetrics recommends the following settings based on your configuration."
|
6104 |
msgstr ""
|
6105 |
|
6106 |
-
#: languages/vue.php:
|
6107 |
msgid "Events Tracking"
|
6108 |
msgstr ""
|
6109 |
|
6110 |
-
#: languages/vue.php:
|
6111 |
msgid "Must have for all click tracking on site."
|
6112 |
msgstr ""
|
6113 |
|
6114 |
-
#: languages/vue.php:
|
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:
|
6119 |
msgid "Enhanced Link Attribution"
|
6120 |
msgstr ""
|
6121 |
|
6122 |
-
#: languages/vue.php:
|
6123 |
msgid "Improves the accuracy of your In-Page Analytics."
|
6124 |
msgstr ""
|
6125 |
|
6126 |
-
#: languages/vue.php:
|
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:
|
6131 |
msgid "Install Updates Automatically"
|
6132 |
msgstr ""
|
6133 |
|
6134 |
-
#: languages/vue.php:
|
6135 |
msgid "Get the latest features, bug fixes, and security updates as they are released."
|
6136 |
msgstr ""
|
6137 |
|
6138 |
-
#: languages/vue.php:
|
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:
|
6143 |
msgid "File Download Tracking"
|
6144 |
msgstr ""
|
6145 |
|
6146 |
-
#: languages/vue.php:
|
6147 |
msgid "Helps you see file downloads data."
|
6148 |
msgstr ""
|
6149 |
|
6150 |
-
#: languages/vue.php:
|
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:
|
6156 |
msgid "Path (example: %s)"
|
6157 |
msgstr ""
|
6158 |
|
6159 |
-
#: languages/vue.php:
|
6160 |
msgid "Path has to start with a / and have no spaces"
|
6161 |
msgstr ""
|
6162 |
|
6163 |
#. Translators: Example label (aff).
|
6164 |
-
#: languages/vue.php:
|
6165 |
msgid "Label (example: %s)"
|
6166 |
msgstr ""
|
6167 |
|
6168 |
-
#: languages/vue.php:
|
6169 |
msgid "Label can't contain any spaces"
|
6170 |
msgstr ""
|
6171 |
|
6172 |
-
#: languages/vue.php:
|
6173 |
msgid "Helps you increase affiliate revenue."
|
6174 |
msgstr ""
|
6175 |
|
6176 |
-
#: languages/vue.php:
|
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:
|
6181 |
msgid "Affiliate Link Tracking"
|
6182 |
msgstr ""
|
6183 |
|
6184 |
-
#: languages/vue.php:
|
6185 |
msgid "Who Can See Reports"
|
6186 |
msgstr ""
|
6187 |
|
6188 |
-
#: languages/vue.php:
|
6189 |
msgid "These user roles will be able to access ExactMetrics' reports in the WordPress admin area."
|
6190 |
msgstr ""
|
6191 |
|
6192 |
-
#: languages/vue.php:
|
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:
|
6197 |
msgid "Save and continue"
|
6198 |
msgstr ""
|
6199 |
|
6200 |
-
#: languages/vue.php:
|
6201 |
msgid "Events Tracking is enabled the moment you set up ExactMetrics"
|
6202 |
msgstr ""
|
6203 |
|
6204 |
-
#: languages/vue.php:
|
6205 |
msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
|
6206 |
msgstr ""
|
6207 |
|
6208 |
-
#: languages/vue.php:
|
6209 |
msgid "+ Add Role"
|
6210 |
msgstr ""
|
6211 |
|
6212 |
#. Translators: Placeholders are used for making text bold and adding a link.
|
6213 |
-
#: languages/vue.php:
|
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:
|
6218 |
#: lite/includes/admin/reports/report-dimensions.php:22
|
6219 |
msgid "Dimensions"
|
6220 |
msgstr ""
|
6221 |
|
6222 |
-
#: languages/vue.php:
|
6223 |
msgid "Site Speed"
|
6224 |
msgstr ""
|
6225 |
|
6226 |
-
#: languages/vue.php:
|
6227 |
msgid "License Key"
|
6228 |
msgstr ""
|
6229 |
|
6230 |
#. Translators: Add link to retrieve license key from account.
|
6231 |
-
#: languages/vue.php:
|
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:
|
6236 |
msgid "Google Authentication"
|
6237 |
msgstr ""
|
6238 |
|
6239 |
-
#: languages/vue.php:
|
6240 |
msgid "Miscellaneous"
|
6241 |
msgstr ""
|
6242 |
|
6243 |
-
#: languages/vue.php:
|
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:
|
6248 |
msgid "Hide Announcements"
|
6249 |
msgstr ""
|
6250 |
|
6251 |
-
#: languages/vue.php:
|
6252 |
msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
|
6253 |
msgstr ""
|
6254 |
|
6255 |
-
#. Translators:
|
6256 |
-
#: languages/vue.php:
|
6257 |
msgid "To unlock more features consider %1$supgrading to PRO%2$s."
|
6258 |
msgstr ""
|
6259 |
|
6260 |
-
#: languages/vue.php:
|
6261 |
msgid "Receive 50% off automatically applied at the checkout!"
|
6262 |
msgstr ""
|
6263 |
|
6264 |
-
#: languages/vue.php:
|
6265 |
msgid "See all features"
|
6266 |
msgstr ""
|
6267 |
|
6268 |
-
#: languages/vue.php:
|
6269 |
msgid "Setup Wizard"
|
6270 |
msgstr ""
|
6271 |
|
6272 |
-
#: languages/vue.php:
|
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:
|
6277 |
msgid "Relaunch Setup Wizard"
|
6278 |
msgstr ""
|
6279 |
|
6280 |
-
#: languages/vue.php:
|
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:
|
6285 |
msgid "No addons found."
|
6286 |
msgstr ""
|
6287 |
|
6288 |
-
#: languages/vue.php:
|
6289 |
msgid "Refresh Addons"
|
6290 |
msgstr ""
|
6291 |
|
6292 |
#. Translators: Adds a line break.
|
6293 |
-
#: languages/vue.php:
|
6294 |
msgid "Upgrade to Pro to unlock addons and other great features."
|
6295 |
msgstr ""
|
6296 |
|
6297 |
-
#: languages/vue.php:
|
6298 |
msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
|
6299 |
msgstr ""
|
6300 |
|
6301 |
-
#: languages/vue.php:
|
6302 |
msgid "Refreshing Addons"
|
6303 |
msgstr ""
|
6304 |
|
6305 |
-
#: languages/vue.php:
|
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:
|
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:
|
6315 |
msgid "How to Connect to Google Analytics"
|
6316 |
msgstr ""
|
6317 |
|
6318 |
-
#: languages/vue.php:
|
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:
|
6323 |
msgid "Guide and Checklist for Advanced Insights"
|
6324 |
msgstr ""
|
6325 |
|
6326 |
-
#: languages/vue.php:
|
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:
|
6331 |
msgid "GDPR Guide"
|
6332 |
msgstr ""
|
6333 |
|
6334 |
-
#: languages/vue.php:
|
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:
|
6339 |
msgid "How to Install and Activate ExactMetrics Addons"
|
6340 |
msgstr ""
|
6341 |
|
6342 |
-
#: languages/vue.php:
|
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:
|
6347 |
msgid "Enabling eCommerce Tracking and Reports"
|
6348 |
msgstr ""
|
6349 |
|
6350 |
-
#: languages/vue.php:
|
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:
|
6355 |
msgid "Read Documentation"
|
6356 |
msgstr ""
|
6357 |
|
6358 |
#. Translators: Makes the text bold.
|
6359 |
-
#: languages/vue.php:
|
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:
|
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:
|
6369 |
msgid "One-click Complete eCommerce tracking"
|
6370 |
msgstr ""
|
6371 |
|
6372 |
-
#: languages/vue.php:
|
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:
|
6377 |
msgid "Forms Tracking"
|
6378 |
msgstr ""
|
6379 |
|
6380 |
-
#: languages/vue.php:
|
6381 |
msgid "One-click Form Events Tracking"
|
6382 |
msgstr ""
|
6383 |
|
6384 |
-
#: languages/vue.php:
|
6385 |
msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
|
6386 |
msgstr ""
|
6387 |
|
6388 |
-
#: languages/vue.php:
|
6389 |
msgid "WordPress Admin Area Reports"
|
6390 |
msgstr ""
|
6391 |
|
6392 |
-
#: languages/vue.php:
|
6393 |
msgid "Standard Reports"
|
6394 |
msgstr ""
|
6395 |
|
6396 |
-
#: languages/vue.php:
|
6397 |
msgid "Overview Reports for the last 30 days."
|
6398 |
msgstr ""
|
6399 |
|
6400 |
-
#: languages/vue.php:
|
6401 |
msgid "Advanced Reports"
|
6402 |
msgstr ""
|
6403 |
|
6404 |
-
#: languages/vue.php:
|
6405 |
msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
|
6406 |
msgstr ""
|
6407 |
|
6408 |
-
#: languages/vue.php:
|
6409 |
msgid "Dashboard Widget"
|
6410 |
msgstr ""
|
6411 |
|
6412 |
-
#: languages/vue.php:
|
6413 |
msgid "Basic Widget"
|
6414 |
msgstr ""
|
6415 |
|
6416 |
-
#: languages/vue.php:
|
6417 |
msgid "Overview Report Synopsis"
|
6418 |
msgstr ""
|
6419 |
|
6420 |
-
#: languages/vue.php:
|
6421 |
msgid "Advanced Dashboard Widget"
|
6422 |
msgstr ""
|
6423 |
|
6424 |
-
#: languages/vue.php:
|
6425 |
msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
|
6426 |
msgstr ""
|
6427 |
|
6428 |
-
#: languages/vue.php:
|
6429 |
msgid "Publisher Reports"
|
6430 |
msgstr ""
|
6431 |
|
6432 |
-
#: languages/vue.php:
|
6433 |
msgid "Advanced Publisher Reports & Tracking"
|
6434 |
msgstr ""
|
6435 |
|
6436 |
-
#: languages/vue.php:
|
6437 |
msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
|
6438 |
msgstr ""
|
6439 |
|
6440 |
-
#: languages/vue.php:
|
6441 |
msgid "Email Summaries"
|
6442 |
msgstr ""
|
6443 |
|
6444 |
-
#: languages/vue.php:
|
6445 |
msgid "Included"
|
6446 |
msgstr ""
|
6447 |
|
6448 |
-
#: languages/vue.php:
|
6449 |
msgid "Get weekly traffic reports directly in your inbox."
|
6450 |
msgstr ""
|
6451 |
|
6452 |
-
#: languages/vue.php:
|
6453 |
msgid "Basic Options"
|
6454 |
msgstr ""
|
6455 |
|
6456 |
-
#: languages/vue.php:
|
6457 |
msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
|
6458 |
msgstr ""
|
6459 |
|
6460 |
-
#: languages/vue.php:
|
6461 |
msgid "Dynamic Popular Posts & Popular Products"
|
6462 |
msgstr ""
|
6463 |
|
6464 |
-
#: languages/vue.php:
|
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:
|
6469 |
msgid "Not Available"
|
6470 |
msgstr ""
|
6471 |
|
6472 |
-
#: languages/vue.php:
|
6473 |
msgid "Complete Custom Dimensions Tracking"
|
6474 |
msgstr ""
|
6475 |
|
6476 |
-
#: languages/vue.php:
|
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:
|
6481 |
msgid "Limited Support"
|
6482 |
msgstr ""
|
6483 |
|
6484 |
-
#: languages/vue.php:
|
6485 |
msgid "Priority Support"
|
6486 |
msgstr ""
|
6487 |
|
6488 |
-
#: languages/vue.php:
|
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:
|
6493 |
msgid "Feature"
|
6494 |
msgstr ""
|
6495 |
|
6496 |
-
#: languages/vue.php:
|
6497 |
msgid "Lite"
|
6498 |
msgstr ""
|
6499 |
|
6500 |
-
#: languages/vue.php:
|
6501 |
msgid "Pro"
|
6502 |
msgstr ""
|
6503 |
|
6504 |
-
#: languages/vue.php:
|
6505 |
msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
|
6506 |
msgstr ""
|
6507 |
|
6508 |
-
#: languages/vue.php:
|
6509 |
msgid "Universal Tracking"
|
6510 |
msgstr ""
|
6511 |
|
6512 |
-
#: languages/vue.php:
|
6513 |
msgid "Custom Google Analytics Link Tracking"
|
6514 |
msgstr ""
|
6515 |
|
6516 |
-
#: languages/vue.php:
|
6517 |
msgid "Standard Tracking"
|
6518 |
msgstr ""
|
6519 |
|
6520 |
-
#: languages/vue.php:
|
6521 |
msgid "Advanced Tracking"
|
6522 |
msgstr ""
|
6523 |
|
6524 |
-
#: languages/vue.php:
|
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:
|
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:
|
6533 |
msgid "No-Code-Needed Tracking Features"
|
6534 |
msgstr ""
|
6535 |
|
6536 |
-
#: languages/vue.php:
|
6537 |
msgid "Basic Tracking Options"
|
6538 |
msgstr ""
|
6539 |
|
6540 |
-
#: languages/vue.php:
|
6541 |
msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
|
6542 |
msgstr ""
|
6543 |
|
6544 |
-
#: languages/vue.php:
|
6545 |
msgid "Advanced Tracking Options"
|
6546 |
msgstr ""
|
6547 |
|
6548 |
-
#: languages/vue.php:
|
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:
|
6553 |
msgid "Inbox"
|
6554 |
msgstr ""
|
6555 |
|
6556 |
-
#: languages/vue.php:
|
6557 |
msgid "Back to Inbox"
|
6558 |
msgstr ""
|
6559 |
|
6560 |
-
#: languages/vue.php:
|
6561 |
msgid "View Dismissed"
|
6562 |
msgstr ""
|
6563 |
|
6564 |
-
#: languages/vue.php:
|
6565 |
msgid "Notifications"
|
6566 |
msgstr ""
|
6567 |
|
6568 |
-
#: languages/vue.php:
|
6569 |
msgid "Dismiss All"
|
6570 |
msgstr ""
|
6571 |
|
6572 |
-
#: languages/vue.php:
|
6573 |
msgid "Dismissed"
|
6574 |
msgstr ""
|
6575 |
|
6576 |
-
#: languages/vue.php:
|
6577 |
msgid "No Notifications"
|
6578 |
msgstr ""
|
6579 |
|
6580 |
#. Translators: Error status and error text.
|
6581 |
-
#: languages/vue.php:
|
6582 |
msgid "Can't load settings. Error: %1$s, %2$s"
|
6583 |
msgstr ""
|
6584 |
|
6585 |
-
#: languages/vue.php:
|
6586 |
msgid "You appear to be offline."
|
6587 |
msgstr ""
|
6588 |
|
6589 |
#. Translators: Error status and error text.
|
6590 |
-
#: languages/vue.php:
|
6591 |
msgid "Can't save settings. Error: %1$s, %2$s"
|
6592 |
msgstr ""
|
6593 |
|
6594 |
-
#: languages/vue.php:
|
6595 |
msgid "Network error encountered. Settings not saved."
|
6596 |
msgstr ""
|
6597 |
|
6598 |
-
#: languages/vue.php:
|
6599 |
msgid "Show in widget mode"
|
6600 |
msgstr ""
|
6601 |
|
6602 |
-
#: languages/vue.php:
|
6603 |
msgid "Show in full-width mode"
|
6604 |
msgstr ""
|
6605 |
|
6606 |
-
#: languages/vue.php:
|
6607 |
msgid "Show Overview Reports"
|
6608 |
msgstr ""
|
6609 |
|
6610 |
-
#: languages/vue.php:
|
6611 |
msgid "Show Publishers Reports"
|
6612 |
msgstr ""
|
6613 |
|
6614 |
-
#: languages/vue.php:
|
6615 |
msgid "Show eCommerce Reports"
|
6616 |
msgstr ""
|
6617 |
|
6618 |
-
#: languages/vue.php:
|
6619 |
msgid "Settings Menu"
|
6620 |
msgstr ""
|
6621 |
|
6622 |
-
#: languages/vue.php:
|
6623 |
msgid "Available in PRO version"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
-
#: languages/vue.php:
|
6627 |
msgid "See All Reports"
|
6628 |
msgstr ""
|
6629 |
|
6630 |
-
#: languages/vue.php:
|
6631 |
msgid "Go to the Analytics Dashboard"
|
6632 |
msgstr ""
|
6633 |
|
6634 |
-
#: languages/vue.php:
|
6635 |
msgid "Cart Funnel"
|
6636 |
msgstr ""
|
6637 |
|
6638 |
-
#: languages/vue.php:
|
6639 |
msgid "Customer Insights"
|
6640 |
msgstr ""
|
6641 |
|
6642 |
-
#: languages/vue.php:
|
6643 |
msgid "Campaign Measurement"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
-
#: languages/vue.php:
|
6647 |
msgid "Customer Profiles"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
-
#: languages/vue.php:
|
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:
|
6655 |
msgid "Truly Understand Your%1$s Customers With %2$sExactMetrics%3$s"
|
6656 |
msgstr ""
|
6657 |
|
6658 |
-
#: languages/vue.php:
|
6659 |
msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from ExactMetrics!"
|
6660 |
msgstr ""
|
6661 |
|
6662 |
-
#: languages/vue.php:
|
6663 |
msgid "Track all-new metrics!"
|
6664 |
msgstr ""
|
6665 |
|
6666 |
-
#: languages/vue.php:
|
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:
|
6671 |
msgid "FEATURES"
|
6672 |
msgstr ""
|
6673 |
|
6674 |
-
#: languages/vue.php:
|
6675 |
msgid "Get The Unique Metrics Neccessary for Growth"
|
6676 |
msgstr ""
|
6677 |
|
6678 |
-
#: languages/vue.php:
|
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:
|
6683 |
msgid "Get Answers to the important questions %1$syou should know."
|
6684 |
msgstr ""
|
6685 |
|
6686 |
-
#: languages/vue.php:
|
6687 |
msgid "Did the login/registration step of the checkout put users off?"
|
6688 |
msgstr ""
|
6689 |
|
6690 |
-
#: languages/vue.php:
|
6691 |
msgid "Which ad campaign is driving the most revenue?"
|
6692 |
msgstr ""
|
6693 |
|
6694 |
-
#: languages/vue.php:
|
6695 |
msgid "Who is my typical customer?"
|
6696 |
msgstr ""
|
6697 |
|
6698 |
-
#: languages/vue.php:
|
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:
|
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:
|
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:
|
6714 |
msgid "Can't load license details. Error: %1$s, %2$s"
|
6715 |
msgstr ""
|
6716 |
|
6717 |
-
#: languages/vue.php:
|
6718 |
msgid "Error loading license details"
|
6719 |
msgstr ""
|
6720 |
|
6721 |
#. Translators: Error status and error text.
|
6722 |
-
#: languages/vue.php:
|
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:
|
6728 |
msgid "Can't validate the license. Error: %1$s, %2$s"
|
6729 |
msgstr ""
|
6730 |
|
6731 |
-
#: languages/vue.php:
|
6732 |
msgid "Reset to default"
|
6733 |
msgstr ""
|
6734 |
|
6735 |
-
#: languages/vue.php:
|
6736 |
msgid "The value entered does not match the required format"
|
6737 |
msgstr ""
|
6738 |
|
6739 |
-
#: languages/vue.php:
|
6740 |
msgid "Check out the newly added classic mode"
|
6741 |
msgstr ""
|
6742 |
|
6743 |
#. Translators: Placeholder adds a line break.
|
6744 |
-
#: languages/vue.php:
|
6745 |
msgid "You can customize your %sdate range only in the PRO version."
|
6746 |
msgstr ""
|
6747 |
|
6748 |
-
#: languages/vue.php:
|
6749 |
msgid "Help Us Improve"
|
6750 |
msgstr ""
|
6751 |
|
6752 |
-
#: languages/vue.php:
|
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:
|
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:
|
6763 |
msgid "%s can't be empty."
|
6764 |
msgstr ""
|
6765 |
|
6766 |
-
#: languages/vue.php:
|
6767 |
msgid "Duplicate values are not allowed."
|
6768 |
msgstr ""
|
6769 |
|
6770 |
-
#: languages/vue.php:
|
6771 |
msgid "You can add maximum 5 items."
|
6772 |
msgstr ""
|
6773 |
|
6774 |
-
#: languages/vue.php:
|
6775 |
msgid "At least 0 item required."
|
6776 |
msgstr ""
|
6777 |
|
6778 |
-
#: languages/vue.php:
|
6779 |
msgid "Add Another Link Path"
|
6780 |
msgstr ""
|
6781 |
|
6782 |
-
#: languages/vue.php:
|
6783 |
msgid "Remove row"
|
6784 |
msgstr ""
|
6785 |
|
6786 |
-
#: languages/vue.php:
|
6787 |
msgid "Sessions"
|
6788 |
msgstr ""
|
6789 |
|
6790 |
#. Translators: Line break.
|
6791 |
-
#: languages/vue.php:
|
6792 |
msgid "Unique %s Sessions"
|
6793 |
msgstr ""
|
6794 |
|
6795 |
-
#: languages/vue.php:
|
6796 |
msgid "Pageviews"
|
6797 |
msgstr ""
|
6798 |
|
6799 |
#. Translators: Line break.
|
6800 |
-
#: languages/vue.php:
|
6801 |
msgid "Unique %s Pageviews"
|
6802 |
msgstr ""
|
6803 |
|
6804 |
-
#: languages/vue.php:
|
6805 |
msgid "A session is the browsing session of a single user to your site."
|
6806 |
msgstr ""
|
6807 |
|
6808 |
-
#: languages/vue.php:
|
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:
|
6813 |
msgid "Total duration of all sessions (in seconds) / number of sessions."
|
6814 |
msgstr ""
|
6815 |
|
6816 |
-
#: languages/vue.php:
|
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:
|
6821 |
msgid "The number of distinct tracked users"
|
6822 |
msgstr ""
|
6823 |
|
6824 |
-
#: languages/vue.php:
|
6825 |
msgid "Avg. Session Duration"
|
6826 |
msgstr ""
|
6827 |
|
6828 |
-
#: languages/vue.php:
|
6829 |
msgid "Total Users"
|
6830 |
msgstr ""
|
6831 |
|
6832 |
-
#: languages/vue.php:
|
6833 |
msgid "No options available"
|
6834 |
msgstr ""
|
6835 |
|
6836 |
#. Translators: Placeholders make the text highlighted.
|
6837 |
-
#: languages/vue.php:
|
6838 |
msgid "%1$sNeed%2$s to Grow FASTER??"
|
6839 |
msgstr ""
|
6840 |
|
6841 |
-
#: languages/vue.php:
|
6842 |
msgid "Get additional, actionable insights by going Pro."
|
6843 |
msgstr ""
|
6844 |
|
6845 |
-
#: languages/vue.php:
|
6846 |
msgid "Skip"
|
6847 |
msgstr ""
|
6848 |
|
6849 |
-
#: languages/vue.php:
|
6850 |
msgid "See All Features"
|
6851 |
msgstr ""
|
6852 |
|
6853 |
-
#: languages/vue.php:
|
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:
|
6858 |
msgid "Our Pro plan includes:"
|
6859 |
msgstr ""
|
6860 |
|
6861 |
#. Translators: Error status and error text.
|
6862 |
-
#: languages/vue.php:
|
6863 |
msgid "Can't load errors. Error: %1$s, %2$s"
|
6864 |
msgstr ""
|
6865 |
|
6866 |
-
#: languages/vue.php:
|
6867 |
msgid "Real-Time Report"
|
6868 |
msgstr ""
|
6869 |
|
6870 |
-
#: languages/vue.php:
|
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:
|
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:
|
6880 |
msgid "Here's what you get:"
|
6881 |
msgstr ""
|
6882 |
|
6883 |
-
#: languages/vue.php:
|
6884 |
msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
|
6885 |
msgstr ""
|
6886 |
|
6887 |
-
#: languages/vue.php:
|
6888 |
msgid "See Your Top Pages Immediately After Making Changes"
|
6889 |
msgstr ""
|
6890 |
|
6891 |
-
#: languages/vue.php:
|
6892 |
msgid "See Your Top Referral Sources and Adapt Faster"
|
6893 |
msgstr ""
|
6894 |
|
6895 |
-
#: languages/vue.php:
|
6896 |
msgid "See Your Traffic Demographics"
|
6897 |
msgstr ""
|
6898 |
|
6899 |
-
#: languages/vue.php:
|
6900 |
msgid "Get Fresh Report Data Every 60 Seconds"
|
6901 |
msgstr ""
|
6902 |
|
6903 |
-
#: languages/vue.php:
|
6904 |
msgid "See Where Your Visitors are Connecting From (country & city)"
|
6905 |
msgstr ""
|
6906 |
|
6907 |
-
#: languages/vue.php:
|
6908 |
msgid "Forms Report"
|
6909 |
msgstr ""
|
6910 |
|
6911 |
-
#: languages/vue.php:
|
6912 |
msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
|
6913 |
msgstr ""
|
6914 |
|
6915 |
-
#: languages/vue.php:
|
6916 |
msgid "See Your Top Converting Forms and Optimize"
|
6917 |
msgstr ""
|
6918 |
|
6919 |
-
#: languages/vue.php:
|
6920 |
msgid "See Your Forms Impressions Count to Find the Best Placement"
|
6921 |
msgstr ""
|
6922 |
|
6923 |
-
#: languages/vue.php:
|
6924 |
msgid "Awesome, You're All Set!"
|
6925 |
msgstr ""
|
6926 |
|
6927 |
-
#: languages/vue.php:
|
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:
|
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:
|
6939 |
-
#: languages/vue.php:
|
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:
|
6944 |
msgid "Finish Setup & Exit Wizard"
|
6945 |
msgstr ""
|
6946 |
|
6947 |
-
#: languages/vue.php:
|
6948 |
msgid "Google Analytics"
|
6949 |
msgstr ""
|
6950 |
|
6951 |
-
#: languages/vue.php:
|
6952 |
msgid "Subscribe"
|
6953 |
msgstr ""
|
6954 |
|
6955 |
-
#: languages/vue.php:
|
6956 |
msgid "Checking your website..."
|
6957 |
msgstr ""
|
6958 |
|
6959 |
-
#: languages/vue.php:
|
6960 |
msgid "Recommended Addons"
|
6961 |
msgstr ""
|
6962 |
|
6963 |
#. Translators: Add a link to upgrade and make the text green.
|
6964 |
-
#: languages/vue.php:
|
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:
|
6969 |
msgid "Upgrade to PRO Now"
|
6970 |
msgstr ""
|
6971 |
|
6972 |
-
#: languages/vue.php:
|
6973 |
msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
|
6974 |
msgstr ""
|
6975 |
|
6976 |
-
#: languages/vue.php:
|
6977 |
msgid "See All Your Important Store Metrics in One Place."
|
6978 |
msgstr ""
|
6979 |
|
6980 |
-
#: languages/vue.php:
|
6981 |
msgid "... and more:"
|
6982 |
msgstr ""
|
6983 |
|
6984 |
-
#: languages/vue.php:
|
6985 |
msgid "Dimensions- Track authors, categories, trags, searches, users and more."
|
6986 |
msgstr ""
|
6987 |
|
6988 |
-
#: languages/vue.php:
|
6989 |
msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
|
6990 |
msgstr ""
|
6991 |
|
6992 |
-
#: languages/vue.php:
|
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:
|
6997 |
msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
|
6998 |
msgstr ""
|
6999 |
|
7000 |
-
#: languages/vue.php:
|
7001 |
msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
|
7002 |
msgstr ""
|
7003 |
|
7004 |
-
#: languages/vue.php:
|
7005 |
msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
|
7006 |
msgstr ""
|
7007 |
|
7008 |
-
#: languages/vue.php:
|
7009 |
msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
|
7010 |
msgstr ""
|
7011 |
|
7012 |
-
#: languages/vue.php:
|
7013 |
msgid "Ads- See who’s clicking on your Google Adsense banner ads."
|
7014 |
msgstr ""
|
7015 |
|
7016 |
-
#: languages/vue.php:
|
7017 |
msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
|
7018 |
msgstr ""
|
7019 |
|
7020 |
-
#: languages/vue.php:
|
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:
|
7025 |
msgid "The ExactMetrics Team"
|
7026 |
msgstr ""
|
7027 |
|
7028 |
-
#: languages/vue.php:
|
7029 |
msgid "Custom Dimensions Report"
|
7030 |
msgstr ""
|
7031 |
|
7032 |
-
#: languages/vue.php:
|
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:
|
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:
|
7041 |
msgid "Author tracking to see which author’s posts generate the most traffic"
|
7042 |
msgstr ""
|
7043 |
|
7044 |
-
#: languages/vue.php:
|
7045 |
msgid "Post Type tracking to see which WordPress post types perform better"
|
7046 |
msgstr ""
|
7047 |
|
7048 |
-
#: languages/vue.php:
|
7049 |
msgid "Category tracking to see which sections of your sites are the most popular"
|
7050 |
msgstr ""
|
7051 |
|
7052 |
-
#: languages/vue.php:
|
7053 |
msgid "SEO score tracking to see which blog SEO scores are the most popular"
|
7054 |
msgstr ""
|
7055 |
|
7056 |
-
#: languages/vue.php:
|
7057 |
msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
|
7058 |
msgstr ""
|
7059 |
|
7060 |
-
#: languages/vue.php:
|
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:
|
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:
|
7070 |
msgid "See Your Homepage's Overall Performance Score"
|
7071 |
msgstr ""
|
7072 |
|
7073 |
-
#: languages/vue.php:
|
7074 |
msgid "Run an Audit on Your Homepage and See Your Server Response Time"
|
7075 |
msgstr ""
|
7076 |
|
7077 |
-
#: languages/vue.php:
|
7078 |
msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
|
7079 |
msgstr ""
|
7080 |
|
7081 |
-
#: languages/vue.php:
|
7082 |
msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
|
7083 |
msgstr ""
|
7084 |
|
7085 |
-
#: languages/vue.php:
|
7086 |
msgid "Hide dashboard widget"
|
7087 |
msgstr ""
|
7088 |
|
7089 |
-
#: languages/vue.php:
|
7090 |
msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
|
7091 |
msgstr ""
|
7092 |
|
7093 |
-
#: languages/vue.php:
|
7094 |
msgid "Yes, hide it!"
|
7095 |
msgstr ""
|
7096 |
|
7097 |
-
#: languages/vue.php:
|
7098 |
msgid "No, cancel!"
|
7099 |
msgstr ""
|
7100 |
|
7101 |
-
#: languages/vue.php:
|
7102 |
msgid "ExactMetrics Widget Hidden"
|
7103 |
msgstr ""
|
7104 |
|
7105 |
-
#: languages/vue.php:
|
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:
|
7111 |
msgid "Can't deauthenticate. Error: %1$s, %2$s"
|
7112 |
msgstr ""
|
7113 |
|
7114 |
#. Translators: Error status and error text.
|
7115 |
-
#: languages/vue.php:
|
7116 |
msgid "Can't load authentication details. Error: %1$s, %2$s"
|
7117 |
msgstr ""
|
7118 |
|
7119 |
-
#: languages/vue.php:
|
7120 |
msgid "You appear to be offline. Settings not saved."
|
7121 |
msgstr ""
|
7122 |
|
7123 |
#. Translators: Error status and error text.
|
7124 |
-
#: languages/vue.php:
|
7125 |
msgid "Can't authenticate. Error: %1$s, %2$s"
|
7126 |
msgstr ""
|
7127 |
|
7128 |
#. Translators: Error status and error text.
|
7129 |
-
#: languages/vue.php:
|
7130 |
msgid "Can't reauthenticate. Error: %1$s, %2$s"
|
7131 |
msgstr ""
|
7132 |
|
7133 |
#. Translators: Error status and error text.
|
7134 |
-
#: languages/vue.php:
|
7135 |
msgid "Can't verify credentials. Error: %1$s, %2$s"
|
7136 |
msgstr ""
|
7137 |
|
7138 |
-
#: languages/vue.php:
|
7139 |
msgid "Still Calculating..."
|
7140 |
msgstr ""
|
7141 |
|
7142 |
-
#: languages/vue.php:
|
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:
|
7147 |
msgid "Back to Overview Report"
|
7148 |
msgstr ""
|
7149 |
|
7150 |
-
#: languages/vue.php:
|
7151 |
msgid "Your 2020 Analytics Report"
|
7152 |
msgstr ""
|
7153 |
|
7154 |
-
#: languages/vue.php:
|
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:
|
7159 |
msgid "Audience"
|
7160 |
msgstr ""
|
7161 |
|
7162 |
-
#: languages/vue.php:
|
7163 |
msgid "Congrats"
|
7164 |
msgstr ""
|
7165 |
|
7166 |
-
#: languages/vue.php:
|
7167 |
msgid "Your website was quite popular this year! "
|
7168 |
msgstr ""
|
7169 |
|
7170 |
-
#: languages/vue.php:
|
7171 |
msgid "You had "
|
7172 |
msgstr ""
|
7173 |
|
7174 |
-
#: languages/vue.php:
|
7175 |
msgid " visitors!"
|
7176 |
msgstr ""
|
7177 |
|
7178 |
-
#: languages/vue.php:
|
7179 |
msgid " visitors"
|
7180 |
msgstr ""
|
7181 |
|
7182 |
-
#: languages/vue.php:
|
7183 |
msgid "Total Visitors"
|
7184 |
msgstr ""
|
7185 |
|
7186 |
-
#: languages/vue.php:
|
7187 |
msgid "Total Sessions"
|
7188 |
msgstr ""
|
7189 |
|
7190 |
-
#: languages/vue.php:
|
7191 |
msgid "Visitors by Month"
|
7192 |
msgstr ""
|
7193 |
|
7194 |
-
#: languages/vue.php:
|
7195 |
msgid "January 1, 2020 - December 31, 2020"
|
7196 |
msgstr ""
|
7197 |
|
7198 |
-
#: languages/vue.php:
|
7199 |
msgid "A Tip for 2021"
|
7200 |
msgstr ""
|
7201 |
|
7202 |
-
#: languages/vue.php:
|
7203 |
msgid "Demographics"
|
7204 |
msgstr ""
|
7205 |
|
7206 |
-
#: languages/vue.php:
|
7207 |
msgid "#1"
|
7208 |
msgstr ""
|
7209 |
|
7210 |
-
#: languages/vue.php:
|
7211 |
msgid "You Top 5 Countries"
|
7212 |
msgstr ""
|
7213 |
|
7214 |
-
#: languages/vue.php:
|
7215 |
msgid "Let’s get to know your visitors a little better, shall we?"
|
7216 |
msgstr ""
|
7217 |
|
7218 |
-
#: languages/vue.php:
|
7219 |
msgid "Gender"
|
7220 |
msgstr ""
|
7221 |
|
7222 |
-
#: languages/vue.php:
|
7223 |
msgid "Female"
|
7224 |
msgstr ""
|
7225 |
|
7226 |
-
#: languages/vue.php:
|
7227 |
msgid "Women"
|
7228 |
msgstr ""
|
7229 |
|
7230 |
-
#: languages/vue.php:
|
7231 |
msgid "Male"
|
7232 |
msgstr ""
|
7233 |
|
7234 |
-
#: languages/vue.php:
|
7235 |
msgid "Average Age"
|
7236 |
msgstr ""
|
7237 |
|
7238 |
-
#: languages/vue.php:
|
7239 |
msgid "Behavior"
|
7240 |
msgstr ""
|
7241 |
|
7242 |
-
#: languages/vue.php:
|
7243 |
msgid "Your Top 5 Pages"
|
7244 |
msgstr ""
|
7245 |
|
7246 |
-
#: languages/vue.php:
|
7247 |
msgid "Time Spent on Site"
|
7248 |
msgstr ""
|
7249 |
|
7250 |
-
#: languages/vue.php:
|
7251 |
msgid "minutes"
|
7252 |
msgstr ""
|
7253 |
|
7254 |
-
#: languages/vue.php:
|
7255 |
msgid "Device Type"
|
7256 |
msgstr ""
|
7257 |
|
7258 |
-
#: languages/vue.php:
|
7259 |
msgid "A Tip For 2021"
|
7260 |
msgstr ""
|
7261 |
|
7262 |
-
#: languages/vue.php:
|
7263 |
msgid "Are you looking for a way to track your landing pages and see which one gets the most conversions on your website?"
|
7264 |
msgstr ""
|
7265 |
|
7266 |
-
#: languages/vue.php:
|
7267 |
msgid "Read - How to Track Google Analytics Landing Page Conversions"
|
7268 |
msgstr ""
|
7269 |
|
7270 |
-
#: languages/vue.php:
|
7271 |
msgid "So, where did all of these visitors come from?"
|
7272 |
msgstr ""
|
7273 |
|
7274 |
-
#: languages/vue.php:
|
7275 |
msgid "Clicks"
|
7276 |
msgstr ""
|
7277 |
|
7278 |
-
#: languages/vue.php:
|
7279 |
msgid "Your Top 5 Keywords"
|
7280 |
msgstr ""
|
7281 |
|
7282 |
-
#: languages/vue.php:
|
7283 |
msgid "What keywords visitors searched for to find your site"
|
7284 |
msgstr ""
|
7285 |
|
7286 |
-
#: languages/vue.php:
|
7287 |
msgid "Your Top 5 Referrals"
|
7288 |
msgstr ""
|
7289 |
|
7290 |
-
#: languages/vue.php:
|
7291 |
msgid "The websites that link back to your website"
|
7292 |
msgstr ""
|
7293 |
|
7294 |
-
#: languages/vue.php:
|
7295 |
msgid "Opportunity"
|
7296 |
msgstr ""
|
7297 |
|
7298 |
-
#: languages/vue.php:
|
7299 |
msgid "Learn how to boost your SEO rankings using ExactMetrics so more visitors reach your articles and increase engagement."
|
7300 |
msgstr ""
|
7301 |
|
7302 |
-
#: languages/vue.php:
|
7303 |
msgid "Read - 5 Ways to Skyrocket Your SEO Rankings with Google Analytics"
|
7304 |
msgstr ""
|
7305 |
|
7306 |
-
#: languages/vue.php:
|
7307 |
msgid "Thank you for using ExactMetrics!"
|
7308 |
msgstr ""
|
7309 |
|
7310 |
-
#: languages/vue.php:
|
7311 |
msgid "We’re grateful for your continued support. If there’s anything we can do to help you grow your business, please don’t hesitate to contact our team."
|
7312 |
msgstr ""
|
7313 |
|
7314 |
-
#: languages/vue.php:
|
7315 |
msgid "Here's to an amazing 2021!"
|
7316 |
msgstr ""
|
7317 |
|
7318 |
-
#: languages/vue.php:
|
7319 |
msgid "Enjoying ExactMetrics"
|
7320 |
msgstr ""
|
7321 |
|
7322 |
-
#: languages/vue.php:
|
7323 |
msgid "Leave a five star review!"
|
7324 |
msgstr ""
|
7325 |
|
7326 |
-
#: languages/vue.php:
|
7327 |
msgid "Syed Balkhi"
|
7328 |
msgstr ""
|
7329 |
|
7330 |
-
#: languages/vue.php:
|
7331 |
msgid "Chris Christoff"
|
7332 |
msgstr ""
|
7333 |
|
7334 |
-
#: languages/vue.php:
|
7335 |
msgid "Write Review"
|
7336 |
msgstr ""
|
7337 |
|
7338 |
-
#: languages/vue.php:
|
7339 |
msgid "Did you know over 10 million websites use our plugins?"
|
7340 |
msgstr ""
|
7341 |
|
7342 |
-
#: languages/vue.php:
|
7343 |
msgid "Try our other popular WordPress plugins to grow your website in 2021."
|
7344 |
msgstr ""
|
7345 |
|
7346 |
-
#: languages/vue.php:
|
7347 |
msgid "Join our Communities!"
|
7348 |
msgstr ""
|
7349 |
|
7350 |
-
#: languages/vue.php:
|
7351 |
msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
|
7352 |
msgstr ""
|
7353 |
|
7354 |
-
#: languages/vue.php:
|
7355 |
msgid "Facebook Group"
|
7356 |
msgstr ""
|
7357 |
|
7358 |
-
#: languages/vue.php:
|
7359 |
msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
|
7360 |
msgstr ""
|
7361 |
|
7362 |
-
#: languages/vue.php:
|
7363 |
msgid "Join Now...It’s Free!"
|
7364 |
msgstr ""
|
7365 |
|
7366 |
-
#: languages/vue.php:
|
7367 |
msgid "WordPress Tutorials by WPBeginner"
|
7368 |
msgstr ""
|
7369 |
|
7370 |
-
#: languages/vue.php:
|
7371 |
msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
|
7372 |
msgstr ""
|
7373 |
|
7374 |
-
#: languages/vue.php:
|
7375 |
msgid "Visit WPBeginner"
|
7376 |
msgstr ""
|
7377 |
|
7378 |
-
#: languages/vue.php:
|
7379 |
msgid "Follow Us!"
|
7380 |
msgstr ""
|
7381 |
|
7382 |
-
#: languages/vue.php:
|
7383 |
msgid "Follow ExactMetrics on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
|
7384 |
msgstr ""
|
7385 |
|
7386 |
-
#: languages/vue.php:
|
7387 |
msgid "Copyright ExactMetrics, 2021"
|
7388 |
msgstr ""
|
7389 |
|
7390 |
-
#: languages/vue.php:
|
7391 |
msgid "Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights"
|
7392 |
msgstr ""
|
7393 |
|
7394 |
-
#: languages/vue.php:
|
7395 |
msgid "January"
|
7396 |
msgstr ""
|
7397 |
|
7398 |
-
#: languages/vue.php:
|
7399 |
msgid "February"
|
7400 |
msgstr ""
|
7401 |
|
7402 |
-
#: languages/vue.php:
|
7403 |
msgid "March"
|
7404 |
msgstr ""
|
7405 |
|
7406 |
-
#: languages/vue.php:
|
7407 |
msgid "April"
|
7408 |
msgstr ""
|
7409 |
|
7410 |
-
#: languages/vue.php:
|
7411 |
msgid "May"
|
7412 |
msgstr ""
|
7413 |
|
7414 |
-
#: languages/vue.php:
|
7415 |
msgid "June"
|
7416 |
msgstr ""
|
7417 |
|
7418 |
-
#: languages/vue.php:
|
7419 |
msgid "July"
|
7420 |
msgstr ""
|
7421 |
|
7422 |
-
#: languages/vue.php:
|
7423 |
msgid "August"
|
7424 |
msgstr ""
|
7425 |
|
7426 |
-
#: languages/vue.php:
|
7427 |
msgid "September"
|
7428 |
msgstr ""
|
7429 |
|
7430 |
-
#: languages/vue.php:
|
7431 |
msgid "October"
|
7432 |
msgstr ""
|
7433 |
|
7434 |
-
#: languages/vue.php:
|
7435 |
msgid "November"
|
7436 |
msgstr ""
|
7437 |
|
7438 |
-
#: languages/vue.php:
|
7439 |
msgid "December"
|
7440 |
msgstr ""
|
7441 |
|
7442 |
#. Translators: Number of visitors.
|
7443 |
-
#: languages/vue.php:
|
7444 |
msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
|
7445 |
msgstr ""
|
7446 |
|
7447 |
-
#: languages/vue.php:
|
7448 |
msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
|
7449 |
msgstr ""
|
7450 |
|
7451 |
#. Translators: Number of visitors.
|
7452 |
-
#: languages/vue.php:
|
7453 |
msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
|
7454 |
msgstr ""
|
7455 |
|
7456 |
#. Translators: Number of visitors.
|
7457 |
-
#: languages/vue.php:
|
7458 |
msgid "%s Visitors"
|
7459 |
msgstr ""
|
7460 |
|
7461 |
#. Translators: Percent and Number of visitors.
|
7462 |
-
#: languages/vue.php:
|
7463 |
msgid "%1$s% of your visitors were %2$s"
|
7464 |
msgstr ""
|
7465 |
|
7466 |
#. Translators: Number of visitors and their age.
|
7467 |
-
#: languages/vue.php:
|
7468 |
msgid "%1$s% of your visitors were between the ages of %2$s"
|
7469 |
msgstr ""
|
7470 |
|
7471 |
-
#: languages/vue.php:
|
7472 |
msgid "Your <strong>%1$s</strong> visitors viewed a total of <strong>%2$s</strong> pages. <span class='average-page-per-user' style='font-size: 20px;margin-top:25px;display:block;font-family:Lato'>That's an average of %3$s pages for each visitor!</span>"
|
7473 |
msgstr ""
|
7474 |
|
7475 |
#. Translators: Number of minutes spent on site.
|
7476 |
-
#: languages/vue.php:
|
7477 |
msgid "Each visitor spent an average of %s minutes on your website in 2020."
|
7478 |
msgstr ""
|
7479 |
|
7480 |
#. Translators: Name of device type.
|
7481 |
-
#: languages/vue.php:
|
7482 |
msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
|
7483 |
msgstr ""
|
7484 |
|
7485 |
#. Translators: Number of visitors and device percentage.
|
7486 |
-
#: languages/vue.php:
|
7487 |
msgid "%1$s% of your visitors were on a %2$s device."
|
7488 |
msgstr ""
|
7489 |
|
7490 |
-
#: languages/vue.php:
|
7491 |
msgid "Desktop"
|
7492 |
msgstr ""
|
7493 |
|
7494 |
-
#: languages/vue.php:
|
7495 |
msgid "Tablet"
|
7496 |
msgstr ""
|
7497 |
|
7498 |
-
#: languages/vue.php:
|
7499 |
msgid "Mobile"
|
7500 |
msgstr ""
|
7501 |
|
7502 |
-
#: languages/vue.php:
|
7503 |
msgid "Force Deauthenticate"
|
7504 |
msgstr ""
|
7505 |
|
7506 |
-
#: languages/vue.php:
|
7507 |
msgid "Disconnect ExactMetrics"
|
7508 |
msgstr ""
|
7509 |
|
7510 |
-
#: languages/vue.php:
|
7511 |
msgid "Authenticating"
|
7512 |
msgstr ""
|
7513 |
|
7514 |
-
#: languages/vue.php:
|
7515 |
msgid "Verifying Credentials"
|
7516 |
msgstr ""
|
7517 |
|
7518 |
-
#: languages/vue.php:
|
7519 |
msgid "Your site is connected to ExactMetrics!"
|
7520 |
msgstr ""
|
7521 |
|
7522 |
-
#: languages/vue.php:
|
7523 |
msgid "Deauthenticating"
|
7524 |
msgstr ""
|
7525 |
|
7526 |
-
#: languages/vue.php:
|
7527 |
msgid "You've disconnected your site from ExactMetrics. Your site is no longer being tracked by Google Analytics and you won't see reports anymore."
|
7528 |
msgstr ""
|
7529 |
|
7530 |
-
#: languages/vue.php:
|
7531 |
-
#: languages/vue.php:
|
7532 |
msgid "Connect ExactMetrics"
|
7533 |
msgstr ""
|
7534 |
|
7535 |
-
#: languages/vue.php:
|
7536 |
msgid "Verify Credentials"
|
7537 |
msgstr ""
|
7538 |
|
7539 |
-
#: languages/vue.php:
|
7540 |
msgid "Website Profile"
|
7541 |
msgstr ""
|
7542 |
|
7543 |
-
#: languages/vue.php:
|
7544 |
msgid "Active Profile"
|
7545 |
msgstr ""
|
7546 |
|
7547 |
-
#: languages/vue.php:
|
7548 |
msgid "Your website profile has been set at the network level of your WordPress Multisite."
|
7549 |
msgstr ""
|
7550 |
|
7551 |
-
#: languages/vue.php:
|
7552 |
msgid "If you would like to use a different profile for this subsite, you can authenticate below."
|
7553 |
msgstr ""
|
7554 |
|
7555 |
-
#: languages/vue.php:
|
7556 |
msgid "Dual Tracking Profile"
|
7557 |
msgstr ""
|
7558 |
|
7559 |
-
#: languages/vue.php:
|
7560 |
msgid "The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s."
|
7561 |
msgstr ""
|
7562 |
|
7563 |
-
#: languages/vue.php:
|
7564 |
msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
|
7565 |
msgstr ""
|
7566 |
|
7567 |
-
#: languages/vue.php:
|
7568 |
msgid "The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s."
|
7569 |
msgstr ""
|
7570 |
|
7571 |
-
#: languages/vue.php:
|
7572 |
msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
|
7573 |
msgstr ""
|
7574 |
|
7575 |
-
#: languages/vue.php:
|
7576 |
msgid "Measurement Protocol API Secret"
|
7577 |
msgstr ""
|
7578 |
|
7579 |
-
#: languages/vue.php:
|
7580 |
msgid "The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s."
|
7581 |
msgstr ""
|
7582 |
|
7583 |
-
#: languages/vue.php:
|
7584 |
msgid "Classic mode"
|
7585 |
msgstr ""
|
7586 |
|
7587 |
-
#: languages/vue.php:
|
7588 |
msgid "Proceed"
|
7589 |
msgstr ""
|
7590 |
|
7591 |
-
#: languages/vue.php:
|
7592 |
msgid "Connection Information"
|
7593 |
msgstr ""
|
7594 |
|
7595 |
-
#: languages/vue.php:
|
7596 |
msgid "To perform the requested action, WordPress needs to access your web server. Please enter your FTP credentials to proceed. If you do not remember your credentials, you should contact your web host."
|
7597 |
msgstr ""
|
7598 |
|
7599 |
-
#: languages/vue.php:
|
7600 |
msgid "Hostname"
|
7601 |
msgstr ""
|
7602 |
|
7603 |
-
#: languages/vue.php:
|
7604 |
msgid "FTP Username"
|
7605 |
msgstr ""
|
7606 |
|
7607 |
-
#: languages/vue.php:
|
7608 |
msgid "FTP Password"
|
7609 |
msgstr ""
|
7610 |
|
7611 |
-
#: languages/vue.php:
|
7612 |
msgid "This password will not be stored on the server."
|
7613 |
msgstr ""
|
7614 |
|
7615 |
-
#: languages/vue.php:
|
7616 |
msgid "Connection Type"
|
7617 |
msgstr ""
|
7618 |
|
7619 |
-
#: languages/vue.php:
|
7620 |
msgid "Cancel"
|
7621 |
msgstr ""
|
7622 |
|
7623 |
-
#: languages/vue.php:
|
7624 |
msgid "Website profile"
|
7625 |
msgstr ""
|
7626 |
|
7627 |
-
#: languages/vue.php:
|
7628 |
msgid "Active profile"
|
7629 |
msgstr ""
|
7630 |
|
7631 |
-
#: languages/vue.php:
|
7632 |
msgid "Skip and Keep Connection"
|
7633 |
msgstr ""
|
7634 |
|
7635 |
#. Translators: Replaced with the number of days
|
7636 |
-
#: languages/vue.php:
|
7637 |
msgid "vs. Previous Day"
|
7638 |
msgstr ""
|
7639 |
|
7640 |
-
#: languages/vue.php:
|
7641 |
msgid "No change"
|
7642 |
msgstr ""
|
7643 |
|
7644 |
-
#: languages/vue.php:
|
7645 |
msgid "Choose Theme"
|
7646 |
msgstr ""
|
7647 |
|
7648 |
-
#: languages/vue.php:
|
7649 |
msgid "Widget Styling"
|
7650 |
msgstr ""
|
7651 |
|
7652 |
-
#: languages/vue.php:
|
7653 |
msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
|
7654 |
msgstr ""
|
7655 |
|
7656 |
-
#: languages/vue.php:
|
7657 |
msgid "Sort By"
|
7658 |
msgstr ""
|
7659 |
|
7660 |
-
#: languages/vue.php:
|
7661 |
msgid "Choose how you'd like the widget to determine your popular posts."
|
7662 |
msgstr ""
|
7663 |
|
7664 |
-
#: languages/vue.php:
|
7665 |
msgid "Display Title"
|
7666 |
msgstr ""
|
7667 |
|
7668 |
-
#: languages/vue.php:
|
7669 |
msgid "Title your widget and set its display preferences."
|
7670 |
msgstr ""
|
7671 |
|
7672 |
-
#: languages/vue.php:
|
7673 |
msgid "Include in Post Types"
|
7674 |
msgstr ""
|
7675 |
|
7676 |
-
#: languages/vue.php:
|
7677 |
msgid "Exclude from specific posts"
|
7678 |
msgstr ""
|
7679 |
|
7680 |
#. Translators: Placeholders make the text bold.
|
7681 |
-
#: languages/vue.php:
|
7682 |
msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
|
7683 |
msgstr ""
|
7684 |
|
7685 |
#. Translators: Placeholders make the text bold.
|
7686 |
-
#: languages/vue.php:
|
7687 |
msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
|
7688 |
msgstr ""
|
7689 |
|
7690 |
-
#: languages/vue.php:
|
7691 |
msgid "Loading Themes"
|
7692 |
msgstr ""
|
7693 |
|
7694 |
#. Translators: placeholders make text small.
|
7695 |
-
#: languages/vue.php:
|
7696 |
msgid "Default Styles %1$s- As seen above.%2$s"
|
7697 |
msgstr ""
|
7698 |
|
7699 |
#. Translators: placeholders make text small.
|
7700 |
-
#: languages/vue.php:
|
7701 |
msgid "No Styles %1$s- Use your own CSS.%2$s"
|
7702 |
msgstr ""
|
7703 |
|
7704 |
#. Translators: placeholders make text small.
|
7705 |
-
#: languages/vue.php:
|
7706 |
msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
|
7707 |
msgstr ""
|
7708 |
|
7709 |
#. Translators: placeholders make text small.
|
7710 |
-
#: languages/vue.php:
|
7711 |
msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
|
7712 |
msgstr ""
|
7713 |
|
7714 |
#. Translators: placeholders make text small.
|
7715 |
-
#: languages/vue.php:
|
7716 |
msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
|
7717 |
msgstr ""
|
7718 |
|
7719 |
-
#: languages/vue.php:
|
7720 |
msgid "Placement"
|
7721 |
msgstr ""
|
7722 |
|
7723 |
-
#: languages/vue.php:
|
7724 |
msgid "Choose how you'd like to place the widget."
|
7725 |
msgstr ""
|
7726 |
|
7727 |
-
#: languages/vue.php:
|
7728 |
msgid "Insert After"
|
7729 |
msgstr ""
|
7730 |
|
7731 |
-
#: languages/vue.php:
|
7732 |
msgid "Choose where in the post body the widget will be placed."
|
7733 |
msgstr ""
|
7734 |
|
7735 |
-
#: languages/vue.php:
|
7736 |
msgid "Customize Design"
|
7737 |
msgstr ""
|
7738 |
|
7739 |
-
#: languages/vue.php:
|
7740 |
msgid "words"
|
7741 |
msgstr ""
|
7742 |
|
7743 |
-
#: languages/vue.php:
|
7744 |
msgid "Please select at least one post to display."
|
7745 |
msgstr ""
|
7746 |
|
7747 |
#. Translators: placeholders make text small.
|
7748 |
-
#: languages/vue.php:
|
7749 |
msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
|
7750 |
msgstr ""
|
7751 |
|
7752 |
#. Translators: placeholders make text small.
|
7753 |
-
#: languages/vue.php:
|
7754 |
msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
|
7755 |
msgstr ""
|
7756 |
|
7757 |
-
#: languages/vue.php:
|
7758 |
msgid "Caching"
|
7759 |
msgstr ""
|
7760 |
|
7761 |
-
#: languages/vue.php:
|
7762 |
msgid "Enable Data Caching"
|
7763 |
msgstr ""
|
7764 |
|
7765 |
-
#: languages/vue.php:
|
7766 |
msgid "Refresh Cache Every"
|
7767 |
msgstr ""
|
7768 |
|
7769 |
-
#: languages/vue.php:
|
7770 |
msgid "Choose how often to refresh the cache."
|
7771 |
msgstr ""
|
7772 |
|
7773 |
-
#: languages/vue.php:
|
7774 |
msgid "Enable Ajaxify"
|
7775 |
msgstr ""
|
7776 |
|
7777 |
-
#: languages/vue.php:
|
7778 |
msgid "Ajaxify Widget"
|
7779 |
msgstr ""
|
7780 |
|
7781 |
-
#: languages/vue.php:
|
7782 |
msgid "Use to bypass page caching."
|
7783 |
msgstr ""
|
7784 |
|
7785 |
-
#: languages/vue.php:
|
7786 |
msgid "Empty Cache"
|
7787 |
msgstr ""
|
7788 |
|
7789 |
-
#: languages/vue.php:
|
7790 |
msgid "Click to manually wipe the cache right now."
|
7791 |
msgstr ""
|
7792 |
|
7793 |
-
#: languages/vue.php:
|
7794 |
msgid "Popular posts cache emptied"
|
7795 |
msgstr ""
|
7796 |
|
7797 |
-
#: languages/vue.php:
|
7798 |
msgid "Error emptying the popular posts cache. Please try again."
|
7799 |
msgstr ""
|
7800 |
|
7801 |
-
#: languages/vue.php:
|
7802 |
msgid "Last 30 Days Analytics for "
|
7803 |
msgstr ""
|
7804 |
|
7805 |
-
#: languages/vue.php:
|
7806 |
msgid "Your Website"
|
7807 |
msgstr ""
|
7808 |
|
7809 |
-
#: languages/vue.php:
|
7810 |
msgid "Avg. Duration"
|
7811 |
msgstr ""
|
7812 |
|
7813 |
-
#: languages/vue.php:
|
7814 |
msgid "More data is available"
|
7815 |
msgstr ""
|
7816 |
|
7817 |
-
#: languages/vue.php:
|
7818 |
msgid "Want to see page-specific stats?"
|
7819 |
msgstr ""
|
7820 |
|
7821 |
-
#: languages/vue.php:
|
7822 |
msgid "You appear to be offline. WPForms not installed."
|
7823 |
msgstr ""
|
7824 |
|
7825 |
#. Translators: Error status and error text.
|
7826 |
-
#: languages/vue.php:
|
7827 |
msgid "Can't activate addon. Error: %1$s, %2$s"
|
7828 |
msgstr ""
|
7829 |
|
7830 |
-
#: languages/vue.php:
|
7831 |
msgid "You appear to be offline. Addon not activated."
|
7832 |
msgstr ""
|
7833 |
|
7834 |
#. Translators: Error status and error text.
|
7835 |
-
#: languages/vue.php:
|
7836 |
msgid "Can't deactivate addon. Error: %1$s, %2$s"
|
7837 |
msgstr ""
|
7838 |
|
7839 |
-
#: languages/vue.php:
|
7840 |
msgid "You appear to be offline. Addon not deactivated."
|
7841 |
msgstr ""
|
7842 |
|
7843 |
#. Translators: Error status and error text.
|
7844 |
-
#: languages/vue.php:
|
7845 |
msgid "Can't install plugin. Error: %1$s, %2$s"
|
7846 |
msgstr ""
|
7847 |
|
7848 |
-
#: languages/vue.php:
|
7849 |
msgid "You appear to be offline. Plugin not installed."
|
7850 |
msgstr ""
|
7851 |
|
7852 |
#. Translators: Error status and error text.
|
7853 |
-
#: languages/vue.php:
|
7854 |
msgid "Can't install addon. Error: %1$s, %2$s"
|
7855 |
msgstr ""
|
7856 |
|
7857 |
-
#: languages/vue.php:
|
7858 |
msgid "You appear to be offline. Addon not installed."
|
7859 |
msgstr ""
|
7860 |
|
7861 |
#. Translators: Error status and error text.
|
7862 |
-
#: languages/vue.php:
|
7863 |
msgid "Can't install WPForms. Error: %1$s, %2$s"
|
7864 |
msgstr ""
|
7865 |
|
7866 |
-
#: languages/vue.php:
|
7867 |
msgid "Network Active"
|
7868 |
msgstr ""
|
7869 |
|
7870 |
-
#: languages/vue.php:
|
7871 |
msgid "Active"
|
7872 |
msgstr ""
|
7873 |
|
7874 |
-
#: languages/vue.php:
|
7875 |
msgid "Inactive"
|
7876 |
msgstr ""
|
7877 |
|
7878 |
#. Translators: Placeholder for the addon status (installed, active, etc).
|
7879 |
-
#: languages/vue.php:
|
7880 |
msgid "Status: %s"
|
7881 |
msgstr ""
|
7882 |
|
7883 |
-
#: languages/vue.php:
|
7884 |
msgid "Not Installed"
|
7885 |
msgstr ""
|
7886 |
|
7887 |
#. Translators: Makes text bold and adds smiley.
|
7888 |
-
#: languages/vue.php:
|
7889 |
msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
|
7890 |
msgstr ""
|
7891 |
|
7892 |
#. Translators: Makes text green.
|
7893 |
-
#: languages/vue.php:
|
7894 |
msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
|
7895 |
msgstr ""
|
7896 |
|
7897 |
-
#: languages/vue.php:
|
7898 |
msgid "Unlock All Features and Upgrade to Pro"
|
7899 |
msgstr ""
|
7900 |
|
7901 |
#. Translators: Make text green and add smiley face.
|
7902 |
-
#: languages/vue.php:
|
7903 |
msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
|
7904 |
msgstr ""
|
7905 |
|
7906 |
#. Translators: Make text green.
|
7907 |
-
#: languages/vue.php:
|
7908 |
msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
|
7909 |
msgstr ""
|
7910 |
|
7911 |
-
#: languages/vue.php:
|
7912 |
msgid "Unlock PRO Features Now"
|
7913 |
msgstr ""
|
7914 |
|
7915 |
-
#: languages/vue.php:
|
7916 |
msgid "Paste your license key here"
|
7917 |
msgstr ""
|
7918 |
|
7919 |
-
#: languages/vue.php:
|
7920 |
msgid "Verify"
|
7921 |
msgstr ""
|
7922 |
|
7923 |
#. Translators: Add link to retrieve license from account area.
|
7924 |
-
#: languages/vue.php:
|
7925 |
msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
|
7926 |
msgstr ""
|
7927 |
|
7928 |
-
#: languages/vue.php:
|
7929 |
-
#: languages/vue.php:
|
7930 |
msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
|
7931 |
msgstr ""
|
7932 |
|
7933 |
-
#: languages/vue.php:
|
7934 |
msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
|
7935 |
msgstr ""
|
7936 |
|
7937 |
-
#: languages/vue.php:
|
7938 |
msgid "Automatically migrate all of your SEO settings with just 1 click!"
|
7939 |
msgstr ""
|
7940 |
|
7941 |
-
#: languages/vue.php:
|
7942 |
msgid "1,938"
|
7943 |
msgstr ""
|
7944 |
|
7945 |
-
#: languages/vue.php:
|
7946 |
msgid "2+ Million Active Installs"
|
7947 |
msgstr ""
|
7948 |
|
7949 |
-
#: languages/vue.php:
|
7950 |
msgid "AIOSEO is the DIY Solution for Managing your SEO"
|
7951 |
msgstr ""
|
7952 |
|
7953 |
-
#: languages/vue.php:
|
7954 |
msgid "Set up the proper SEO foundations in less than 10 minutes."
|
7955 |
msgstr ""
|
7956 |
|
7957 |
-
#: languages/vue.php:
|
7958 |
msgid "SEO Audit Checklist"
|
7959 |
msgstr ""
|
7960 |
|
7961 |
-
#: languages/vue.php:
|
7962 |
msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
|
7963 |
msgstr ""
|
7964 |
|
7965 |
-
#: languages/vue.php:
|
7966 |
msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
|
7967 |
msgstr ""
|
7968 |
|
7969 |
-
#: languages/vue.php:
|
7970 |
msgid "TruSEO Score gives you a more in-depth analysis into your optimization efforts than just a pass or fail. Our actionable checklist helps you to unlock maximum traffic with each page."
|
7971 |
msgstr ""
|
7972 |
|
7973 |
-
#: languages/vue.php:
|
7974 |
msgid "Get AIOSEO for WordPress"
|
7975 |
msgstr ""
|
7976 |
|
7977 |
-
#: languages/vue.php:
|
7978 |
msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
|
7979 |
msgstr ""
|
7980 |
|
7981 |
-
#: languages/vue.php:
|
7982 |
msgid "Try it out today, for free."
|
7983 |
msgstr ""
|
7984 |
|
7985 |
-
#: languages/vue.php:
|
7986 |
msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
|
7987 |
msgstr ""
|
7988 |
|
7989 |
-
#: languages/vue.php:
|
7990 |
msgid "Activate and Install the Plugin with just one click!"
|
7991 |
msgstr ""
|
7992 |
|
7993 |
-
#: languages/vue.php:
|
7994 |
msgid "Installing AIOSEO..."
|
7995 |
msgstr ""
|
7996 |
|
7997 |
-
#: languages/vue.php:
|
7998 |
msgid "Congrats! All-in-One SEO Installed."
|
7999 |
msgstr ""
|
8000 |
|
8001 |
-
#: languages/vue.php:
|
8002 |
msgid "Switch to AIOSEO"
|
8003 |
msgstr ""
|
8004 |
|
8005 |
-
#: languages/vue.php:
|
8006 |
msgid "Installation Failed. Please refresh and try again."
|
8007 |
msgstr ""
|
8008 |
|
8009 |
-
#: languages/vue.php:
|
8010 |
msgid "Activating AIOSEO..."
|
8011 |
msgstr ""
|
8012 |
|
8013 |
-
#: languages/vue.php:
|
8014 |
msgid "Activate AIOSEO"
|
8015 |
msgstr ""
|
8016 |
|
8017 |
-
#: languages/vue.php:
|
8018 |
msgid "Activation Failed. Please refresh and try again."
|
8019 |
msgstr ""
|
8020 |
|
8021 |
-
#: languages/vue.php:
|
8022 |
msgid "Unlock Form Tracking"
|
8023 |
msgstr ""
|
8024 |
|
8025 |
-
#: languages/vue.php:
|
8026 |
msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
|
8027 |
msgstr ""
|
8028 |
|
8029 |
-
#: languages/vue.php:
|
8030 |
msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
|
8031 |
msgstr ""
|
8032 |
|
8033 |
-
#: languages/vue.php:
|
8034 |
msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
|
8035 |
msgstr ""
|
8036 |
|
8037 |
-
#: languages/vue.php:
|
8038 |
msgid "Show"
|
8039 |
msgstr ""
|
8040 |
|
8041 |
-
#: languages/vue.php:
|
8042 |
msgid "File imported"
|
8043 |
msgstr ""
|
8044 |
|
8045 |
-
#: languages/vue.php:
|
8046 |
msgid "Settings successfully updated!"
|
8047 |
msgstr ""
|
8048 |
|
8049 |
-
#: languages/vue.php:
|
8050 |
msgid "Error importing settings"
|
8051 |
msgstr ""
|
8052 |
|
8053 |
-
#: languages/vue.php:
|
8054 |
msgid "Please choose a .json file generated by a ExactMetrics settings export."
|
8055 |
msgstr ""
|
8056 |
|
8057 |
-
#: languages/vue.php:
|
8058 |
msgid "Import/Export"
|
8059 |
msgstr ""
|
8060 |
|
8061 |
-
#: languages/vue.php:
|
8062 |
msgid "Import"
|
8063 |
msgstr ""
|
8064 |
|
8065 |
-
#: languages/vue.php:
|
8066 |
msgid "Import settings from another ExactMetrics website."
|
8067 |
msgstr ""
|
8068 |
|
8069 |
-
#: languages/vue.php:
|
8070 |
msgid "Export"
|
8071 |
msgstr ""
|
8072 |
|
8073 |
-
#: languages/vue.php:
|
8074 |
msgid "Export settings to import into another ExactMetrics install."
|
8075 |
msgstr ""
|
8076 |
|
8077 |
-
#: languages/vue.php:
|
8078 |
msgid "Import Settings"
|
8079 |
msgstr ""
|
8080 |
|
8081 |
-
#: languages/vue.php:
|
8082 |
msgid "Export Settings"
|
8083 |
msgstr ""
|
8084 |
|
8085 |
-
#: languages/vue.php:
|
8086 |
msgid "Please choose a file to import"
|
8087 |
msgstr ""
|
8088 |
|
8089 |
-
#: languages/vue.php:
|
8090 |
msgid "Click Choose file below to select the settings export file from another site."
|
8091 |
msgstr ""
|
8092 |
|
8093 |
-
#: languages/vue.php:
|
8094 |
msgid "Use the button below to export a file with your ExactMetrics settings."
|
8095 |
msgstr ""
|
8096 |
|
8097 |
-
#: languages/vue.php:
|
8098 |
msgid "Choose file"
|
8099 |
msgstr ""
|
8100 |
|
8101 |
-
#: languages/vue.php:
|
8102 |
msgid "No file chosen"
|
8103 |
msgstr ""
|
8104 |
|
8105 |
-
#: languages/vue.php:
|
8106 |
msgid "Uploading file..."
|
8107 |
msgstr ""
|
8108 |
|
8109 |
-
#: languages/vue.php:
|
8110 |
msgid "Custom code"
|
8111 |
msgstr ""
|
8112 |
|
8113 |
#. Translators: Adds a link to the Google reference.
|
8114 |
-
#: languages/vue.php:
|
8115 |
msgid "Not for the average user: this allows you to add a line of code, to be added before the %1$spageview is sent%2$s."
|
8116 |
msgstr ""
|
8117 |
|
8118 |
-
#: languages/vue.php:
|
8119 |
msgid "Automatic Updates"
|
8120 |
msgstr ""
|
8121 |
|
8122 |
-
#: languages/vue.php:
|
8123 |
msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
|
8124 |
msgstr ""
|
8125 |
|
8126 |
-
#: languages/vue.php:
|
8127 |
msgid "Hide Admin Bar Reports"
|
8128 |
msgstr ""
|
8129 |
|
8130 |
#. Translators: placeholders make text small.
|
8131 |
-
#: languages/vue.php:
|
8132 |
msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
|
8133 |
msgstr ""
|
8134 |
|
8135 |
#. Translators: placeholders make text small.
|
8136 |
-
#: languages/vue.php:
|
8137 |
msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
|
8138 |
msgstr ""
|
8139 |
|
8140 |
#. Translators: placeholders make text small.
|
8141 |
-
#: languages/vue.php:
|
8142 |
msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
|
8143 |
msgstr ""
|
8144 |
|
8145 |
#. Translators: placeholders make text small.
|
8146 |
-
#: languages/vue.php:
|
8147 |
msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
|
8148 |
msgstr ""
|
8149 |
|
8150 |
#. Translators: placeholders make text small.
|
8151 |
-
#: languages/vue.php:
|
8152 |
msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
|
8153 |
msgstr ""
|
8154 |
|
8155 |
#. Translators: placeholders make text small.
|
8156 |
-
#: languages/vue.php:
|
8157 |
msgid "None %1$s- Manually update everything.%2$s"
|
8158 |
msgstr ""
|
8159 |
|
8160 |
#. Translators: Adds a link to the general settings tab.
|
8161 |
-
#: languages/vue.php:
|
8162 |
msgid "It looks like you added a Google Analytics tracking code in the custom code area, this can potentially prevent proper tracking. If you want to use a manual UA please use the setting in the %1$sGeneral%2$s tab."
|
8163 |
msgstr ""
|
8164 |
|
8165 |
-
#: languages/vue.php:
|
8166 |
msgid "Permissions"
|
8167 |
msgstr ""
|
8168 |
|
8169 |
-
#: languages/vue.php:
|
8170 |
msgid "Export PDF Reports"
|
8171 |
msgstr ""
|
8172 |
|
8173 |
-
#: languages/vue.php:
|
8174 |
msgid "Allow These User Roles to See Reports"
|
8175 |
msgstr ""
|
8176 |
|
8177 |
-
#: languages/vue.php:
|
8178 |
msgid "Users that have at least one of these roles will be able to view the reports."
|
8179 |
msgstr ""
|
8180 |
|
8181 |
-
#: languages/vue.php:
|
8182 |
msgid "Allow These User Roles to Save Settings"
|
8183 |
msgstr ""
|
8184 |
|
8185 |
-
#: languages/vue.php:
|
8186 |
msgid "Users that have at least one of these roles will be able to view and save the settings panel."
|
8187 |
msgstr ""
|
8188 |
|
8189 |
-
#: languages/vue.php:
|
8190 |
msgid "Users that have at least one of these roles will be able to view and save the settings panel, along with any user with the manage_options capability."
|
8191 |
msgstr ""
|
8192 |
|
8193 |
-
#: languages/vue.php:
|
8194 |
msgid "Exclude These User Roles From Tracking"
|
8195 |
msgstr ""
|
8196 |
|
8197 |
-
#: languages/vue.php:
|
8198 |
msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
|
8199 |
msgstr ""
|
8200 |
|
8201 |
-
#: languages/vue.php:
|
8202 |
msgid "Make your ExactMetrics campaign links prettier with Pretty Links!"
|
8203 |
msgstr ""
|
8204 |
|
8205 |
-
#: languages/vue.php:
|
8206 |
msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
|
8207 |
msgstr ""
|
8208 |
|
8209 |
-
#: languages/vue.php:
|
8210 |
msgid "Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!"
|
8211 |
msgstr ""
|
8212 |
|
8213 |
-
#: languages/vue.php:
|
8214 |
msgid "Over 200,000 websites use Pretty Links!"
|
8215 |
msgstr ""
|
8216 |
|
8217 |
-
#: languages/vue.php:
|
8218 |
msgid "Install Pretty Links"
|
8219 |
msgstr ""
|
8220 |
|
8221 |
-
#: languages/vue.php:
|
8222 |
msgid "Pretty Links Installed & Activated"
|
8223 |
msgstr ""
|
8224 |
|
8225 |
-
#: languages/vue.php:
|
8226 |
msgid "Download Pretty Links"
|
8227 |
msgstr ""
|
8228 |
|
8229 |
-
#: languages/vue.php:
|
8230 |
msgid "Install Pretty Links from the WordPress.org plugin repository."
|
8231 |
msgstr ""
|
8232 |
|
8233 |
-
#: languages/vue.php:
|
8234 |
msgid "Activate Pretty Links"
|
8235 |
msgstr ""
|
8236 |
|
8237 |
-
#: languages/vue.php:
|
8238 |
msgid "Activating Pretty Links..."
|
8239 |
msgstr ""
|
8240 |
|
8241 |
-
#: languages/vue.php:
|
8242 |
msgid "Create New Pretty Link"
|
8243 |
msgstr ""
|
8244 |
|
8245 |
-
#: languages/vue.php:
|
8246 |
msgid "Create a New Pretty Link"
|
8247 |
msgstr ""
|
8248 |
|
8249 |
-
#: languages/vue.php:
|
8250 |
msgid "Grab your campaign link and paste it into the Target URL field."
|
8251 |
msgstr ""
|
8252 |
|
8253 |
-
#: languages/vue.php:
|
8254 |
msgid "Custom Campaign Parameters"
|
8255 |
msgstr ""
|
8256 |
|
8257 |
-
#: languages/vue.php:
|
8258 |
msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
|
8259 |
msgstr ""
|
8260 |
|
8261 |
-
#: languages/vue.php:
|
8262 |
msgid "A custom campaign is any ad campaign not using the AdWords auto-tagging feature. When users click one of the custom links, the unique parameters are sent to your Analytics account, so you can identify the URLs that are the most effective in attracting users to your content."
|
8263 |
msgstr ""
|
8264 |
|
8265 |
#. Translators: Marks the field as required.
|
8266 |
-
#: languages/vue.php:
|
8267 |
msgid "Website URL %s"
|
8268 |
msgstr ""
|
8269 |
|
8270 |
#. Translators: Display the current website url in italic.
|
8271 |
-
#: languages/vue.php:
|
8272 |
msgid "The full website URL (e.g. %1$s %2$s%3$s)"
|
8273 |
msgstr ""
|
8274 |
|
8275 |
#. Translators: Marks the field as required.
|
8276 |
-
#: languages/vue.php:
|
8277 |
msgid "Campaign Source %s"
|
8278 |
msgstr ""
|
8279 |
|
8280 |
#. Translators: Make the text italic.
|
8281 |
-
#: languages/vue.php:
|
8282 |
msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
|
8283 |
msgstr ""
|
8284 |
|
8285 |
#. Translators: Make the text italic.
|
8286 |
-
#: languages/vue.php:
|
8287 |
msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
|
8288 |
msgstr ""
|
8289 |
|
8290 |
#. Translators: Make the text italic.
|
8291 |
-
#: languages/vue.php:
|
8292 |
msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
|
8293 |
msgstr ""
|
8294 |
|
8295 |
-
#: languages/vue.php:
|
8296 |
msgid "Enter the paid keyword"
|
8297 |
msgstr ""
|
8298 |
|
8299 |
-
#: languages/vue.php:
|
8300 |
msgid "Enter something to differentiate ads"
|
8301 |
msgstr ""
|
8302 |
|
8303 |
-
#: languages/vue.php:
|
8304 |
msgid "Use Fragment"
|
8305 |
msgstr ""
|
8306 |
|
8307 |
#. Translators: Make the text bold.
|
8308 |
-
#: languages/vue.php:
|
8309 |
msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
|
8310 |
msgstr ""
|
8311 |
|
8312 |
-
#: languages/vue.php:
|
8313 |
msgid "URL to use"
|
8314 |
msgstr ""
|
8315 |
|
8316 |
-
#: languages/vue.php:
|
8317 |
msgid "(Updates automatically)"
|
8318 |
msgstr ""
|
8319 |
|
8320 |
-
#: languages/vue.php:
|
8321 |
msgid "Copy to Clipboard"
|
8322 |
msgstr ""
|
8323 |
|
8324 |
-
#: languages/vue.php:
|
8325 |
msgid "Copy to Pretty Links"
|
8326 |
msgstr ""
|
8327 |
|
8328 |
-
#: languages/vue.php:
|
8329 |
msgid "Make your campaign links prettier!"
|
8330 |
msgstr ""
|
8331 |
|
8332 |
-
#: languages/vue.php:
|
8333 |
msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
|
8334 |
msgstr ""
|
8335 |
|
8336 |
-
#: languages/vue.php:
|
8337 |
msgid "More Information & Examples"
|
8338 |
msgstr ""
|
8339 |
|
8340 |
-
#: languages/vue.php:
|
8341 |
msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
|
8342 |
msgstr ""
|
8343 |
|
8344 |
-
#: languages/vue.php:
|
8345 |
msgid "Campaign Source"
|
8346 |
msgstr ""
|
8347 |
|
8348 |
-
#: languages/vue.php:
|
8349 |
msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
|
8350 |
msgstr ""
|
8351 |
|
8352 |
-
#: languages/vue.php:
|
8353 |
msgid "Campaign Medium"
|
8354 |
msgstr ""
|
8355 |
|
8356 |
-
#: languages/vue.php:
|
8357 |
msgid "Use utm_medium to identify a medium such as email or cost-per-click."
|
8358 |
msgstr ""
|
8359 |
|
8360 |
-
#: languages/vue.php:
|
8361 |
msgid "Campaign Name"
|
8362 |
msgstr ""
|
8363 |
|
8364 |
-
#: languages/vue.php:
|
8365 |
msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
|
8366 |
msgstr ""
|
8367 |
|
8368 |
-
#: languages/vue.php:
|
8369 |
msgid "Campaign Term"
|
8370 |
msgstr ""
|
8371 |
|
8372 |
-
#: languages/vue.php:
|
8373 |
msgid "Used for paid search. Use utm_term to note the keywords for this ad."
|
8374 |
msgstr ""
|
8375 |
|
8376 |
-
#: languages/vue.php:
|
8377 |
msgid "Campaign Content"
|
8378 |
msgstr ""
|
8379 |
|
8380 |
-
#: languages/vue.php:
|
8381 |
msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
|
8382 |
msgstr ""
|
8383 |
|
8384 |
#. Translators: Example.
|
8385 |
-
#: languages/vue.php:
|
8386 |
msgid "Example: %s"
|
8387 |
msgstr ""
|
8388 |
|
8389 |
#. Translators: Examples.
|
8390 |
-
#: languages/vue.php:
|
8391 |
msgid "Examples: %s"
|
8392 |
msgstr ""
|
8393 |
|
8394 |
-
#: languages/vue.php:
|
8395 |
msgid "About Campaigns"
|
8396 |
msgstr ""
|
8397 |
|
8398 |
-
#: languages/vue.php:
|
8399 |
msgid "About Custom Campaigns"
|
8400 |
msgstr ""
|
8401 |
|
8402 |
-
#: languages/vue.php:
|
8403 |
msgid "Best Practices for Creating Custom Campaigns"
|
8404 |
msgstr ""
|
8405 |
|
8406 |
-
#: languages/vue.php:
|
8407 |
msgid "About the Referral Traffic Report"
|
8408 |
msgstr ""
|
8409 |
|
8410 |
-
#: languages/vue.php:
|
8411 |
msgid "About Traffic Source Dimensions"
|
8412 |
msgstr ""
|
8413 |
|
8414 |
-
#: languages/vue.php:
|
8415 |
msgid "AdWords Auto-Tagging"
|
8416 |
msgstr ""
|
8417 |
|
8418 |
-
#: languages/vue.php:
|
8419 |
msgid "Additional Information"
|
8420 |
msgstr ""
|
8421 |
|
8422 |
-
#: languages/vue.php:
|
8423 |
msgid "Affiliate Links"
|
8424 |
msgstr ""
|
8425 |
|
8426 |
#. Translators: Add links to documentation.
|
8427 |
-
#: languages/vue.php:
|
8428 |
msgid "This allows you to track custom affiliate links. A path of /go/ would match urls that start with that. The label is appended onto the end of the string \"outbound-link-\", to provide unique labels for these links in Google Analytics. Complete documentation on affiliate links is available %1$shere%2$s."
|
8429 |
msgstr ""
|
8430 |
|
8431 |
-
#: languages/vue.php:
|
8432 |
msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
|
8433 |
msgstr ""
|
8434 |
|
8435 |
-
#: languages/vue.php:
|
8436 |
msgid "The ExactMetrics Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results."
|
8437 |
msgstr ""
|
8438 |
|
8439 |
-
#: languages/vue.php:
|
8440 |
msgid "Disable the Headline Analyzer"
|
8441 |
msgstr ""
|
8442 |
|
8443 |
#. Translators: Add line break.
|
8444 |
-
#: languages/vue.php:
|
8445 |
msgid "See All Your Important Store%s Metrics in One Place"
|
8446 |
msgstr ""
|
8447 |
|
8448 |
-
#: languages/vue.php:
|
8449 |
msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
|
8450 |
msgstr ""
|
8451 |
|
8452 |
-
#: languages/vue.php:
|
8453 |
msgid "See Your Conversion Rate to Improve Funnel"
|
8454 |
msgstr ""
|
8455 |
|
8456 |
-
#: languages/vue.php:
|
8457 |
msgid "See The Number of Transactions and Make Data-Driven Decisions"
|
8458 |
msgstr ""
|
8459 |
|
8460 |
-
#: languages/vue.php:
|
8461 |
msgid "See The Total Revenue to Track Growth"
|
8462 |
msgstr ""
|
8463 |
|
8464 |
-
#: languages/vue.php:
|
8465 |
msgid "See Average Order Value to Find Offer Opportunities"
|
8466 |
msgstr ""
|
8467 |
|
8468 |
-
#: languages/vue.php:
|
8469 |
msgid "See Your Top Products to See Individual Performance"
|
8470 |
msgstr ""
|
8471 |
|
8472 |
-
#: languages/vue.php:
|
8473 |
msgid "See your Top Conversion Sources and Focus on what's Working"
|
8474 |
msgstr ""
|
8475 |
|
8476 |
-
#: languages/vue.php:
|
8477 |
msgid "See The Time it Takes for Customers to Purchase"
|
8478 |
msgstr ""
|
8479 |
|
8480 |
-
#: languages/vue.php:
|
8481 |
msgid "See How Many Sessions are Needed for a Purchase"
|
8482 |
msgstr ""
|
8483 |
|
8484 |
-
#: languages/vue.php:
|
8485 |
msgid "Automatically Track Affiliate Sales"
|
8486 |
msgstr ""
|
8487 |
|
8488 |
-
#: languages/vue.php:
|
8489 |
msgid "The ExactMetrics eCommerce addon works with EasyAffiliate, so that you can instantly track all affiliate referrals and sales inside WordPress and Google Analytics, with no coding needed."
|
8490 |
msgstr ""
|
8491 |
|
8492 |
-
#: languages/vue.php:
|
8493 |
msgid "Works with WooCommerce, MemberPress, and EasyDigitalDownloads."
|
8494 |
msgstr ""
|
8495 |
|
8496 |
-
#: languages/vue.php:
|
8497 |
msgid "Cross Domain Tracking"
|
8498 |
msgstr ""
|
8499 |
|
8500 |
#. Translators: Add links to documentation.
|
8501 |
-
#: languages/vue.php:
|
8502 |
msgid "Cross domain tracking makes it possible for Analytics to see sessions on two related sites as a single session. More info on specific setup steps can be found in our %1$sknowledge base%2$s."
|
8503 |
msgstr ""
|
8504 |
|
8505 |
-
#: languages/vue.php:
|
8506 |
msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
|
8507 |
msgstr ""
|
8508 |
|
8509 |
-
#: languages/vue.php:
|
8510 |
msgid "Anonymize IP Addresses"
|
8511 |
msgstr ""
|
8512 |
|
8513 |
-
#: languages/vue.php:
|
8514 |
msgid "Link Attribution"
|
8515 |
msgstr ""
|
8516 |
|
8517 |
-
#: languages/vue.php:
|
8518 |
msgid "Enable Enhanced Link Attribution"
|
8519 |
msgstr ""
|
8520 |
|
8521 |
-
#: languages/vue.php:
|
8522 |
msgid "Enable Anchor Tracking"
|
8523 |
msgstr ""
|
8524 |
|
8525 |
-
#: languages/vue.php:
|
8526 |
msgid "Enable allowAnchor"
|
8527 |
msgstr ""
|
8528 |
|
8529 |
-
#: languages/vue.php:
|
8530 |
msgid "Enable allowLinker"
|
8531 |
msgstr ""
|
8532 |
|
8533 |
-
#: languages/vue.php:
|
8534 |
msgid "Enable Tag Links in RSS"
|
8535 |
msgstr ""
|
8536 |
|
8537 |
-
#: languages/vue.php:
|
8538 |
msgid "File Downloads"
|
8539 |
msgstr ""
|
8540 |
|
8541 |
-
#: languages/vue.php:
|
8542 |
msgid "Extensions of Files to Track as Downloads"
|
8543 |
msgstr ""
|
8544 |
|
8545 |
-
#: languages/vue.php:
|
8546 |
msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
|
8547 |
msgstr ""
|
8548 |
|
8549 |
#. Translators: Add links to documentation.
|
8550 |
-
#: languages/vue.php:
|
8551 |
msgid "Enable this setting to add the Demographics and Remarketing features to your Google Analytics tracking code. Make sure to enable Demographics and Remarketing in your Google Analytics account. We have a guide for how to do that in our %1$sknowledge base%2$s. For more information about Remarketing, we refer you to %3$sGoogle's documentation%4$s. Note that usage of this function is affected by privacy and cookie laws around the world. Be sure to follow the laws that affect your target audience."
|
8552 |
msgstr ""
|
8553 |
|
8554 |
#. Translators: Add links to documentation.
|
8555 |
-
#: languages/vue.php:
|
8556 |
msgid "This adds %1$sanonymizeIp%2$s, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage."
|
8557 |
msgstr ""
|
8558 |
|
8559 |
#. Translators: Add links to documentation.
|
8560 |
-
#: languages/vue.php:
|
8561 |
msgid "Adds the Enhanced Link Attribution (retain link) code to improve the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs."
|
8562 |
msgstr ""
|
8563 |
|
8564 |
-
#: languages/vue.php:
|
8565 |
msgid "Many WordPress \"1-page\" style themes rely on anchor tags for navigation to show virtual pages. The problem is that to Google Analytics, these are all just a single page, and it makes it hard to get meaningful statistics about pages viewed. This feature allows proper tracking in those themes."
|
8566 |
msgstr ""
|
8567 |
|
8568 |
#. Translators: Add links to documentation.
|
8569 |
-
#: languages/vue.php:
|
8570 |
msgid "This adds %1$sallowAnchor%2$s to the create command of the pageview hit tracking code, and makes RSS link tagging use a # as well."
|
8571 |
msgstr ""
|
8572 |
|
8573 |
#. Translators: Add links to documentation.
|
8574 |
-
#: languages/vue.php:
|
8575 |
msgid "Enabling %1$scross-domain tracking (additional setup required)%2$s allows you to track users across multiple properties you own (such as example-1.com and example-2.com as a single session. It also allows you fix an issue so that when a user has to go to an off-site hosted payment gateway to finish a purchase it doesn't count it as referral traffic from that gateway but maintains the visit as part of the same session.) It is required that the other site includes a Google Analytics tracker with the same UA Code."
|
8576 |
msgstr ""
|
8577 |
|
8578 |
#. Translators: Add links to documentation.
|
8579 |
-
#: languages/vue.php:
|
8580 |
msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check this %1$shelp page%2$s for info on how to enable this feature in FeedBurner."
|
8581 |
msgstr ""
|
8582 |
|
8583 |
-
#: languages/vue.php:
|
8584 |
msgid "Add domain"
|
8585 |
msgstr ""
|
8586 |
|
8587 |
#. Translators: Domain name example.
|
8588 |
-
#: languages/vue.php:
|
8589 |
msgid "Domain (example: %s)"
|
8590 |
msgstr ""
|
8591 |
|
8592 |
#. Translators: Current domain name that should not be used.
|
8593 |
-
#: languages/vue.php:
|
8594 |
msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
|
8595 |
msgstr ""
|
8596 |
|
8597 |
#. Translators: Adds link to the account area to retreive license key.
|
8598 |
-
#: languages/vue.php:
|
8599 |
msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
|
8600 |
msgstr ""
|
8601 |
|
8602 |
-
#: languages/vue.php:
|
8603 |
msgid "Connect ExactMetrics to Start Tracking Your Data"
|
8604 |
msgstr ""
|
8605 |
|
8606 |
-
#: languages/vue.php:
|
8607 |
msgid "Complete Upgrade"
|
8608 |
msgstr ""
|
8609 |
|
8610 |
-
#: languages/vue.php:
|
8611 |
msgid "Upgrade to Pro Version!"
|
8612 |
msgstr ""
|
8613 |
|
8614 |
#. Translators: Make text bold.
|
8615 |
-
#: languages/vue.php:
|
8616 |
msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
|
8617 |
msgstr ""
|
8618 |
|
8619 |
-
#: languages/vue.php:
|
8620 |
msgid "Install All-in-One SEO"
|
8621 |
msgstr ""
|
8622 |
|
8623 |
-
#: languages/vue.php:
|
8624 |
msgid "Improve Your Website Search Rankings With All-In-One SEO"
|
8625 |
msgstr ""
|
8626 |
|
8627 |
-
#: languages/vue.php:
|
8628 |
msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
|
8629 |
msgstr ""
|
8630 |
|
8631 |
-
#: languages/vue.php:
|
8632 |
msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
|
8633 |
msgstr ""
|
8634 |
|
8635 |
-
#: languages/vue.php:
|
8636 |
msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
|
8637 |
msgstr ""
|
8638 |
|
8639 |
-
#: languages/vue.php:
|
8640 |
msgid "Local SEO"
|
8641 |
msgstr ""
|
8642 |
|
8643 |
-
#: languages/vue.php:
|
8644 |
msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
|
8645 |
msgstr ""
|
8646 |
|
8647 |
-
#: languages/vue.php:
|
8648 |
msgid "WooCommerce SEO"
|
8649 |
msgstr ""
|
8650 |
|
8651 |
-
#: languages/vue.php:
|
8652 |
msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
|
8653 |
msgstr ""
|
8654 |
|
8655 |
-
#: languages/vue.php:
|
8656 |
msgid "SEO Custom User Roles"
|
8657 |
msgstr ""
|
8658 |
|
8659 |
-
#: languages/vue.php:
|
8660 |
msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
|
8661 |
msgstr ""
|
8662 |
|
8663 |
-
#: languages/vue.php:
|
8664 |
msgid "Google News Sitemap"
|
8665 |
msgstr ""
|
8666 |
|
8667 |
-
#: languages/vue.php:
|
8668 |
msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
|
8669 |
msgstr ""
|
8670 |
|
8671 |
-
#: languages/vue.php:
|
8672 |
msgid "Smart XML Sitemaps"
|
8673 |
msgstr ""
|
8674 |
|
8675 |
-
#: languages/vue.php:
|
8676 |
msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
|
8677 |
msgstr ""
|
8678 |
|
8679 |
-
#: languages/vue.php:
|
8680 |
msgid "Social Media Integration"
|
8681 |
msgstr ""
|
8682 |
|
8683 |
-
#: languages/vue.php:
|
8684 |
msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
|
8685 |
msgstr ""
|
8686 |
|
8687 |
-
#: languages/vue.php:
|
8688 |
msgid "TruSEO On-Page Analysis"
|
8689 |
msgstr ""
|
8690 |
|
8691 |
-
#: languages/vue.php:
|
8692 |
msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
|
8693 |
msgstr ""
|
8694 |
|
8695 |
-
#: languages/vue.php:
|
8696 |
msgid "& Many More!"
|
8697 |
msgstr ""
|
8698 |
|
8699 |
-
#: languages/vue.php:
|
8700 |
msgid "Installing. Please wait.."
|
8701 |
msgstr ""
|
8702 |
|
8703 |
-
#: languages/vue.php:
|
8704 |
msgid "Install All-in-One-SEO"
|
8705 |
msgstr ""
|
8706 |
|
8707 |
-
#: languages/vue.php:
|
8708 |
msgid "Unlock the Publisher Report and Focus on the Content That Matters"
|
8709 |
msgstr ""
|
8710 |
|
8711 |
-
#: languages/vue.php:
|
8712 |
msgid "See Your Top Landing Pages to Improve Engagement"
|
8713 |
msgstr ""
|
8714 |
|
8715 |
-
#: languages/vue.php:
|
8716 |
msgid "See Your Top Exit Pages to Reduce Abandonment"
|
8717 |
msgstr ""
|
8718 |
|
8719 |
-
#: languages/vue.php:
|
8720 |
msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
|
8721 |
msgstr ""
|
8722 |
|
8723 |
-
#: languages/vue.php:
|
8724 |
msgid "See Your Top Affiliate Links and Focus on What’s Working"
|
8725 |
msgstr ""
|
8726 |
|
8727 |
-
#: languages/vue.php:
|
8728 |
msgid "See Your Top Downloads and Improve Conversions"
|
8729 |
msgstr ""
|
8730 |
|
8731 |
-
#: languages/vue.php:
|
8732 |
msgid "See Audience Demographic Report (Age / Gender / Interests)"
|
8733 |
msgstr ""
|
8734 |
|
8735 |
-
#: languages/vue.php:
|
8736 |
msgid "Welcome to the all-new ExactMetrics"
|
8737 |
msgstr ""
|
8738 |
|
8739 |
-
#: languages/vue.php:
|
8740 |
msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
|
8741 |
msgstr ""
|
8742 |
|
8743 |
-
#: languages/vue.php:
|
8744 |
msgid "The New & Improved ExactMetrics includes:"
|
8745 |
msgstr ""
|
8746 |
|
8747 |
-
#: languages/vue.php:
|
8748 |
msgid "All-New Design"
|
8749 |
msgstr ""
|
8750 |
|
8751 |
-
#: languages/vue.php:
|
8752 |
msgid "Better Reporting"
|
8753 |
msgstr ""
|
8754 |
|
8755 |
-
#: languages/vue.php:
|
8756 |
msgid "Better Tracking"
|
8757 |
msgstr ""
|
8758 |
|
8759 |
-
#: languages/vue.php:
|
8760 |
msgid "Better Support"
|
8761 |
msgstr ""
|
8762 |
|
8763 |
-
#: languages/vue.php:
|
8764 |
msgid "Continue"
|
8765 |
msgstr ""
|
8766 |
|
8767 |
-
#: languages/vue.php:
|
8768 |
msgid "Your settings have been automatically transferred."
|
8769 |
msgstr ""
|
8770 |
|
8771 |
-
#: languages/vue.php:
|
8772 |
msgid "On the next step, you will be asked to re-authenticate with Google Analytics. Please %1$ssee our detailed post%2$s to learn why we need your help. Don't worry, your tracking will continue to work as-is even if you don't do this, but re-auth is required to see analytics reports inside WordPress dashboard."
|
8773 |
msgstr ""
|
8774 |
|
8775 |
-
#: languages/vue.php:
|
8776 |
msgid "New"
|
8777 |
msgstr ""
|
8778 |
|
8779 |
-
#: languages/vue.php:
|
8780 |
msgid "Returning"
|
8781 |
msgstr ""
|
8782 |
|
8783 |
-
#: languages/vue.php:
|
8784 |
msgid "Top 10 Countries"
|
8785 |
msgstr ""
|
8786 |
|
8787 |
-
#: languages/vue.php:
|
8788 |
msgid "View Countries Report"
|
8789 |
msgstr ""
|
8790 |
|
8791 |
-
#: languages/vue.php:
|
8792 |
msgid "Top 10 Referrals"
|
8793 |
msgstr ""
|
8794 |
|
8795 |
-
#: languages/vue.php:
|
8796 |
msgid "View All Referral Sources"
|
8797 |
msgstr ""
|
8798 |
|
8799 |
-
#: languages/vue.php:
|
8800 |
msgid "View Full Posts/Pages Report"
|
8801 |
msgstr ""
|
8802 |
|
8803 |
-
#: languages/vue.php:
|
8804 |
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."
|
8805 |
msgstr ""
|
8806 |
|
8807 |
-
#: languages/vue.php:
|
8808 |
msgid "This list shows the top countries your website visitors are from."
|
8809 |
msgstr ""
|
8810 |
|
8811 |
-
#: languages/vue.php:
|
8812 |
msgid "This list shows the top websites that send your website traffic, known as referral traffic."
|
8813 |
msgstr ""
|
8814 |
|
8815 |
-
#: languages/vue.php:
|
8816 |
msgid "This feature requires ExactMetrics Pro"
|
8817 |
msgstr ""
|
8818 |
|
8819 |
-
#: languages/vue.php:
|
8820 |
msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
|
8821 |
msgstr ""
|
8822 |
|
8823 |
-
#: languages/vue.php:
|
8824 |
msgid "Upgrade to Pro and Unlock Popular Products"
|
8825 |
msgstr ""
|
8826 |
|
8827 |
-
#: languages/vue.php:
|
8828 |
msgid "View all Pro features"
|
8829 |
msgstr ""
|
8830 |
|
8831 |
-
#: languages/vue.php:
|
8832 |
msgid "View notifications"
|
8833 |
msgstr ""
|
8834 |
|
8835 |
-
#: languages/vue.php:
|
8836 |
msgid "Days"
|
8837 |
msgstr ""
|
8838 |
|
8839 |
#. Translators: placeholders make text small.
|
8840 |
-
#: languages/vue.php:
|
8841 |
msgid "7 days"
|
8842 |
msgstr ""
|
8843 |
|
8844 |
-
#: languages/vue.php:
|
8845 |
msgid "30 days"
|
8846 |
msgstr ""
|
8847 |
|
8848 |
-
#: languages/vue.php:
|
8849 |
msgid "Custom"
|
8850 |
msgstr ""
|
8851 |
|
8852 |
-
#: languages/vue.php:
|
8853 |
msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
|
8854 |
msgstr ""
|
8855 |
|
8856 |
-
#: languages/vue.php:
|
8857 |
msgid "All-in-One SEO is a great product. I have been using it on all my WP sites for several years. I highly recommend it."
|
8858 |
msgstr ""
|
8859 |
|
8860 |
-
#: languages/vue.php:
|
8861 |
msgid "Jack Brown"
|
8862 |
msgstr ""
|
8863 |
|
8864 |
-
#: languages/vue.php:
|
8865 |
msgid "PJB Internet Marketing"
|
8866 |
msgstr ""
|
8867 |
|
8868 |
-
#: languages/vue.php:
|
8869 |
msgid "I’m a professional SEO and used many tools and extensions. Regarding simplicity, individuality and configurability All in One SEO Pro is by far the best SEO plugin out there for WordPress."
|
8870 |
msgstr ""
|
8871 |
|
8872 |
-
#: languages/vue.php:
|
8873 |
msgid "Joel Steinmann"
|
8874 |
msgstr ""
|
8875 |
|
8876 |
-
#: languages/vue.php:
|
8877 |
msgid "CEO, Solergo"
|
8878 |
msgstr ""
|
8879 |
|
8880 |
-
#: languages/vue.php:
|
8881 |
msgid "Only Show Posts from These Categories"
|
8882 |
msgstr ""
|
8883 |
|
8884 |
-
#: languages/vue.php:
|
8885 |
msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
|
8886 |
msgstr ""
|
8887 |
|
8888 |
-
#: languages/vue.php:
|
8889 |
msgid "Activating..."
|
8890 |
msgstr ""
|
8891 |
|
8892 |
-
#: languages/vue.php:
|
8893 |
msgid "Deactivating..."
|
8894 |
msgstr ""
|
8895 |
|
8896 |
-
#: languages/vue.php:
|
8897 |
msgid "Deactivate"
|
8898 |
msgstr ""
|
8899 |
|
8900 |
-
#: languages/vue.php:
|
8901 |
msgid "Search Console Report"
|
8902 |
msgstr ""
|
8903 |
|
8904 |
-
#: languages/vue.php:
|
8905 |
msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
|
8906 |
msgstr ""
|
8907 |
|
8908 |
-
#: languages/vue.php:
|
8909 |
msgid "See Your Top Google Search Terms and Optimize Content"
|
8910 |
msgstr ""
|
8911 |
|
8912 |
-
#: languages/vue.php:
|
8913 |
msgid "See The Number of Clicks and Track Interests"
|
8914 |
msgstr ""
|
8915 |
|
8916 |
-
#: languages/vue.php:
|
8917 |
msgid "See The Click-Through-Ratio and Improve SEO"
|
8918 |
msgstr ""
|
8919 |
|
8920 |
-
#: languages/vue.php:
|
8921 |
msgid "See The Average Results Position and Focus on what works."
|
8922 |
msgstr ""
|
8923 |
|
8924 |
-
#: languages/vue.php:
|
8925 |
msgid "Ecommerce Report"
|
8926 |
msgstr ""
|
8927 |
|
8928 |
-
#: languages/vue.php:
|
8929 |
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."
|
8930 |
msgstr ""
|
8931 |
|
8932 |
-
#: languages/vue.php:
|
8933 |
msgid "See Your Conversion Rate to Improve Your Funnel"
|
8934 |
msgstr ""
|
8935 |
|
8936 |
-
#: languages/vue.php:
|
8937 |
msgid "See Your Top Conversion Sources and Focus on What's Working"
|
8938 |
msgstr ""
|
8939 |
|
8940 |
-
#: languages/vue.php:
|
8941 |
msgid "Popular Posts data can be fetched correctly"
|
8942 |
msgstr ""
|
8943 |
|
8944 |
-
#: languages/vue.php:
|
8945 |
msgid "Please note: depending on when you set up the Custom Dimensions settings, it may take up to 7 days to see relevant Popular Posts data loading from Google Analytics."
|
8946 |
msgstr ""
|
8947 |
|
8948 |
-
#: languages/vue.php:
|
8949 |
msgid "Close"
|
8950 |
msgstr ""
|
8951 |
|
8952 |
-
#: languages/vue.php:
|
8953 |
msgid "Add Top 5 Posts from Google Analytics"
|
8954 |
msgstr ""
|
8955 |
|
8956 |
-
#: languages/vue.php:
|
8957 |
msgid "In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both ExactMetrics and Google Analytics settings."
|
8958 |
msgstr ""
|
8959 |
|
8960 |
-
#: languages/vue.php:
|
8961 |
msgid "Test Automated Posts"
|
8962 |
msgstr ""
|
8963 |
|
8964 |
#. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
|
8965 |
-
#: languages/vue.php:
|
8966 |
msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
|
8967 |
msgstr ""
|
8968 |
|
@@ -9275,567 +9275,567 @@ msgstr ""
|
|
9275 |
msgid "There are two ways to manual include the widget in your posts."
|
9276 |
msgstr ""
|
9277 |
|
9278 |
-
#: languages/vue.php:
|
9279 |
msgid "Using the Gutenberg Block"
|
9280 |
msgstr ""
|
9281 |
|
9282 |
-
#: languages/vue.php:
|
9283 |
msgid "Using the Shortcode"
|
9284 |
msgstr ""
|
9285 |
|
9286 |
-
#: languages/vue.php:
|
9287 |
msgid "Learn how to insert the widget using Gutenberg blocks."
|
9288 |
msgstr ""
|
9289 |
|
9290 |
-
#: languages/vue.php:
|
9291 |
msgid "Learn how to insert the widget using out Shortcode."
|
9292 |
msgstr ""
|
9293 |
|
9294 |
-
#: languages/vue.php:
|
9295 |
msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
|
9296 |
msgstr ""
|
9297 |
|
9298 |
-
#: languages/vue.php:
|
9299 |
msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
|
9300 |
msgstr ""
|
9301 |
|
9302 |
-
#: languages/vue.php:
|
9303 |
msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”."
|
9304 |
msgstr ""
|
9305 |
|
9306 |
-
#: languages/vue.php:
|
9307 |
msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
|
9308 |
msgstr ""
|
9309 |
|
9310 |
-
#: languages/vue.php:
|
9311 |
msgid "Shortcode"
|
9312 |
msgstr ""
|
9313 |
|
9314 |
-
#: languages/vue.php:
|
9315 |
msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
|
9316 |
msgstr ""
|
9317 |
|
9318 |
-
#: languages/vue.php:
|
9319 |
msgid "Copy Shortcode"
|
9320 |
msgstr ""
|
9321 |
|
9322 |
-
#: languages/vue.php:
|
9323 |
msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
|
9324 |
msgstr ""
|
9325 |
|
9326 |
-
#: languages/vue.php:
|
9327 |
msgid "Automatic Placement"
|
9328 |
msgstr ""
|
9329 |
|
9330 |
-
#: languages/vue.php:
|
9331 |
msgid "Display using Gutenberg Blocks"
|
9332 |
msgstr ""
|
9333 |
|
9334 |
-
#: languages/vue.php:
|
9335 |
msgid "Embed Options"
|
9336 |
msgstr ""
|
9337 |
|
9338 |
-
#: languages/vue.php:
|
9339 |
msgid "All Embed Options can be used in conjunction with one another."
|
9340 |
msgstr ""
|
9341 |
|
9342 |
-
#: languages/vue.php:
|
9343 |
msgid "Using Automatic Embed"
|
9344 |
msgstr ""
|
9345 |
|
9346 |
-
#: languages/vue.php:
|
9347 |
msgid "Learn how to insert the Popular Posts Widget into your posts and pages using Gutenberg Blocks. To style this widget, use the Gutenberg Block settings."
|
9348 |
msgstr ""
|
9349 |
|
9350 |
-
#: languages/vue.php:
|
9351 |
msgid "Enabling Automatic Placement will include the Popular Posts Widget after the last paragraph of any and all posts that match your Behavior settings. To style this widget use the Customize Design panel above."
|
9352 |
msgstr ""
|
9353 |
|
9354 |
-
#: languages/vue.php:
|
9355 |
msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
|
9356 |
msgstr ""
|
9357 |
|
9358 |
-
#: languages/vue.php:
|
9359 |
msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
|
9360 |
msgstr ""
|
9361 |
|
9362 |
-
#: languages/vue.php:
|
9363 |
msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
|
9364 |
msgstr ""
|
9365 |
|
9366 |
-
#: languages/vue.php:
|
9367 |
msgid "%1$sStep 1%2$s - Navigate to your Appearance > Widgets page using the menu on the left side your screen. Must be logged in as Admin."
|
9368 |
msgstr ""
|
9369 |
|
9370 |
-
#: languages/vue.php:
|
9371 |
msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - ExactMetrics widget and drag it into the desired Sidebar on the right."
|
9372 |
msgstr ""
|
9373 |
|
9374 |
-
#: languages/vue.php:
|
9375 |
msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
|
9376 |
msgstr ""
|
9377 |
|
9378 |
-
#: languages/vue.php:
|
9379 |
msgid "Display using a Shortcode"
|
9380 |
msgstr ""
|
9381 |
|
9382 |
-
#: languages/vue.php:
|
9383 |
msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
|
9384 |
msgstr ""
|
9385 |
|
9386 |
-
#: languages/vue.php:
|
9387 |
msgid "Enable Automatic Placement"
|
9388 |
msgstr ""
|
9389 |
|
9390 |
-
#: languages/vue.php:
|
9391 |
msgid "Display in a Sidebar"
|
9392 |
msgstr ""
|
9393 |
|
9394 |
-
#: languages/vue.php:
|
9395 |
msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
|
9396 |
msgstr ""
|
9397 |
|
9398 |
-
#: languages/vue.php:
|
9399 |
msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
|
9400 |
msgstr ""
|
9401 |
|
9402 |
#. Translators: The number of results.
|
9403 |
-
#: languages/vue.php:
|
9404 |
msgid "%s results"
|
9405 |
msgstr ""
|
9406 |
|
9407 |
-
#: languages/vue.php:
|
9408 |
msgid "Media"
|
9409 |
msgstr ""
|
9410 |
|
9411 |
-
#: languages/vue.php:
|
9412 |
msgid "Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro."
|
9413 |
msgstr ""
|
9414 |
|
9415 |
-
#: languages/vue.php:
|
9416 |
msgid "2021 Year in Review"
|
9417 |
msgstr ""
|
9418 |
|
9419 |
-
#: languages/vue.php:
|
9420 |
msgid "Media- Track how your users interact with videos on your website."
|
9421 |
msgstr ""
|
9422 |
|
9423 |
-
#: languages/vue.php:
|
9424 |
msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
|
9425 |
msgstr ""
|
9426 |
|
9427 |
-
#: languages/vue.php:
|
9428 |
msgid "Your 2021 Analytics Report"
|
9429 |
msgstr ""
|
9430 |
|
9431 |
-
#: languages/vue.php:
|
9432 |
msgid "January 1, 2021 - December 31, 2021"
|
9433 |
msgstr ""
|
9434 |
|
9435 |
-
#: languages/vue.php:
|
9436 |
msgid "A Tip for 2022"
|
9437 |
msgstr ""
|
9438 |
|
9439 |
-
#: languages/vue.php:
|
9440 |
msgid "A Tip For 2022"
|
9441 |
msgstr ""
|
9442 |
|
9443 |
-
#: languages/vue.php:
|
9444 |
msgid "Here's to an amazing 2022!"
|
9445 |
msgstr ""
|
9446 |
|
9447 |
-
#: languages/vue.php:
|
9448 |
msgid "Try our other popular WordPress plugins to grow your website in 2022."
|
9449 |
msgstr ""
|
9450 |
|
9451 |
-
#: languages/vue.php:
|
9452 |
msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
|
9453 |
msgstr ""
|
9454 |
|
9455 |
-
#: languages/vue.php:
|
9456 |
msgid "Copyright ExactMetrics, 2022"
|
9457 |
msgstr ""
|
9458 |
|
9459 |
#. Translators: Number of minutes spent on site.
|
9460 |
-
#: languages/vue.php:
|
9461 |
msgid "Each visitor spent an average of %s minutes on your website in 2021."
|
9462 |
msgstr ""
|
9463 |
|
9464 |
#. Translators: Placeholders are used for making text bold and adding a link.
|
9465 |
-
#: languages/vue.php:
|
9466 |
msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
|
9467 |
msgstr ""
|
9468 |
|
9469 |
-
#: languages/vue.php:
|
9470 |
msgid "With ExactMetrics Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
|
9471 |
msgstr ""
|
9472 |
|
9473 |
-
#: languages/vue.php:
|
9474 |
msgid "RafflePress"
|
9475 |
msgstr ""
|
9476 |
|
9477 |
-
#: languages/vue.php:
|
9478 |
msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
|
9479 |
msgstr ""
|
9480 |
|
9481 |
-
#: languages/vue.php:
|
9482 |
msgid "Constant Contact"
|
9483 |
msgstr ""
|
9484 |
|
9485 |
-
#: languages/vue.php:
|
9486 |
msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
|
9487 |
msgstr ""
|
9488 |
|
9489 |
-
#: languages/vue.php:
|
9490 |
msgid "SEMRUSH"
|
9491 |
msgstr ""
|
9492 |
|
9493 |
-
#: languages/vue.php:
|
9494 |
msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
|
9495 |
msgstr ""
|
9496 |
|
9497 |
-
#: languages/vue.php:
|
9498 |
msgid "Engagement Tools"
|
9499 |
msgstr ""
|
9500 |
|
9501 |
-
#: languages/vue.php:
|
9502 |
msgid "WPForms"
|
9503 |
msgstr ""
|
9504 |
|
9505 |
-
#: languages/vue.php:
|
9506 |
msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
|
9507 |
msgstr ""
|
9508 |
|
9509 |
-
#: languages/vue.php:
|
9510 |
msgid "OptinMonster"
|
9511 |
msgstr ""
|
9512 |
|
9513 |
-
#: languages/vue.php:
|
9514 |
msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
|
9515 |
msgstr ""
|
9516 |
|
9517 |
-
#: languages/vue.php:
|
9518 |
msgid "Smash Balloon - Facebook"
|
9519 |
msgstr ""
|
9520 |
|
9521 |
-
#: languages/vue.php:
|
9522 |
msgid "Smash Balloon - Instagram"
|
9523 |
msgstr ""
|
9524 |
|
9525 |
-
#: languages/vue.php:
|
9526 |
msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
|
9527 |
msgstr ""
|
9528 |
|
9529 |
-
#: languages/vue.php:
|
9530 |
msgid "Popular Posts by ExactMetrics"
|
9531 |
msgstr ""
|
9532 |
|
9533 |
-
#: languages/vue.php:
|
9534 |
msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
|
9535 |
msgstr ""
|
9536 |
|
9537 |
-
#: languages/vue.php:
|
9538 |
msgid "Popular Products by ExactMetrics"
|
9539 |
msgstr ""
|
9540 |
|
9541 |
-
#: languages/vue.php:
|
9542 |
msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
|
9543 |
msgstr ""
|
9544 |
|
9545 |
-
#: languages/vue.php:
|
9546 |
msgid "Revenue Tools"
|
9547 |
msgstr ""
|
9548 |
|
9549 |
-
#: languages/vue.php:
|
9550 |
msgid "SeedProd"
|
9551 |
msgstr ""
|
9552 |
|
9553 |
-
#: languages/vue.php:
|
9554 |
msgid "Use the best drag-and-drop landing page builder for WordPress to instantly build coming soon pages, sales pages, opt-in pages, webinar pages, maintenance pages, and more. Includes 100+ free templates."
|
9555 |
msgstr ""
|
9556 |
|
9557 |
-
#: languages/vue.php:
|
9558 |
msgid "Featured Tools"
|
9559 |
msgstr ""
|
9560 |
|
9561 |
-
#: languages/vue.php:
|
9562 |
msgid "Easy Affiliate"
|
9563 |
msgstr ""
|
9564 |
|
9565 |
-
#: languages/vue.php:
|
9566 |
msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with ExactMetrics."
|
9567 |
msgstr ""
|
9568 |
|
9569 |
-
#: languages/vue.php:
|
9570 |
msgid "SearchWP"
|
9571 |
msgstr ""
|
9572 |
|
9573 |
-
#: languages/vue.php:
|
9574 |
msgid "Unlock better search results for your website. Perfect for any information or eCommerce store to help users find exactly what content and products they’re looking for."
|
9575 |
msgstr ""
|
9576 |
|
9577 |
-
#: languages/vue.php:
|
9578 |
msgid "Easy Digital Downloads"
|
9579 |
msgstr ""
|
9580 |
|
9581 |
-
#: languages/vue.php:
|
9582 |
msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
|
9583 |
msgstr ""
|
9584 |
|
9585 |
-
#: languages/vue.php:
|
9586 |
msgid "MemberPress"
|
9587 |
msgstr ""
|
9588 |
|
9589 |
-
#: languages/vue.php:
|
9590 |
msgid "Create a membership website. Works automatically with ExactMetrics, no coding needed."
|
9591 |
msgstr ""
|
9592 |
|
9593 |
-
#: languages/vue.php:
|
9594 |
msgid "Thirsty Affiliates"
|
9595 |
msgstr ""
|
9596 |
|
9597 |
-
#: languages/vue.php:
|
9598 |
msgid "Manage all your affiliate links with features designed to help make bloggers more money."
|
9599 |
msgstr ""
|
9600 |
|
9601 |
-
#: languages/vue.php:
|
9602 |
msgid "Upgrade to unlock advanced reporting and features designed to help you get more traffic and make more money from your website. Special Offer: Save 50% today."
|
9603 |
msgstr ""
|
9604 |
|
9605 |
-
#: languages/vue.php:
|
9606 |
msgid "Advanced Coupons"
|
9607 |
msgstr ""
|
9608 |
|
9609 |
-
#: languages/vue.php:
|
9610 |
msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
|
9611 |
msgstr ""
|
9612 |
|
9613 |
-
#: languages/vue.php:
|
9614 |
msgid "PrettyLinks"
|
9615 |
msgstr ""
|
9616 |
|
9617 |
-
#: languages/vue.php:
|
9618 |
msgid "Automatically monetize your website content with affiliate links added automatically to your content."
|
9619 |
msgstr ""
|
9620 |
|
9621 |
-
#: languages/vue.php:
|
9622 |
msgid "Install Now"
|
9623 |
msgstr ""
|
9624 |
|
9625 |
-
#: languages/vue.php:
|
9626 |
msgid "Online Marketing Guides & Resources"
|
9627 |
msgstr ""
|
9628 |
|
9629 |
-
#: languages/vue.php:
|
9630 |
msgid "Read This Guide"
|
9631 |
msgstr ""
|
9632 |
|
9633 |
-
#: languages/vue.php:
|
9634 |
msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
|
9635 |
msgstr ""
|
9636 |
|
9637 |
-
#: languages/vue.php:
|
9638 |
msgid "Traffic Tools"
|
9639 |
msgstr ""
|
9640 |
|
9641 |
-
#: languages/vue.php:
|
9642 |
msgid "All in One SEO (AIOSEO)"
|
9643 |
msgstr ""
|
9644 |
|
9645 |
-
#: languages/vue.php:
|
9646 |
msgid "The best WordPress SEO plugin that works automatically with ExactMetrics."
|
9647 |
msgstr ""
|
9648 |
|
9649 |
-
#: languages/vue.php:
|
9650 |
msgid "PushEngage"
|
9651 |
msgstr ""
|
9652 |
|
9653 |
-
#: languages/vue.php:
|
9654 |
msgid "Send push notifications to your visitors to drive more traffic and boost sales."
|
9655 |
msgstr ""
|
9656 |
|
9657 |
-
#: languages/vue.php:
|
9658 |
msgid "Featured"
|
9659 |
msgstr ""
|
9660 |
|
9661 |
-
#: languages/vue.php:
|
9662 |
msgid "Traffic"
|
9663 |
msgstr ""
|
9664 |
|
9665 |
-
#: languages/vue.php:
|
9666 |
msgid "Revenue"
|
9667 |
msgstr ""
|
9668 |
|
9669 |
-
#: languages/vue.php:
|
9670 |
msgid "Guides & Resources"
|
9671 |
msgstr ""
|
9672 |
|
9673 |
-
#: languages/vue.php:
|
9674 |
msgid "Media Tracking"
|
9675 |
msgstr ""
|
9676 |
|
9677 |
-
#: languages/vue.php:
|
9678 |
msgid "Get Started"
|
9679 |
msgstr ""
|
9680 |
|
9681 |
-
#: languages/vue.php:
|
9682 |
msgid "Privacy Compliance Addon"
|
9683 |
msgstr ""
|
9684 |
|
9685 |
-
#: languages/vue.php:
|
9686 |
msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
|
9687 |
msgstr ""
|
9688 |
|
9689 |
-
#: languages/vue.php:
|
9690 |
msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
|
9691 |
msgstr ""
|
9692 |
|
9693 |
-
#: languages/vue.php:
|
9694 |
msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
|
9695 |
msgstr ""
|
9696 |
|
9697 |
-
#: languages/vue.php:
|
9698 |
msgid "20+ Advanced Tracking"
|
9699 |
msgstr ""
|
9700 |
|
9701 |
-
#: languages/vue.php:
|
9702 |
msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
|
9703 |
msgstr ""
|
9704 |
|
9705 |
-
#: languages/vue.php:
|
9706 |
msgid "Advanced Growth Tools"
|
9707 |
msgstr ""
|
9708 |
|
9709 |
-
#: languages/vue.php:
|
9710 |
msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
|
9711 |
msgstr ""
|
9712 |
|
9713 |
-
#: languages/vue.php:
|
9714 |
msgid "Track how your users interact with videos on your website."
|
9715 |
msgstr ""
|
9716 |
|
9717 |
-
#: languages/vue.php:
|
9718 |
msgid "Error Processing"
|
9719 |
msgstr ""
|
9720 |
|
9721 |
-
#: languages/vue.php:
|
9722 |
msgid "There was an error while processing some features. Please try again or you can skip this process for now"
|
9723 |
msgstr ""
|
9724 |
|
9725 |
-
#: languages/vue.php:
|
9726 |
msgid "Which website features would you like to enable?"
|
9727 |
msgstr ""
|
9728 |
|
9729 |
-
#: languages/vue.php:
|
9730 |
msgid "We’ve already selected our recommended features based on your site. "
|
9731 |
msgstr ""
|
9732 |
|
9733 |
-
#: languages/vue.php:
|
9734 |
msgid "Other Addons"
|
9735 |
msgstr ""
|
9736 |
|
9737 |
-
#: languages/vue.php:
|
9738 |
msgid "View all ExactMetrics addons"
|
9739 |
msgstr ""
|
9740 |
|
9741 |
-
#: languages/vue.php:
|
9742 |
msgid "Standard Analytics & Reports"
|
9743 |
msgstr ""
|
9744 |
|
9745 |
-
#: languages/vue.php:
|
9746 |
msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
|
9747 |
msgstr ""
|
9748 |
|
9749 |
-
#: languages/vue.php:
|
9750 |
msgid "Helps you see what links your users are clicking on your site."
|
9751 |
msgstr ""
|
9752 |
|
9753 |
-
#: languages/vue.php:
|
9754 |
msgid "All In One SEO Toolkit"
|
9755 |
msgstr ""
|
9756 |
|
9757 |
-
#: languages/vue.php:
|
9758 |
msgid "The best WordPress SEO plugin that works with ExactMetrics to boost your rankings."
|
9759 |
msgstr ""
|
9760 |
|
9761 |
-
#: languages/vue.php:
|
9762 |
msgid "Smart Form Builder by WPForms"
|
9763 |
msgstr ""
|
9764 |
|
9765 |
-
#: languages/vue.php:
|
9766 |
msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
|
9767 |
msgstr ""
|
9768 |
|
9769 |
-
#: languages/vue.php:
|
9770 |
msgid "Awesome! Tracking and Analytics are All Setup!"
|
9771 |
msgstr ""
|
9772 |
|
9773 |
-
#: languages/vue.php:
|
9774 |
msgid "ExactMetrics is connected to Google Analytics and data is being collected."
|
9775 |
msgstr ""
|
9776 |
|
9777 |
-
#: languages/vue.php:
|
9778 |
msgid "Complete Setup without Upgrading"
|
9779 |
msgstr ""
|
9780 |
|
9781 |
-
#: languages/vue.php:
|
9782 |
msgid "Success"
|
9783 |
msgstr ""
|
9784 |
|
9785 |
-
#: languages/vue.php:
|
9786 |
msgid "Connected to Google Analytics"
|
9787 |
msgstr ""
|
9788 |
|
9789 |
-
#: languages/vue.php:
|
9790 |
msgid "Tracking Code Installed"
|
9791 |
msgstr ""
|
9792 |
|
9793 |
-
#: languages/vue.php:
|
9794 |
msgid "Data Being Collected"
|
9795 |
msgstr ""
|
9796 |
|
9797 |
#. Translators: Add link to retrieve license from account area.
|
9798 |
-
#: languages/vue.php:
|
9799 |
msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO!"
|
9800 |
msgstr ""
|
9801 |
|
9802 |
-
#: languages/vue.php:
|
9803 |
msgid "Verify License Key"
|
9804 |
msgstr ""
|
9805 |
|
9806 |
-
#: languages/vue.php:
|
9807 |
msgid "Upgrade to Unlock These Features"
|
9808 |
msgstr ""
|
9809 |
|
9810 |
-
#: languages/vue.php:
|
9811 |
msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
|
9812 |
msgstr ""
|
9813 |
|
9814 |
-
#: languages/vue.php:
|
9815 |
msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
|
9816 |
msgstr ""
|
9817 |
|
9818 |
-
#: languages/vue.php:
|
9819 |
msgid "Verifying License..."
|
9820 |
msgstr ""
|
9821 |
|
9822 |
-
#: languages/vue.php:
|
9823 |
msgid "The following plugins will be installed: "
|
9824 |
msgstr ""
|
9825 |
|
9826 |
-
#: languages/vue.php:
|
9827 |
msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
|
9828 |
msgstr ""
|
9829 |
|
9830 |
-
#: languages/vue.php:
|
9831 |
msgid "Manually enter your GA4 Measurement ID"
|
9832 |
msgstr ""
|
9833 |
|
9834 |
-
#: languages/vue.php:
|
9835 |
msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
|
9836 |
msgstr ""
|
9837 |
|
9838 |
-
#: languages/vue.php:
|
9839 |
msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
|
9840 |
msgstr ""
|
9841 |
|
@@ -9911,11 +9911,11 @@ msgstr ""
|
|
9911 |
msgid "Time on Page"
|
9912 |
msgstr ""
|
9913 |
|
9914 |
-
#: lite/includes/admin/onboarding-wizard.php:
|
9915 |
msgid "ExactMetrics › Onboarding Wizard"
|
9916 |
msgstr ""
|
9917 |
|
9918 |
-
#: lite/includes/admin/onboarding-wizard.php:
|
9919 |
msgid "Return to Dashboard"
|
9920 |
msgstr ""
|
9921 |
|
2 |
# This file is distributed under the same license as the ExactMetrics Pro plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: ExactMetrics Pro 7.6.0\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2022-06-13T16:20:16+00:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.6.0\n"
|
15 |
"X-Domain: google-analytics-dashboard-for-wp\n"
|
16 |
|
17 |
#. Plugin Name of the plugin
|
18 |
+
#: languages/vue.php:3479
|
19 |
msgid "ExactMetrics Pro"
|
20 |
msgstr ""
|
21 |
|
113 |
#: includes/admin/admin.php:34
|
114 |
#: includes/admin/admin.php:42
|
115 |
#: includes/admin/admin.php:222
|
116 |
+
#: languages/vue.php:534
|
117 |
msgid "Settings"
|
118 |
msgstr ""
|
119 |
|
129 |
|
130 |
#: includes/admin/admin.php:39
|
131 |
#: includes/admin/admin.php:130
|
132 |
+
#: languages/vue.php:2296
|
133 |
msgid "Reports"
|
134 |
msgstr ""
|
135 |
|
139 |
|
140 |
#: includes/admin/admin.php:51
|
141 |
#: languages/gutenberg.php:83
|
142 |
+
#: languages/vue.php:992
|
143 |
msgid "Popular Posts"
|
144 |
msgstr ""
|
145 |
|
192 |
#: includes/admin/admin.php:76
|
193 |
#: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
|
194 |
#: includes/admin/notifications/notification-upgrade-to-pro.php:33
|
195 |
+
#: languages/vue.php:1041
|
196 |
msgid "Upgrade to Pro"
|
197 |
msgstr ""
|
198 |
|
220 |
|
221 |
#: includes/admin/admin.php:212
|
222 |
#: includes/admin/admin.php:215
|
223 |
+
#: languages/vue.php:1016
|
224 |
msgid "Support"
|
225 |
msgstr ""
|
226 |
|
232 |
#: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
|
233 |
#: includes/admin/notifications/notification-upgrade-for-post-templates.php:32
|
234 |
#: includes/admin/reports/abstract-report.php:418
|
235 |
+
#: languages/vue.php:1148
|
236 |
msgid "Get ExactMetrics Pro"
|
237 |
msgstr ""
|
238 |
|
242 |
msgstr ""
|
243 |
|
244 |
#: includes/admin/admin.php:324
|
245 |
+
#: languages/vue.php:1139
|
246 |
msgid "Please Setup Website Analytics to See Audience Insights"
|
247 |
msgstr ""
|
248 |
|
249 |
#: includes/admin/admin.php:325
|
250 |
+
#: languages/vue.php:1145
|
251 |
msgid "Connect ExactMetrics and Setup Website Analytics"
|
252 |
msgstr ""
|
253 |
|
261 |
#: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
|
262 |
#: includes/admin/notifications/notification-returning-visitors.php:43
|
263 |
#: includes/admin/notifications/notification-traffic-dropping.php:43
|
264 |
+
#: languages/vue.php:333
|
265 |
msgid "Learn More"
|
266 |
msgstr ""
|
267 |
|
268 |
#: includes/admin/admin.php:329
|
269 |
+
#: languages/vue.php:1142
|
270 |
msgid "ExactMetrics, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 3 million website owners use ExactMetrics to see the stats that matter and grow their business."
|
271 |
msgstr ""
|
272 |
|
277 |
|
278 |
#. Translators: Adds a link to the license renewal.
|
279 |
#: includes/admin/admin.php:350
|
280 |
+
#: languages/vue.php:473
|
281 |
msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
|
282 |
msgstr ""
|
283 |
|
284 |
#: includes/admin/admin.php:352
|
285 |
+
#: languages/vue.php:476
|
286 |
msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
|
287 |
msgstr ""
|
288 |
|
289 |
#: includes/admin/admin.php:354
|
290 |
+
#: languages/vue.php:479
|
291 |
msgid "Your license key for ExactMetrics is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
|
292 |
msgstr ""
|
293 |
|
346 |
|
347 |
#: includes/admin/ajax.php:55
|
348 |
#: includes/admin/routes.php:971
|
349 |
+
#: lite/includes/admin/onboarding-wizard.php:247
|
350 |
msgid "You are not allowed to install plugins"
|
351 |
msgstr ""
|
352 |
|
354 |
msgid "You are not allowed to activate plugins"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: includes/admin/ajax.php:169
|
358 |
msgid "You are not allowed to deactivate plugins"
|
359 |
msgstr ""
|
360 |
|
491 |
msgstr ""
|
492 |
|
493 |
#: includes/admin/common.php:951
|
494 |
+
#: languages/vue.php:3324
|
495 |
msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
|
496 |
msgstr ""
|
497 |
|
710 |
#: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:26
|
711 |
#: includes/admin/notifications/notification-upgrade-for-events-reporting.php:26
|
712 |
#: includes/admin/notifications/notification-upgrade-for-post-templates.php:26
|
713 |
+
#: languages/vue.php:1729
|
714 |
#: lite/includes/admin/helpers.php:85
|
715 |
msgid "Upgrade to ExactMetrics Pro"
|
716 |
msgstr ""
|
746 |
#: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
|
747 |
#: includes/admin/notifications/notification-upgrade-for-search-console.php:32
|
748 |
#: includes/admin/reports/abstract-report.php:415
|
749 |
+
#: languages/vue.php:227
|
750 |
msgid "Upgrade Now"
|
751 |
msgstr ""
|
752 |
|
923 |
msgstr ""
|
924 |
|
925 |
#: includes/admin/reports/overview.php:34
|
926 |
+
#: languages/vue.php:435
|
927 |
msgid "Overview"
|
928 |
msgstr ""
|
929 |
|
1435 |
msgstr ""
|
1436 |
|
1437 |
#: includes/gutenberg/headline-tool/headline-tool.php:290
|
1438 |
+
#: languages/vue.php:540
|
1439 |
msgid "General"
|
1440 |
msgstr ""
|
1441 |
|
4835 |
msgstr ""
|
4836 |
|
4837 |
#: languages/gutenberg.php:77
|
4838 |
+
#: languages/vue.php:525
|
4839 |
msgid "Inline Popular Posts"
|
4840 |
msgstr ""
|
4841 |
|
4908 |
msgstr ""
|
4909 |
|
4910 |
#: languages/gutenberg.php:131
|
4911 |
+
#: languages/vue.php:1951
|
4912 |
msgid "Widget Title"
|
4913 |
msgstr ""
|
4914 |
|
5148 |
msgstr ""
|
5149 |
|
5150 |
#: languages/gutenberg.php:312
|
5151 |
+
#: languages/vue.php:980
|
5152 |
msgid "Headline Analyzer"
|
5153 |
msgstr ""
|
5154 |
|
5161 |
msgstr ""
|
5162 |
|
5163 |
#: languages/gutenberg.php:321
|
5164 |
+
#: languages/vue.php:108
|
5165 |
#: lite/includes/admin/metaboxes.php:42
|
5166 |
msgid "Last 30 days"
|
5167 |
msgstr ""
|
5173 |
msgstr ""
|
5174 |
|
5175 |
#: languages/gutenberg.php:327
|
5176 |
+
#: languages/vue.php:1299
|
5177 |
#: lite/includes/admin/metaboxes.php:57
|
5178 |
#: lite/includes/admin/metaboxes.php:111
|
5179 |
msgid "Bounce Rate"
|
5229 |
msgid "Loading Settings"
|
5230 |
msgstr ""
|
5231 |
|
5232 |
+
#: languages/vue.php:14
|
5233 |
msgid "Please wait..."
|
5234 |
msgstr ""
|
5235 |
|
5236 |
+
#: languages/vue.php:17
|
5237 |
msgid "Saving Changes..."
|
5238 |
msgstr ""
|
5239 |
|
5240 |
+
#: languages/vue.php:20
|
5241 |
msgid "Settings Updated"
|
5242 |
msgstr ""
|
5243 |
|
5244 |
#. Translators: Add a link to the onboarding wizard.
|
5245 |
+
#: languages/vue.php:24
|
5246 |
msgid "You need to %1$sconnect ExactMetrics%2$s first"
|
5247 |
msgstr ""
|
5248 |
|
5249 |
+
#: languages/vue.php:27
|
5250 |
msgid "Could Not Save Changes"
|
5251 |
msgstr ""
|
5252 |
|
5253 |
+
#: languages/vue.php:30
|
5254 |
msgid "Loading new report data"
|
5255 |
msgstr ""
|
5256 |
|
5257 |
#. Translators: Placeholder gets replaced with an arrow icon.
|
5258 |
+
#: languages/vue.php:34
|
5259 |
msgid "Continue %s"
|
5260 |
msgstr ""
|
5261 |
|
5262 |
+
#: languages/vue.php:38
|
5263 |
msgid "Error"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
+
#: languages/vue.php:41
|
5267 |
msgid "Please try again."
|
5268 |
msgstr ""
|
5269 |
|
5270 |
+
#: languages/vue.php:44
|
5271 |
msgid "Unlock the Publishers Report and Focus on the Content that Matters"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
+
#: languages/vue.php:47
|
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:50
|
5279 |
msgid "Unlock the Publishers Report and Focus on the Content That Matters"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
+
#: languages/vue.php:53
|
5283 |
msgid "Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions."
|
5284 |
msgstr ""
|
5285 |
|
5286 |
+
#: languages/vue.php:56
|
5287 |
msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
|
5288 |
msgstr ""
|
5289 |
|
5290 |
+
#: languages/vue.php:59
|
5291 |
msgid "Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
|
5292 |
msgstr ""
|
5293 |
|
5294 |
+
#: languages/vue.php:62
|
5295 |
msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
|
5296 |
msgstr ""
|
5297 |
|
5298 |
+
#: languages/vue.php:65
|
5299 |
msgid "Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
|
5300 |
msgstr ""
|
5301 |
|
5302 |
+
#: languages/vue.php:68
|
5303 |
msgid "Unlock the Forms Report and Improve Conversions"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
+
#: languages/vue.php:71
|
5307 |
msgid "Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data."
|
5308 |
msgstr ""
|
5309 |
|
5310 |
+
#: languages/vue.php:74
|
5311 |
msgid "Unlock the Search Console Report and See How People Find Your Website"
|
5312 |
msgstr ""
|
5313 |
|
5314 |
+
#: languages/vue.php:77
|
5315 |
msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
|
5316 |
msgstr ""
|
5317 |
|
5318 |
+
#: languages/vue.php:80
|
5319 |
msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
|
5320 |
msgstr ""
|
5321 |
|
5322 |
+
#: languages/vue.php:83
|
5323 |
msgid "Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it."
|
5324 |
msgstr ""
|
5325 |
|
5326 |
+
#: languages/vue.php:86
|
5327 |
msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
|
5328 |
msgstr ""
|
5329 |
|
5330 |
+
#: languages/vue.php:89
|
5331 |
msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
|
5332 |
msgstr ""
|
5333 |
|
5334 |
+
#: languages/vue.php:92
|
5335 |
msgid "Today"
|
5336 |
msgstr ""
|
5337 |
|
5347 |
msgid "Last 7 days"
|
5348 |
msgstr ""
|
5349 |
|
5350 |
+
#: languages/vue.php:111
|
5351 |
msgid "Loading settings"
|
5352 |
msgstr ""
|
5353 |
|
5354 |
#. Translators: Number of visitors.
|
5355 |
+
#: languages/vue.php:115
|
5356 |
msgid "See how %s visitors found your site!"
|
5357 |
msgstr ""
|
5358 |
|
5359 |
#. Translators: Number of visitors.
|
5360 |
+
#: languages/vue.php:119
|
5361 |
msgid "Your website was visited by %s users in the last 30 days."
|
5362 |
msgstr ""
|
5363 |
|
5364 |
+
#: languages/vue.php:122
|
5365 |
msgid "See the full analytics report!"
|
5366 |
msgstr ""
|
5367 |
|
5409 |
msgid "Getting Started"
|
5410 |
msgstr ""
|
5411 |
|
5412 |
+
#: languages/vue.php:164
|
5413 |
msgid "Lite vs Pro"
|
5414 |
msgstr ""
|
5415 |
|
5416 |
+
#: languages/vue.php:167
|
5417 |
msgid "Success! "
|
5418 |
msgstr ""
|
5419 |
|
5420 |
+
#: languages/vue.php:170
|
5421 |
msgid "You're now using ExactMetrics Pro with all the features."
|
5422 |
msgstr ""
|
5423 |
|
5424 |
#. Translators: Placeholder gets replaced with an arrow icon.
|
5425 |
+
#: languages/vue.php:174
|
5426 |
msgid "Get Started %s"
|
5427 |
msgstr ""
|
5428 |
|
5429 |
#. Translators: Error status and error text.
|
5430 |
+
#: languages/vue.php:178
|
5431 |
msgid "Can't load report data. Error: %1$s, %2$s"
|
5432 |
msgstr ""
|
5433 |
|
5434 |
+
#: languages/vue.php:181
|
5435 |
msgid "Error loading report data"
|
5436 |
msgstr ""
|
5437 |
|
5438 |
#. Translators: Makes the text bold.
|
5439 |
+
#: languages/vue.php:185
|
5440 |
msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
|
5441 |
msgstr ""
|
5442 |
|
5443 |
#. Translators: Makes the text bold.
|
5444 |
+
#: languages/vue.php:189
|
5445 |
msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
|
5446 |
msgstr ""
|
5447 |
|
5448 |
#. Translators: Makes the text bold.
|
5449 |
+
#: languages/vue.php:193
|
5450 |
msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
|
5451 |
msgstr ""
|
5452 |
|
5453 |
#. Translators: Makes text bold.
|
5454 |
+
#: languages/vue.php:197
|
5455 |
msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
|
5456 |
msgstr ""
|
5457 |
|
5458 |
#. Translators: Makes the text bold.
|
5459 |
+
#: languages/vue.php:201
|
5460 |
msgid "%1$sPage Level Analytics%2$s - Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
|
5461 |
msgstr ""
|
5462 |
|
5463 |
#. Translators: Makes the text bold.
|
5464 |
+
#: languages/vue.php:205
|
5465 |
msgid "%1$sAffiliate Link & Ads Tracking%2$s - Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
|
5466 |
msgstr ""
|
5467 |
|
5468 |
#. Translators: Makes the text bold.
|
5469 |
+
#: languages/vue.php:209
|
5470 |
msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
|
5471 |
msgstr ""
|
5472 |
|
5473 |
#. Translators: Makes text bold.
|
5474 |
+
#: languages/vue.php:213
|
5475 |
msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
|
5476 |
msgstr ""
|
5477 |
|
5478 |
#. Translators: Adds a link and an arrow icon.
|
5479 |
+
#: languages/vue.php:217
|
5480 |
msgid "%1$sSee All Features%2$s"
|
5481 |
msgstr ""
|
5482 |
|
5483 |
+
#: languages/vue.php:220
|
5484 |
msgid "Pro Plan"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
+
#: languages/vue.php:223
|
5488 |
msgid "per year"
|
5489 |
msgstr ""
|
5490 |
|
5491 |
+
#: languages/vue.php:230
|
5492 |
msgid "Upgrade to ExactMetrics Pro Now"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
+
#: languages/vue.php:233
|
5496 |
msgid "This is absolutely, positively, one of the TOP plugins to install on your WP site. There is no better way to quickly gauge traffic for spikes, surges, and consistency. I installed this on over a dozen WordPress installations and counting, thank you for an outstanding app!"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
+
#: languages/vue.php:236
|
5500 |
msgid "Daniel Monaghan - Experienced"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
+
#: languages/vue.php:239
|
5504 |
msgid "Very simple to configure and the results are very clearly displayed. So much easier for clients to view than in their own analytics account! Delighted with it."
|
5505 |
msgstr ""
|
5506 |
|
5507 |
+
#: languages/vue.php:242
|
5508 |
msgid "Naomi Spirit - From This Day"
|
5509 |
msgstr ""
|
5510 |
|
5511 |
+
#: languages/vue.php:245
|
5512 |
msgid "Love this plugin! It’s got powerful customization options, it’s easy to use, there’s good documentation, and if all that’s not enough, ExactMetrics is quick to provide support. Thanks for this wonderful plugin!"
|
5513 |
msgstr ""
|
5514 |
|
5515 |
+
#: languages/vue.php:248
|
5516 |
msgid "Julie Dupuis - Faraway Land Travel"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
+
#: languages/vue.php:251
|
5520 |
msgid "Guides and Documentation:"
|
5521 |
msgstr ""
|
5522 |
|
5523 |
+
#: languages/vue.php:255
|
5524 |
msgid "Upgrade to PRO"
|
5525 |
msgstr ""
|
5526 |
|
5527 |
+
#: languages/vue.php:258
|
5528 |
msgid "eCommerce Tracking"
|
5529 |
msgstr ""
|
5530 |
|
5531 |
+
#: languages/vue.php:262
|
5532 |
msgid "Custom Dimensions"
|
5533 |
msgstr ""
|
5534 |
|
5535 |
+
#: languages/vue.php:265
|
5536 |
msgid "Form Tracking"
|
5537 |
msgstr ""
|
5538 |
|
5539 |
+
#: languages/vue.php:268
|
5540 |
msgid "AMP Support"
|
5541 |
msgstr ""
|
5542 |
|
5543 |
+
#: languages/vue.php:271
|
5544 |
msgid "Author Tracking"
|
5545 |
msgstr ""
|
5546 |
|
5547 |
+
#: languages/vue.php:274
|
5548 |
msgid "EU Compliance Addon"
|
5549 |
msgstr ""
|
5550 |
|
5551 |
+
#: languages/vue.php:277
|
5552 |
msgid "Real Time Report"
|
5553 |
msgstr ""
|
5554 |
|
5555 |
+
#: languages/vue.php:280
|
5556 |
msgid "Google Optimize"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
+
#: languages/vue.php:283
|
5560 |
#: lite/includes/admin/reports/report-queries.php:22
|
5561 |
msgid "Search Console"
|
5562 |
msgstr ""
|
5563 |
|
5564 |
+
#: languages/vue.php:286
|
5565 |
msgid "Custom Date Ranges"
|
5566 |
msgstr ""
|
5567 |
|
5568 |
+
#: languages/vue.php:289
|
5569 |
+
#: languages/vue.php:919
|
5570 |
msgid "Getting Started with ExactMetrics"
|
5571 |
msgstr ""
|
5572 |
|
5573 |
+
#: languages/vue.php:292
|
5574 |
+
#: languages/vue.php:922
|
5575 |
msgid "ExactMetrics is the easiest analytics solution on the market to get started with, as we walk you through exactly what you need to do, in plain english, using our 3 minute setup wizard."
|
5576 |
msgstr ""
|
5577 |
|
5578 |
+
#: languages/vue.php:295
|
5579 |
msgid "To begin with, we’ll get your site authorized with Google Analytics, so we can start tracking and generating reports for you right away."
|
5580 |
msgstr ""
|
5581 |
|
5582 |
+
#: languages/vue.php:298
|
5583 |
msgid "In no time at all, and after just a few clicks, you'll have setup the most powerful Google Analytics tracking available for WordPress. It's easy to double your traffic and sales when you know exactly how people find and use your website. Let's get started!."
|
5584 |
msgstr ""
|
5585 |
|
5586 |
+
#: languages/vue.php:301
|
5587 |
msgid "Launch the wizard!"
|
5588 |
msgstr ""
|
5589 |
|
5590 |
+
#: languages/vue.php:304
|
5591 |
msgid "Welcome to"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
#. Translators: Adds a line break.
|
5595 |
+
#: languages/vue.php:308
|
5596 |
msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
|
5597 |
msgstr ""
|
5598 |
|
5599 |
#. Translators: Makes the product name bold.
|
5600 |
+
#: languages/vue.php:312
|
5601 |
msgid "%1$sExactMetrics%2$s makes it “effortless” to setup Google Analytics in WordPress, the RIGHT Way. You can watch the video tutorial or use our 3 minute setup wizard."
|
5602 |
msgstr ""
|
5603 |
|
5604 |
+
#: languages/vue.php:315
|
5605 |
msgid "ExactMetrics Features & Addons"
|
5606 |
msgstr ""
|
5607 |
|
5608 |
+
#: languages/vue.php:318
|
5609 |
msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
|
5610 |
msgstr ""
|
5611 |
|
5612 |
#. Translators: Placeholder is replaced with WPForms.
|
5613 |
+
#: languages/vue.php:322
|
5614 |
msgid "Recommended Plugin: %s"
|
5615 |
msgstr ""
|
5616 |
|
5617 |
+
#: languages/vue.php:325
|
5618 |
msgid "Install"
|
5619 |
msgstr ""
|
5620 |
|
5621 |
+
#: languages/vue.php:328
|
5622 |
msgid "Activate"
|
5623 |
msgstr ""
|
5624 |
|
5625 |
+
#: languages/vue.php:336
|
5626 |
msgid "ExactMetrics encountered an error loading your report data"
|
5627 |
msgstr ""
|
5628 |
|
5629 |
+
#: languages/vue.php:339
|
5630 |
msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
|
5631 |
msgstr ""
|
5632 |
|
5633 |
+
#: languages/vue.php:342
|
5634 |
+
#: languages/vue.php:1842
|
5635 |
msgid "Reconnect ExactMetrics"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
+
#: languages/vue.php:345
|
5639 |
msgid "Re-Authenticating"
|
5640 |
msgstr ""
|
5641 |
|
5642 |
+
#: languages/vue.php:348
|
5643 |
msgid "Ok"
|
5644 |
msgstr ""
|
5645 |
|
5646 |
+
#: languages/vue.php:351
|
5647 |
+
#: languages/vue.php:858
|
5648 |
msgid "ExactMetrics Addons"
|
5649 |
msgstr ""
|
5650 |
|
5651 |
+
#: languages/vue.php:354
|
5652 |
msgid "Search Addons"
|
5653 |
msgstr ""
|
5654 |
|
5655 |
+
#: languages/vue.php:357
|
5656 |
msgid "Save Changes"
|
5657 |
msgstr ""
|
5658 |
|
5659 |
+
#: languages/vue.php:360
|
5660 |
msgid "Exit Setup"
|
5661 |
msgstr ""
|
5662 |
|
5663 |
+
#: languages/vue.php:363
|
5664 |
msgid "Time to Purchase"
|
5665 |
msgstr ""
|
5666 |
|
5667 |
+
#: languages/vue.php:366
|
5668 |
msgid "This list shows how many days from first visit it took users to purchase products from your site."
|
5669 |
msgstr ""
|
5670 |
|
5671 |
+
#: languages/vue.php:369
|
5672 |
msgid "Sessions to Purchase"
|
5673 |
msgstr ""
|
5674 |
|
5675 |
+
#: languages/vue.php:372
|
5676 |
msgid "This list shows the number of sessions it took users before they purchased a product from your website."
|
5677 |
msgstr ""
|
5678 |
|
5679 |
+
#: languages/vue.php:375
|
5680 |
msgid "New Customers"
|
5681 |
msgstr ""
|
5682 |
|
5683 |
+
#: languages/vue.php:378
|
5684 |
msgid "This list shows the percentage of new customers who purchased a product from your website."
|
5685 |
msgstr ""
|
5686 |
|
5687 |
+
#: languages/vue.php:381
|
5688 |
msgid "Abandoned Checkouts"
|
5689 |
msgstr ""
|
5690 |
|
5691 |
+
#: languages/vue.php:384
|
5692 |
msgid "This list shows the percentage of carts that never went through the checkout process."
|
5693 |
msgstr ""
|
5694 |
|
5695 |
+
#: languages/vue.php:387
|
5696 |
msgid "Top Posts/Pages"
|
5697 |
msgstr ""
|
5698 |
|
5699 |
+
#: languages/vue.php:390
|
5700 |
msgid "This list shows the most viewed posts and pages on your website."
|
5701 |
msgstr ""
|
5702 |
|
5703 |
+
#: languages/vue.php:393
|
5704 |
msgid "New vs. Returning Visitors"
|
5705 |
msgstr ""
|
5706 |
|
5707 |
+
#: languages/vue.php:396
|
5708 |
msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
|
5709 |
msgstr ""
|
5710 |
|
5711 |
+
#: languages/vue.php:399
|
5712 |
msgid "Device Breakdown"
|
5713 |
msgstr ""
|
5714 |
|
5715 |
+
#: languages/vue.php:402
|
5716 |
msgid "This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site."
|
5717 |
msgstr ""
|
5718 |
|
5719 |
+
#: languages/vue.php:405
|
5720 |
msgid "Top Landing Pages"
|
5721 |
msgstr ""
|
5722 |
|
5723 |
+
#: languages/vue.php:408
|
5724 |
msgid "This list shows the top pages users first land on when visiting your website."
|
5725 |
msgstr ""
|
5726 |
|
5727 |
+
#: languages/vue.php:411
|
5728 |
msgid "Top Exit Pages"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
+
#: languages/vue.php:414
|
5732 |
msgid "This list shows the top pages users exit your website from."
|
5733 |
msgstr ""
|
5734 |
|
5735 |
+
#: languages/vue.php:417
|
5736 |
msgid "Top Outbound Links"
|
5737 |
msgstr ""
|
5738 |
|
5739 |
+
#: languages/vue.php:420
|
5740 |
msgid "This list shows the top links clicked on your website that go to another website."
|
5741 |
msgstr ""
|
5742 |
|
5743 |
+
#: languages/vue.php:423
|
5744 |
msgid "Top Affiliate Links"
|
5745 |
msgstr ""
|
5746 |
|
5747 |
+
#: languages/vue.php:426
|
5748 |
msgid "This list shows the top affiliate links your visitors clicked on."
|
5749 |
msgstr ""
|
5750 |
|
5751 |
+
#: languages/vue.php:429
|
5752 |
msgid "Top Download Links"
|
5753 |
msgstr ""
|
5754 |
|
5755 |
+
#: languages/vue.php:432
|
5756 |
msgid "This list shows the download links your visitors clicked the most."
|
5757 |
msgstr ""
|
5758 |
|
5759 |
+
#: languages/vue.php:438
|
5760 |
msgid "Top Products"
|
5761 |
msgstr ""
|
5762 |
|
5763 |
+
#: languages/vue.php:441
|
5764 |
msgid "This list shows the top selling products on your website."
|
5765 |
msgstr ""
|
5766 |
|
5767 |
+
#: languages/vue.php:444
|
5768 |
msgid "Top Conversion Sources"
|
5769 |
msgstr ""
|
5770 |
|
5771 |
+
#: languages/vue.php:447
|
5772 |
msgid "This list shows the top referral websites in terms of product revenue."
|
5773 |
msgstr ""
|
5774 |
|
5775 |
+
#: languages/vue.php:450
|
5776 |
msgid "Total Add/Remove"
|
5777 |
msgstr ""
|
5778 |
|
5779 |
+
#: languages/vue.php:453
|
5780 |
msgid "Analytics"
|
5781 |
msgstr ""
|
5782 |
|
5783 |
#. Translators: Adds an arrow icon.
|
5784 |
+
#: languages/vue.php:457
|
5785 |
msgid "View All Reports %s"
|
5786 |
msgstr ""
|
5787 |
|
5788 |
+
#: languages/vue.php:460
|
5789 |
msgid "You must connect with ExactMetrics before you can view reports."
|
5790 |
msgstr ""
|
5791 |
|
5792 |
+
#: languages/vue.php:463
|
5793 |
msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
|
5794 |
msgstr ""
|
5795 |
|
5796 |
+
#: languages/vue.php:466
|
5797 |
msgid "Launch Setup Wizard"
|
5798 |
msgstr ""
|
5799 |
|
5800 |
+
#: languages/vue.php:469
|
5801 |
msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
|
5802 |
msgstr ""
|
5803 |
|
5804 |
+
#: languages/vue.php:482
|
5805 |
msgid "See Quick Links"
|
5806 |
msgstr ""
|
5807 |
|
5808 |
+
#: languages/vue.php:485
|
5809 |
msgid "Suggest a Feature"
|
5810 |
msgstr ""
|
5811 |
|
5812 |
+
#: languages/vue.php:488
|
5813 |
msgid "Join Our Community"
|
5814 |
msgstr ""
|
5815 |
|
5816 |
+
#: languages/vue.php:491
|
5817 |
msgid "Support & Docs"
|
5818 |
msgstr ""
|
5819 |
|
5820 |
+
#: languages/vue.php:494
|
5821 |
msgid "Upgrade to Pro »"
|
5822 |
msgstr ""
|
5823 |
|
5824 |
+
#: languages/vue.php:497
|
5825 |
#: lite/includes/admin/reports/report-publisher.php:22
|
5826 |
msgid "Publishers"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
+
#: languages/vue.php:500
|
5830 |
#: lite/includes/admin/reports/report-ecommerce.php:22
|
5831 |
msgid "eCommerce"
|
5832 |
msgstr ""
|
5833 |
|
5834 |
+
#: languages/vue.php:503
|
5835 |
msgid "Dimensions Report"
|
5836 |
msgstr ""
|
5837 |
|
5838 |
+
#: languages/vue.php:506
|
5839 |
#: lite/includes/admin/reports/report-forms.php:22
|
5840 |
msgid "Forms"
|
5841 |
msgstr ""
|
5842 |
|
5843 |
+
#: languages/vue.php:509
|
5844 |
msgid "Real-Time"
|
5845 |
msgstr ""
|
5846 |
|
5847 |
+
#: languages/vue.php:512
|
5848 |
msgid "Site Speed Report"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
+
#: languages/vue.php:516
|
5852 |
msgid "2020 Year in Review"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
+
#: languages/vue.php:519
|
5856 |
msgid "Import Export"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
+
#: languages/vue.php:522
|
5860 |
msgid "PrettyLinks Integration"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
+
#: languages/vue.php:528
|
5864 |
msgid "Popular Posts Widget"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: languages/vue.php:531
|
5868 |
msgid "Popular Products"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: languages/vue.php:537
|
5872 |
msgid "Sub menu item for WooCommerce Analytics"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
+
#: languages/vue.php:543
|
5876 |
msgid "Engagement"
|
5877 |
msgstr ""
|
5878 |
|
5879 |
+
#: languages/vue.php:546
|
5880 |
msgid "Publisher"
|
5881 |
msgstr ""
|
5882 |
|
5883 |
+
#: languages/vue.php:549
|
5884 |
msgid "Conversions"
|
5885 |
msgstr ""
|
5886 |
|
5887 |
+
#: languages/vue.php:552
|
5888 |
msgid "Advanced"
|
5889 |
msgstr ""
|
5890 |
|
5891 |
+
#: languages/vue.php:555
|
5892 |
msgid "URL Builder"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
#. Translators: Adds a link to documentation.
|
5896 |
+
#: languages/vue.php:559
|
5897 |
msgid "In order for the ExactMetrics Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s"
|
5898 |
msgstr ""
|
5899 |
|
5900 |
#. Translators: Adds link to activate/install plugin and documentation.
|
5901 |
+
#: languages/vue.php:563
|
5902 |
msgid "In order for the ExactMetrics Google AMP addon to work properly, you need to install the WordPress AMP plugin by Automattic. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s"
|
5903 |
msgstr ""
|
5904 |
|
5905 |
#. Translators: Adds a link to documentation.
|
5906 |
+
#: languages/vue.php:567
|
5907 |
msgid "In order for the ExactMetrics Instant Articles addon to work properly, please ask your webmaster to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$sLearn More%2$s"
|
5908 |
msgstr ""
|
5909 |
|
5910 |
#. Translators: Adds link to activate/install plugin and documentation.
|
5911 |
+
#: languages/vue.php:571
|
5912 |
msgid "In order for the ExactMetrics Instant Articles addon to work properly, you need to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s"
|
5913 |
msgstr ""
|
5914 |
|
5915 |
+
#: languages/vue.php:574
|
5916 |
msgid "Installing Addon"
|
5917 |
msgstr ""
|
5918 |
|
5919 |
+
#: languages/vue.php:577
|
5920 |
msgid "Activating Addon"
|
5921 |
msgstr ""
|
5922 |
|
5923 |
+
#: languages/vue.php:580
|
5924 |
msgid "Addon Activated"
|
5925 |
msgstr ""
|
5926 |
|
5927 |
+
#: languages/vue.php:583
|
5928 |
msgid "Loading report data"
|
5929 |
msgstr ""
|
5930 |
|
5931 |
+
#: languages/vue.php:586
|
5932 |
msgid "Please activate manually"
|
5933 |
msgstr ""
|
5934 |
|
5935 |
#. Translators: Adds the error status and status text.
|
5936 |
+
#: languages/vue.php:590
|
5937 |
msgid "Error: %1$s, %2$s"
|
5938 |
msgstr ""
|
5939 |
|
5940 |
+
#: languages/vue.php:593
|
5941 |
msgid "Error Activating Addon"
|
5942 |
msgstr ""
|
5943 |
|
5944 |
+
#: languages/vue.php:596
|
5945 |
#: lite/includes/admin/wp-site-health.php:372
|
5946 |
#: lite/includes/admin/wp-site-health.php:398
|
5947 |
#: lite/includes/admin/wp-site-health.php:425
|
5948 |
msgid "View Addons"
|
5949 |
msgstr ""
|
5950 |
|
5951 |
+
#: languages/vue.php:599
|
5952 |
msgid "Dismiss"
|
5953 |
msgstr ""
|
5954 |
|
5955 |
+
#: languages/vue.php:602
|
5956 |
msgid "Redirecting"
|
5957 |
msgstr ""
|
5958 |
|
5959 |
+
#: languages/vue.php:605
|
5960 |
msgid "Please wait"
|
5961 |
msgstr ""
|
5962 |
|
5963 |
+
#: languages/vue.php:608
|
5964 |
msgid "activate"
|
5965 |
msgstr ""
|
5966 |
|
5967 |
+
#: languages/vue.php:611
|
5968 |
msgid "install"
|
5969 |
msgstr ""
|
5970 |
|
5971 |
+
#: languages/vue.php:614
|
5972 |
msgid "Visit addons page"
|
5973 |
msgstr ""
|
5974 |
|
5975 |
+
#: languages/vue.php:617
|
5976 |
msgid "Report Unavailable"
|
5977 |
msgstr ""
|
5978 |
|
5979 |
#. Translators: Install/Activate the addon.
|
5980 |
+
#: languages/vue.php:621
|
5981 |
msgid "%s Addon"
|
5982 |
msgstr ""
|
5983 |
|
5984 |
+
#: languages/vue.php:624
|
5985 |
msgid "Go Back To Reports"
|
5986 |
msgstr ""
|
5987 |
|
5988 |
+
#: languages/vue.php:627
|
5989 |
msgid "Enable Enhanced eCommerce"
|
5990 |
msgstr ""
|
5991 |
|
5992 |
#. Translators: Placeholders are replaced with the current step number out of the total number of steps.
|
5993 |
+
#: languages/vue.php:631
|
5994 |
msgid "Step %1$s of %2$s"
|
5995 |
msgstr ""
|
5996 |
|
5997 |
+
#: languages/vue.php:634
|
5998 |
msgid "Go back"
|
5999 |
msgstr ""
|
6000 |
|
6001 |
+
#: languages/vue.php:637
|
6002 |
msgid "Welcome to ExactMetrics!"
|
6003 |
msgstr ""
|
6004 |
|
6005 |
+
#: languages/vue.php:640
|
6006 |
msgid "Let's get you set up."
|
6007 |
msgstr ""
|
6008 |
|
6009 |
+
#: languages/vue.php:643
|
6010 |
msgid "Save and Continue"
|
6011 |
msgstr ""
|
6012 |
|
6013 |
+
#: languages/vue.php:646
|
6014 |
msgid "Which category best describes your website?"
|
6015 |
msgstr ""
|
6016 |
|
6017 |
+
#: languages/vue.php:649
|
6018 |
msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
|
6019 |
msgstr ""
|
6020 |
|
6021 |
+
#: languages/vue.php:652
|
6022 |
msgid "Business Website"
|
6023 |
msgstr ""
|
6024 |
|
6025 |
#. Translators: Make text bold.
|
6026 |
+
#: languages/vue.php:656
|
6027 |
msgid "Publisher %1$s(Blog)%2$s"
|
6028 |
msgstr ""
|
6029 |
|
6030 |
+
#: languages/vue.php:659
|
6031 |
msgid "Ecommerce"
|
6032 |
msgstr ""
|
6033 |
|
6034 |
+
#: languages/vue.php:662
|
6035 |
msgid "Connect ExactMetrics to Your Website"
|
6036 |
msgstr ""
|
6037 |
|
6038 |
+
#: languages/vue.php:665
|
6039 |
msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
|
6040 |
msgstr ""
|
6041 |
|
6042 |
+
#: languages/vue.php:669
|
6043 |
msgid "Connect Google Analytics + WordPress"
|
6044 |
msgstr ""
|
6045 |
|
6046 |
+
#: languages/vue.php:673
|
6047 |
msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
|
6048 |
msgstr ""
|
6049 |
|
6050 |
+
#: languages/vue.php:676
|
6051 |
msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
|
6052 |
msgstr ""
|
6053 |
|
6054 |
+
#: languages/vue.php:679
|
6055 |
msgid "Manually enter your UA code"
|
6056 |
msgstr ""
|
6057 |
|
6058 |
+
#: languages/vue.php:682
|
6059 |
msgid "Warning: If you use a manual UA code, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X's are numbers."
|
6060 |
msgstr ""
|
6061 |
|
6062 |
+
#: languages/vue.php:685
|
6063 |
msgid "UA code can't be empty"
|
6064 |
msgstr ""
|
6065 |
|
6066 |
+
#: languages/vue.php:688
|
6067 |
msgid "Saving UA code..."
|
6068 |
msgstr ""
|
6069 |
|
6070 |
+
#: languages/vue.php:691
|
6071 |
msgid "ExactMetrics Recommends WPForms"
|
6072 |
msgstr ""
|
6073 |
|
6074 |
+
#: languages/vue.php:694
|
6075 |
msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
|
6076 |
msgstr ""
|
6077 |
|
6078 |
+
#: languages/vue.php:697
|
6079 |
msgid "Used on over 4,000,000 websites!"
|
6080 |
msgstr ""
|
6081 |
|
6082 |
+
#: languages/vue.php:700
|
6083 |
msgid "WPForms allow you to create beautiful contact forms, subscription forms, payment forms, and other types of forms for your site in minutes, not hours!"
|
6084 |
msgstr ""
|
6085 |
|
6086 |
+
#: languages/vue.php:703
|
6087 |
msgid "Skip this Step"
|
6088 |
msgstr ""
|
6089 |
|
6090 |
+
#: languages/vue.php:706
|
6091 |
msgid "Continue & Install WPForms"
|
6092 |
msgstr ""
|
6093 |
|
6094 |
+
#: languages/vue.php:709
|
6095 |
msgid "Installing..."
|
6096 |
msgstr ""
|
6097 |
|
6098 |
+
#: languages/vue.php:712
|
6099 |
msgid "Recommended Settings"
|
6100 |
msgstr ""
|
6101 |
|
6102 |
+
#: languages/vue.php:715
|
6103 |
msgid "ExactMetrics recommends the following settings based on your configuration."
|
6104 |
msgstr ""
|
6105 |
|
6106 |
+
#: languages/vue.php:718
|
6107 |
msgid "Events Tracking"
|
6108 |
msgstr ""
|
6109 |
|
6110 |
+
#: languages/vue.php:721
|
6111 |
msgid "Must have for all click tracking on site."
|
6112 |
msgstr ""
|
6113 |
|
6114 |
+
#: languages/vue.php:724
|
6115 |
msgid "ExactMetrics uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don't have to write any code."
|
6116 |
msgstr ""
|
6117 |
|
6118 |
+
#: languages/vue.php:727
|
6119 |
msgid "Enhanced Link Attribution"
|
6120 |
msgstr ""
|
6121 |
|
6122 |
+
#: languages/vue.php:730
|
6123 |
msgid "Improves the accuracy of your In-Page Analytics."
|
6124 |
msgstr ""
|
6125 |
|
6126 |
+
#: languages/vue.php:733
|
6127 |
msgid "ExactMetrics will automatically help Google determine which links are unique and where they are on your site so that your In-Page Analytics reporting will be more accurate."
|
6128 |
msgstr ""
|
6129 |
|
6130 |
+
#: languages/vue.php:736
|
6131 |
msgid "Install Updates Automatically"
|
6132 |
msgstr ""
|
6133 |
|
6134 |
+
#: languages/vue.php:739
|
6135 |
msgid "Get the latest features, bug fixes, and security updates as they are released."
|
6136 |
msgstr ""
|
6137 |
|
6138 |
+
#: languages/vue.php:742
|
6139 |
msgid "To ensure you get the latest bug fixes and security updates and avoid needing to spend time logging into your WordPress site to update ExactMetrics, we offer the ability to automatically have ExactMetrics update itself."
|
6140 |
msgstr ""
|
6141 |
|
6142 |
+
#: languages/vue.php:745
|
6143 |
msgid "File Download Tracking"
|
6144 |
msgstr ""
|
6145 |
|
6146 |
+
#: languages/vue.php:748
|
6147 |
msgid "Helps you see file downloads data."
|
6148 |
msgstr ""
|
6149 |
|
6150 |
+
#: languages/vue.php:751
|
6151 |
msgid "ExactMetrics will automatically track downloads of common file types from links you have inserted onto your website. For example: want to know how many of your site's visitors have downloaded a PDF or other file you offer your visitors to download on your site? ExactMetrics makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
|
6152 |
msgstr ""
|
6153 |
|
6154 |
#. Translators: Example path (/go/).
|
6155 |
+
#: languages/vue.php:755
|
6156 |
msgid "Path (example: %s)"
|
6157 |
msgstr ""
|
6158 |
|
6159 |
+
#: languages/vue.php:758
|
6160 |
msgid "Path has to start with a / and have no spaces"
|
6161 |
msgstr ""
|
6162 |
|
6163 |
#. Translators: Example label (aff).
|
6164 |
+
#: languages/vue.php:762
|
6165 |
msgid "Label (example: %s)"
|
6166 |
msgstr ""
|
6167 |
|
6168 |
+
#: languages/vue.php:765
|
6169 |
msgid "Label can't contain any spaces"
|
6170 |
msgstr ""
|
6171 |
|
6172 |
+
#: languages/vue.php:768
|
6173 |
msgid "Helps you increase affiliate revenue."
|
6174 |
msgstr ""
|
6175 |
|
6176 |
+
#: languages/vue.php:771
|
6177 |
msgid "ExactMetrics will automatically help you track affiliate links that use internal looking urls like example.com/go/ or example.com/refer/. You can add custom affiliate patterns on our settings panel when you finish the onboarding wizard."
|
6178 |
msgstr ""
|
6179 |
|
6180 |
+
#: languages/vue.php:774
|
6181 |
msgid "Affiliate Link Tracking"
|
6182 |
msgstr ""
|
6183 |
|
6184 |
+
#: languages/vue.php:777
|
6185 |
msgid "Who Can See Reports"
|
6186 |
msgstr ""
|
6187 |
|
6188 |
+
#: languages/vue.php:780
|
6189 |
msgid "These user roles will be able to access ExactMetrics' reports in the WordPress admin area."
|
6190 |
msgstr ""
|
6191 |
|
6192 |
+
#: languages/vue.php:783
|
6193 |
msgid "Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability."
|
6194 |
msgstr ""
|
6195 |
|
6196 |
+
#: languages/vue.php:786
|
6197 |
msgid "Save and continue"
|
6198 |
msgstr ""
|
6199 |
|
6200 |
+
#: languages/vue.php:789
|
6201 |
msgid "Events Tracking is enabled the moment you set up ExactMetrics"
|
6202 |
msgstr ""
|
6203 |
|
6204 |
+
#: languages/vue.php:792
|
6205 |
msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
|
6206 |
msgstr ""
|
6207 |
|
6208 |
+
#: languages/vue.php:795
|
6209 |
msgid "+ Add Role"
|
6210 |
msgstr ""
|
6211 |
|
6212 |
#. Translators: Placeholders are used for making text bold and adding a link.
|
6213 |
+
#: languages/vue.php:799
|
6214 |
msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
|
6215 |
msgstr ""
|
6216 |
|
6217 |
+
#: languages/vue.php:802
|
6218 |
#: lite/includes/admin/reports/report-dimensions.php:22
|
6219 |
msgid "Dimensions"
|
6220 |
msgstr ""
|
6221 |
|
6222 |
+
#: languages/vue.php:805
|
6223 |
msgid "Site Speed"
|
6224 |
msgstr ""
|
6225 |
|
6226 |
+
#: languages/vue.php:808
|
6227 |
msgid "License Key"
|
6228 |
msgstr ""
|
6229 |
|
6230 |
#. Translators: Add link to retrieve license key from account.
|
6231 |
+
#: languages/vue.php:812
|
6232 |
msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
|
6233 |
msgstr ""
|
6234 |
|
6235 |
+
#: languages/vue.php:815
|
6236 |
msgid "Google Authentication"
|
6237 |
msgstr ""
|
6238 |
|
6239 |
+
#: languages/vue.php:818
|
6240 |
msgid "Miscellaneous"
|
6241 |
msgstr ""
|
6242 |
|
6243 |
+
#: languages/vue.php:821
|
6244 |
msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
|
6245 |
msgstr ""
|
6246 |
|
6247 |
+
#: languages/vue.php:824
|
6248 |
msgid "Hide Announcements"
|
6249 |
msgstr ""
|
6250 |
|
6251 |
+
#: languages/vue.php:827
|
6252 |
msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
|
6253 |
msgstr ""
|
6254 |
|
6255 |
+
#. Translators: Adds link to upgrade.
|
6256 |
+
#: languages/vue.php:831
|
6257 |
msgid "To unlock more features consider %1$supgrading to PRO%2$s."
|
6258 |
msgstr ""
|
6259 |
|
6260 |
+
#: languages/vue.php:834
|
6261 |
msgid "Receive 50% off automatically applied at the checkout!"
|
6262 |
msgstr ""
|
6263 |
|
6264 |
+
#: languages/vue.php:837
|
6265 |
msgid "See all features"
|
6266 |
msgstr ""
|
6267 |
|
6268 |
+
#: languages/vue.php:840
|
6269 |
msgid "Setup Wizard"
|
6270 |
msgstr ""
|
6271 |
|
6272 |
+
#: languages/vue.php:843
|
6273 |
msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
|
6274 |
msgstr ""
|
6275 |
|
6276 |
+
#: languages/vue.php:846
|
6277 |
msgid "Relaunch Setup Wizard"
|
6278 |
msgstr ""
|
6279 |
|
6280 |
+
#: languages/vue.php:849
|
6281 |
msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
|
6282 |
msgstr ""
|
6283 |
|
6284 |
+
#: languages/vue.php:852
|
6285 |
msgid "No addons found."
|
6286 |
msgstr ""
|
6287 |
|
6288 |
+
#: languages/vue.php:855
|
6289 |
msgid "Refresh Addons"
|
6290 |
msgstr ""
|
6291 |
|
6292 |
#. Translators: Adds a line break.
|
6293 |
+
#: languages/vue.php:862
|
6294 |
msgid "Upgrade to Pro to unlock addons and other great features."
|
6295 |
msgstr ""
|
6296 |
|
6297 |
+
#: languages/vue.php:865
|
6298 |
msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
|
6299 |
msgstr ""
|
6300 |
|
6301 |
+
#: languages/vue.php:868
|
6302 |
msgid "Refreshing Addons"
|
6303 |
msgstr ""
|
6304 |
|
6305 |
+
#: languages/vue.php:871
|
6306 |
msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
|
6307 |
msgstr ""
|
6308 |
|
6309 |
#. Translators: Placeholders make the text green.
|
6310 |
+
#: languages/vue.php:875
|
6311 |
msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
|
6312 |
msgstr ""
|
6313 |
|
6314 |
+
#: languages/vue.php:878
|
6315 |
msgid "How to Connect to Google Analytics"
|
6316 |
msgstr ""
|
6317 |
|
6318 |
+
#: languages/vue.php:881
|
6319 |
msgid "After you install ExactMetrics, you’ll need to connect your WordPress site with your Google Analytics account. ExactMetrics makes the process easy, with no coding required."
|
6320 |
msgstr ""
|
6321 |
|
6322 |
+
#: languages/vue.php:884
|
6323 |
msgid "Guide and Checklist for Advanced Insights"
|
6324 |
msgstr ""
|
6325 |
|
6326 |
+
#: languages/vue.php:887
|
6327 |
msgid "Our goal is to make it as easy as possible for you to measure and track your stats so you can grow your business. This easy-to-follow guide and checklist will get you set up with ExactMetrics’ advanced tracking."
|
6328 |
msgstr ""
|
6329 |
|
6330 |
+
#: languages/vue.php:890
|
6331 |
msgid "GDPR Guide"
|
6332 |
msgstr ""
|
6333 |
|
6334 |
+
#: languages/vue.php:893
|
6335 |
msgid "Compliance with European data laws including GDPR can be confusing and time-consuming. In order to help ExactMetrics users comply with these laws, we’ve created an addon that automates a lot of the necessary configuration changes for you. "
|
6336 |
msgstr ""
|
6337 |
|
6338 |
+
#: languages/vue.php:896
|
6339 |
msgid "How to Install and Activate ExactMetrics Addons"
|
6340 |
msgstr ""
|
6341 |
|
6342 |
+
#: languages/vue.php:899
|
6343 |
msgid "The process for installing and activating addons is quick and easy after you install the ExactMetrics plugin. In this guide we’ll walk you through the process, step by step."
|
6344 |
msgstr ""
|
6345 |
|
6346 |
+
#: languages/vue.php:902
|
6347 |
msgid "Enabling eCommerce Tracking and Reports"
|
6348 |
msgstr ""
|
6349 |
|
6350 |
+
#: languages/vue.php:905
|
6351 |
msgid "Want to track your eCommerce sales data for your WooCommerce, MemberPress, or Easy Digital Downloads store with ExactMetrics? In this guide, we’ll show you how to enable eCommerce tracking in Google Analytics in just a few clicks."
|
6352 |
msgstr ""
|
6353 |
|
6354 |
+
#: languages/vue.php:908
|
6355 |
msgid "Read Documentation"
|
6356 |
msgstr ""
|
6357 |
|
6358 |
#. Translators: Makes the text bold.
|
6359 |
+
#: languages/vue.php:912
|
6360 |
msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
|
6361 |
msgstr ""
|
6362 |
|
6363 |
#. Translators: Makes the text bold.
|
6364 |
+
#: languages/vue.php:916
|
6365 |
msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
|
6366 |
msgstr ""
|
6367 |
|
6368 |
+
#: languages/vue.php:925
|
6369 |
msgid "One-click Complete eCommerce tracking"
|
6370 |
msgstr ""
|
6371 |
|
6372 |
+
#: languages/vue.php:928
|
6373 |
msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
|
6374 |
msgstr ""
|
6375 |
|
6376 |
+
#: languages/vue.php:931
|
6377 |
msgid "Forms Tracking"
|
6378 |
msgstr ""
|
6379 |
|
6380 |
+
#: languages/vue.php:934
|
6381 |
msgid "One-click Form Events Tracking"
|
6382 |
msgstr ""
|
6383 |
|
6384 |
+
#: languages/vue.php:937
|
6385 |
msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
|
6386 |
msgstr ""
|
6387 |
|
6388 |
+
#: languages/vue.php:940
|
6389 |
msgid "WordPress Admin Area Reports"
|
6390 |
msgstr ""
|
6391 |
|
6392 |
+
#: languages/vue.php:943
|
6393 |
msgid "Standard Reports"
|
6394 |
msgstr ""
|
6395 |
|
6396 |
+
#: languages/vue.php:946
|
6397 |
msgid "Overview Reports for the last 30 days."
|
6398 |
msgstr ""
|
6399 |
|
6400 |
+
#: languages/vue.php:949
|
6401 |
msgid "Advanced Reports"
|
6402 |
msgstr ""
|
6403 |
|
6404 |
+
#: languages/vue.php:952
|
6405 |
msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
|
6406 |
msgstr ""
|
6407 |
|
6408 |
+
#: languages/vue.php:955
|
6409 |
msgid "Dashboard Widget"
|
6410 |
msgstr ""
|
6411 |
|
6412 |
+
#: languages/vue.php:958
|
6413 |
msgid "Basic Widget"
|
6414 |
msgstr ""
|
6415 |
|
6416 |
+
#: languages/vue.php:961
|
6417 |
msgid "Overview Report Synopsis"
|
6418 |
msgstr ""
|
6419 |
|
6420 |
+
#: languages/vue.php:964
|
6421 |
msgid "Advanced Dashboard Widget"
|
6422 |
msgstr ""
|
6423 |
|
6424 |
+
#: languages/vue.php:967
|
6425 |
msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
|
6426 |
msgstr ""
|
6427 |
|
6428 |
+
#: languages/vue.php:970
|
6429 |
msgid "Publisher Reports"
|
6430 |
msgstr ""
|
6431 |
|
6432 |
+
#: languages/vue.php:973
|
6433 |
msgid "Advanced Publisher Reports & Tracking"
|
6434 |
msgstr ""
|
6435 |
|
6436 |
+
#: languages/vue.php:976
|
6437 |
msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
|
6438 |
msgstr ""
|
6439 |
|
6440 |
+
#: languages/vue.php:983
|
6441 |
msgid "Email Summaries"
|
6442 |
msgstr ""
|
6443 |
|
6444 |
+
#: languages/vue.php:986
|
6445 |
msgid "Included"
|
6446 |
msgstr ""
|
6447 |
|
6448 |
+
#: languages/vue.php:989
|
6449 |
msgid "Get weekly traffic reports directly in your inbox."
|
6450 |
msgstr ""
|
6451 |
|
6452 |
+
#: languages/vue.php:995
|
6453 |
msgid "Basic Options"
|
6454 |
msgstr ""
|
6455 |
|
6456 |
+
#: languages/vue.php:998
|
6457 |
msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
|
6458 |
msgstr ""
|
6459 |
|
6460 |
+
#: languages/vue.php:1001
|
6461 |
msgid "Dynamic Popular Posts & Popular Products"
|
6462 |
msgstr ""
|
6463 |
|
6464 |
+
#: languages/vue.php:1004
|
6465 |
msgid "Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks."
|
6466 |
msgstr ""
|
6467 |
|
6468 |
+
#: languages/vue.php:1007
|
6469 |
msgid "Not Available"
|
6470 |
msgstr ""
|
6471 |
|
6472 |
+
#: languages/vue.php:1010
|
6473 |
msgid "Complete Custom Dimensions Tracking"
|
6474 |
msgstr ""
|
6475 |
|
6476 |
+
#: languages/vue.php:1013
|
6477 |
msgid "Track and measure by the Author, Post Type, Category, Tag, SEO Score, Focus Keyword, Logged-in User, User ID and Published Time of each post and page"
|
6478 |
msgstr ""
|
6479 |
|
6480 |
+
#: languages/vue.php:1019
|
6481 |
msgid "Limited Support"
|
6482 |
msgstr ""
|
6483 |
|
6484 |
+
#: languages/vue.php:1022
|
6485 |
msgid "Priority Support"
|
6486 |
msgstr ""
|
6487 |
|
6488 |
+
#: languages/vue.php:1025
|
6489 |
msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
|
6490 |
msgstr ""
|
6491 |
|
6492 |
+
#: languages/vue.php:1028
|
6493 |
msgid "Feature"
|
6494 |
msgstr ""
|
6495 |
|
6496 |
+
#: languages/vue.php:1031
|
6497 |
msgid "Lite"
|
6498 |
msgstr ""
|
6499 |
|
6500 |
+
#: languages/vue.php:1034
|
6501 |
msgid "Pro"
|
6502 |
msgstr ""
|
6503 |
|
6504 |
+
#: languages/vue.php:1037
|
6505 |
msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
|
6506 |
msgstr ""
|
6507 |
|
6508 |
+
#: languages/vue.php:1044
|
6509 |
msgid "Universal Tracking"
|
6510 |
msgstr ""
|
6511 |
|
6512 |
+
#: languages/vue.php:1047
|
6513 |
msgid "Custom Google Analytics Link Tracking"
|
6514 |
msgstr ""
|
6515 |
|
6516 |
+
#: languages/vue.php:1050
|
6517 |
msgid "Standard Tracking"
|
6518 |
msgstr ""
|
6519 |
|
6520 |
+
#: languages/vue.php:1053
|
6521 |
msgid "Advanced Tracking"
|
6522 |
msgstr ""
|
6523 |
|
6524 |
+
#: languages/vue.php:1056
|
6525 |
msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
|
6526 |
msgstr ""
|
6527 |
|
6528 |
+
#: languages/vue.php:1059
|
6529 |
msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
|
6530 |
msgstr ""
|
6531 |
|
6532 |
+
#: languages/vue.php:1062
|
6533 |
msgid "No-Code-Needed Tracking Features"
|
6534 |
msgstr ""
|
6535 |
|
6536 |
+
#: languages/vue.php:1065
|
6537 |
msgid "Basic Tracking Options"
|
6538 |
msgstr ""
|
6539 |
|
6540 |
+
#: languages/vue.php:1068
|
6541 |
msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
|
6542 |
msgstr ""
|
6543 |
|
6544 |
+
#: languages/vue.php:1071
|
6545 |
msgid "Advanced Tracking Options"
|
6546 |
msgstr ""
|
6547 |
|
6548 |
+
#: languages/vue.php:1074
|
6549 |
msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
|
6550 |
msgstr ""
|
6551 |
|
6552 |
+
#: languages/vue.php:1077
|
6553 |
msgid "Inbox"
|
6554 |
msgstr ""
|
6555 |
|
6556 |
+
#: languages/vue.php:1080
|
6557 |
msgid "Back to Inbox"
|
6558 |
msgstr ""
|
6559 |
|
6560 |
+
#: languages/vue.php:1083
|
6561 |
msgid "View Dismissed"
|
6562 |
msgstr ""
|
6563 |
|
6564 |
+
#: languages/vue.php:1086
|
6565 |
msgid "Notifications"
|
6566 |
msgstr ""
|
6567 |
|
6568 |
+
#: languages/vue.php:1089
|
6569 |
msgid "Dismiss All"
|
6570 |
msgstr ""
|
6571 |
|
6572 |
+
#: languages/vue.php:1092
|
6573 |
msgid "Dismissed"
|
6574 |
msgstr ""
|
6575 |
|
6576 |
+
#: languages/vue.php:1095
|
6577 |
msgid "No Notifications"
|
6578 |
msgstr ""
|
6579 |
|
6580 |
#. Translators: Error status and error text.
|
6581 |
+
#: languages/vue.php:1099
|
6582 |
msgid "Can't load settings. Error: %1$s, %2$s"
|
6583 |
msgstr ""
|
6584 |
|
6585 |
+
#: languages/vue.php:1102
|
6586 |
msgid "You appear to be offline."
|
6587 |
msgstr ""
|
6588 |
|
6589 |
#. Translators: Error status and error text.
|
6590 |
+
#: languages/vue.php:1106
|
6591 |
msgid "Can't save settings. Error: %1$s, %2$s"
|
6592 |
msgstr ""
|
6593 |
|
6594 |
+
#: languages/vue.php:1109
|
6595 |
msgid "Network error encountered. Settings not saved."
|
6596 |
msgstr ""
|
6597 |
|
6598 |
+
#: languages/vue.php:1112
|
6599 |
msgid "Show in widget mode"
|
6600 |
msgstr ""
|
6601 |
|
6602 |
+
#: languages/vue.php:1115
|
6603 |
msgid "Show in full-width mode"
|
6604 |
msgstr ""
|
6605 |
|
6606 |
+
#: languages/vue.php:1118
|
6607 |
msgid "Show Overview Reports"
|
6608 |
msgstr ""
|
6609 |
|
6610 |
+
#: languages/vue.php:1121
|
6611 |
msgid "Show Publishers Reports"
|
6612 |
msgstr ""
|
6613 |
|
6614 |
+
#: languages/vue.php:1124
|
6615 |
msgid "Show eCommerce Reports"
|
6616 |
msgstr ""
|
6617 |
|
6618 |
+
#: languages/vue.php:1127
|
6619 |
msgid "Settings Menu"
|
6620 |
msgstr ""
|
6621 |
|
6622 |
+
#: languages/vue.php:1130
|
6623 |
msgid "Available in PRO version"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
+
#: languages/vue.php:1133
|
6627 |
msgid "See All Reports"
|
6628 |
msgstr ""
|
6629 |
|
6630 |
+
#: languages/vue.php:1136
|
6631 |
msgid "Go to the Analytics Dashboard"
|
6632 |
msgstr ""
|
6633 |
|
6634 |
+
#: languages/vue.php:1151
|
6635 |
msgid "Cart Funnel"
|
6636 |
msgstr ""
|
6637 |
|
6638 |
+
#: languages/vue.php:1154
|
6639 |
msgid "Customer Insights"
|
6640 |
msgstr ""
|
6641 |
|
6642 |
+
#: languages/vue.php:1157
|
6643 |
msgid "Campaign Measurement"
|
6644 |
msgstr ""
|
6645 |
|
6646 |
+
#: languages/vue.php:1160
|
6647 |
msgid "Customer Profiles"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
+
#: languages/vue.php:1163
|
6651 |
msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
|
6652 |
msgstr ""
|
6653 |
|
6654 |
+
#: languages/vue.php:1166
|
6655 |
msgid "Truly Understand Your%1$s Customers With %2$sExactMetrics%3$s"
|
6656 |
msgstr ""
|
6657 |
|
6658 |
+
#: languages/vue.php:1169
|
6659 |
msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from ExactMetrics!"
|
6660 |
msgstr ""
|
6661 |
|
6662 |
+
#: languages/vue.php:1172
|
6663 |
msgid "Track all-new metrics!"
|
6664 |
msgstr ""
|
6665 |
|
6666 |
+
#: languages/vue.php:1175
|
6667 |
msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
|
6668 |
msgstr ""
|
6669 |
|
6670 |
+
#: languages/vue.php:1178
|
6671 |
msgid "FEATURES"
|
6672 |
msgstr ""
|
6673 |
|
6674 |
+
#: languages/vue.php:1181
|
6675 |
msgid "Get The Unique Metrics Neccessary for Growth"
|
6676 |
msgstr ""
|
6677 |
|
6678 |
+
#: languages/vue.php:1184
|
6679 |
msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
|
6680 |
msgstr ""
|
6681 |
|
6682 |
+
#: languages/vue.php:1187
|
6683 |
msgid "Get Answers to the important questions %1$syou should know."
|
6684 |
msgstr ""
|
6685 |
|
6686 |
+
#: languages/vue.php:1190
|
6687 |
msgid "Did the login/registration step of the checkout put users off?"
|
6688 |
msgstr ""
|
6689 |
|
6690 |
+
#: languages/vue.php:1193
|
6691 |
msgid "Which ad campaign is driving the most revenue?"
|
6692 |
msgstr ""
|
6693 |
|
6694 |
+
#: languages/vue.php:1196
|
6695 |
msgid "Who is my typical customer?"
|
6696 |
msgstr ""
|
6697 |
|
6698 |
+
#: languages/vue.php:1199
|
6699 |
msgid "Level-up Your eCommerce store with %1$sExactMetrics + WooCommerce!%1$s"
|
6700 |
msgstr ""
|
6701 |
|
6702 |
#. Translators: Error status and error text.
|
6703 |
+
#: languages/vue.php:1203
|
6704 |
msgid "Can't deactivate the license. Error: %1$s, %2$s"
|
6705 |
msgstr ""
|
6706 |
|
6707 |
#. Translators: Error status and error text.
|
6708 |
+
#: languages/vue.php:1207
|
6709 |
msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
|
6710 |
msgstr ""
|
6711 |
|
6712 |
#. Translators: Error status and error text.
|
6713 |
+
#: languages/vue.php:1211
|
6714 |
msgid "Can't load license details. Error: %1$s, %2$s"
|
6715 |
msgstr ""
|
6716 |
|
6717 |
+
#: languages/vue.php:1214
|
6718 |
msgid "Error loading license details"
|
6719 |
msgstr ""
|
6720 |
|
6721 |
#. Translators: Error status and error text.
|
6722 |
+
#: languages/vue.php:1218
|
6723 |
msgid "Can't verify the license. Error: %1$s, %2$s"
|
6724 |
msgstr ""
|
6725 |
|
6726 |
#. Translators: Error status and error text.
|
6727 |
+
#: languages/vue.php:1222
|
6728 |
msgid "Can't validate the license. Error: %1$s, %2$s"
|
6729 |
msgstr ""
|
6730 |
|
6731 |
+
#: languages/vue.php:1225
|
6732 |
msgid "Reset to default"
|
6733 |
msgstr ""
|
6734 |
|
6735 |
+
#: languages/vue.php:1228
|
6736 |
msgid "The value entered does not match the required format"
|
6737 |
msgstr ""
|
6738 |
|
6739 |
+
#: languages/vue.php:1231
|
6740 |
msgid "Check out the newly added classic mode"
|
6741 |
msgstr ""
|
6742 |
|
6743 |
#. Translators: Placeholder adds a line break.
|
6744 |
+
#: languages/vue.php:1235
|
6745 |
msgid "You can customize your %sdate range only in the PRO version."
|
6746 |
msgstr ""
|
6747 |
|
6748 |
+
#: languages/vue.php:1238
|
6749 |
msgid "Help Us Improve"
|
6750 |
msgstr ""
|
6751 |
|
6752 |
+
#: languages/vue.php:1241
|
6753 |
msgid "Help us better understand our users and their website needs."
|
6754 |
msgstr ""
|
6755 |
|
6756 |
#. Translators: Adds a link to the documentation.
|
6757 |
+
#: languages/vue.php:1245
|
6758 |
msgid "If enabled ExactMetrics will send some information about your WordPress site like what plugins and themes you use and which ExactMetrics settings you use to us so that we can improve our product. For a complete list of what we send and what we use it for, %1$svisit our website.%2$s"
|
6759 |
msgstr ""
|
6760 |
|
6761 |
#. Translators: The name of the field that is throwing a validation error.
|
6762 |
+
#: languages/vue.php:1249
|
6763 |
msgid "%s can't be empty."
|
6764 |
msgstr ""
|
6765 |
|
6766 |
+
#: languages/vue.php:1252
|
6767 |
msgid "Duplicate values are not allowed."
|
6768 |
msgstr ""
|
6769 |
|
6770 |
+
#: languages/vue.php:1255
|
6771 |
msgid "You can add maximum 5 items."
|
6772 |
msgstr ""
|
6773 |
|
6774 |
+
#: languages/vue.php:1258
|
6775 |
msgid "At least 0 item required."
|
6776 |
msgstr ""
|
6777 |
|
6778 |
+
#: languages/vue.php:1261
|
6779 |
msgid "Add Another Link Path"
|
6780 |
msgstr ""
|
6781 |
|
6782 |
+
#: languages/vue.php:1264
|
6783 |
msgid "Remove row"
|
6784 |
msgstr ""
|
6785 |
|
6786 |
+
#: languages/vue.php:1267
|
6787 |
msgid "Sessions"
|
6788 |
msgstr ""
|
6789 |
|
6790 |
#. Translators: Line break.
|
6791 |
+
#: languages/vue.php:1271
|
6792 |
msgid "Unique %s Sessions"
|
6793 |
msgstr ""
|
6794 |
|
6795 |
+
#: languages/vue.php:1274
|
6796 |
msgid "Pageviews"
|
6797 |
msgstr ""
|
6798 |
|
6799 |
#. Translators: Line break.
|
6800 |
+
#: languages/vue.php:1278
|
6801 |
msgid "Unique %s Pageviews"
|
6802 |
msgstr ""
|
6803 |
|
6804 |
+
#: languages/vue.php:1281
|
6805 |
msgid "A session is the browsing session of a single user to your site."
|
6806 |
msgstr ""
|
6807 |
|
6808 |
+
#: languages/vue.php:1284
|
6809 |
msgid "A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview."
|
6810 |
msgstr ""
|
6811 |
|
6812 |
+
#: languages/vue.php:1287
|
6813 |
msgid "Total duration of all sessions (in seconds) / number of sessions."
|
6814 |
msgstr ""
|
6815 |
|
6816 |
+
#: languages/vue.php:1290
|
6817 |
msgid "Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further."
|
6818 |
msgstr ""
|
6819 |
|
6820 |
+
#: languages/vue.php:1293
|
6821 |
msgid "The number of distinct tracked users"
|
6822 |
msgstr ""
|
6823 |
|
6824 |
+
#: languages/vue.php:1296
|
6825 |
msgid "Avg. Session Duration"
|
6826 |
msgstr ""
|
6827 |
|
6828 |
+
#: languages/vue.php:1302
|
6829 |
msgid "Total Users"
|
6830 |
msgstr ""
|
6831 |
|
6832 |
+
#: languages/vue.php:1305
|
6833 |
msgid "No options available"
|
6834 |
msgstr ""
|
6835 |
|
6836 |
#. Translators: Placeholders make the text highlighted.
|
6837 |
+
#: languages/vue.php:1309
|
6838 |
msgid "%1$sNeed%2$s to Grow FASTER??"
|
6839 |
msgstr ""
|
6840 |
|
6841 |
+
#: languages/vue.php:1312
|
6842 |
msgid "Get additional, actionable insights by going Pro."
|
6843 |
msgstr ""
|
6844 |
|
6845 |
+
#: languages/vue.php:1315
|
6846 |
msgid "Skip"
|
6847 |
msgstr ""
|
6848 |
|
6849 |
+
#: languages/vue.php:1318
|
6850 |
msgid "See All Features"
|
6851 |
msgstr ""
|
6852 |
|
6853 |
+
#: languages/vue.php:1321
|
6854 |
msgid "Upgrade to Pro to get the complete ExactMetrics experience including 1 click tracking integrations for your favorite WordPress plugins and insightful reports backed by our legendary support team."
|
6855 |
msgstr ""
|
6856 |
|
6857 |
+
#: languages/vue.php:1324
|
6858 |
msgid "Our Pro plan includes:"
|
6859 |
msgstr ""
|
6860 |
|
6861 |
#. Translators: Error status and error text.
|
6862 |
+
#: languages/vue.php:1328
|
6863 |
msgid "Can't load errors. Error: %1$s, %2$s"
|
6864 |
msgstr ""
|
6865 |
|
6866 |
+
#: languages/vue.php:1331
|
6867 |
msgid "Real-Time Report"
|
6868 |
msgstr ""
|
6869 |
|
6870 |
+
#: languages/vue.php:1334
|
6871 |
msgid "Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitor's activity when you need it."
|
6872 |
msgstr ""
|
6873 |
|
6874 |
#. Translators: add link to blog.
|
6875 |
+
#: languages/vue.php:1338
|
6876 |
msgid "To comply with Google's API policies we've had to remove the real time report from the lite version. You can read about this decision and why it was made in %1$sthis blog post%2$s. To access the real time report in the WordPress backend, you will need to upgrade to Pro."
|
6877 |
msgstr ""
|
6878 |
|
6879 |
+
#: languages/vue.php:1342
|
6880 |
msgid "Here's what you get:"
|
6881 |
msgstr ""
|
6882 |
|
6883 |
+
#: languages/vue.php:1345
|
6884 |
msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
|
6885 |
msgstr ""
|
6886 |
|
6887 |
+
#: languages/vue.php:1348
|
6888 |
msgid "See Your Top Pages Immediately After Making Changes"
|
6889 |
msgstr ""
|
6890 |
|
6891 |
+
#: languages/vue.php:1351
|
6892 |
msgid "See Your Top Referral Sources and Adapt Faster"
|
6893 |
msgstr ""
|
6894 |
|
6895 |
+
#: languages/vue.php:1354
|
6896 |
msgid "See Your Traffic Demographics"
|
6897 |
msgstr ""
|
6898 |
|
6899 |
+
#: languages/vue.php:1357
|
6900 |
msgid "Get Fresh Report Data Every 60 Seconds"
|
6901 |
msgstr ""
|
6902 |
|
6903 |
+
#: languages/vue.php:1360
|
6904 |
msgid "See Where Your Visitors are Connecting From (country & city)"
|
6905 |
msgstr ""
|
6906 |
|
6907 |
+
#: languages/vue.php:1363
|
6908 |
msgid "Forms Report"
|
6909 |
msgstr ""
|
6910 |
|
6911 |
+
#: languages/vue.php:1366
|
6912 |
msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
|
6913 |
msgstr ""
|
6914 |
|
6915 |
+
#: languages/vue.php:1369
|
6916 |
msgid "See Your Top Converting Forms and Optimize"
|
6917 |
msgstr ""
|
6918 |
|
6919 |
+
#: languages/vue.php:1372
|
6920 |
msgid "See Your Forms Impressions Count to Find the Best Placement"
|
6921 |
msgstr ""
|
6922 |
|
6923 |
+
#: languages/vue.php:1375
|
6924 |
msgid "Awesome, You're All Set!"
|
6925 |
msgstr ""
|
6926 |
|
6927 |
+
#: languages/vue.php:1378
|
6928 |
msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
|
6929 |
msgstr ""
|
6930 |
|
6931 |
#. Translators: Make text bold.
|
6932 |
+
#: languages/vue.php:1382
|
6933 |
msgid "%1$sPlease Note:%2$s While Google Analytics is properly setup and tracking everything, it does not send the data back to WordPress immediately. Depending on the size of your website, it can take between a few hours to 24 hours for reports to populate."
|
6934 |
msgstr ""
|
6935 |
|
6936 |
#. Translators: Add link to blog.
|
6937 |
#. Translators: Link to our blog.
|
6938 |
+
#: languages/vue.php:1386
|
6939 |
+
#: languages/vue.php:3591
|
6940 |
msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
|
6941 |
msgstr ""
|
6942 |
|
6943 |
+
#: languages/vue.php:1389
|
6944 |
msgid "Finish Setup & Exit Wizard"
|
6945 |
msgstr ""
|
6946 |
|
6947 |
+
#: languages/vue.php:1392
|
6948 |
msgid "Google Analytics"
|
6949 |
msgstr ""
|
6950 |
|
6951 |
+
#: languages/vue.php:1395
|
6952 |
msgid "Subscribe"
|
6953 |
msgstr ""
|
6954 |
|
6955 |
+
#: languages/vue.php:1398
|
6956 |
msgid "Checking your website..."
|
6957 |
msgstr ""
|
6958 |
|
6959 |
+
#: languages/vue.php:1401
|
6960 |
msgid "Recommended Addons"
|
6961 |
msgstr ""
|
6962 |
|
6963 |
#. Translators: Add a link to upgrade and make the text green.
|
6964 |
+
#: languages/vue.php:1405
|
6965 |
msgid "To unlock more features consider %1$supgrading to PRO%2$s.%3$s As a valued ExactMetrics Lite user you %4$sreceive 50%% off%5$s, automatically applied at checkout!"
|
6966 |
msgstr ""
|
6967 |
|
6968 |
+
#: languages/vue.php:1408
|
6969 |
msgid "Upgrade to PRO Now"
|
6970 |
msgstr ""
|
6971 |
|
6972 |
+
#: languages/vue.php:1411
|
6973 |
msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
|
6974 |
msgstr ""
|
6975 |
|
6976 |
+
#: languages/vue.php:1414
|
6977 |
msgid "See All Your Important Store Metrics in One Place."
|
6978 |
msgstr ""
|
6979 |
|
6980 |
+
#: languages/vue.php:1417
|
6981 |
msgid "... and more:"
|
6982 |
msgstr ""
|
6983 |
|
6984 |
+
#: languages/vue.php:1420
|
6985 |
msgid "Dimensions- Track authors, categories, trags, searches, users and more."
|
6986 |
msgstr ""
|
6987 |
|
6988 |
+
#: languages/vue.php:1423
|
6989 |
msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
|
6990 |
msgstr ""
|
6991 |
|
6992 |
+
#: languages/vue.php:1426
|
6993 |
msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
|
6994 |
msgstr ""
|
6995 |
|
6996 |
+
#: languages/vue.php:1429
|
6997 |
msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
|
6998 |
msgstr ""
|
6999 |
|
7000 |
+
#: languages/vue.php:1432
|
7001 |
msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
|
7002 |
msgstr ""
|
7003 |
|
7004 |
+
#: languages/vue.php:1435
|
7005 |
msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
|
7006 |
msgstr ""
|
7007 |
|
7008 |
+
#: languages/vue.php:1438
|
7009 |
msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
|
7010 |
msgstr ""
|
7011 |
|
7012 |
+
#: languages/vue.php:1441
|
7013 |
msgid "Ads- See who’s clicking on your Google Adsense banner ads."
|
7014 |
msgstr ""
|
7015 |
|
7016 |
+
#: languages/vue.php:1444
|
7017 |
msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
|
7018 |
msgstr ""
|
7019 |
|
7020 |
+
#: languages/vue.php:1447
|
7021 |
msgid "Ready to take your website to the next level? ExactMetrics gives you the accurate insights you need to make data-driven decisions to grow your traffic and conversions faster than ever before. Now you can easily enable advanced tracking on your website without having to know any code."
|
7022 |
msgstr ""
|
7023 |
|
7024 |
+
#: languages/vue.php:1450
|
7025 |
msgid "The ExactMetrics Team"
|
7026 |
msgstr ""
|
7027 |
|
7028 |
+
#: languages/vue.php:1453
|
7029 |
msgid "Custom Dimensions Report"
|
7030 |
msgstr ""
|
7031 |
|
7032 |
+
#: languages/vue.php:1456
|
7033 |
msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
|
7034 |
msgstr ""
|
7035 |
|
7036 |
+
#: languages/vue.php:1459
|
7037 |
msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
|
7038 |
msgstr ""
|
7039 |
|
7040 |
+
#: languages/vue.php:1462
|
7041 |
msgid "Author tracking to see which author’s posts generate the most traffic"
|
7042 |
msgstr ""
|
7043 |
|
7044 |
+
#: languages/vue.php:1465
|
7045 |
msgid "Post Type tracking to see which WordPress post types perform better"
|
7046 |
msgstr ""
|
7047 |
|
7048 |
+
#: languages/vue.php:1468
|
7049 |
msgid "Category tracking to see which sections of your sites are the most popular"
|
7050 |
msgstr ""
|
7051 |
|
7052 |
+
#: languages/vue.php:1471
|
7053 |
msgid "SEO score tracking to see which blog SEO scores are the most popular"
|
7054 |
msgstr ""
|
7055 |
|
7056 |
+
#: languages/vue.php:1474
|
7057 |
msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
|
7058 |
msgstr ""
|
7059 |
|
7060 |
+
#: languages/vue.php:1477
|
7061 |
msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
|
7062 |
msgstr ""
|
7063 |
|
7064 |
#. Translators: add link to blog.
|
7065 |
+
#: languages/vue.php:1481
|
7066 |
msgid "One of the factors that help deliver an outstanding user experience is having a website that loads quickly. With the Site Speed report you'll be able to check your site's performance directly from your ExactMetrics dashboard."
|
7067 |
msgstr ""
|
7068 |
|
7069 |
+
#: languages/vue.php:1484
|
7070 |
msgid "See Your Homepage's Overall Performance Score"
|
7071 |
msgstr ""
|
7072 |
|
7073 |
+
#: languages/vue.php:1487
|
7074 |
msgid "Run an Audit on Your Homepage and See Your Server Response Time"
|
7075 |
msgstr ""
|
7076 |
|
7077 |
+
#: languages/vue.php:1490
|
7078 |
msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
|
7079 |
msgstr ""
|
7080 |
|
7081 |
+
#: languages/vue.php:1493
|
7082 |
msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
|
7083 |
msgstr ""
|
7084 |
|
7085 |
+
#: languages/vue.php:1496
|
7086 |
msgid "Hide dashboard widget"
|
7087 |
msgstr ""
|
7088 |
|
7089 |
+
#: languages/vue.php:1499
|
7090 |
msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
|
7091 |
msgstr ""
|
7092 |
|
7093 |
+
#: languages/vue.php:1502
|
7094 |
msgid "Yes, hide it!"
|
7095 |
msgstr ""
|
7096 |
|
7097 |
+
#: languages/vue.php:1505
|
7098 |
msgid "No, cancel!"
|
7099 |
msgstr ""
|
7100 |
|
7101 |
+
#: languages/vue.php:1508
|
7102 |
msgid "ExactMetrics Widget Hidden"
|
7103 |
msgstr ""
|
7104 |
|
7105 |
+
#: languages/vue.php:1511
|
7106 |
msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
|
7107 |
msgstr ""
|
7108 |
|
7109 |
#. Translators: Error status and error text.
|
7110 |
+
#: languages/vue.php:1515
|
7111 |
msgid "Can't deauthenticate. Error: %1$s, %2$s"
|
7112 |
msgstr ""
|
7113 |
|
7114 |
#. Translators: Error status and error text.
|
7115 |
+
#: languages/vue.php:1519
|
7116 |
msgid "Can't load authentication details. Error: %1$s, %2$s"
|
7117 |
msgstr ""
|
7118 |
|
7119 |
+
#: languages/vue.php:1522
|
7120 |
msgid "You appear to be offline. Settings not saved."
|
7121 |
msgstr ""
|
7122 |
|
7123 |
#. Translators: Error status and error text.
|
7124 |
+
#: languages/vue.php:1526
|
7125 |
msgid "Can't authenticate. Error: %1$s, %2$s"
|
7126 |
msgstr ""
|
7127 |
|
7128 |
#. Translators: Error status and error text.
|
7129 |
+
#: languages/vue.php:1530
|
7130 |
msgid "Can't reauthenticate. Error: %1$s, %2$s"
|
7131 |
msgstr ""
|
7132 |
|
7133 |
#. Translators: Error status and error text.
|
7134 |
+
#: languages/vue.php:1534
|
7135 |
msgid "Can't verify credentials. Error: %1$s, %2$s"
|
7136 |
msgstr ""
|
7137 |
|
7138 |
+
#: languages/vue.php:1537
|
7139 |
msgid "Still Calculating..."
|
7140 |
msgstr ""
|
7141 |
|
7142 |
+
#: languages/vue.php:1540
|
7143 |
msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
|
7144 |
msgstr ""
|
7145 |
|
7146 |
+
#: languages/vue.php:1543
|
7147 |
msgid "Back to Overview Report"
|
7148 |
msgstr ""
|
7149 |
|
7150 |
+
#: languages/vue.php:1546
|
7151 |
msgid "Your 2020 Analytics Report"
|
7152 |
msgstr ""
|
7153 |
|
7154 |
+
#: languages/vue.php:1549
|
7155 |
msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
|
7156 |
msgstr ""
|
7157 |
|
7158 |
+
#: languages/vue.php:1552
|
7159 |
msgid "Audience"
|
7160 |
msgstr ""
|
7161 |
|
7162 |
+
#: languages/vue.php:1555
|
7163 |
msgid "Congrats"
|
7164 |
msgstr ""
|
7165 |
|
7166 |
+
#: languages/vue.php:1558
|
7167 |
msgid "Your website was quite popular this year! "
|
7168 |
msgstr ""
|
7169 |
|
7170 |
+
#: languages/vue.php:1561
|
7171 |
msgid "You had "
|
7172 |
msgstr ""
|
7173 |
|
7174 |
+
#: languages/vue.php:1564
|
7175 |
msgid " visitors!"
|
7176 |
msgstr ""
|
7177 |
|
7178 |
+
#: languages/vue.php:1567
|
7179 |
msgid " visitors"
|
7180 |
msgstr ""
|
7181 |
|
7182 |
+
#: languages/vue.php:1570
|
7183 |
msgid "Total Visitors"
|
7184 |
msgstr ""
|
7185 |
|
7186 |
+
#: languages/vue.php:1573
|
7187 |
msgid "Total Sessions"
|
7188 |
msgstr ""
|
7189 |
|
7190 |
+
#: languages/vue.php:1576
|
7191 |
msgid "Visitors by Month"
|
7192 |
msgstr ""
|
7193 |
|
7194 |
+
#: languages/vue.php:1579
|
7195 |
msgid "January 1, 2020 - December 31, 2020"
|
7196 |
msgstr ""
|
7197 |
|
7198 |
+
#: languages/vue.php:1582
|
7199 |
msgid "A Tip for 2021"
|
7200 |
msgstr ""
|
7201 |
|
7202 |
+
#: languages/vue.php:1585
|
7203 |
msgid "Demographics"
|
7204 |
msgstr ""
|
7205 |
|
7206 |
+
#: languages/vue.php:1588
|
7207 |
msgid "#1"
|
7208 |
msgstr ""
|
7209 |
|
7210 |
+
#: languages/vue.php:1591
|
7211 |
msgid "You Top 5 Countries"
|
7212 |
msgstr ""
|
7213 |
|
7214 |
+
#: languages/vue.php:1594
|
7215 |
msgid "Let’s get to know your visitors a little better, shall we?"
|
7216 |
msgstr ""
|
7217 |
|
7218 |
+
#: languages/vue.php:1597
|
7219 |
msgid "Gender"
|
7220 |
msgstr ""
|
7221 |
|
7222 |
+
#: languages/vue.php:1600
|
7223 |
msgid "Female"
|
7224 |
msgstr ""
|
7225 |
|
7226 |
+
#: languages/vue.php:1603
|
7227 |
msgid "Women"
|
7228 |
msgstr ""
|
7229 |
|
7230 |
+
#: languages/vue.php:1606
|
7231 |
msgid "Male"
|
7232 |
msgstr ""
|
7233 |
|
7234 |
+
#: languages/vue.php:1609
|
7235 |
msgid "Average Age"
|
7236 |
msgstr ""
|
7237 |
|
7238 |
+
#: languages/vue.php:1612
|
7239 |
msgid "Behavior"
|
7240 |
msgstr ""
|
7241 |
|
7242 |
+
#: languages/vue.php:1615
|
7243 |
msgid "Your Top 5 Pages"
|
7244 |
msgstr ""
|
7245 |
|
7246 |
+
#: languages/vue.php:1618
|
7247 |
msgid "Time Spent on Site"
|
7248 |
msgstr ""
|
7249 |
|
7250 |
+
#: languages/vue.php:1621
|
7251 |
msgid "minutes"
|
7252 |
msgstr ""
|
7253 |
|
7254 |
+
#: languages/vue.php:1624
|
7255 |
msgid "Device Type"
|
7256 |
msgstr ""
|
7257 |
|
7258 |
+
#: languages/vue.php:1627
|
7259 |
msgid "A Tip For 2021"
|
7260 |
msgstr ""
|
7261 |
|
7262 |
+
#: languages/vue.php:1630
|
7263 |
msgid "Are you looking for a way to track your landing pages and see which one gets the most conversions on your website?"
|
7264 |
msgstr ""
|
7265 |
|
7266 |
+
#: languages/vue.php:1633
|
7267 |
msgid "Read - How to Track Google Analytics Landing Page Conversions"
|
7268 |
msgstr ""
|
7269 |
|
7270 |
+
#: languages/vue.php:1636
|
7271 |
msgid "So, where did all of these visitors come from?"
|
7272 |
msgstr ""
|
7273 |
|
7274 |
+
#: languages/vue.php:1639
|
7275 |
msgid "Clicks"
|
7276 |
msgstr ""
|
7277 |
|
7278 |
+
#: languages/vue.php:1642
|
7279 |
msgid "Your Top 5 Keywords"
|
7280 |
msgstr ""
|
7281 |
|
7282 |
+
#: languages/vue.php:1645
|
7283 |
msgid "What keywords visitors searched for to find your site"
|
7284 |
msgstr ""
|
7285 |
|
7286 |
+
#: languages/vue.php:1648
|
7287 |
msgid "Your Top 5 Referrals"
|
7288 |
msgstr ""
|
7289 |
|
7290 |
+
#: languages/vue.php:1651
|
7291 |
msgid "The websites that link back to your website"
|
7292 |
msgstr ""
|
7293 |
|
7294 |
+
#: languages/vue.php:1654
|
7295 |
msgid "Opportunity"
|
7296 |
msgstr ""
|
7297 |
|
7298 |
+
#: languages/vue.php:1657
|
7299 |
msgid "Learn how to boost your SEO rankings using ExactMetrics so more visitors reach your articles and increase engagement."
|
7300 |
msgstr ""
|
7301 |
|
7302 |
+
#: languages/vue.php:1660
|
7303 |
msgid "Read - 5 Ways to Skyrocket Your SEO Rankings with Google Analytics"
|
7304 |
msgstr ""
|
7305 |
|
7306 |
+
#: languages/vue.php:1663
|
7307 |
msgid "Thank you for using ExactMetrics!"
|
7308 |
msgstr ""
|
7309 |
|
7310 |
+
#: languages/vue.php:1666
|
7311 |
msgid "We’re grateful for your continued support. If there’s anything we can do to help you grow your business, please don’t hesitate to contact our team."
|
7312 |
msgstr ""
|
7313 |
|
7314 |
+
#: languages/vue.php:1669
|
7315 |
msgid "Here's to an amazing 2021!"
|
7316 |
msgstr ""
|
7317 |
|
7318 |
+
#: languages/vue.php:1672
|
7319 |
msgid "Enjoying ExactMetrics"
|
7320 |
msgstr ""
|
7321 |
|
7322 |
+
#: languages/vue.php:1675
|
7323 |
msgid "Leave a five star review!"
|
7324 |
msgstr ""
|
7325 |
|
7326 |
+
#: languages/vue.php:1678
|
7327 |
msgid "Syed Balkhi"
|
7328 |
msgstr ""
|
7329 |
|
7330 |
+
#: languages/vue.php:1681
|
7331 |
msgid "Chris Christoff"
|
7332 |
msgstr ""
|
7333 |
|
7334 |
+
#: languages/vue.php:1684
|
7335 |
msgid "Write Review"
|
7336 |
msgstr ""
|
7337 |
|
7338 |
+
#: languages/vue.php:1687
|
7339 |
msgid "Did you know over 10 million websites use our plugins?"
|
7340 |
msgstr ""
|
7341 |
|
7342 |
+
#: languages/vue.php:1690
|
7343 |
msgid "Try our other popular WordPress plugins to grow your website in 2021."
|
7344 |
msgstr ""
|
7345 |
|
7346 |
+
#: languages/vue.php:1693
|
7347 |
msgid "Join our Communities!"
|
7348 |
msgstr ""
|
7349 |
|
7350 |
+
#: languages/vue.php:1696
|
7351 |
msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
|
7352 |
msgstr ""
|
7353 |
|
7354 |
+
#: languages/vue.php:1699
|
7355 |
msgid "Facebook Group"
|
7356 |
msgstr ""
|
7357 |
|
7358 |
+
#: languages/vue.php:1702
|
7359 |
msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
|
7360 |
msgstr ""
|
7361 |
|
7362 |
+
#: languages/vue.php:1705
|
7363 |
msgid "Join Now...It’s Free!"
|
7364 |
msgstr ""
|
7365 |
|
7366 |
+
#: languages/vue.php:1708
|
7367 |
msgid "WordPress Tutorials by WPBeginner"
|
7368 |
msgstr ""
|
7369 |
|
7370 |
+
#: languages/vue.php:1711
|
7371 |
msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
|
7372 |
msgstr ""
|
7373 |
|
7374 |
+
#: languages/vue.php:1714
|
7375 |
msgid "Visit WPBeginner"
|
7376 |
msgstr ""
|
7377 |
|
7378 |
+
#: languages/vue.php:1717
|
7379 |
msgid "Follow Us!"
|
7380 |
msgstr ""
|
7381 |
|
7382 |
+
#: languages/vue.php:1720
|
7383 |
msgid "Follow ExactMetrics on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
|
7384 |
msgstr ""
|
7385 |
|
7386 |
+
#: languages/vue.php:1723
|
7387 |
msgid "Copyright ExactMetrics, 2021"
|
7388 |
msgstr ""
|
7389 |
|
7390 |
+
#: languages/vue.php:1726
|
7391 |
msgid "Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights"
|
7392 |
msgstr ""
|
7393 |
|
7394 |
+
#: languages/vue.php:1732
|
7395 |
msgid "January"
|
7396 |
msgstr ""
|
7397 |
|
7398 |
+
#: languages/vue.php:1735
|
7399 |
msgid "February"
|
7400 |
msgstr ""
|
7401 |
|
7402 |
+
#: languages/vue.php:1738
|
7403 |
msgid "March"
|
7404 |
msgstr ""
|
7405 |
|
7406 |
+
#: languages/vue.php:1741
|
7407 |
msgid "April"
|
7408 |
msgstr ""
|
7409 |
|
7410 |
+
#: languages/vue.php:1744
|
7411 |
msgid "May"
|
7412 |
msgstr ""
|
7413 |
|
7414 |
+
#: languages/vue.php:1747
|
7415 |
msgid "June"
|
7416 |
msgstr ""
|
7417 |
|
7418 |
+
#: languages/vue.php:1750
|
7419 |
msgid "July"
|
7420 |
msgstr ""
|
7421 |
|
7422 |
+
#: languages/vue.php:1753
|
7423 |
msgid "August"
|
7424 |
msgstr ""
|
7425 |
|
7426 |
+
#: languages/vue.php:1756
|
7427 |
msgid "September"
|
7428 |
msgstr ""
|
7429 |
|
7430 |
+
#: languages/vue.php:1759
|
7431 |
msgid "October"
|
7432 |
msgstr ""
|
7433 |
|
7434 |
+
#: languages/vue.php:1762
|
7435 |
msgid "November"
|
7436 |
msgstr ""
|
7437 |
|
7438 |
+
#: languages/vue.php:1765
|
7439 |
msgid "December"
|
7440 |
msgstr ""
|
7441 |
|
7442 |
#. Translators: Number of visitors.
|
7443 |
+
#: languages/vue.php:1769
|
7444 |
msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
|
7445 |
msgstr ""
|
7446 |
|
7447 |
+
#: languages/vue.php:1772
|
7448 |
msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
|
7449 |
msgstr ""
|
7450 |
|
7451 |
#. Translators: Number of visitors.
|
7452 |
+
#: languages/vue.php:1776
|
7453 |
msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
|
7454 |
msgstr ""
|
7455 |
|
7456 |
#. Translators: Number of visitors.
|
7457 |
+
#: languages/vue.php:1780
|
7458 |
msgid "%s Visitors"
|
7459 |
msgstr ""
|
7460 |
|
7461 |
#. Translators: Percent and Number of visitors.
|
7462 |
+
#: languages/vue.php:1784
|
7463 |
msgid "%1$s% of your visitors were %2$s"
|
7464 |
msgstr ""
|
7465 |
|
7466 |
#. Translators: Number of visitors and their age.
|
7467 |
+
#: languages/vue.php:1788
|
7468 |
msgid "%1$s% of your visitors were between the ages of %2$s"
|
7469 |
msgstr ""
|
7470 |
|
7471 |
+
#: languages/vue.php:1791
|
7472 |
msgid "Your <strong>%1$s</strong> visitors viewed a total of <strong>%2$s</strong> pages. <span class='average-page-per-user' style='font-size: 20px;margin-top:25px;display:block;font-family:Lato'>That's an average of %3$s pages for each visitor!</span>"
|
7473 |
msgstr ""
|
7474 |
|
7475 |
#. Translators: Number of minutes spent on site.
|
7476 |
+
#: languages/vue.php:1795
|
7477 |
msgid "Each visitor spent an average of %s minutes on your website in 2020."
|
7478 |
msgstr ""
|
7479 |
|
7480 |
#. Translators: Name of device type.
|
7481 |
+
#: languages/vue.php:1799
|
7482 |
msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
|
7483 |
msgstr ""
|
7484 |
|
7485 |
#. Translators: Number of visitors and device percentage.
|
7486 |
+
#: languages/vue.php:1803
|
7487 |
msgid "%1$s% of your visitors were on a %2$s device."
|
7488 |
msgstr ""
|
7489 |
|
7490 |
+
#: languages/vue.php:1806
|
7491 |
msgid "Desktop"
|
7492 |
msgstr ""
|
7493 |
|
7494 |
+
#: languages/vue.php:1809
|
7495 |
msgid "Tablet"
|
7496 |
msgstr ""
|
7497 |
|
7498 |
+
#: languages/vue.php:1812
|
7499 |
msgid "Mobile"
|
7500 |
msgstr ""
|
7501 |
|
7502 |
+
#: languages/vue.php:1815
|
7503 |
msgid "Force Deauthenticate"
|
7504 |
msgstr ""
|
7505 |
|
7506 |
+
#: languages/vue.php:1818
|
7507 |
msgid "Disconnect ExactMetrics"
|
7508 |
msgstr ""
|
7509 |
|
7510 |
+
#: languages/vue.php:1821
|
7511 |
msgid "Authenticating"
|
7512 |
msgstr ""
|
7513 |
|
7514 |
+
#: languages/vue.php:1824
|
7515 |
msgid "Verifying Credentials"
|
7516 |
msgstr ""
|
7517 |
|
7518 |
+
#: languages/vue.php:1827
|
7519 |
msgid "Your site is connected to ExactMetrics!"
|
7520 |
msgstr ""
|
7521 |
|
7522 |
+
#: languages/vue.php:1830
|
7523 |
msgid "Deauthenticating"
|
7524 |
msgstr ""
|
7525 |
|
7526 |
+
#: languages/vue.php:1833
|
7527 |
msgid "You've disconnected your site from ExactMetrics. Your site is no longer being tracked by Google Analytics and you won't see reports anymore."
|
7528 |
msgstr ""
|
7529 |
|
7530 |
+
#: languages/vue.php:1836
|
7531 |
+
#: languages/vue.php:1914
|
7532 |
msgid "Connect ExactMetrics"
|
7533 |
msgstr ""
|
7534 |
|
7535 |
+
#: languages/vue.php:1839
|
7536 |
msgid "Verify Credentials"
|
7537 |
msgstr ""
|
7538 |
|
7539 |
+
#: languages/vue.php:1845
|
7540 |
msgid "Website Profile"
|
7541 |
msgstr ""
|
7542 |
|
7543 |
+
#: languages/vue.php:1848
|
7544 |
msgid "Active Profile"
|
7545 |
msgstr ""
|
7546 |
|
7547 |
+
#: languages/vue.php:1851
|
7548 |
msgid "Your website profile has been set at the network level of your WordPress Multisite."
|
7549 |
msgstr ""
|
7550 |
|
7551 |
+
#: languages/vue.php:1854
|
7552 |
msgid "If you would like to use a different profile for this subsite, you can authenticate below."
|
7553 |
msgstr ""
|
7554 |
|
7555 |
+
#: languages/vue.php:1858
|
7556 |
msgid "Dual Tracking Profile"
|
7557 |
msgstr ""
|
7558 |
|
7559 |
+
#: languages/vue.php:1862
|
7560 |
msgid "The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s."
|
7561 |
msgstr ""
|
7562 |
|
7563 |
+
#: languages/vue.php:1866
|
7564 |
msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
|
7565 |
msgstr ""
|
7566 |
|
7567 |
+
#: languages/vue.php:1870
|
7568 |
msgid "The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s."
|
7569 |
msgstr ""
|
7570 |
|
7571 |
+
#: languages/vue.php:1873
|
7572 |
msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
|
7573 |
msgstr ""
|
7574 |
|
7575 |
+
#: languages/vue.php:1877
|
7576 |
msgid "Measurement Protocol API Secret"
|
7577 |
msgstr ""
|
7578 |
|
7579 |
+
#: languages/vue.php:1881
|
7580 |
msgid "The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s."
|
7581 |
msgstr ""
|
7582 |
|
7583 |
+
#: languages/vue.php:1884
|
7584 |
msgid "Classic mode"
|
7585 |
msgstr ""
|
7586 |
|
7587 |
+
#: languages/vue.php:1887
|
7588 |
msgid "Proceed"
|
7589 |
msgstr ""
|
7590 |
|
7591 |
+
#: languages/vue.php:1890
|
7592 |
msgid "Connection Information"
|
7593 |
msgstr ""
|
7594 |
|
7595 |
+
#: languages/vue.php:1893
|
7596 |
msgid "To perform the requested action, WordPress needs to access your web server. Please enter your FTP credentials to proceed. If you do not remember your credentials, you should contact your web host."
|
7597 |
msgstr ""
|
7598 |
|
7599 |
+
#: languages/vue.php:1896
|
7600 |
msgid "Hostname"
|
7601 |
msgstr ""
|
7602 |
|
7603 |
+
#: languages/vue.php:1899
|
7604 |
msgid "FTP Username"
|
7605 |
msgstr ""
|
7606 |
|
7607 |
+
#: languages/vue.php:1902
|
7608 |
msgid "FTP Password"
|
7609 |
msgstr ""
|
7610 |
|
7611 |
+
#: languages/vue.php:1905
|
7612 |
msgid "This password will not be stored on the server."
|
7613 |
msgstr ""
|
7614 |
|
7615 |
+
#: languages/vue.php:1908
|
7616 |
msgid "Connection Type"
|
7617 |
msgstr ""
|
7618 |
|
7619 |
+
#: languages/vue.php:1911
|
7620 |
msgid "Cancel"
|
7621 |
msgstr ""
|
7622 |
|
7623 |
+
#: languages/vue.php:1917
|
7624 |
msgid "Website profile"
|
7625 |
msgstr ""
|
7626 |
|
7627 |
+
#: languages/vue.php:1920
|
7628 |
msgid "Active profile"
|
7629 |
msgstr ""
|
7630 |
|
7631 |
+
#: languages/vue.php:1923
|
7632 |
msgid "Skip and Keep Connection"
|
7633 |
msgstr ""
|
7634 |
|
7635 |
#. Translators: Replaced with the number of days
|
7636 |
+
#: languages/vue.php:1927
|
7637 |
msgid "vs. Previous Day"
|
7638 |
msgstr ""
|
7639 |
|
7640 |
+
#: languages/vue.php:1930
|
7641 |
msgid "No change"
|
7642 |
msgstr ""
|
7643 |
|
7644 |
+
#: languages/vue.php:1933
|
7645 |
msgid "Choose Theme"
|
7646 |
msgstr ""
|
7647 |
|
7648 |
+
#: languages/vue.php:1936
|
7649 |
msgid "Widget Styling"
|
7650 |
msgstr ""
|
7651 |
|
7652 |
+
#: languages/vue.php:1939
|
7653 |
msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
|
7654 |
msgstr ""
|
7655 |
|
7656 |
+
#: languages/vue.php:1942
|
7657 |
msgid "Sort By"
|
7658 |
msgstr ""
|
7659 |
|
7660 |
+
#: languages/vue.php:1945
|
7661 |
msgid "Choose how you'd like the widget to determine your popular posts."
|
7662 |
msgstr ""
|
7663 |
|
7664 |
+
#: languages/vue.php:1948
|
7665 |
msgid "Display Title"
|
7666 |
msgstr ""
|
7667 |
|
7668 |
+
#: languages/vue.php:1954
|
7669 |
msgid "Title your widget and set its display preferences."
|
7670 |
msgstr ""
|
7671 |
|
7672 |
+
#: languages/vue.php:1957
|
7673 |
msgid "Include in Post Types"
|
7674 |
msgstr ""
|
7675 |
|
7676 |
+
#: languages/vue.php:1960
|
7677 |
msgid "Exclude from specific posts"
|
7678 |
msgstr ""
|
7679 |
|
7680 |
#. Translators: Placeholders make the text bold.
|
7681 |
+
#: languages/vue.php:1964
|
7682 |
msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
|
7683 |
msgstr ""
|
7684 |
|
7685 |
#. Translators: Placeholders make the text bold.
|
7686 |
+
#: languages/vue.php:1968
|
7687 |
msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
|
7688 |
msgstr ""
|
7689 |
|
7690 |
+
#: languages/vue.php:1971
|
7691 |
msgid "Loading Themes"
|
7692 |
msgstr ""
|
7693 |
|
7694 |
#. Translators: placeholders make text small.
|
7695 |
+
#: languages/vue.php:1975
|
7696 |
msgid "Default Styles %1$s- As seen above.%2$s"
|
7697 |
msgstr ""
|
7698 |
|
7699 |
#. Translators: placeholders make text small.
|
7700 |
+
#: languages/vue.php:1979
|
7701 |
msgid "No Styles %1$s- Use your own CSS.%2$s"
|
7702 |
msgstr ""
|
7703 |
|
7704 |
#. Translators: placeholders make text small.
|
7705 |
+
#: languages/vue.php:1983
|
7706 |
msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
|
7707 |
msgstr ""
|
7708 |
|
7709 |
#. Translators: placeholders make text small.
|
7710 |
+
#: languages/vue.php:1987
|
7711 |
msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
|
7712 |
msgstr ""
|
7713 |
|
7714 |
#. Translators: placeholders make text small.
|
7715 |
+
#: languages/vue.php:1991
|
7716 |
msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
|
7717 |
msgstr ""
|
7718 |
|
7719 |
+
#: languages/vue.php:1994
|
7720 |
msgid "Placement"
|
7721 |
msgstr ""
|
7722 |
|
7723 |
+
#: languages/vue.php:1997
|
7724 |
msgid "Choose how you'd like to place the widget."
|
7725 |
msgstr ""
|
7726 |
|
7727 |
+
#: languages/vue.php:2000
|
7728 |
msgid "Insert After"
|
7729 |
msgstr ""
|
7730 |
|
7731 |
+
#: languages/vue.php:2003
|
7732 |
msgid "Choose where in the post body the widget will be placed."
|
7733 |
msgstr ""
|
7734 |
|
7735 |
+
#: languages/vue.php:2006
|
7736 |
msgid "Customize Design"
|
7737 |
msgstr ""
|
7738 |
|
7739 |
+
#: languages/vue.php:2009
|
7740 |
msgid "words"
|
7741 |
msgstr ""
|
7742 |
|
7743 |
+
#: languages/vue.php:2012
|
7744 |
msgid "Please select at least one post to display."
|
7745 |
msgstr ""
|
7746 |
|
7747 |
#. Translators: placeholders make text small.
|
7748 |
+
#: languages/vue.php:2016
|
7749 |
msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
|
7750 |
msgstr ""
|
7751 |
|
7752 |
#. Translators: placeholders make text small.
|
7753 |
+
#: languages/vue.php:2020
|
7754 |
msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
|
7755 |
msgstr ""
|
7756 |
|
7757 |
+
#: languages/vue.php:2023
|
7758 |
msgid "Caching"
|
7759 |
msgstr ""
|
7760 |
|
7761 |
+
#: languages/vue.php:2026
|
7762 |
msgid "Enable Data Caching"
|
7763 |
msgstr ""
|
7764 |
|
7765 |
+
#: languages/vue.php:2029
|
7766 |
msgid "Refresh Cache Every"
|
7767 |
msgstr ""
|
7768 |
|
7769 |
+
#: languages/vue.php:2032
|
7770 |
msgid "Choose how often to refresh the cache."
|
7771 |
msgstr ""
|
7772 |
|
7773 |
+
#: languages/vue.php:2035
|
7774 |
msgid "Enable Ajaxify"
|
7775 |
msgstr ""
|
7776 |
|
7777 |
+
#: languages/vue.php:2038
|
7778 |
msgid "Ajaxify Widget"
|
7779 |
msgstr ""
|
7780 |
|
7781 |
+
#: languages/vue.php:2041
|
7782 |
msgid "Use to bypass page caching."
|
7783 |
msgstr ""
|
7784 |
|
7785 |
+
#: languages/vue.php:2044
|
7786 |
msgid "Empty Cache"
|
7787 |
msgstr ""
|
7788 |
|
7789 |
+
#: languages/vue.php:2047
|
7790 |
msgid "Click to manually wipe the cache right now."
|
7791 |
msgstr ""
|
7792 |
|
7793 |
+
#: languages/vue.php:2050
|
7794 |
msgid "Popular posts cache emptied"
|
7795 |
msgstr ""
|
7796 |
|
7797 |
+
#: languages/vue.php:2053
|
7798 |
msgid "Error emptying the popular posts cache. Please try again."
|
7799 |
msgstr ""
|
7800 |
|
7801 |
+
#: languages/vue.php:2056
|
7802 |
msgid "Last 30 Days Analytics for "
|
7803 |
msgstr ""
|
7804 |
|
7805 |
+
#: languages/vue.php:2059
|
7806 |
msgid "Your Website"
|
7807 |
msgstr ""
|
7808 |
|
7809 |
+
#: languages/vue.php:2062
|
7810 |
msgid "Avg. Duration"
|
7811 |
msgstr ""
|
7812 |
|
7813 |
+
#: languages/vue.php:2065
|
7814 |
msgid "More data is available"
|
7815 |
msgstr ""
|
7816 |
|
7817 |
+
#: languages/vue.php:2068
|
7818 |
msgid "Want to see page-specific stats?"
|
7819 |
msgstr ""
|
7820 |
|
7821 |
+
#: languages/vue.php:2071
|
7822 |
msgid "You appear to be offline. WPForms not installed."
|
7823 |
msgstr ""
|
7824 |
|
7825 |
#. Translators: Error status and error text.
|
7826 |
+
#: languages/vue.php:2075
|
7827 |
msgid "Can't activate addon. Error: %1$s, %2$s"
|
7828 |
msgstr ""
|
7829 |
|
7830 |
+
#: languages/vue.php:2078
|
7831 |
msgid "You appear to be offline. Addon not activated."
|
7832 |
msgstr ""
|
7833 |
|
7834 |
#. Translators: Error status and error text.
|
7835 |
+
#: languages/vue.php:2082
|
7836 |
msgid "Can't deactivate addon. Error: %1$s, %2$s"
|
7837 |
msgstr ""
|
7838 |
|
7839 |
+
#: languages/vue.php:2085
|
7840 |
msgid "You appear to be offline. Addon not deactivated."
|
7841 |
msgstr ""
|
7842 |
|
7843 |
#. Translators: Error status and error text.
|
7844 |
+
#: languages/vue.php:2089
|
7845 |
msgid "Can't install plugin. Error: %1$s, %2$s"
|
7846 |
msgstr ""
|
7847 |
|
7848 |
+
#: languages/vue.php:2092
|
7849 |
msgid "You appear to be offline. Plugin not installed."
|
7850 |
msgstr ""
|
7851 |
|
7852 |
#. Translators: Error status and error text.
|
7853 |
+
#: languages/vue.php:2096
|
7854 |
msgid "Can't install addon. Error: %1$s, %2$s"
|
7855 |
msgstr ""
|
7856 |
|
7857 |
+
#: languages/vue.php:2099
|
7858 |
msgid "You appear to be offline. Addon not installed."
|
7859 |
msgstr ""
|
7860 |
|
7861 |
#. Translators: Error status and error text.
|
7862 |
+
#: languages/vue.php:2103
|
7863 |
msgid "Can't install WPForms. Error: %1$s, %2$s"
|
7864 |
msgstr ""
|
7865 |
|
7866 |
+
#: languages/vue.php:2106
|
7867 |
msgid "Network Active"
|
7868 |
msgstr ""
|
7869 |
|
7870 |
+
#: languages/vue.php:2109
|
7871 |
msgid "Active"
|
7872 |
msgstr ""
|
7873 |
|
7874 |
+
#: languages/vue.php:2112
|
7875 |
msgid "Inactive"
|
7876 |
msgstr ""
|
7877 |
|
7878 |
#. Translators: Placeholder for the addon status (installed, active, etc).
|
7879 |
+
#: languages/vue.php:2116
|
7880 |
msgid "Status: %s"
|
7881 |
msgstr ""
|
7882 |
|
7883 |
+
#: languages/vue.php:2119
|
7884 |
msgid "Not Installed"
|
7885 |
msgstr ""
|
7886 |
|
7887 |
#. Translators: Makes text bold and adds smiley.
|
7888 |
+
#: languages/vue.php:2123
|
7889 |
msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
|
7890 |
msgstr ""
|
7891 |
|
7892 |
#. Translators: Makes text green.
|
7893 |
+
#: languages/vue.php:2127
|
7894 |
msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
|
7895 |
msgstr ""
|
7896 |
|
7897 |
+
#: languages/vue.php:2130
|
7898 |
msgid "Unlock All Features and Upgrade to Pro"
|
7899 |
msgstr ""
|
7900 |
|
7901 |
#. Translators: Make text green and add smiley face.
|
7902 |
+
#: languages/vue.php:2134
|
7903 |
msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
|
7904 |
msgstr ""
|
7905 |
|
7906 |
#. Translators: Make text green.
|
7907 |
+
#: languages/vue.php:2138
|
7908 |
msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
|
7909 |
msgstr ""
|
7910 |
|
7911 |
+
#: languages/vue.php:2141
|
7912 |
msgid "Unlock PRO Features Now"
|
7913 |
msgstr ""
|
7914 |
|
7915 |
+
#: languages/vue.php:2144
|
7916 |
msgid "Paste your license key here"
|
7917 |
msgstr ""
|
7918 |
|
7919 |
+
#: languages/vue.php:2147
|
7920 |
msgid "Verify"
|
7921 |
msgstr ""
|
7922 |
|
7923 |
#. Translators: Add link to retrieve license from account area.
|
7924 |
+
#: languages/vue.php:2151
|
7925 |
msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
|
7926 |
msgstr ""
|
7927 |
|
7928 |
+
#: languages/vue.php:2154
|
7929 |
+
#: languages/vue.php:3628
|
7930 |
msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
|
7931 |
msgstr ""
|
7932 |
|
7933 |
+
#: languages/vue.php:2157
|
7934 |
msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
|
7935 |
msgstr ""
|
7936 |
|
7937 |
+
#: languages/vue.php:2160
|
7938 |
msgid "Automatically migrate all of your SEO settings with just 1 click!"
|
7939 |
msgstr ""
|
7940 |
|
7941 |
+
#: languages/vue.php:2163
|
7942 |
msgid "1,938"
|
7943 |
msgstr ""
|
7944 |
|
7945 |
+
#: languages/vue.php:2166
|
7946 |
msgid "2+ Million Active Installs"
|
7947 |
msgstr ""
|
7948 |
|
7949 |
+
#: languages/vue.php:2169
|
7950 |
msgid "AIOSEO is the DIY Solution for Managing your SEO"
|
7951 |
msgstr ""
|
7952 |
|
7953 |
+
#: languages/vue.php:2172
|
7954 |
msgid "Set up the proper SEO foundations in less than 10 minutes."
|
7955 |
msgstr ""
|
7956 |
|
7957 |
+
#: languages/vue.php:2175
|
7958 |
msgid "SEO Audit Checklist"
|
7959 |
msgstr ""
|
7960 |
|
7961 |
+
#: languages/vue.php:2178
|
7962 |
msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
|
7963 |
msgstr ""
|
7964 |
|
7965 |
+
#: languages/vue.php:2181
|
7966 |
msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
|
7967 |
msgstr ""
|
7968 |
|
7969 |
+
#: languages/vue.php:2184
|
7970 |
msgid "TruSEO Score gives you a more in-depth analysis into your optimization efforts than just a pass or fail. Our actionable checklist helps you to unlock maximum traffic with each page."
|
7971 |
msgstr ""
|
7972 |
|
7973 |
+
#: languages/vue.php:2187
|
7974 |
msgid "Get AIOSEO for WordPress"
|
7975 |
msgstr ""
|
7976 |
|
7977 |
+
#: languages/vue.php:2190
|
7978 |
msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
|
7979 |
msgstr ""
|
7980 |
|
7981 |
+
#: languages/vue.php:2193
|
7982 |
msgid "Try it out today, for free."
|
7983 |
msgstr ""
|
7984 |
|
7985 |
+
#: languages/vue.php:2196
|
7986 |
msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
|
7987 |
msgstr ""
|
7988 |
|
7989 |
+
#: languages/vue.php:2199
|
7990 |
msgid "Activate and Install the Plugin with just one click!"
|
7991 |
msgstr ""
|
7992 |
|
7993 |
+
#: languages/vue.php:2202
|
7994 |
msgid "Installing AIOSEO..."
|
7995 |
msgstr ""
|
7996 |
|
7997 |
+
#: languages/vue.php:2205
|
7998 |
msgid "Congrats! All-in-One SEO Installed."
|
7999 |
msgstr ""
|
8000 |
|
8001 |
+
#: languages/vue.php:2208
|
8002 |
msgid "Switch to AIOSEO"
|
8003 |
msgstr ""
|
8004 |
|
8005 |
+
#: languages/vue.php:2211
|
8006 |
msgid "Installation Failed. Please refresh and try again."
|
8007 |
msgstr ""
|
8008 |
|
8009 |
+
#: languages/vue.php:2214
|
8010 |
msgid "Activating AIOSEO..."
|
8011 |
msgstr ""
|
8012 |
|
8013 |
+
#: languages/vue.php:2217
|
8014 |
msgid "Activate AIOSEO"
|
8015 |
msgstr ""
|
8016 |
|
8017 |
+
#: languages/vue.php:2220
|
8018 |
msgid "Activation Failed. Please refresh and try again."
|
8019 |
msgstr ""
|
8020 |
|
8021 |
+
#: languages/vue.php:2223
|
8022 |
msgid "Unlock Form Tracking"
|
8023 |
msgstr ""
|
8024 |
|
8025 |
+
#: languages/vue.php:2226
|
8026 |
msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
|
8027 |
msgstr ""
|
8028 |
|
8029 |
+
#: languages/vue.php:2229
|
8030 |
msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
|
8031 |
msgstr ""
|
8032 |
|
8033 |
+
#: languages/vue.php:2232
|
8034 |
msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
|
8035 |
msgstr ""
|
8036 |
|
8037 |
+
#: languages/vue.php:2235
|
8038 |
msgid "Show"
|
8039 |
msgstr ""
|
8040 |
|
8041 |
+
#: languages/vue.php:2238
|
8042 |
msgid "File imported"
|
8043 |
msgstr ""
|
8044 |
|
8045 |
+
#: languages/vue.php:2241
|
8046 |
msgid "Settings successfully updated!"
|
8047 |
msgstr ""
|
8048 |
|
8049 |
+
#: languages/vue.php:2244
|
8050 |
msgid "Error importing settings"
|
8051 |
msgstr ""
|
8052 |
|
8053 |
+
#: languages/vue.php:2247
|
8054 |
msgid "Please choose a .json file generated by a ExactMetrics settings export."
|
8055 |
msgstr ""
|
8056 |
|
8057 |
+
#: languages/vue.php:2250
|
8058 |
msgid "Import/Export"
|
8059 |
msgstr ""
|
8060 |
|
8061 |
+
#: languages/vue.php:2253
|
8062 |
msgid "Import"
|
8063 |
msgstr ""
|
8064 |
|
8065 |
+
#: languages/vue.php:2256
|
8066 |
msgid "Import settings from another ExactMetrics website."
|
8067 |
msgstr ""
|
8068 |
|
8069 |
+
#: languages/vue.php:2259
|
8070 |
msgid "Export"
|
8071 |
msgstr ""
|
8072 |
|
8073 |
+
#: languages/vue.php:2262
|
8074 |
msgid "Export settings to import into another ExactMetrics install."
|
8075 |
msgstr ""
|
8076 |
|
8077 |
+
#: languages/vue.php:2265
|
8078 |
msgid "Import Settings"
|
8079 |
msgstr ""
|
8080 |
|
8081 |
+
#: languages/vue.php:2268
|
8082 |
msgid "Export Settings"
|
8083 |
msgstr ""
|
8084 |
|
8085 |
+
#: languages/vue.php:2271
|
8086 |
msgid "Please choose a file to import"
|
8087 |
msgstr ""
|
8088 |
|
8089 |
+
#: languages/vue.php:2274
|
8090 |
msgid "Click Choose file below to select the settings export file from another site."
|
8091 |
msgstr ""
|
8092 |
|
8093 |
+
#: languages/vue.php:2277
|
8094 |
msgid "Use the button below to export a file with your ExactMetrics settings."
|
8095 |
msgstr ""
|
8096 |
|
8097 |
+
#: languages/vue.php:2280
|
8098 |
msgid "Choose file"
|
8099 |
msgstr ""
|
8100 |
|
8101 |
+
#: languages/vue.php:2283
|
8102 |
msgid "No file chosen"
|
8103 |
msgstr ""
|
8104 |
|
8105 |
+
#: languages/vue.php:2286
|
8106 |
msgid "Uploading file..."
|
8107 |
msgstr ""
|
8108 |
|
8109 |
+
#: languages/vue.php:2289
|
8110 |
msgid "Custom code"
|
8111 |
msgstr ""
|
8112 |
|
8113 |
#. Translators: Adds a link to the Google reference.
|
8114 |
+
#: languages/vue.php:2293
|
8115 |
msgid "Not for the average user: this allows you to add a line of code, to be added before the %1$spageview is sent%2$s."
|
8116 |
msgstr ""
|
8117 |
|
8118 |
+
#: languages/vue.php:2299
|
8119 |
msgid "Automatic Updates"
|
8120 |
msgstr ""
|
8121 |
|
8122 |
+
#: languages/vue.php:2302
|
8123 |
msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
|
8124 |
msgstr ""
|
8125 |
|
8126 |
+
#: languages/vue.php:2305
|
8127 |
msgid "Hide Admin Bar Reports"
|
8128 |
msgstr ""
|
8129 |
|
8130 |
#. Translators: placeholders make text small.
|
8131 |
+
#: languages/vue.php:2309
|
8132 |
msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
|
8133 |
msgstr ""
|
8134 |
|
8135 |
#. Translators: placeholders make text small.
|
8136 |
+
#: languages/vue.php:2313
|
8137 |
msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
|
8138 |
msgstr ""
|
8139 |
|
8140 |
#. Translators: placeholders make text small.
|
8141 |
+
#: languages/vue.php:2317
|
8142 |
msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
|
8143 |
msgstr ""
|
8144 |
|
8145 |
#. Translators: placeholders make text small.
|
8146 |
+
#: languages/vue.php:2321
|
8147 |
msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
|
8148 |
msgstr ""
|
8149 |
|
8150 |
#. Translators: placeholders make text small.
|
8151 |
+
#: languages/vue.php:2325
|
8152 |
msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
|
8153 |
msgstr ""
|
8154 |
|
8155 |
#. Translators: placeholders make text small.
|
8156 |
+
#: languages/vue.php:2329
|
8157 |
msgid "None %1$s- Manually update everything.%2$s"
|
8158 |
msgstr ""
|
8159 |
|
8160 |
#. Translators: Adds a link to the general settings tab.
|
8161 |
+
#: languages/vue.php:2333
|
8162 |
msgid "It looks like you added a Google Analytics tracking code in the custom code area, this can potentially prevent proper tracking. If you want to use a manual UA please use the setting in the %1$sGeneral%2$s tab."
|
8163 |
msgstr ""
|
8164 |
|
8165 |
+
#: languages/vue.php:2336
|
8166 |
msgid "Permissions"
|
8167 |
msgstr ""
|
8168 |
|
8169 |
+
#: languages/vue.php:2339
|
8170 |
msgid "Export PDF Reports"
|
8171 |
msgstr ""
|
8172 |
|
8173 |
+
#: languages/vue.php:2342
|
8174 |
msgid "Allow These User Roles to See Reports"
|
8175 |
msgstr ""
|
8176 |
|
8177 |
+
#: languages/vue.php:2345
|
8178 |
msgid "Users that have at least one of these roles will be able to view the reports."
|
8179 |
msgstr ""
|
8180 |
|
8181 |
+
#: languages/vue.php:2348
|
8182 |
msgid "Allow These User Roles to Save Settings"
|
8183 |
msgstr ""
|
8184 |
|
8185 |
+
#: languages/vue.php:2351
|
8186 |
msgid "Users that have at least one of these roles will be able to view and save the settings panel."
|
8187 |
msgstr ""
|
8188 |
|
8189 |
+
#: languages/vue.php:2354
|
8190 |
msgid "Users that have at least one of these roles will be able to view and save the settings panel, along with any user with the manage_options capability."
|
8191 |
msgstr ""
|
8192 |
|
8193 |
+
#: languages/vue.php:2357
|
8194 |
msgid "Exclude These User Roles From Tracking"
|
8195 |
msgstr ""
|
8196 |
|
8197 |
+
#: languages/vue.php:2360
|
8198 |
msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
|
8199 |
msgstr ""
|
8200 |
|
8201 |
+
#: languages/vue.php:2363
|
8202 |
msgid "Make your ExactMetrics campaign links prettier with Pretty Links!"
|
8203 |
msgstr ""
|
8204 |
|
8205 |
+
#: languages/vue.php:2366
|
8206 |
msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
|
8207 |
msgstr ""
|
8208 |
|
8209 |
+
#: languages/vue.php:2369
|
8210 |
msgid "Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!"
|
8211 |
msgstr ""
|
8212 |
|
8213 |
+
#: languages/vue.php:2372
|
8214 |
msgid "Over 200,000 websites use Pretty Links!"
|
8215 |
msgstr ""
|
8216 |
|
8217 |
+
#: languages/vue.php:2375
|
8218 |
msgid "Install Pretty Links"
|
8219 |
msgstr ""
|
8220 |
|
8221 |
+
#: languages/vue.php:2378
|
8222 |
msgid "Pretty Links Installed & Activated"
|
8223 |
msgstr ""
|
8224 |
|
8225 |
+
#: languages/vue.php:2381
|
8226 |
msgid "Download Pretty Links"
|
8227 |
msgstr ""
|
8228 |
|
8229 |
+
#: languages/vue.php:2384
|
8230 |
msgid "Install Pretty Links from the WordPress.org plugin repository."
|
8231 |
msgstr ""
|
8232 |
|
8233 |
+
#: languages/vue.php:2387
|
8234 |
msgid "Activate Pretty Links"
|
8235 |
msgstr ""
|
8236 |
|
8237 |
+
#: languages/vue.php:2390
|
8238 |
msgid "Activating Pretty Links..."
|
8239 |
msgstr ""
|
8240 |
|
8241 |
+
#: languages/vue.php:2393
|
8242 |
msgid "Create New Pretty Link"
|
8243 |
msgstr ""
|
8244 |
|
8245 |
+
#: languages/vue.php:2396
|
8246 |
msgid "Create a New Pretty Link"
|
8247 |
msgstr ""
|
8248 |
|
8249 |
+
#: languages/vue.php:2399
|
8250 |
msgid "Grab your campaign link and paste it into the Target URL field."
|
8251 |
msgstr ""
|
8252 |
|
8253 |
+
#: languages/vue.php:2402
|
8254 |
msgid "Custom Campaign Parameters"
|
8255 |
msgstr ""
|
8256 |
|
8257 |
+
#: languages/vue.php:2405
|
8258 |
msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
|
8259 |
msgstr ""
|
8260 |
|
8261 |
+
#: languages/vue.php:2408
|
8262 |
msgid "A custom campaign is any ad campaign not using the AdWords auto-tagging feature. When users click one of the custom links, the unique parameters are sent to your Analytics account, so you can identify the URLs that are the most effective in attracting users to your content."
|
8263 |
msgstr ""
|
8264 |
|
8265 |
#. Translators: Marks the field as required.
|
8266 |
+
#: languages/vue.php:2412
|
8267 |
msgid "Website URL %s"
|
8268 |
msgstr ""
|
8269 |
|
8270 |
#. Translators: Display the current website url in italic.
|
8271 |
+
#: languages/vue.php:2416
|
8272 |
msgid "The full website URL (e.g. %1$s %2$s%3$s)"
|
8273 |
msgstr ""
|
8274 |
|
8275 |
#. Translators: Marks the field as required.
|
8276 |
+
#: languages/vue.php:2420
|
8277 |
msgid "Campaign Source %s"
|
8278 |
msgstr ""
|
8279 |
|
8280 |
#. Translators: Make the text italic.
|
8281 |
+
#: languages/vue.php:2424
|
8282 |
msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
|
8283 |
msgstr ""
|
8284 |
|
8285 |
#. Translators: Make the text italic.
|
8286 |
+
#: languages/vue.php:2428
|
8287 |
msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
|
8288 |
msgstr ""
|
8289 |
|
8290 |
#. Translators: Make the text italic.
|
8291 |
+
#: languages/vue.php:2432
|
8292 |
msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
|
8293 |
msgstr ""
|
8294 |
|
8295 |
+
#: languages/vue.php:2435
|
8296 |
msgid "Enter the paid keyword"
|
8297 |
msgstr ""
|
8298 |
|
8299 |
+
#: languages/vue.php:2438
|
8300 |
msgid "Enter something to differentiate ads"
|
8301 |
msgstr ""
|
8302 |
|
8303 |
+
#: languages/vue.php:2441
|
8304 |
msgid "Use Fragment"
|
8305 |
msgstr ""
|
8306 |
|
8307 |
#. Translators: Make the text bold.
|
8308 |
+
#: languages/vue.php:2445
|
8309 |
msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
|
8310 |
msgstr ""
|
8311 |
|
8312 |
+
#: languages/vue.php:2448
|
8313 |
msgid "URL to use"
|
8314 |
msgstr ""
|
8315 |
|
8316 |
+
#: languages/vue.php:2451
|
8317 |
msgid "(Updates automatically)"
|
8318 |
msgstr ""
|
8319 |
|
8320 |
+
#: languages/vue.php:2454
|
8321 |
msgid "Copy to Clipboard"
|
8322 |
msgstr ""
|
8323 |
|
8324 |
+
#: languages/vue.php:2457
|
8325 |
msgid "Copy to Pretty Links"
|
8326 |
msgstr ""
|
8327 |
|
8328 |
+
#: languages/vue.php:2460
|
8329 |
msgid "Make your campaign links prettier!"
|
8330 |
msgstr ""
|
8331 |
|
8332 |
+
#: languages/vue.php:2463
|
8333 |
msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
|
8334 |
msgstr ""
|
8335 |
|
8336 |
+
#: languages/vue.php:2466
|
8337 |
msgid "More Information & Examples"
|
8338 |
msgstr ""
|
8339 |
|
8340 |
+
#: languages/vue.php:2469
|
8341 |
msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
|
8342 |
msgstr ""
|
8343 |
|
8344 |
+
#: languages/vue.php:2472
|
8345 |
msgid "Campaign Source"
|
8346 |
msgstr ""
|
8347 |
|
8348 |
+
#: languages/vue.php:2475
|
8349 |
msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
|
8350 |
msgstr ""
|
8351 |
|
8352 |
+
#: languages/vue.php:2478
|
8353 |
msgid "Campaign Medium"
|
8354 |
msgstr ""
|
8355 |
|
8356 |
+
#: languages/vue.php:2481
|
8357 |
msgid "Use utm_medium to identify a medium such as email or cost-per-click."
|
8358 |
msgstr ""
|
8359 |
|
8360 |
+
#: languages/vue.php:2484
|
8361 |
msgid "Campaign Name"
|
8362 |
msgstr ""
|
8363 |
|
8364 |
+
#: languages/vue.php:2487
|
8365 |
msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
|
8366 |
msgstr ""
|
8367 |
|
8368 |
+
#: languages/vue.php:2490
|
8369 |
msgid "Campaign Term"
|
8370 |
msgstr ""
|
8371 |
|
8372 |
+
#: languages/vue.php:2493
|
8373 |
msgid "Used for paid search. Use utm_term to note the keywords for this ad."
|
8374 |
msgstr ""
|
8375 |
|
8376 |
+
#: languages/vue.php:2496
|
8377 |
msgid "Campaign Content"
|
8378 |
msgstr ""
|
8379 |
|
8380 |
+
#: languages/vue.php:2499
|
8381 |
msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
|
8382 |
msgstr ""
|
8383 |
|
8384 |
#. Translators: Example.
|
8385 |
+
#: languages/vue.php:2503
|
8386 |
msgid "Example: %s"
|
8387 |
msgstr ""
|
8388 |
|
8389 |
#. Translators: Examples.
|
8390 |
+
#: languages/vue.php:2507
|
8391 |
msgid "Examples: %s"
|
8392 |
msgstr ""
|
8393 |
|
8394 |
+
#: languages/vue.php:2510
|
8395 |
msgid "About Campaigns"
|
8396 |
msgstr ""
|
8397 |
|
8398 |
+
#: languages/vue.php:2513
|
8399 |
msgid "About Custom Campaigns"
|
8400 |
msgstr ""
|
8401 |
|
8402 |
+
#: languages/vue.php:2516
|
8403 |
msgid "Best Practices for Creating Custom Campaigns"
|
8404 |
msgstr ""
|
8405 |
|
8406 |
+
#: languages/vue.php:2519
|
8407 |
msgid "About the Referral Traffic Report"
|
8408 |
msgstr ""
|
8409 |
|
8410 |
+
#: languages/vue.php:2522
|
8411 |
msgid "About Traffic Source Dimensions"
|
8412 |
msgstr ""
|
8413 |
|
8414 |
+
#: languages/vue.php:2525
|
8415 |
msgid "AdWords Auto-Tagging"
|
8416 |
msgstr ""
|
8417 |
|
8418 |
+
#: languages/vue.php:2528
|
8419 |
msgid "Additional Information"
|
8420 |
msgstr ""
|
8421 |
|
8422 |
+
#: languages/vue.php:2531
|
8423 |
msgid "Affiliate Links"
|
8424 |
msgstr ""
|
8425 |
|
8426 |
#. Translators: Add links to documentation.
|
8427 |
+
#: languages/vue.php:2535
|
8428 |
msgid "This allows you to track custom affiliate links. A path of /go/ would match urls that start with that. The label is appended onto the end of the string \"outbound-link-\", to provide unique labels for these links in Google Analytics. Complete documentation on affiliate links is available %1$shere%2$s."
|
8429 |
msgstr ""
|
8430 |
|
8431 |
+
#: languages/vue.php:2538
|
8432 |
msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
|
8433 |
msgstr ""
|
8434 |
|
8435 |
+
#: languages/vue.php:2541
|
8436 |
msgid "The ExactMetrics Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results."
|
8437 |
msgstr ""
|
8438 |
|
8439 |
+
#: languages/vue.php:2544
|
8440 |
msgid "Disable the Headline Analyzer"
|
8441 |
msgstr ""
|
8442 |
|
8443 |
#. Translators: Add line break.
|
8444 |
+
#: languages/vue.php:2548
|
8445 |
msgid "See All Your Important Store%s Metrics in One Place"
|
8446 |
msgstr ""
|
8447 |
|
8448 |
+
#: languages/vue.php:2551
|
8449 |
msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
|
8450 |
msgstr ""
|
8451 |
|
8452 |
+
#: languages/vue.php:2554
|
8453 |
msgid "See Your Conversion Rate to Improve Funnel"
|
8454 |
msgstr ""
|
8455 |
|
8456 |
+
#: languages/vue.php:2557
|
8457 |
msgid "See The Number of Transactions and Make Data-Driven Decisions"
|
8458 |
msgstr ""
|
8459 |
|
8460 |
+
#: languages/vue.php:2560
|
8461 |
msgid "See The Total Revenue to Track Growth"
|
8462 |
msgstr ""
|
8463 |
|
8464 |
+
#: languages/vue.php:2563
|
8465 |
msgid "See Average Order Value to Find Offer Opportunities"
|
8466 |
msgstr ""
|
8467 |
|
8468 |
+
#: languages/vue.php:2566
|
8469 |
msgid "See Your Top Products to See Individual Performance"
|
8470 |
msgstr ""
|
8471 |
|
8472 |
+
#: languages/vue.php:2569
|
8473 |
msgid "See your Top Conversion Sources and Focus on what's Working"
|
8474 |
msgstr ""
|
8475 |
|
8476 |
+
#: languages/vue.php:2572
|
8477 |
msgid "See The Time it Takes for Customers to Purchase"
|
8478 |
msgstr ""
|
8479 |
|
8480 |
+
#: languages/vue.php:2575
|
8481 |
msgid "See How Many Sessions are Needed for a Purchase"
|
8482 |
msgstr ""
|
8483 |
|
8484 |
+
#: languages/vue.php:2578
|
8485 |
msgid "Automatically Track Affiliate Sales"
|
8486 |
msgstr ""
|
8487 |
|
8488 |
+
#: languages/vue.php:2581
|
8489 |
msgid "The ExactMetrics eCommerce addon works with EasyAffiliate, so that you can instantly track all affiliate referrals and sales inside WordPress and Google Analytics, with no coding needed."
|
8490 |
msgstr ""
|
8491 |
|
8492 |
+
#: languages/vue.php:2584
|
8493 |
msgid "Works with WooCommerce, MemberPress, and EasyDigitalDownloads."
|
8494 |
msgstr ""
|
8495 |
|
8496 |
+
#: languages/vue.php:2587
|
8497 |
msgid "Cross Domain Tracking"
|
8498 |
msgstr ""
|
8499 |
|
8500 |
#. Translators: Add links to documentation.
|
8501 |
+
#: languages/vue.php:2591
|
8502 |
msgid "Cross domain tracking makes it possible for Analytics to see sessions on two related sites as a single session. More info on specific setup steps can be found in our %1$sknowledge base%2$s."
|
8503 |
msgstr ""
|
8504 |
|
8505 |
+
#: languages/vue.php:2594
|
8506 |
msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
|
8507 |
msgstr ""
|
8508 |
|
8509 |
+
#: languages/vue.php:2597
|
8510 |
msgid "Anonymize IP Addresses"
|
8511 |
msgstr ""
|
8512 |
|
8513 |
+
#: languages/vue.php:2600
|
8514 |
msgid "Link Attribution"
|
8515 |
msgstr ""
|
8516 |
|
8517 |
+
#: languages/vue.php:2603
|
8518 |
msgid "Enable Enhanced Link Attribution"
|
8519 |
msgstr ""
|
8520 |
|
8521 |
+
#: languages/vue.php:2606
|
8522 |
msgid "Enable Anchor Tracking"
|
8523 |
msgstr ""
|
8524 |
|
8525 |
+
#: languages/vue.php:2609
|
8526 |
msgid "Enable allowAnchor"
|
8527 |
msgstr ""
|
8528 |
|
8529 |
+
#: languages/vue.php:2612
|
8530 |
msgid "Enable allowLinker"
|
8531 |
msgstr ""
|
8532 |
|
8533 |
+
#: languages/vue.php:2615
|
8534 |
msgid "Enable Tag Links in RSS"
|
8535 |
msgstr ""
|
8536 |
|
8537 |
+
#: languages/vue.php:2618
|
8538 |
msgid "File Downloads"
|
8539 |
msgstr ""
|
8540 |
|
8541 |
+
#: languages/vue.php:2621
|
8542 |
msgid "Extensions of Files to Track as Downloads"
|
8543 |
msgstr ""
|
8544 |
|
8545 |
+
#: languages/vue.php:2624
|
8546 |
msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
|
8547 |
msgstr ""
|
8548 |
|
8549 |
#. Translators: Add links to documentation.
|
8550 |
+
#: languages/vue.php:2628
|
8551 |
msgid "Enable this setting to add the Demographics and Remarketing features to your Google Analytics tracking code. Make sure to enable Demographics and Remarketing in your Google Analytics account. We have a guide for how to do that in our %1$sknowledge base%2$s. For more information about Remarketing, we refer you to %3$sGoogle's documentation%4$s. Note that usage of this function is affected by privacy and cookie laws around the world. Be sure to follow the laws that affect your target audience."
|
8552 |
msgstr ""
|
8553 |
|
8554 |
#. Translators: Add links to documentation.
|
8555 |
+
#: languages/vue.php:2632
|
8556 |
msgid "This adds %1$sanonymizeIp%2$s, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage."
|
8557 |
msgstr ""
|
8558 |
|
8559 |
#. Translators: Add links to documentation.
|
8560 |
+
#: languages/vue.php:2636
|
8561 |
msgid "Adds the Enhanced Link Attribution (retain link) code to improve the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs."
|
8562 |
msgstr ""
|
8563 |
|
8564 |
+
#: languages/vue.php:2639
|
8565 |
msgid "Many WordPress \"1-page\" style themes rely on anchor tags for navigation to show virtual pages. The problem is that to Google Analytics, these are all just a single page, and it makes it hard to get meaningful statistics about pages viewed. This feature allows proper tracking in those themes."
|
8566 |
msgstr ""
|
8567 |
|
8568 |
#. Translators: Add links to documentation.
|
8569 |
+
#: languages/vue.php:2643
|
8570 |
msgid "This adds %1$sallowAnchor%2$s to the create command of the pageview hit tracking code, and makes RSS link tagging use a # as well."
|
8571 |
msgstr ""
|
8572 |
|
8573 |
#. Translators: Add links to documentation.
|
8574 |
+
#: languages/vue.php:2647
|
8575 |
msgid "Enabling %1$scross-domain tracking (additional setup required)%2$s allows you to track users across multiple properties you own (such as example-1.com and example-2.com as a single session. It also allows you fix an issue so that when a user has to go to an off-site hosted payment gateway to finish a purchase it doesn't count it as referral traffic from that gateway but maintains the visit as part of the same session.) It is required that the other site includes a Google Analytics tracker with the same UA Code."
|
8576 |
msgstr ""
|
8577 |
|
8578 |
#. Translators: Add links to documentation.
|
8579 |
+
#: languages/vue.php:2651
|
8580 |
msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check this %1$shelp page%2$s for info on how to enable this feature in FeedBurner."
|
8581 |
msgstr ""
|
8582 |
|
8583 |
+
#: languages/vue.php:2654
|
8584 |
msgid "Add domain"
|
8585 |
msgstr ""
|
8586 |
|
8587 |
#. Translators: Domain name example.
|
8588 |
+
#: languages/vue.php:2658
|
8589 |
msgid "Domain (example: %s)"
|
8590 |
msgstr ""
|
8591 |
|
8592 |
#. Translators: Current domain name that should not be used.
|
8593 |
+
#: languages/vue.php:2662
|
8594 |
msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
|
8595 |
msgstr ""
|
8596 |
|
8597 |
#. Translators: Adds link to the account area to retreive license key.
|
8598 |
+
#: languages/vue.php:2666
|
8599 |
msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
|
8600 |
msgstr ""
|
8601 |
|
8602 |
+
#: languages/vue.php:2669
|
8603 |
msgid "Connect ExactMetrics to Start Tracking Your Data"
|
8604 |
msgstr ""
|
8605 |
|
8606 |
+
#: languages/vue.php:2672
|
8607 |
msgid "Complete Upgrade"
|
8608 |
msgstr ""
|
8609 |
|
8610 |
+
#: languages/vue.php:2675
|
8611 |
msgid "Upgrade to Pro Version!"
|
8612 |
msgstr ""
|
8613 |
|
8614 |
#. Translators: Make text bold.
|
8615 |
+
#: languages/vue.php:2679
|
8616 |
msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
|
8617 |
msgstr ""
|
8618 |
|
8619 |
+
#: languages/vue.php:2682
|
8620 |
msgid "Install All-in-One SEO"
|
8621 |
msgstr ""
|
8622 |
|
8623 |
+
#: languages/vue.php:2685
|
8624 |
msgid "Improve Your Website Search Rankings With All-In-One SEO"
|
8625 |
msgstr ""
|
8626 |
|
8627 |
+
#: languages/vue.php:2688
|
8628 |
msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
|
8629 |
msgstr ""
|
8630 |
|
8631 |
+
#: languages/vue.php:2691
|
8632 |
msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
|
8633 |
msgstr ""
|
8634 |
|
8635 |
+
#: languages/vue.php:2694
|
8636 |
msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
|
8637 |
msgstr ""
|
8638 |
|
8639 |
+
#: languages/vue.php:2697
|
8640 |
msgid "Local SEO"
|
8641 |
msgstr ""
|
8642 |
|
8643 |
+
#: languages/vue.php:2700
|
8644 |
msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
|
8645 |
msgstr ""
|
8646 |
|
8647 |
+
#: languages/vue.php:2703
|
8648 |
msgid "WooCommerce SEO"
|
8649 |
msgstr ""
|
8650 |
|
8651 |
+
#: languages/vue.php:2706
|
8652 |
msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
|
8653 |
msgstr ""
|
8654 |
|
8655 |
+
#: languages/vue.php:2709
|
8656 |
msgid "SEO Custom User Roles"
|
8657 |
msgstr ""
|
8658 |
|
8659 |
+
#: languages/vue.php:2712
|
8660 |
msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
|
8661 |
msgstr ""
|
8662 |
|
8663 |
+
#: languages/vue.php:2715
|
8664 |
msgid "Google News Sitemap"
|
8665 |
msgstr ""
|
8666 |
|
8667 |
+
#: languages/vue.php:2718
|
8668 |
msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
|
8669 |
msgstr ""
|
8670 |
|
8671 |
+
#: languages/vue.php:2721
|
8672 |
msgid "Smart XML Sitemaps"
|
8673 |
msgstr ""
|
8674 |
|
8675 |
+
#: languages/vue.php:2724
|
8676 |
msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
|
8677 |
msgstr ""
|
8678 |
|
8679 |
+
#: languages/vue.php:2727
|
8680 |
msgid "Social Media Integration"
|
8681 |
msgstr ""
|
8682 |
|
8683 |
+
#: languages/vue.php:2730
|
8684 |
msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
|
8685 |
msgstr ""
|
8686 |
|
8687 |
+
#: languages/vue.php:2733
|
8688 |
msgid "TruSEO On-Page Analysis"
|
8689 |
msgstr ""
|
8690 |
|
8691 |
+
#: languages/vue.php:2736
|
8692 |
msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
|
8693 |
msgstr ""
|
8694 |
|
8695 |
+
#: languages/vue.php:2739
|
8696 |
msgid "& Many More!"
|
8697 |
msgstr ""
|
8698 |
|
8699 |
+
#: languages/vue.php:2742
|
8700 |
msgid "Installing. Please wait.."
|
8701 |
msgstr ""
|
8702 |
|
8703 |
+
#: languages/vue.php:2745
|
8704 |
msgid "Install All-in-One-SEO"
|
8705 |
msgstr ""
|
8706 |
|
8707 |
+
#: languages/vue.php:2748
|
8708 |
msgid "Unlock the Publisher Report and Focus on the Content That Matters"
|
8709 |
msgstr ""
|
8710 |
|
8711 |
+
#: languages/vue.php:2751
|
8712 |
msgid "See Your Top Landing Pages to Improve Engagement"
|
8713 |
msgstr ""
|
8714 |
|
8715 |
+
#: languages/vue.php:2754
|
8716 |
msgid "See Your Top Exit Pages to Reduce Abandonment"
|
8717 |
msgstr ""
|
8718 |
|
8719 |
+
#: languages/vue.php:2757
|
8720 |
msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
|
8721 |
msgstr ""
|
8722 |
|
8723 |
+
#: languages/vue.php:2760
|
8724 |
msgid "See Your Top Affiliate Links and Focus on What’s Working"
|
8725 |
msgstr ""
|
8726 |
|
8727 |
+
#: languages/vue.php:2763
|
8728 |
msgid "See Your Top Downloads and Improve Conversions"
|
8729 |
msgstr ""
|
8730 |
|
8731 |
+
#: languages/vue.php:2766
|
8732 |
msgid "See Audience Demographic Report (Age / Gender / Interests)"
|
8733 |
msgstr ""
|
8734 |
|
8735 |
+
#: languages/vue.php:2769
|
8736 |
msgid "Welcome to the all-new ExactMetrics"
|
8737 |
msgstr ""
|
8738 |
|
8739 |
+
#: languages/vue.php:2772
|
8740 |
msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
|
8741 |
msgstr ""
|
8742 |
|
8743 |
+
#: languages/vue.php:2775
|
8744 |
msgid "The New & Improved ExactMetrics includes:"
|
8745 |
msgstr ""
|
8746 |
|
8747 |
+
#: languages/vue.php:2778
|
8748 |
msgid "All-New Design"
|
8749 |
msgstr ""
|
8750 |
|
8751 |
+
#: languages/vue.php:2781
|
8752 |
msgid "Better Reporting"
|
8753 |
msgstr ""
|
8754 |
|
8755 |
+
#: languages/vue.php:2784
|
8756 |
msgid "Better Tracking"
|
8757 |
msgstr ""
|
8758 |
|
8759 |
+
#: languages/vue.php:2787
|
8760 |
msgid "Better Support"
|
8761 |
msgstr ""
|
8762 |
|
8763 |
+
#: languages/vue.php:2790
|
8764 |
msgid "Continue"
|
8765 |
msgstr ""
|
8766 |
|
8767 |
+
#: languages/vue.php:2793
|
8768 |
msgid "Your settings have been automatically transferred."
|
8769 |
msgstr ""
|
8770 |
|
8771 |
+
#: languages/vue.php:2796
|
8772 |
msgid "On the next step, you will be asked to re-authenticate with Google Analytics. Please %1$ssee our detailed post%2$s to learn why we need your help. Don't worry, your tracking will continue to work as-is even if you don't do this, but re-auth is required to see analytics reports inside WordPress dashboard."
|
8773 |
msgstr ""
|
8774 |
|
8775 |
+
#: languages/vue.php:2799
|
8776 |
msgid "New"
|
8777 |
msgstr ""
|
8778 |
|
8779 |
+
#: languages/vue.php:2802
|
8780 |
msgid "Returning"
|
8781 |
msgstr ""
|
8782 |
|
8783 |
+
#: languages/vue.php:2805
|
8784 |
msgid "Top 10 Countries"
|
8785 |
msgstr ""
|
8786 |
|
8787 |
+
#: languages/vue.php:2808
|
8788 |
msgid "View Countries Report"
|
8789 |
msgstr ""
|
8790 |
|
8791 |
+
#: languages/vue.php:2811
|
8792 |
msgid "Top 10 Referrals"
|
8793 |
msgstr ""
|
8794 |
|
8795 |
+
#: languages/vue.php:2814
|
8796 |
msgid "View All Referral Sources"
|
8797 |
msgstr ""
|
8798 |
|
8799 |
+
#: languages/vue.php:2817
|
8800 |
msgid "View Full Posts/Pages Report"
|
8801 |
msgstr ""
|
8802 |
|
8803 |
+
#: languages/vue.php:2820
|
8804 |
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."
|
8805 |
msgstr ""
|
8806 |
|
8807 |
+
#: languages/vue.php:2823
|
8808 |
msgid "This list shows the top countries your website visitors are from."
|
8809 |
msgstr ""
|
8810 |
|
8811 |
+
#: languages/vue.php:2826
|
8812 |
msgid "This list shows the top websites that send your website traffic, known as referral traffic."
|
8813 |
msgstr ""
|
8814 |
|
8815 |
+
#: languages/vue.php:2829
|
8816 |
msgid "This feature requires ExactMetrics Pro"
|
8817 |
msgstr ""
|
8818 |
|
8819 |
+
#: languages/vue.php:2832
|
8820 |
msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
|
8821 |
msgstr ""
|
8822 |
|
8823 |
+
#: languages/vue.php:2835
|
8824 |
msgid "Upgrade to Pro and Unlock Popular Products"
|
8825 |
msgstr ""
|
8826 |
|
8827 |
+
#: languages/vue.php:2838
|
8828 |
msgid "View all Pro features"
|
8829 |
msgstr ""
|
8830 |
|
8831 |
+
#: languages/vue.php:2841
|
8832 |
msgid "View notifications"
|
8833 |
msgstr ""
|
8834 |
|
8835 |
+
#: languages/vue.php:2844
|
8836 |
msgid "Days"
|
8837 |
msgstr ""
|
8838 |
|
8839 |
#. Translators: placeholders make text small.
|
8840 |
+
#: languages/vue.php:2848
|
8841 |
msgid "7 days"
|
8842 |
msgstr ""
|
8843 |
|
8844 |
+
#: languages/vue.php:2851
|
8845 |
msgid "30 days"
|
8846 |
msgstr ""
|
8847 |
|
8848 |
+
#: languages/vue.php:2854
|
8849 |
msgid "Custom"
|
8850 |
msgstr ""
|
8851 |
|
8852 |
+
#: languages/vue.php:2857
|
8853 |
msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
|
8854 |
msgstr ""
|
8855 |
|
8856 |
+
#: languages/vue.php:2860
|
8857 |
msgid "All-in-One SEO is a great product. I have been using it on all my WP sites for several years. I highly recommend it."
|
8858 |
msgstr ""
|
8859 |
|
8860 |
+
#: languages/vue.php:2863
|
8861 |
msgid "Jack Brown"
|
8862 |
msgstr ""
|
8863 |
|
8864 |
+
#: languages/vue.php:2866
|
8865 |
msgid "PJB Internet Marketing"
|
8866 |
msgstr ""
|
8867 |
|
8868 |
+
#: languages/vue.php:2869
|
8869 |
msgid "I’m a professional SEO and used many tools and extensions. Regarding simplicity, individuality and configurability All in One SEO Pro is by far the best SEO plugin out there for WordPress."
|
8870 |
msgstr ""
|
8871 |
|
8872 |
+
#: languages/vue.php:2872
|
8873 |
msgid "Joel Steinmann"
|
8874 |
msgstr ""
|
8875 |
|
8876 |
+
#: languages/vue.php:2875
|
8877 |
msgid "CEO, Solergo"
|
8878 |
msgstr ""
|
8879 |
|
8880 |
+
#: languages/vue.php:2878
|
8881 |
msgid "Only Show Posts from These Categories"
|
8882 |
msgstr ""
|
8883 |
|
8884 |
+
#: languages/vue.php:2881
|
8885 |
msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
|
8886 |
msgstr ""
|
8887 |
|
8888 |
+
#: languages/vue.php:2884
|
8889 |
msgid "Activating..."
|
8890 |
msgstr ""
|
8891 |
|
8892 |
+
#: languages/vue.php:2887
|
8893 |
msgid "Deactivating..."
|
8894 |
msgstr ""
|
8895 |
|
8896 |
+
#: languages/vue.php:2890
|
8897 |
msgid "Deactivate"
|
8898 |
msgstr ""
|
8899 |
|
8900 |
+
#: languages/vue.php:2893
|
8901 |
msgid "Search Console Report"
|
8902 |
msgstr ""
|
8903 |
|
8904 |
+
#: languages/vue.php:2896
|
8905 |
msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
|
8906 |
msgstr ""
|
8907 |
|
8908 |
+
#: languages/vue.php:2899
|
8909 |
msgid "See Your Top Google Search Terms and Optimize Content"
|
8910 |
msgstr ""
|
8911 |
|
8912 |
+
#: languages/vue.php:2902
|
8913 |
msgid "See The Number of Clicks and Track Interests"
|
8914 |
msgstr ""
|
8915 |
|
8916 |
+
#: languages/vue.php:2905
|
8917 |
msgid "See The Click-Through-Ratio and Improve SEO"
|
8918 |
msgstr ""
|
8919 |
|
8920 |
+
#: languages/vue.php:2908
|
8921 |
msgid "See The Average Results Position and Focus on what works."
|
8922 |
msgstr ""
|
8923 |
|
8924 |
+
#: languages/vue.php:2911
|
8925 |
msgid "Ecommerce Report"
|
8926 |
msgstr ""
|
8927 |
|
8928 |
+
#: languages/vue.php:2914
|
8929 |
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."
|
8930 |
msgstr ""
|
8931 |
|
8932 |
+
#: languages/vue.php:2917
|
8933 |
msgid "See Your Conversion Rate to Improve Your Funnel"
|
8934 |
msgstr ""
|
8935 |
|
8936 |
+
#: languages/vue.php:2920
|
8937 |
msgid "See Your Top Conversion Sources and Focus on What's Working"
|
8938 |
msgstr ""
|
8939 |
|
8940 |
+
#: languages/vue.php:2923
|
8941 |
msgid "Popular Posts data can be fetched correctly"
|
8942 |
msgstr ""
|
8943 |
|
8944 |
+
#: languages/vue.php:2926
|
8945 |
msgid "Please note: depending on when you set up the Custom Dimensions settings, it may take up to 7 days to see relevant Popular Posts data loading from Google Analytics."
|
8946 |
msgstr ""
|
8947 |
|
8948 |
+
#: languages/vue.php:2929
|
8949 |
msgid "Close"
|
8950 |
msgstr ""
|
8951 |
|
8952 |
+
#: languages/vue.php:2933
|
8953 |
msgid "Add Top 5 Posts from Google Analytics"
|
8954 |
msgstr ""
|
8955 |
|
8956 |
+
#: languages/vue.php:2936
|
8957 |
msgid "In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both ExactMetrics and Google Analytics settings."
|
8958 |
msgstr ""
|
8959 |
|
8960 |
+
#: languages/vue.php:2939
|
8961 |
msgid "Test Automated Posts"
|
8962 |
msgstr ""
|
8963 |
|
8964 |
#. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
|
8965 |
+
#: languages/vue.php:2943
|
8966 |
msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
|
8967 |
msgstr ""
|
8968 |
|
9275 |
msgid "There are two ways to manual include the widget in your posts."
|
9276 |
msgstr ""
|
9277 |
|
9278 |
+
#: languages/vue.php:3205
|
9279 |
msgid "Using the Gutenberg Block"
|
9280 |
msgstr ""
|
9281 |
|
9282 |
+
#: languages/vue.php:3208
|
9283 |
msgid "Using the Shortcode"
|
9284 |
msgstr ""
|
9285 |
|
9286 |
+
#: languages/vue.php:3211
|
9287 |
msgid "Learn how to insert the widget using Gutenberg blocks."
|
9288 |
msgstr ""
|
9289 |
|
9290 |
+
#: languages/vue.php:3214
|
9291 |
msgid "Learn how to insert the widget using out Shortcode."
|
9292 |
msgstr ""
|
9293 |
|
9294 |
+
#: languages/vue.php:3217
|
9295 |
msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
|
9296 |
msgstr ""
|
9297 |
|
9298 |
+
#: languages/vue.php:3221
|
9299 |
msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
|
9300 |
msgstr ""
|
9301 |
|
9302 |
+
#: languages/vue.php:3224
|
9303 |
msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”."
|
9304 |
msgstr ""
|
9305 |
|
9306 |
+
#: languages/vue.php:3228
|
9307 |
msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
|
9308 |
msgstr ""
|
9309 |
|
9310 |
+
#: languages/vue.php:3231
|
9311 |
msgid "Shortcode"
|
9312 |
msgstr ""
|
9313 |
|
9314 |
+
#: languages/vue.php:3235
|
9315 |
msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
|
9316 |
msgstr ""
|
9317 |
|
9318 |
+
#: languages/vue.php:3239
|
9319 |
msgid "Copy Shortcode"
|
9320 |
msgstr ""
|
9321 |
|
9322 |
+
#: languages/vue.php:3242
|
9323 |
msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
|
9324 |
msgstr ""
|
9325 |
|
9326 |
+
#: languages/vue.php:3245
|
9327 |
msgid "Automatic Placement"
|
9328 |
msgstr ""
|
9329 |
|
9330 |
+
#: languages/vue.php:3248
|
9331 |
msgid "Display using Gutenberg Blocks"
|
9332 |
msgstr ""
|
9333 |
|
9334 |
+
#: languages/vue.php:3251
|
9335 |
msgid "Embed Options"
|
9336 |
msgstr ""
|
9337 |
|
9338 |
+
#: languages/vue.php:3254
|
9339 |
msgid "All Embed Options can be used in conjunction with one another."
|
9340 |
msgstr ""
|
9341 |
|
9342 |
+
#: languages/vue.php:3257
|
9343 |
msgid "Using Automatic Embed"
|
9344 |
msgstr ""
|
9345 |
|
9346 |
+
#: languages/vue.php:3260
|
9347 |
msgid "Learn how to insert the Popular Posts Widget into your posts and pages using Gutenberg Blocks. To style this widget, use the Gutenberg Block settings."
|
9348 |
msgstr ""
|
9349 |
|
9350 |
+
#: languages/vue.php:3263
|
9351 |
msgid "Enabling Automatic Placement will include the Popular Posts Widget after the last paragraph of any and all posts that match your Behavior settings. To style this widget use the Customize Design panel above."
|
9352 |
msgstr ""
|
9353 |
|
9354 |
+
#: languages/vue.php:3266
|
9355 |
msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
|
9356 |
msgstr ""
|
9357 |
|
9358 |
+
#: languages/vue.php:3269
|
9359 |
msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
|
9360 |
msgstr ""
|
9361 |
|
9362 |
+
#: languages/vue.php:3272
|
9363 |
msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
|
9364 |
msgstr ""
|
9365 |
|
9366 |
+
#: languages/vue.php:3275
|
9367 |
msgid "%1$sStep 1%2$s - Navigate to your Appearance > Widgets page using the menu on the left side your screen. Must be logged in as Admin."
|
9368 |
msgstr ""
|
9369 |
|
9370 |
+
#: languages/vue.php:3278
|
9371 |
msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - ExactMetrics widget and drag it into the desired Sidebar on the right."
|
9372 |
msgstr ""
|
9373 |
|
9374 |
+
#: languages/vue.php:3281
|
9375 |
msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
|
9376 |
msgstr ""
|
9377 |
|
9378 |
+
#: languages/vue.php:3284
|
9379 |
msgid "Display using a Shortcode"
|
9380 |
msgstr ""
|
9381 |
|
9382 |
+
#: languages/vue.php:3287
|
9383 |
msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
|
9384 |
msgstr ""
|
9385 |
|
9386 |
+
#: languages/vue.php:3290
|
9387 |
msgid "Enable Automatic Placement"
|
9388 |
msgstr ""
|
9389 |
|
9390 |
+
#: languages/vue.php:3293
|
9391 |
msgid "Display in a Sidebar"
|
9392 |
msgstr ""
|
9393 |
|
9394 |
+
#: languages/vue.php:3296
|
9395 |
msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
|
9396 |
msgstr ""
|
9397 |
|
9398 |
+
#: languages/vue.php:3299
|
9399 |
msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
|
9400 |
msgstr ""
|
9401 |
|
9402 |
#. Translators: The number of results.
|
9403 |
+
#: languages/vue.php:3303
|
9404 |
msgid "%s results"
|
9405 |
msgstr ""
|
9406 |
|
9407 |
+
#: languages/vue.php:3306
|
9408 |
msgid "Media"
|
9409 |
msgstr ""
|
9410 |
|
9411 |
+
#: languages/vue.php:3309
|
9412 |
msgid "Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro."
|
9413 |
msgstr ""
|
9414 |
|
9415 |
+
#: languages/vue.php:3312
|
9416 |
msgid "2021 Year in Review"
|
9417 |
msgstr ""
|
9418 |
|
9419 |
+
#: languages/vue.php:3315
|
9420 |
msgid "Media- Track how your users interact with videos on your website."
|
9421 |
msgstr ""
|
9422 |
|
9423 |
+
#: languages/vue.php:3318
|
9424 |
msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
|
9425 |
msgstr ""
|
9426 |
|
9427 |
+
#: languages/vue.php:3321
|
9428 |
msgid "Your 2021 Analytics Report"
|
9429 |
msgstr ""
|
9430 |
|
9431 |
+
#: languages/vue.php:3327
|
9432 |
msgid "January 1, 2021 - December 31, 2021"
|
9433 |
msgstr ""
|
9434 |
|
9435 |
+
#: languages/vue.php:3330
|
9436 |
msgid "A Tip for 2022"
|
9437 |
msgstr ""
|
9438 |
|
9439 |
+
#: languages/vue.php:3333
|
9440 |
msgid "A Tip For 2022"
|
9441 |
msgstr ""
|
9442 |
|
9443 |
+
#: languages/vue.php:3336
|
9444 |
msgid "Here's to an amazing 2022!"
|
9445 |
msgstr ""
|
9446 |
|
9447 |
+
#: languages/vue.php:3339
|
9448 |
msgid "Try our other popular WordPress plugins to grow your website in 2022."
|
9449 |
msgstr ""
|
9450 |
|
9451 |
+
#: languages/vue.php:3342
|
9452 |
msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
|
9453 |
msgstr ""
|
9454 |
|
9455 |
+
#: languages/vue.php:3345
|
9456 |
msgid "Copyright ExactMetrics, 2022"
|
9457 |
msgstr ""
|
9458 |
|
9459 |
#. Translators: Number of minutes spent on site.
|
9460 |
+
#: languages/vue.php:3349
|
9461 |
msgid "Each visitor spent an average of %s minutes on your website in 2021."
|
9462 |
msgstr ""
|
9463 |
|
9464 |
#. Translators: Placeholders are used for making text bold and adding a link.
|
9465 |
+
#: languages/vue.php:3353
|
9466 |
msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
|
9467 |
msgstr ""
|
9468 |
|
9469 |
+
#: languages/vue.php:3356
|
9470 |
msgid "With ExactMetrics Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
|
9471 |
msgstr ""
|
9472 |
|
9473 |
+
#: languages/vue.php:3359
|
9474 |
msgid "RafflePress"
|
9475 |
msgstr ""
|
9476 |
|
9477 |
+
#: languages/vue.php:3362
|
9478 |
msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
|
9479 |
msgstr ""
|
9480 |
|
9481 |
+
#: languages/vue.php:3365
|
9482 |
msgid "Constant Contact"
|
9483 |
msgstr ""
|
9484 |
|
9485 |
+
#: languages/vue.php:3368
|
9486 |
msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
|
9487 |
msgstr ""
|
9488 |
|
9489 |
+
#: languages/vue.php:3371
|
9490 |
msgid "SEMRUSH"
|
9491 |
msgstr ""
|
9492 |
|
9493 |
+
#: languages/vue.php:3374
|
9494 |
msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
|
9495 |
msgstr ""
|
9496 |
|
9497 |
+
#: languages/vue.php:3377
|
9498 |
msgid "Engagement Tools"
|
9499 |
msgstr ""
|
9500 |
|
9501 |
+
#: languages/vue.php:3380
|
9502 |
msgid "WPForms"
|
9503 |
msgstr ""
|
9504 |
|
9505 |
+
#: languages/vue.php:3383
|
9506 |
msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
|
9507 |
msgstr ""
|
9508 |
|
9509 |
+
#: languages/vue.php:3386
|
9510 |
msgid "OptinMonster"
|
9511 |
msgstr ""
|
9512 |
|
9513 |
+
#: languages/vue.php:3389
|
9514 |
msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
|
9515 |
msgstr ""
|
9516 |
|
9517 |
+
#: languages/vue.php:3392
|
9518 |
msgid "Smash Balloon - Facebook"
|
9519 |
msgstr ""
|
9520 |
|
9521 |
+
#: languages/vue.php:3395
|
9522 |
msgid "Smash Balloon - Instagram"
|
9523 |
msgstr ""
|
9524 |
|
9525 |
+
#: languages/vue.php:3398
|
9526 |
msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
|
9527 |
msgstr ""
|
9528 |
|
9529 |
+
#: languages/vue.php:3401
|
9530 |
msgid "Popular Posts by ExactMetrics"
|
9531 |
msgstr ""
|
9532 |
|
9533 |
+
#: languages/vue.php:3404
|
9534 |
msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
|
9535 |
msgstr ""
|
9536 |
|
9537 |
+
#: languages/vue.php:3407
|
9538 |
msgid "Popular Products by ExactMetrics"
|
9539 |
msgstr ""
|
9540 |
|
9541 |
+
#: languages/vue.php:3410
|
9542 |
msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
|
9543 |
msgstr ""
|
9544 |
|
9545 |
+
#: languages/vue.php:3413
|
9546 |
msgid "Revenue Tools"
|
9547 |
msgstr ""
|
9548 |
|
9549 |
+
#: languages/vue.php:3416
|
9550 |
msgid "SeedProd"
|
9551 |
msgstr ""
|
9552 |
|
9553 |
+
#: languages/vue.php:3419
|
9554 |
msgid "Use the best drag-and-drop landing page builder for WordPress to instantly build coming soon pages, sales pages, opt-in pages, webinar pages, maintenance pages, and more. Includes 100+ free templates."
|
9555 |
msgstr ""
|
9556 |
|
9557 |
+
#: languages/vue.php:3422
|
9558 |
msgid "Featured Tools"
|
9559 |
msgstr ""
|
9560 |
|
9561 |
+
#: languages/vue.php:3425
|
9562 |
msgid "Easy Affiliate"
|
9563 |
msgstr ""
|
9564 |
|
9565 |
+
#: languages/vue.php:3428
|
9566 |
msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with ExactMetrics."
|
9567 |
msgstr ""
|
9568 |
|
9569 |
+
#: languages/vue.php:3431
|
9570 |
msgid "SearchWP"
|
9571 |
msgstr ""
|
9572 |
|
9573 |
+
#: languages/vue.php:3434
|
9574 |
msgid "Unlock better search results for your website. Perfect for any information or eCommerce store to help users find exactly what content and products they’re looking for."
|
9575 |
msgstr ""
|
9576 |
|
9577 |
+
#: languages/vue.php:3437
|
9578 |
msgid "Easy Digital Downloads"
|
9579 |
msgstr ""
|
9580 |
|
9581 |
+
#: languages/vue.php:3440
|
9582 |
msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
|
9583 |
msgstr ""
|
9584 |
|
9585 |
+
#: languages/vue.php:3443
|
9586 |
msgid "MemberPress"
|
9587 |
msgstr ""
|
9588 |
|
9589 |
+
#: languages/vue.php:3446
|
9590 |
msgid "Create a membership website. Works automatically with ExactMetrics, no coding needed."
|
9591 |
msgstr ""
|
9592 |
|
9593 |
+
#: languages/vue.php:3449
|
9594 |
msgid "Thirsty Affiliates"
|
9595 |
msgstr ""
|
9596 |
|
9597 |
+
#: languages/vue.php:3452
|
9598 |
msgid "Manage all your affiliate links with features designed to help make bloggers more money."
|
9599 |
msgstr ""
|
9600 |
|
9601 |
+
#: languages/vue.php:3455
|
9602 |
msgid "Upgrade to unlock advanced reporting and features designed to help you get more traffic and make more money from your website. Special Offer: Save 50% today."
|
9603 |
msgstr ""
|
9604 |
|
9605 |
+
#: languages/vue.php:3458
|
9606 |
msgid "Advanced Coupons"
|
9607 |
msgstr ""
|
9608 |
|
9609 |
+
#: languages/vue.php:3461
|
9610 |
msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
|
9611 |
msgstr ""
|
9612 |
|
9613 |
+
#: languages/vue.php:3464
|
9614 |
msgid "PrettyLinks"
|
9615 |
msgstr ""
|
9616 |
|
9617 |
+
#: languages/vue.php:3467
|
9618 |
msgid "Automatically monetize your website content with affiliate links added automatically to your content."
|
9619 |
msgstr ""
|
9620 |
|
9621 |
+
#: languages/vue.php:3470
|
9622 |
msgid "Install Now"
|
9623 |
msgstr ""
|
9624 |
|
9625 |
+
#: languages/vue.php:3473
|
9626 |
msgid "Online Marketing Guides & Resources"
|
9627 |
msgstr ""
|
9628 |
|
9629 |
+
#: languages/vue.php:3476
|
9630 |
msgid "Read This Guide"
|
9631 |
msgstr ""
|
9632 |
|
9633 |
+
#: languages/vue.php:3482
|
9634 |
msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
|
9635 |
msgstr ""
|
9636 |
|
9637 |
+
#: languages/vue.php:3485
|
9638 |
msgid "Traffic Tools"
|
9639 |
msgstr ""
|
9640 |
|
9641 |
+
#: languages/vue.php:3488
|
9642 |
msgid "All in One SEO (AIOSEO)"
|
9643 |
msgstr ""
|
9644 |
|
9645 |
+
#: languages/vue.php:3491
|
9646 |
msgid "The best WordPress SEO plugin that works automatically with ExactMetrics."
|
9647 |
msgstr ""
|
9648 |
|
9649 |
+
#: languages/vue.php:3494
|
9650 |
msgid "PushEngage"
|
9651 |
msgstr ""
|
9652 |
|
9653 |
+
#: languages/vue.php:3497
|
9654 |
msgid "Send push notifications to your visitors to drive more traffic and boost sales."
|
9655 |
msgstr ""
|
9656 |
|
9657 |
+
#: languages/vue.php:3500
|
9658 |
msgid "Featured"
|
9659 |
msgstr ""
|
9660 |
|
9661 |
+
#: languages/vue.php:3503
|
9662 |
msgid "Traffic"
|
9663 |
msgstr ""
|
9664 |
|
9665 |
+
#: languages/vue.php:3506
|
9666 |
msgid "Revenue"
|
9667 |
msgstr ""
|
9668 |
|
9669 |
+
#: languages/vue.php:3509
|
9670 |
msgid "Guides & Resources"
|
9671 |
msgstr ""
|
9672 |
|
9673 |
+
#: languages/vue.php:3512
|
9674 |
msgid "Media Tracking"
|
9675 |
msgstr ""
|
9676 |
|
9677 |
+
#: languages/vue.php:3515
|
9678 |
msgid "Get Started"
|
9679 |
msgstr ""
|
9680 |
|
9681 |
+
#: languages/vue.php:3518
|
9682 |
msgid "Privacy Compliance Addon"
|
9683 |
msgstr ""
|
9684 |
|
9685 |
+
#: languages/vue.php:3521
|
9686 |
msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
|
9687 |
msgstr ""
|
9688 |
|
9689 |
+
#: languages/vue.php:3524
|
9690 |
msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
|
9691 |
msgstr ""
|
9692 |
|
9693 |
+
#: languages/vue.php:3527
|
9694 |
msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
|
9695 |
msgstr ""
|
9696 |
|
9697 |
+
#: languages/vue.php:3530
|
9698 |
msgid "20+ Advanced Tracking"
|
9699 |
msgstr ""
|
9700 |
|
9701 |
+
#: languages/vue.php:3533
|
9702 |
msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
|
9703 |
msgstr ""
|
9704 |
|
9705 |
+
#: languages/vue.php:3536
|
9706 |
msgid "Advanced Growth Tools"
|
9707 |
msgstr ""
|
9708 |
|
9709 |
+
#: languages/vue.php:3539
|
9710 |
msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
|
9711 |
msgstr ""
|
9712 |
|
9713 |
+
#: languages/vue.php:3542
|
9714 |
msgid "Track how your users interact with videos on your website."
|
9715 |
msgstr ""
|
9716 |
|
9717 |
+
#: languages/vue.php:3545
|
9718 |
msgid "Error Processing"
|
9719 |
msgstr ""
|
9720 |
|
9721 |
+
#: languages/vue.php:3548
|
9722 |
msgid "There was an error while processing some features. Please try again or you can skip this process for now"
|
9723 |
msgstr ""
|
9724 |
|
9725 |
+
#: languages/vue.php:3551
|
9726 |
msgid "Which website features would you like to enable?"
|
9727 |
msgstr ""
|
9728 |
|
9729 |
+
#: languages/vue.php:3554
|
9730 |
msgid "We’ve already selected our recommended features based on your site. "
|
9731 |
msgstr ""
|
9732 |
|
9733 |
+
#: languages/vue.php:3557
|
9734 |
msgid "Other Addons"
|
9735 |
msgstr ""
|
9736 |
|
9737 |
+
#: languages/vue.php:3560
|
9738 |
msgid "View all ExactMetrics addons"
|
9739 |
msgstr ""
|
9740 |
|
9741 |
+
#: languages/vue.php:3563
|
9742 |
msgid "Standard Analytics & Reports"
|
9743 |
msgstr ""
|
9744 |
|
9745 |
+
#: languages/vue.php:3566
|
9746 |
msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
|
9747 |
msgstr ""
|
9748 |
|
9749 |
+
#: languages/vue.php:3569
|
9750 |
msgid "Helps you see what links your users are clicking on your site."
|
9751 |
msgstr ""
|
9752 |
|
9753 |
+
#: languages/vue.php:3572
|
9754 |
msgid "All In One SEO Toolkit"
|
9755 |
msgstr ""
|
9756 |
|
9757 |
+
#: languages/vue.php:3575
|
9758 |
msgid "The best WordPress SEO plugin that works with ExactMetrics to boost your rankings."
|
9759 |
msgstr ""
|
9760 |
|
9761 |
+
#: languages/vue.php:3578
|
9762 |
msgid "Smart Form Builder by WPForms"
|
9763 |
msgstr ""
|
9764 |
|
9765 |
+
#: languages/vue.php:3581
|
9766 |
msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
|
9767 |
msgstr ""
|
9768 |
|
9769 |
+
#: languages/vue.php:3584
|
9770 |
msgid "Awesome! Tracking and Analytics are All Setup!"
|
9771 |
msgstr ""
|
9772 |
|
9773 |
+
#: languages/vue.php:3587
|
9774 |
msgid "ExactMetrics is connected to Google Analytics and data is being collected."
|
9775 |
msgstr ""
|
9776 |
|
9777 |
+
#: languages/vue.php:3594
|
9778 |
msgid "Complete Setup without Upgrading"
|
9779 |
msgstr ""
|
9780 |
|
9781 |
+
#: languages/vue.php:3597
|
9782 |
msgid "Success"
|
9783 |
msgstr ""
|
9784 |
|
9785 |
+
#: languages/vue.php:3600
|
9786 |
msgid "Connected to Google Analytics"
|
9787 |
msgstr ""
|
9788 |
|
9789 |
+
#: languages/vue.php:3603
|
9790 |
msgid "Tracking Code Installed"
|
9791 |
msgstr ""
|
9792 |
|
9793 |
+
#: languages/vue.php:3606
|
9794 |
msgid "Data Being Collected"
|
9795 |
msgstr ""
|
9796 |
|
9797 |
#. Translators: Add link to retrieve license from account area.
|
9798 |
+
#: languages/vue.php:3610
|
9799 |
msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO!"
|
9800 |
msgstr ""
|
9801 |
|
9802 |
+
#: languages/vue.php:3613
|
9803 |
msgid "Verify License Key"
|
9804 |
msgstr ""
|
9805 |
|
9806 |
+
#: languages/vue.php:3616
|
9807 |
msgid "Upgrade to Unlock These Features"
|
9808 |
msgstr ""
|
9809 |
|
9810 |
+
#: languages/vue.php:3619
|
9811 |
msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
|
9812 |
msgstr ""
|
9813 |
|
9814 |
+
#: languages/vue.php:3622
|
9815 |
msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
|
9816 |
msgstr ""
|
9817 |
|
9818 |
+
#: languages/vue.php:3625
|
9819 |
msgid "Verifying License..."
|
9820 |
msgstr ""
|
9821 |
|
9822 |
+
#: languages/vue.php:3631
|
9823 |
msgid "The following plugins will be installed: "
|
9824 |
msgstr ""
|
9825 |
|
9826 |
+
#: languages/vue.php:3635
|
9827 |
msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
|
9828 |
msgstr ""
|
9829 |
|
9830 |
+
#: languages/vue.php:3639
|
9831 |
msgid "Manually enter your GA4 Measurement ID"
|
9832 |
msgstr ""
|
9833 |
|
9834 |
+
#: languages/vue.php:3643
|
9835 |
msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
|
9836 |
msgstr ""
|
9837 |
|
9838 |
+
#: languages/vue.php:3646
|
9839 |
msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
|
9840 |
msgstr ""
|
9841 |
|
9911 |
msgid "Time on Page"
|
9912 |
msgstr ""
|
9913 |
|
9914 |
+
#: lite/includes/admin/onboarding-wizard.php:166
|
9915 |
msgid "ExactMetrics › Onboarding Wizard"
|
9916 |
msgstr ""
|
9917 |
|
9918 |
+
#: lite/includes/admin/onboarding-wizard.php:181
|
9919 |
msgid "Return to Dashboard"
|
9920 |
msgstr ""
|
9921 |
|
languages/vue.php
CHANGED
@@ -10,8 +10,6 @@ $generated_i18n_strings = array(
|
|
10 |
// Reference: src/plugins/exactmetrics-settings-helper-plugin.js:116
|
11 |
__( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
|
12 |
|
13 |
-
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:53
|
14 |
-
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:55
|
15 |
// Reference: src/plugins/exactmetrics-settings-helper-plugin.js:117
|
16 |
__( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
|
17 |
|
@@ -35,7 +33,8 @@ $generated_i18n_strings = array(
|
|
35 |
/* Translators: Placeholder gets replaced with an arrow icon. */
|
36 |
__( 'Continue %s', 'google-analytics-dashboard-for-wp' ),
|
37 |
|
38 |
-
// Reference: src/modules/
|
|
|
39 |
__( 'Error', 'google-analytics-dashboard-for-wp' ),
|
40 |
|
41 |
// Reference: src/plugins/exactmetrics-widget-helper-plugin.js:16
|
@@ -92,6 +91,7 @@ $generated_i18n_strings = array(
|
|
92 |
// Reference: src/plugins/exactmetrics-widget-helper-plugin.js:42
|
93 |
__( 'Today', 'google-analytics-dashboard-for-wp' ),
|
94 |
|
|
|
95 |
// Reference: src/plugins/exactmetrics-widget-helper-plugin.js:48
|
96 |
__( 'Yesterday', 'google-analytics-dashboard-for-wp' ),
|
97 |
|
@@ -104,7 +104,6 @@ $generated_i18n_strings = array(
|
|
104 |
// Reference: src/plugins/exactmetrics-widget-helper-plugin.js:66
|
105 |
__( 'Last 7 days', 'google-analytics-dashboard-for-wp' ),
|
106 |
|
107 |
-
// Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewDatePicker-Lite.vue:48
|
108 |
// Reference: src/plugins/exactmetrics-widget-helper-plugin.js:72
|
109 |
__( 'Last 30 days', 'google-analytics-dashboard-for-wp' ),
|
110 |
|
@@ -123,6 +122,7 @@ $generated_i18n_strings = array(
|
|
123 |
__( 'See the full analytics report!', 'google-analytics-dashboard-for-wp' ),
|
124 |
|
125 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:270
|
|
|
126 |
__( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
|
127 |
|
128 |
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:13
|
@@ -159,6 +159,7 @@ $generated_i18n_strings = array(
|
|
159 |
// Reference: src/modules/settings/routes/network.js:43
|
160 |
__( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
|
161 |
|
|
|
162 |
// Reference: src/modules/settings/routes/network.js:52
|
163 |
__( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
|
164 |
|
@@ -215,75 +216,73 @@ $generated_i18n_strings = array(
|
|
215 |
/* Translators: Adds a link and an arrow icon. */
|
216 |
__( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
|
217 |
|
218 |
-
// Reference: src/modules/
|
219 |
__( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
|
220 |
|
221 |
-
// Reference: src/modules/
|
222 |
__( 'per year', 'google-analytics-dashboard-for-wp' ),
|
223 |
|
224 |
-
// Reference: src/modules/
|
225 |
// Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:22
|
226 |
__( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
|
227 |
|
228 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:148
|
229 |
__( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
|
230 |
|
231 |
-
// Reference: src/modules/
|
232 |
__( '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!', 'google-analytics-dashboard-for-wp' ),
|
233 |
|
234 |
-
// Reference: src/modules/
|
235 |
__( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
|
236 |
|
237 |
-
// Reference: src/modules/
|
238 |
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
239 |
|
240 |
-
// Reference: src/modules/
|
241 |
__( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
|
242 |
|
243 |
-
// Reference: src/modules/
|
244 |
__( '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!', 'google-analytics-dashboard-for-wp' ),
|
245 |
|
246 |
-
// Reference: src/modules/
|
247 |
__( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
|
248 |
|
249 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:218
|
250 |
__( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
|
251 |
|
252 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:90
|
253 |
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:66
|
254 |
-
// Reference: src/modules/
|
255 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:33
|
256 |
-
// Reference: src/modules/widget/components/WidgetReportOverlay.vue:27
|
257 |
__( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
|
258 |
|
259 |
-
// Reference: src/modules/about/components/exactmetrics-
|
260 |
__( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
|
261 |
|
262 |
-
// Reference: src/modules/about/components/exactmetrics-
|
|
|
263 |
__( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
|
264 |
|
265 |
-
// Reference: src/modules/
|
266 |
__( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
|
267 |
|
268 |
-
// Reference: src/modules/
|
269 |
__( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
|
270 |
|
271 |
-
// Reference: src/modules/
|
272 |
__( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
|
273 |
|
274 |
-
// Reference: src/modules/
|
275 |
__( 'EU Compliance Addon', 'google-analytics-dashboard-for-wp' ),
|
276 |
|
277 |
-
// Reference: src/modules/
|
278 |
__( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
|
279 |
|
280 |
-
// Reference: src/modules/
|
281 |
__( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
|
282 |
|
283 |
-
// Reference: src/modules/
|
284 |
__( 'Search Console', 'google-analytics-dashboard-for-wp' ),
|
285 |
|
286 |
-
// Reference: src/modules/
|
287 |
__( 'Custom Date Ranges', 'google-analytics-dashboard-for-wp' ),
|
288 |
|
289 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:84
|
@@ -302,7 +301,6 @@ $generated_i18n_strings = array(
|
|
302 |
__( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
|
303 |
|
304 |
// Reference: src/components/ContentIntroFullWidth.vue:46
|
305 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:142
|
306 |
__( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
|
307 |
|
308 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:144
|
@@ -323,13 +321,14 @@ $generated_i18n_strings = array(
|
|
323 |
/* Translators: Placeholder is replaced with WPForms. */
|
324 |
__( 'Recommended Plugin: %s', 'google-analytics-dashboard-for-wp' ),
|
325 |
|
326 |
-
// Reference: src/modules/
|
327 |
__( 'Install', 'google-analytics-dashboard-for-wp' ),
|
328 |
|
329 |
-
// Reference: src/modules/
|
330 |
__( 'Activate', 'google-analytics-dashboard-for-wp' ),
|
331 |
|
332 |
// Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
|
|
|
333 |
// Reference: src/modules/widget/components/WidgetFooter.vue:22
|
334 |
__( 'Learn More', 'google-analytics-dashboard-for-wp' ),
|
335 |
|
@@ -345,8 +344,7 @@ $generated_i18n_strings = array(
|
|
345 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:162
|
346 |
__( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
|
347 |
|
348 |
-
// Reference: src/modules/
|
349 |
-
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:110
|
350 |
__( 'Ok', 'google-analytics-dashboard-for-wp' ),
|
351 |
|
352 |
// Reference: src/modules/addons/components/AddonsNavigation.vue:18
|
@@ -434,7 +432,6 @@ $generated_i18n_strings = array(
|
|
434 |
__( 'This list shows the download links your visitors clicked the most.', 'google-analytics-dashboard-for-wp' ),
|
435 |
|
436 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:25
|
437 |
-
// Reference: src/modules/widget/store/index.js:77
|
438 |
__( 'Overview', 'google-analytics-dashboard-for-wp' ),
|
439 |
|
440 |
// Reference: src/modules/widget/store/index.js:83
|
@@ -456,7 +453,6 @@ $generated_i18n_strings = array(
|
|
456 |
__( 'Analytics', 'google-analytics-dashboard-for-wp' ),
|
457 |
|
458 |
// Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:65
|
459 |
-
// Reference: src/modules/widget/components/settings/exactmetrics-WidgetFullReportButton.vue:16
|
460 |
/* Translators: Adds an arrow icon. */
|
461 |
__( 'View All Reports %s', 'google-analytics-dashboard-for-wp' ),
|
462 |
|
@@ -466,7 +462,7 @@ $generated_i18n_strings = array(
|
|
466 |
// Reference: src/modules/reports/components/ReportNoAuth.vue:26
|
467 |
__( 'ExactMetrics makes it "effortless" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard.', 'google-analytics-dashboard-for-wp' ),
|
468 |
|
469 |
-
// Reference: src/modules/
|
470 |
__( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
|
471 |
|
472 |
// Reference: src/modules/reports/components/ReportNoAuth.vue:28
|
@@ -501,7 +497,6 @@ $generated_i18n_strings = array(
|
|
501 |
__( 'Publishers', 'google-analytics-dashboard-for-wp' ),
|
502 |
|
503 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:41
|
504 |
-
// Reference: src/modules/settings/routes/site.js:54
|
505 |
__( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
|
506 |
|
507 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:57
|
@@ -513,7 +508,6 @@ $generated_i18n_strings = array(
|
|
513 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:73
|
514 |
__( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
|
515 |
|
516 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-SiteSpeed-Lite.vue:30
|
517 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:81
|
518 |
__( 'Site Speed Report', 'google-analytics-dashboard-for-wp' ),
|
519 |
|
@@ -527,13 +521,13 @@ $generated_i18n_strings = array(
|
|
527 |
// Reference: src/modules/settings/routes/site.js:111
|
528 |
__( 'PrettyLinks Integration', 'google-analytics-dashboard-for-wp' ),
|
529 |
|
530 |
-
// Reference: src/modules/
|
531 |
__( 'Inline Popular Posts', 'google-analytics-dashboard-for-wp' ),
|
532 |
|
533 |
-
// Reference: src/modules/
|
534 |
__( 'Popular Posts Widget', 'google-analytics-dashboard-for-wp' ),
|
535 |
|
536 |
-
// Reference: src/modules/
|
537 |
__( 'Popular Products', 'google-analytics-dashboard-for-wp' ),
|
538 |
|
539 |
// Reference: src/modules/settings/routes/site.js:189
|
@@ -542,19 +536,19 @@ $generated_i18n_strings = array(
|
|
542 |
// Reference: src/modules/settings/routes/site.js:200
|
543 |
__( 'Sub menu item for WooCommerce Analytics', 'google-analytics-dashboard-for-wp' ),
|
544 |
|
545 |
-
// Reference: src/modules/settings/
|
546 |
__( 'General', 'google-analytics-dashboard-for-wp' ),
|
547 |
|
548 |
-
// Reference: src/modules/
|
549 |
__( 'Engagement', 'google-analytics-dashboard-for-wp' ),
|
550 |
|
551 |
-
// Reference: src/modules/settings/
|
552 |
__( 'Publisher', 'google-analytics-dashboard-for-wp' ),
|
553 |
|
554 |
-
// Reference: src/modules/settings/
|
555 |
__( 'Conversions', 'google-analytics-dashboard-for-wp' ),
|
556 |
|
557 |
-
// Reference: src/modules/settings/
|
558 |
__( 'Advanced', 'google-analytics-dashboard-for-wp' ),
|
559 |
|
560 |
// Reference: src/modules/settings/routes/site.js:95
|
@@ -601,7 +595,7 @@ $generated_i18n_strings = array(
|
|
601 |
// Reference: src/modules/reports/store/actions.js:209
|
602 |
__( 'View Addons', 'google-analytics-dashboard-for-wp' ),
|
603 |
|
604 |
-
// Reference: src/modules/
|
605 |
__( 'Dismiss', 'google-analytics-dashboard-for-wp' ),
|
606 |
|
607 |
// Reference: src/modules/reports/store/actions.js:217
|
@@ -610,13 +604,13 @@ $generated_i18n_strings = array(
|
|
610 |
// Reference: src/modules/reports/store/actions.js:218
|
611 |
__( 'Please wait', 'google-analytics-dashboard-for-wp' ),
|
612 |
|
613 |
-
// Reference: src/modules/
|
614 |
__( 'activate', 'google-analytics-dashboard-for-wp' ),
|
615 |
|
616 |
-
// Reference: src/modules/
|
617 |
__( 'install', 'google-analytics-dashboard-for-wp' ),
|
618 |
|
619 |
-
// Reference: src/modules/
|
620 |
__( 'Visit addons page', 'google-analytics-dashboard-for-wp' ),
|
621 |
|
622 |
// Reference: src/modules/reports/store/actions.js:68
|
@@ -645,7 +639,7 @@ $generated_i18n_strings = array(
|
|
645 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:33
|
646 |
__( 'Let\'s get you set up.', 'google-analytics-dashboard-for-wp' ),
|
647 |
|
648 |
-
// Reference: src/modules/wizard-onboarding/components/steps/
|
649 |
__( 'Save and Continue', 'google-analytics-dashboard-for-wp' ),
|
650 |
|
651 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:35
|
@@ -670,10 +664,12 @@ $generated_i18n_strings = array(
|
|
670 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:62
|
671 |
__( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
|
672 |
|
673 |
-
// Reference: src/modules/settings/components/exactmetrics-
|
|
|
674 |
__( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
|
675 |
|
676 |
-
// Reference: src/modules/settings/components/exactmetrics-
|
|
|
677 |
__( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
|
678 |
|
679 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:65
|
@@ -727,7 +723,7 @@ $generated_i18n_strings = array(
|
|
727 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:57
|
728 |
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
729 |
|
730 |
-
// Reference: src/modules/wizard-onboarding/components/steps/
|
731 |
__( 'Enhanced Link Attribution', 'google-analytics-dashboard-for-wp' ),
|
732 |
|
733 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:59
|
@@ -754,18 +750,18 @@ $generated_i18n_strings = array(
|
|
754 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:66
|
755 |
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
756 |
|
757 |
-
// Reference: src/modules/
|
758 |
/* Translators: Example path (/go/). */
|
759 |
__( 'Path (example: %s)', 'google-analytics-dashboard-for-wp' ),
|
760 |
|
761 |
-
// Reference: src/modules/
|
762 |
__( 'Path has to start with a / and have no spaces', 'google-analytics-dashboard-for-wp' ),
|
763 |
|
764 |
-
// Reference: src/modules/
|
765 |
/* Translators: Example label (aff). */
|
766 |
__( 'Label (example: %s)', 'google-analytics-dashboard-for-wp' ),
|
767 |
|
768 |
-
// Reference: src/modules/
|
769 |
__( 'Label can\'t contain any spaces', 'google-analytics-dashboard-for-wp' ),
|
770 |
|
771 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:83
|
@@ -808,45 +804,45 @@ $generated_i18n_strings = array(
|
|
808 |
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:50
|
809 |
__( 'Site Speed', 'google-analytics-dashboard-for-wp' ),
|
810 |
|
811 |
-
// Reference: src/modules/
|
812 |
__( 'License Key', 'google-analytics-dashboard-for-wp' ),
|
813 |
|
814 |
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:62
|
815 |
/* Translators: Add link to retrieve license key from account. */
|
816 |
__( 'Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
|
817 |
|
818 |
-
// Reference: src/modules/settings/components/exactmetrics-
|
819 |
__( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
|
820 |
|
821 |
-
// Reference: src/modules/settings/components/exactmetrics-
|
822 |
__( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
|
823 |
|
824 |
-
// Reference: src/modules/settings/components/exactmetrics-
|
825 |
__( 'Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes.', 'google-analytics-dashboard-for-wp' ),
|
826 |
|
827 |
-
// Reference: src/modules/settings/components/exactmetrics-
|
828 |
__( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
|
829 |
|
830 |
-
// Reference: src/modules/settings/components/exactmetrics-
|
831 |
__( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
|
832 |
|
833 |
-
// Reference: src/modules/settings/components/
|
834 |
-
/* Translators:
|
835 |
__( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
|
836 |
|
837 |
-
// Reference: src/modules/settings/components/exactmetrics-
|
838 |
__( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
|
839 |
|
840 |
-
// Reference: src/modules/settings/components/exactmetrics-
|
841 |
__( 'See all features', 'google-analytics-dashboard-for-wp' ),
|
842 |
|
843 |
-
// Reference: src/modules/settings/components/exactmetrics-
|
844 |
__( 'Setup Wizard', 'google-analytics-dashboard-for-wp' ),
|
845 |
|
846 |
-
// Reference: src/modules/settings/components/exactmetrics-
|
847 |
__( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-dashboard-for-wp' ),
|
848 |
|
849 |
-
// Reference: src/modules/settings/components/exactmetrics-
|
850 |
__( 'Relaunch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
|
851 |
|
852 |
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:59
|
@@ -871,7 +867,7 @@ $generated_i18n_strings = array(
|
|
871 |
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:90
|
872 |
__( 'Refreshing Addons', 'google-analytics-dashboard-for-wp' ),
|
873 |
|
874 |
-
// Reference: src/modules/about/components/exactmetrics-
|
875 |
__( 'Get ExactMetrics Pro Today and Unlock all the Powerful Features', 'google-analytics-dashboard-for-wp' ),
|
876 |
|
877 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:107
|
@@ -949,7 +945,7 @@ $generated_i18n_strings = array(
|
|
949 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:120
|
950 |
__( 'Overview Reports for the last 30 days.', 'google-analytics-dashboard-for-wp' ),
|
951 |
|
952 |
-
// Reference: src/modules/
|
953 |
__( 'Advanced Reports', 'google-analytics-dashboard-for-wp' ),
|
954 |
|
955 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:122
|
@@ -980,9 +976,10 @@ $generated_i18n_strings = array(
|
|
980 |
__( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-dashboard-for-wp' ),
|
981 |
|
982 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:145
|
|
|
983 |
__( 'Headline Analyzer', 'google-analytics-dashboard-for-wp' ),
|
984 |
|
985 |
-
// Reference: src/modules/
|
986 |
__( 'Email Summaries', 'google-analytics-dashboard-for-wp' ),
|
987 |
|
988 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:155
|
@@ -1007,7 +1004,6 @@ $generated_i18n_strings = array(
|
|
1007 |
__( 'Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks.', 'google-analytics-dashboard-for-wp' ),
|
1008 |
|
1009 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:175
|
1010 |
-
// Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:104
|
1011 |
__( 'Not Available', 'google-analytics-dashboard-for-wp' ),
|
1012 |
|
1013 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:176
|
@@ -1040,6 +1036,7 @@ $generated_i18n_strings = array(
|
|
1040 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:66
|
1041 |
__( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
|
1042 |
|
|
|
1043 |
// Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:101
|
1044 |
__( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
|
1045 |
|
@@ -1101,14 +1098,13 @@ $generated_i18n_strings = array(
|
|
1101 |
/* Translators: Error status and error text. */
|
1102 |
__( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1103 |
|
1104 |
-
// Reference: src/modules/
|
1105 |
__( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
|
1106 |
|
1107 |
// Reference: src/modules/auth/api/index.js:232
|
1108 |
/* Translators: Error status and error text. */
|
1109 |
__( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1110 |
|
1111 |
-
// Reference: src/modules/popular-posts/api/index.js:47
|
1112 |
// Reference: src/modules/settings/api/index.js:81
|
1113 |
__( 'Network error encountered. Settings not saved.', 'google-analytics-dashboard-for-wp' ),
|
1114 |
|
@@ -1234,7 +1230,7 @@ $generated_i18n_strings = array(
|
|
1234 |
// Reference: src/modules/widget/components/WidgetNoticeCompact.vue:15
|
1235 |
__( 'Check out the newly added classic mode', 'google-analytics-dashboard-for-wp' ),
|
1236 |
|
1237 |
-
// Reference: src/modules/
|
1238 |
/* Translators: Placeholder adds a line break. */
|
1239 |
__( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-dashboard-for-wp' ),
|
1240 |
|
@@ -1267,46 +1263,42 @@ $generated_i18n_strings = array(
|
|
1267 |
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:64
|
1268 |
__( 'Remove row', 'google-analytics-dashboard-for-wp' ),
|
1269 |
|
1270 |
-
// Reference: src/modules/
|
1271 |
-
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:81
|
1272 |
__( 'Sessions', 'google-analytics-dashboard-for-wp' ),
|
1273 |
|
1274 |
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:83
|
1275 |
/* Translators: Line break. */
|
1276 |
__( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
|
1277 |
|
1278 |
-
// Reference: src/modules/
|
1279 |
-
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:84
|
1280 |
__( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
|
1281 |
|
1282 |
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:86
|
1283 |
/* Translators: Line break. */
|
1284 |
__( 'Unique %s Pageviews', 'google-analytics-dashboard-for-wp' ),
|
1285 |
|
1286 |
-
// Reference: src/modules/
|
1287 |
__( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
|
1288 |
|
1289 |
-
// Reference: src/modules/
|
1290 |
__( 'A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview.', 'google-analytics-dashboard-for-wp' ),
|
1291 |
|
1292 |
-
// Reference: src/modules/
|
1293 |
__( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
|
1294 |
|
1295 |
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:90
|
1296 |
__( 'Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further.', 'google-analytics-dashboard-for-wp' ),
|
1297 |
|
1298 |
-
// Reference: src/modules/
|
1299 |
__( 'The number of distinct tracked users', 'google-analytics-dashboard-for-wp' ),
|
1300 |
|
1301 |
-
// Reference: src/modules/
|
1302 |
__( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
|
1303 |
|
1304 |
-
// Reference: src/modules/
|
1305 |
-
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:93
|
1306 |
__( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
|
1307 |
|
1308 |
-
// Reference: src/modules/
|
1309 |
-
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:94
|
1310 |
__( 'Total Users', 'google-analytics-dashboard-for-wp' ),
|
1311 |
|
1312 |
// Reference: src/modules/settings/components/input/SettingsInputSelect.vue:62
|
@@ -1331,7 +1323,7 @@ $generated_i18n_strings = array(
|
|
1331 |
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:40
|
1332 |
__( 'Our Pro plan includes:', 'google-analytics-dashboard-for-wp' ),
|
1333 |
|
1334 |
-
// Reference: src/modules/wizard-onboarding/api/index.js:
|
1335 |
/* Translators: Error status and error text. */
|
1336 |
__( 'Can\'t load errors. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1337 |
|
@@ -1345,8 +1337,8 @@ $generated_i18n_strings = array(
|
|
1345 |
/* Translators: add link to blog. */
|
1346 |
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
1347 |
|
1348 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
1349 |
-
// Reference: src/modules/
|
1350 |
__( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
|
1351 |
|
1352 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:41
|
@@ -1589,7 +1581,7 @@ $generated_i18n_strings = array(
|
|
1589 |
// Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:272
|
1590 |
__( 'A Tip for 2021', 'google-analytics-dashboard-for-wp' ),
|
1591 |
|
1592 |
-
// Reference: src/modules/
|
1593 |
__( 'Demographics', 'google-analytics-dashboard-for-wp' ),
|
1594 |
|
1595 |
// Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:274
|
@@ -1862,24 +1854,30 @@ $generated_i18n_strings = array(
|
|
1862 |
__( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-dashboard-for-wp' ),
|
1863 |
|
1864 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:72
|
|
|
1865 |
__( 'Dual Tracking Profile', 'google-analytics-dashboard-for-wp' ),
|
1866 |
|
1867 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:74
|
|
|
1868 |
__( 'The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ),
|
1869 |
|
1870 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:78
|
|
|
1871 |
__( 'Your Universal Analytics code should look like UA-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-dashboard-for-wp' ),
|
1872 |
|
1873 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:80
|
|
|
1874 |
__( 'The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ),
|
1875 |
|
1876 |
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:96
|
1877 |
__( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-dashboard-for-wp' ),
|
1878 |
|
1879 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:85
|
|
|
1880 |
__( 'Measurement Protocol API Secret', 'google-analytics-dashboard-for-wp' ),
|
1881 |
|
1882 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:87
|
|
|
1883 |
__( 'The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s.', 'google-analytics-dashboard-for-wp' ),
|
1884 |
|
1885 |
// Reference: src/modules/widget/components/settings/exactmetrics-WidgetSettingsCompact.vue:16
|
@@ -2142,17 +2140,17 @@ $generated_i18n_strings = array(
|
|
2142 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:35
|
2143 |
__( 'Unlock PRO Features Now', 'google-analytics-dashboard-for-wp' ),
|
2144 |
|
2145 |
-
// Reference: src/modules/
|
2146 |
__( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
|
2147 |
|
2148 |
-
// Reference: src/modules/
|
2149 |
__( 'Verify', 'google-analytics-dashboard-for-wp' ),
|
2150 |
|
2151 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:39
|
2152 |
/* Translators: Add link to retrieve license from account area. */
|
2153 |
__( 'Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
|
2154 |
|
2155 |
-
// Reference: src/modules/settings/components/
|
2156 |
__( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
|
2157 |
|
2158 |
// Reference: src/modules/seo/components/yoast.vue:137
|
@@ -2297,7 +2295,7 @@ $generated_i18n_strings = array(
|
|
2297 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:90
|
2298 |
__( 'Reports', 'google-analytics-dashboard-for-wp' ),
|
2299 |
|
2300 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-
|
2301 |
__( 'Automatic Updates', 'google-analytics-dashboard-for-wp' ),
|
2302 |
|
2303 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:105
|
@@ -2555,25 +2553,25 @@ $generated_i18n_strings = array(
|
|
2555 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:56
|
2556 |
__( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-dashboard-for-wp' ),
|
2557 |
|
2558 |
-
// Reference: src/modules/
|
2559 |
__( 'See The Number of Transactions and Make Data-Driven Decisions', 'google-analytics-dashboard-for-wp' ),
|
2560 |
|
2561 |
-
// Reference: src/modules/
|
2562 |
__( 'See The Total Revenue to Track Growth', 'google-analytics-dashboard-for-wp' ),
|
2563 |
|
2564 |
-
// Reference: src/modules/
|
2565 |
__( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-dashboard-for-wp' ),
|
2566 |
|
2567 |
-
// Reference: src/modules/
|
2568 |
__( 'See Your Top Products to See Individual Performance', 'google-analytics-dashboard-for-wp' ),
|
2569 |
|
2570 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:76
|
2571 |
__( 'See your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
|
2572 |
|
2573 |
-
// Reference: src/modules/
|
2574 |
__( 'See The Time it Takes for Customers to Purchase', 'google-analytics-dashboard-for-wp' ),
|
2575 |
|
2576 |
-
// Reference: src/modules/
|
2577 |
__( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
|
2578 |
|
2579 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:88
|
@@ -2788,7 +2786,7 @@ $generated_i18n_strings = array(
|
|
2788 |
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:45
|
2789 |
__( 'Better Support', 'google-analytics-dashboard-for-wp' ),
|
2790 |
|
2791 |
-
// Reference: src/modules/wizard-onboarding/components/steps/
|
2792 |
__( 'Continue', 'google-analytics-dashboard-for-wp' ),
|
2793 |
|
2794 |
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:48
|
@@ -2931,6 +2929,7 @@ $generated_i18n_strings = array(
|
|
2931 |
__( 'Close', 'google-analytics-dashboard-for-wp' ),
|
2932 |
|
2933 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:28
|
|
|
2934 |
__( 'Add Top 5 Posts from Google Analytics', 'google-analytics-dashboard-for-wp' ),
|
2935 |
|
2936 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49
|
@@ -2944,6 +2943,7 @@ $generated_i18n_strings = array(
|
|
2944 |
__( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-dashboard-for-wp' ),
|
2945 |
|
2946 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:30
|
|
|
2947 |
__( 'Automated + Curated', 'google-analytics-dashboard-for-wp' ),
|
2948 |
|
2949 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
|
@@ -2997,34 +2997,34 @@ $generated_i18n_strings = array(
|
|
2997 |
// Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:92
|
2998 |
__( 'Can\'t load posts.', 'google-analytics-dashboard-for-wp' ),
|
2999 |
|
3000 |
-
// Reference: src/modules/popular-posts/components/input/
|
3001 |
__( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-dashboard-for-wp' ),
|
3002 |
|
3003 |
-
// Reference: src/modules/popular-posts/components/input/
|
3004 |
__( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-dashboard-for-wp' ),
|
3005 |
|
3006 |
-
// Reference: src/modules/popular-posts/components/input/
|
3007 |
__( 'Color', 'google-analytics-dashboard-for-wp' ),
|
3008 |
|
3009 |
-
// Reference: src/modules/popular-posts/components/input/
|
3010 |
__( 'Size', 'google-analytics-dashboard-for-wp' ),
|
3011 |
|
3012 |
-
// Reference: src/modules/popular-posts/components/input/
|
3013 |
__( 'Title', 'google-analytics-dashboard-for-wp' ),
|
3014 |
|
3015 |
-
// Reference: src/modules/popular-posts/components/input/
|
3016 |
__( 'Label', 'google-analytics-dashboard-for-wp' ),
|
3017 |
|
3018 |
-
// Reference: src/modules/popular-posts/components/input/
|
3019 |
__( 'Background', 'google-analytics-dashboard-for-wp' ),
|
3020 |
|
3021 |
-
// Reference: src/modules/popular-posts/components/input/
|
3022 |
__( 'Border', 'google-analytics-dashboard-for-wp' ),
|
3023 |
|
3024 |
-
// Reference: src/modules/popular-posts/components/input/
|
3025 |
__( 'Icon', 'google-analytics-dashboard-for-wp' ),
|
3026 |
|
3027 |
-
// Reference: src/modules/popular-posts/components/input/
|
3028 |
__( 'Theme Preview', 'google-analytics-dashboard-for-wp' ),
|
3029 |
|
3030 |
// Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:31
|
@@ -3107,7 +3107,7 @@ $generated_i18n_strings = array(
|
|
3107 |
/* Translators: Make text green. */
|
3108 |
__( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-dashboard-for-wp' ),
|
3109 |
|
3110 |
-
// Reference: src/modules/settings/components/
|
3111 |
__( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
|
3112 |
|
3113 |
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPdfReports-Lite.vue:17
|
@@ -3201,6 +3201,7 @@ $generated_i18n_strings = array(
|
|
3201 |
__( 'There are two ways to manual include the widget in your posts.', 'google-analytics-dashboard-for-wp' ),
|
3202 |
|
3203 |
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:79
|
|
|
3204 |
__( 'Using the Gutenberg Block', 'google-analytics-dashboard-for-wp' ),
|
3205 |
|
3206 |
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:80
|
@@ -3216,21 +3217,25 @@ $generated_i18n_strings = array(
|
|
3216 |
__( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg', 'google-analytics-dashboard-for-wp' ),
|
3217 |
|
3218 |
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:85
|
|
|
3219 |
__( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-dashboard-for-wp' ),
|
3220 |
|
3221 |
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:86
|
3222 |
__( '%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”.', 'google-analytics-dashboard-for-wp' ),
|
3223 |
|
3224 |
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87
|
|
|
3225 |
__( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-dashboard-for-wp' ),
|
3226 |
|
3227 |
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:89
|
3228 |
__( 'Shortcode', 'google-analytics-dashboard-for-wp' ),
|
3229 |
|
3230 |
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
|
|
|
3231 |
__( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-dashboard-for-wp' ),
|
3232 |
|
3233 |
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:91
|
|
|
3234 |
__( 'Copy Shortcode', 'google-analytics-dashboard-for-wp' ),
|
3235 |
|
3236 |
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:92
|
@@ -3503,7 +3508,7 @@ $generated_i18n_strings = array(
|
|
3503 |
// Reference: src/modules/growth-tools/components/GrowthNavigation.vue:21
|
3504 |
__( 'Guides & Resources', 'google-analytics-dashboard-for-wp' ),
|
3505 |
|
3506 |
-
// Reference: src/modules/
|
3507 |
__( 'Media Tracking', 'google-analytics-dashboard-for-wp' ),
|
3508 |
|
3509 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:34
|
@@ -3626,12 +3631,15 @@ $generated_i18n_strings = array(
|
|
3626 |
__( 'The following plugins will be installed: ', 'google-analytics-dashboard-for-wp' ),
|
3627 |
|
3628 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:84
|
|
|
3629 |
__( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-dashboard-for-wp' ),
|
3630 |
|
3631 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:70
|
|
|
3632 |
__( 'Manually enter your GA4 Measurement ID', 'google-analytics-dashboard-for-wp' ),
|
3633 |
|
3634 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:71
|
|
|
3635 |
__( 'Warning: If you use a manual GA4 Measurement ID, you won\'t be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-dashboard-for-wp' ),
|
3636 |
|
3637 |
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:96
|
10 |
// Reference: src/plugins/exactmetrics-settings-helper-plugin.js:116
|
11 |
__( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
|
12 |
|
|
|
|
|
13 |
// Reference: src/plugins/exactmetrics-settings-helper-plugin.js:117
|
14 |
__( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
|
15 |
|
33 |
/* Translators: Placeholder gets replaced with an arrow icon. */
|
34 |
__( 'Continue %s', 'google-analytics-dashboard-for-wp' ),
|
35 |
|
36 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:154
|
37 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:229
|
38 |
__( 'Error', 'google-analytics-dashboard-for-wp' ),
|
39 |
|
40 |
// Reference: src/plugins/exactmetrics-widget-helper-plugin.js:16
|
91 |
// Reference: src/plugins/exactmetrics-widget-helper-plugin.js:42
|
92 |
__( 'Today', 'google-analytics-dashboard-for-wp' ),
|
93 |
|
94 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:67
|
95 |
// Reference: src/plugins/exactmetrics-widget-helper-plugin.js:48
|
96 |
__( 'Yesterday', 'google-analytics-dashboard-for-wp' ),
|
97 |
|
104 |
// Reference: src/plugins/exactmetrics-widget-helper-plugin.js:66
|
105 |
__( 'Last 7 days', 'google-analytics-dashboard-for-wp' ),
|
106 |
|
|
|
107 |
// Reference: src/plugins/exactmetrics-widget-helper-plugin.js:72
|
108 |
__( 'Last 30 days', 'google-analytics-dashboard-for-wp' ),
|
109 |
|
122 |
__( 'See the full analytics report!', 'google-analytics-dashboard-for-wp' ),
|
123 |
|
124 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:270
|
125 |
+
// Reference: src/modules/widget/widget.vue:25
|
126 |
__( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
|
127 |
|
128 |
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:13
|
159 |
// Reference: src/modules/settings/routes/network.js:43
|
160 |
__( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
|
161 |
|
162 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:60
|
163 |
// Reference: src/modules/settings/routes/network.js:52
|
164 |
__( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
|
165 |
|
216 |
/* Translators: Adds a link and an arrow icon. */
|
217 |
__( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
|
218 |
|
219 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:11
|
220 |
__( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
|
221 |
|
222 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:12
|
223 |
__( 'per year', 'google-analytics-dashboard-for-wp' ),
|
224 |
|
225 |
+
// Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:46
|
226 |
// Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:22
|
227 |
__( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
|
228 |
|
229 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:148
|
230 |
__( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
|
231 |
|
232 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:33
|
233 |
__( '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!', 'google-analytics-dashboard-for-wp' ),
|
234 |
|
235 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:34
|
236 |
__( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
|
237 |
|
238 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:38
|
239 |
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
240 |
|
241 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:39
|
242 |
__( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
|
243 |
|
244 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:43
|
245 |
__( '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!', 'google-analytics-dashboard-for-wp' ),
|
246 |
|
247 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:44
|
248 |
__( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
|
249 |
|
250 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:218
|
251 |
__( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
|
252 |
|
|
|
253 |
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:66
|
254 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:54
|
|
|
|
|
255 |
__( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
|
256 |
|
257 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:98
|
258 |
__( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
|
259 |
|
260 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:172
|
261 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:49
|
262 |
__( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
|
263 |
|
264 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:46
|
265 |
__( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
|
266 |
|
267 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:48
|
268 |
__( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
|
269 |
|
270 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:50
|
271 |
__( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
|
272 |
|
273 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:43
|
274 |
__( 'EU Compliance Addon', 'google-analytics-dashboard-for-wp' ),
|
275 |
|
276 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:45
|
277 |
__( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
|
278 |
|
279 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:47
|
280 |
__( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
|
281 |
|
282 |
+
// Reference: src/modules/reports/routes/exactmetrics-routes.js:49
|
283 |
__( 'Search Console', 'google-analytics-dashboard-for-wp' ),
|
284 |
|
285 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:51
|
286 |
__( 'Custom Date Ranges', 'google-analytics-dashboard-for-wp' ),
|
287 |
|
288 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:84
|
301 |
__( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
|
302 |
|
303 |
// Reference: src/components/ContentIntroFullWidth.vue:46
|
|
|
304 |
__( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
|
305 |
|
306 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:144
|
321 |
/* Translators: Placeholder is replaced with WPForms. */
|
322 |
__( 'Recommended Plugin: %s', 'google-analytics-dashboard-for-wp' ),
|
323 |
|
324 |
+
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:42
|
325 |
__( 'Install', 'google-analytics-dashboard-for-wp' ),
|
326 |
|
327 |
+
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:38
|
328 |
__( 'Activate', 'google-analytics-dashboard-for-wp' ),
|
329 |
|
330 |
// Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
|
331 |
+
// Reference: src/modules/growth-tools/exactmetrics-growth-tools.vue:246
|
332 |
// Reference: src/modules/widget/components/WidgetFooter.vue:22
|
333 |
__( 'Learn More', 'google-analytics-dashboard-for-wp' ),
|
334 |
|
344 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:162
|
345 |
__( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
|
346 |
|
347 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:236
|
|
|
348 |
__( 'Ok', 'google-analytics-dashboard-for-wp' ),
|
349 |
|
350 |
// Reference: src/modules/addons/components/AddonsNavigation.vue:18
|
432 |
__( 'This list shows the download links your visitors clicked the most.', 'google-analytics-dashboard-for-wp' ),
|
433 |
|
434 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:25
|
|
|
435 |
__( 'Overview', 'google-analytics-dashboard-for-wp' ),
|
436 |
|
437 |
// Reference: src/modules/widget/store/index.js:83
|
453 |
__( 'Analytics', 'google-analytics-dashboard-for-wp' ),
|
454 |
|
455 |
// Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:65
|
|
|
456 |
/* Translators: Adds an arrow icon. */
|
457 |
__( 'View All Reports %s', 'google-analytics-dashboard-for-wp' ),
|
458 |
|
462 |
// Reference: src/modules/reports/components/ReportNoAuth.vue:26
|
463 |
__( 'ExactMetrics makes it "effortless" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard.', 'google-analytics-dashboard-for-wp' ),
|
464 |
|
465 |
+
// Reference: src/modules/reports/components/ReportNoAuth.vue:27
|
466 |
__( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
|
467 |
|
468 |
// Reference: src/modules/reports/components/ReportNoAuth.vue:28
|
497 |
__( 'Publishers', 'google-analytics-dashboard-for-wp' ),
|
498 |
|
499 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:41
|
|
|
500 |
__( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
|
501 |
|
502 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:57
|
508 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:73
|
509 |
__( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
|
510 |
|
|
|
511 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:81
|
512 |
__( 'Site Speed Report', 'google-analytics-dashboard-for-wp' ),
|
513 |
|
521 |
// Reference: src/modules/settings/routes/site.js:111
|
522 |
__( 'PrettyLinks Integration', 'google-analytics-dashboard-for-wp' ),
|
523 |
|
524 |
+
// Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:22
|
525 |
__( 'Inline Popular Posts', 'google-analytics-dashboard-for-wp' ),
|
526 |
|
527 |
+
// Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:23
|
528 |
__( 'Popular Posts Widget', 'google-analytics-dashboard-for-wp' ),
|
529 |
|
530 |
+
// Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:24
|
531 |
__( 'Popular Products', 'google-analytics-dashboard-for-wp' ),
|
532 |
|
533 |
// Reference: src/modules/settings/routes/site.js:189
|
536 |
// Reference: src/modules/settings/routes/site.js:200
|
537 |
__( 'Sub menu item for WooCommerce Analytics', 'google-analytics-dashboard-for-wp' ),
|
538 |
|
539 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:67
|
540 |
__( 'General', 'google-analytics-dashboard-for-wp' ),
|
541 |
|
542 |
+
// Reference: src/modules/growth-tools/components/GrowthNavigation.vue:19
|
543 |
__( 'Engagement', 'google-analytics-dashboard-for-wp' ),
|
544 |
|
545 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:70
|
546 |
__( 'Publisher', 'google-analytics-dashboard-for-wp' ),
|
547 |
|
548 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:44
|
549 |
__( 'Conversions', 'google-analytics-dashboard-for-wp' ),
|
550 |
|
551 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:72
|
552 |
__( 'Advanced', 'google-analytics-dashboard-for-wp' ),
|
553 |
|
554 |
// Reference: src/modules/settings/routes/site.js:95
|
595 |
// Reference: src/modules/reports/store/actions.js:209
|
596 |
__( 'View Addons', 'google-analytics-dashboard-for-wp' ),
|
597 |
|
598 |
+
// Reference: src/modules/seo/components/aioseo.vue:246
|
599 |
__( 'Dismiss', 'google-analytics-dashboard-for-wp' ),
|
600 |
|
601 |
// Reference: src/modules/reports/store/actions.js:217
|
604 |
// Reference: src/modules/reports/store/actions.js:218
|
605 |
__( 'Please wait', 'google-analytics-dashboard-for-wp' ),
|
606 |
|
607 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119
|
608 |
__( 'activate', 'google-analytics-dashboard-for-wp' ),
|
609 |
|
610 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119
|
611 |
__( 'install', 'google-analytics-dashboard-for-wp' ),
|
612 |
|
613 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:127
|
614 |
__( 'Visit addons page', 'google-analytics-dashboard-for-wp' ),
|
615 |
|
616 |
// Reference: src/modules/reports/store/actions.js:68
|
639 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:33
|
640 |
__( 'Let\'s get you set up.', 'google-analytics-dashboard-for-wp' ),
|
641 |
|
642 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:68
|
643 |
__( 'Save and Continue', 'google-analytics-dashboard-for-wp' ),
|
644 |
|
645 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:35
|
664 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:62
|
665 |
__( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
|
666 |
|
667 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:118
|
668 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:63
|
669 |
__( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
|
670 |
|
671 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:119
|
672 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:64
|
673 |
__( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
|
674 |
|
675 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:65
|
723 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:57
|
724 |
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
725 |
|
726 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:58
|
727 |
__( 'Enhanced Link Attribution', 'google-analytics-dashboard-for-wp' ),
|
728 |
|
729 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:59
|
750 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:66
|
751 |
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
752 |
|
753 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:56
|
754 |
/* Translators: Example path (/go/). */
|
755 |
__( 'Path (example: %s)', 'google-analytics-dashboard-for-wp' ),
|
756 |
|
757 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:58
|
758 |
__( 'Path has to start with a / and have no spaces', 'google-analytics-dashboard-for-wp' ),
|
759 |
|
760 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:63
|
761 |
/* Translators: Example label (aff). */
|
762 |
__( 'Label (example: %s)', 'google-analytics-dashboard-for-wp' ),
|
763 |
|
764 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:65
|
765 |
__( 'Label can\'t contain any spaces', 'google-analytics-dashboard-for-wp' ),
|
766 |
|
767 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:83
|
804 |
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:50
|
805 |
__( 'Site Speed', 'google-analytics-dashboard-for-wp' ),
|
806 |
|
807 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:27
|
808 |
__( 'License Key', 'google-analytics-dashboard-for-wp' ),
|
809 |
|
810 |
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:62
|
811 |
/* Translators: Add link to retrieve license key from account. */
|
812 |
__( 'Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
|
813 |
|
814 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:114
|
815 |
__( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
|
816 |
|
817 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:32
|
818 |
__( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
|
819 |
|
820 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:34
|
821 |
__( 'Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes.', 'google-analytics-dashboard-for-wp' ),
|
822 |
|
823 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:35
|
824 |
__( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
|
825 |
|
826 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:129
|
827 |
__( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
|
828 |
|
829 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:131
|
830 |
+
/* Translators: Adds link to upgrade. */
|
831 |
__( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
|
832 |
|
833 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:132
|
834 |
__( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
|
835 |
|
836 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:134
|
837 |
__( 'See all features', 'google-analytics-dashboard-for-wp' ),
|
838 |
|
839 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:121
|
840 |
__( 'Setup Wizard', 'google-analytics-dashboard-for-wp' ),
|
841 |
|
842 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:122
|
843 |
__( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-dashboard-for-wp' ),
|
844 |
|
845 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:123
|
846 |
__( 'Relaunch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
|
847 |
|
848 |
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:59
|
867 |
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:90
|
868 |
__( 'Refreshing Addons', 'google-analytics-dashboard-for-wp' ),
|
869 |
|
870 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:65
|
871 |
__( 'Get ExactMetrics Pro Today and Unlock all the Powerful Features', 'google-analytics-dashboard-for-wp' ),
|
872 |
|
873 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:107
|
945 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:120
|
946 |
__( 'Overview Reports for the last 30 days.', 'google-analytics-dashboard-for-wp' ),
|
947 |
|
948 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:121
|
949 |
__( 'Advanced Reports', 'google-analytics-dashboard-for-wp' ),
|
950 |
|
951 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:122
|
976 |
__( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-dashboard-for-wp' ),
|
977 |
|
978 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:145
|
979 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:73
|
980 |
__( 'Headline Analyzer', 'google-analytics-dashboard-for-wp' ),
|
981 |
|
982 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:153
|
983 |
__( 'Email Summaries', 'google-analytics-dashboard-for-wp' ),
|
984 |
|
985 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:155
|
1004 |
__( 'Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks.', 'google-analytics-dashboard-for-wp' ),
|
1005 |
|
1006 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:175
|
|
|
1007 |
__( 'Not Available', 'google-analytics-dashboard-for-wp' ),
|
1008 |
|
1009 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:176
|
1036 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:66
|
1037 |
__( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
|
1038 |
|
1039 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:67
|
1040 |
// Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:101
|
1041 |
__( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
|
1042 |
|
1098 |
/* Translators: Error status and error text. */
|
1099 |
__( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1100 |
|
1101 |
+
// Reference: src/modules/auth/api/index.js:123
|
1102 |
__( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
|
1103 |
|
1104 |
// Reference: src/modules/auth/api/index.js:232
|
1105 |
/* Translators: Error status and error text. */
|
1106 |
__( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1107 |
|
|
|
1108 |
// Reference: src/modules/settings/api/index.js:81
|
1109 |
__( 'Network error encountered. Settings not saved.', 'google-analytics-dashboard-for-wp' ),
|
1110 |
|
1230 |
// Reference: src/modules/widget/components/WidgetNoticeCompact.vue:15
|
1231 |
__( 'Check out the newly added classic mode', 'google-analytics-dashboard-for-wp' ),
|
1232 |
|
1233 |
+
// Reference: src/modules/widget/components/settings/WidgetSettingsIntervalUpsell.vue:26
|
1234 |
/* Translators: Placeholder adds a line break. */
|
1235 |
__( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-dashboard-for-wp' ),
|
1236 |
|
1263 |
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:64
|
1264 |
__( 'Remove row', 'google-analytics-dashboard-for-wp' ),
|
1265 |
|
1266 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:271
|
|
|
1267 |
__( 'Sessions', 'google-analytics-dashboard-for-wp' ),
|
1268 |
|
1269 |
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:83
|
1270 |
/* Translators: Line break. */
|
1271 |
__( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
|
1272 |
|
1273 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:272
|
|
|
1274 |
__( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
|
1275 |
|
1276 |
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:86
|
1277 |
/* Translators: Line break. */
|
1278 |
__( 'Unique %s Pageviews', 'google-analytics-dashboard-for-wp' ),
|
1279 |
|
1280 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:285
|
1281 |
__( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
|
1282 |
|
1283 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:286
|
1284 |
__( 'A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview.', 'google-analytics-dashboard-for-wp' ),
|
1285 |
|
1286 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:287
|
1287 |
__( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
|
1288 |
|
1289 |
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:90
|
1290 |
__( 'Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further.', 'google-analytics-dashboard-for-wp' ),
|
1291 |
|
1292 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:289
|
1293 |
__( 'The number of distinct tracked users', 'google-analytics-dashboard-for-wp' ),
|
1294 |
|
1295 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:273
|
1296 |
__( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
|
1297 |
|
1298 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:274
|
|
|
1299 |
__( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
|
1300 |
|
1301 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:275
|
|
|
1302 |
__( 'Total Users', 'google-analytics-dashboard-for-wp' ),
|
1303 |
|
1304 |
// Reference: src/modules/settings/components/input/SettingsInputSelect.vue:62
|
1323 |
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:40
|
1324 |
__( 'Our Pro plan includes:', 'google-analytics-dashboard-for-wp' ),
|
1325 |
|
1326 |
+
// Reference: src/modules/wizard-onboarding/api/index.js:18
|
1327 |
/* Translators: Error status and error text. */
|
1328 |
__( 'Can\'t load errors. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1329 |
|
1337 |
/* Translators: add link to blog. */
|
1338 |
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
1339 |
|
1340 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:35
|
1341 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:52
|
1342 |
__( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
|
1343 |
|
1344 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:41
|
1581 |
// Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:272
|
1582 |
__( 'A Tip for 2021', 'google-analytics-dashboard-for-wp' ),
|
1583 |
|
1584 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:65
|
1585 |
__( 'Demographics', 'google-analytics-dashboard-for-wp' ),
|
1586 |
|
1587 |
// Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:274
|
1854 |
__( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-dashboard-for-wp' ),
|
1855 |
|
1856 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:72
|
1857 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:77
|
1858 |
__( 'Dual Tracking Profile', 'google-analytics-dashboard-for-wp' ),
|
1859 |
|
1860 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:74
|
1861 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:79
|
1862 |
__( 'The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ),
|
1863 |
|
1864 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:78
|
1865 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:83
|
1866 |
__( 'Your Universal Analytics code should look like UA-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-dashboard-for-wp' ),
|
1867 |
|
1868 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:80
|
1869 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:85
|
1870 |
__( 'The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ),
|
1871 |
|
1872 |
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:96
|
1873 |
__( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-dashboard-for-wp' ),
|
1874 |
|
1875 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:85
|
1876 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:90
|
1877 |
__( 'Measurement Protocol API Secret', 'google-analytics-dashboard-for-wp' ),
|
1878 |
|
1879 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:87
|
1880 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:92
|
1881 |
__( 'The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s.', 'google-analytics-dashboard-for-wp' ),
|
1882 |
|
1883 |
// Reference: src/modules/widget/components/settings/exactmetrics-WidgetSettingsCompact.vue:16
|
2140 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:35
|
2141 |
__( 'Unlock PRO Features Now', 'google-analytics-dashboard-for-wp' ),
|
2142 |
|
2143 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:156
|
2144 |
__( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
|
2145 |
|
2146 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:157
|
2147 |
__( 'Verify', 'google-analytics-dashboard-for-wp' ),
|
2148 |
|
2149 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:39
|
2150 |
/* Translators: Add link to retrieve license from account area. */
|
2151 |
__( 'Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
|
2152 |
|
2153 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:172
|
2154 |
__( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
|
2155 |
|
2156 |
// Reference: src/modules/seo/components/yoast.vue:137
|
2295 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:90
|
2296 |
__( 'Reports', 'google-analytics-dashboard-for-wp' ),
|
2297 |
|
2298 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:120
|
2299 |
__( 'Automatic Updates', 'google-analytics-dashboard-for-wp' ),
|
2300 |
|
2301 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:105
|
2553 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:56
|
2554 |
__( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-dashboard-for-wp' ),
|
2555 |
|
2556 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:60
|
2557 |
__( 'See The Number of Transactions and Make Data-Driven Decisions', 'google-analytics-dashboard-for-wp' ),
|
2558 |
|
2559 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:64
|
2560 |
__( 'See The Total Revenue to Track Growth', 'google-analytics-dashboard-for-wp' ),
|
2561 |
|
2562 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:68
|
2563 |
__( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-dashboard-for-wp' ),
|
2564 |
|
2565 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:72
|
2566 |
__( 'See Your Top Products to See Individual Performance', 'google-analytics-dashboard-for-wp' ),
|
2567 |
|
2568 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:76
|
2569 |
__( 'See your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
|
2570 |
|
2571 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:80
|
2572 |
__( 'See The Time it Takes for Customers to Purchase', 'google-analytics-dashboard-for-wp' ),
|
2573 |
|
2574 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:84
|
2575 |
__( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
|
2576 |
|
2577 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:88
|
2786 |
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:45
|
2787 |
__( 'Better Support', 'google-analytics-dashboard-for-wp' ),
|
2788 |
|
2789 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:41
|
2790 |
__( 'Continue', 'google-analytics-dashboard-for-wp' ),
|
2791 |
|
2792 |
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:48
|
2929 |
__( 'Close', 'google-analytics-dashboard-for-wp' ),
|
2930 |
|
2931 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:28
|
2932 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:48
|
2933 |
__( 'Add Top 5 Posts from Google Analytics', 'google-analytics-dashboard-for-wp' ),
|
2934 |
|
2935 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49
|
2943 |
__( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-dashboard-for-wp' ),
|
2944 |
|
2945 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:30
|
2946 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:53
|
2947 |
__( 'Automated + Curated', 'google-analytics-dashboard-for-wp' ),
|
2948 |
|
2949 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
|
2997 |
// Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:92
|
2998 |
__( 'Can\'t load posts.', 'google-analytics-dashboard-for-wp' ),
|
2999 |
|
3000 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:100
|
3001 |
__( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-dashboard-for-wp' ),
|
3002 |
|
3003 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:101
|
3004 |
__( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-dashboard-for-wp' ),
|
3005 |
|
3006 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:102
|
3007 |
__( 'Color', 'google-analytics-dashboard-for-wp' ),
|
3008 |
|
3009 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:103
|
3010 |
__( 'Size', 'google-analytics-dashboard-for-wp' ),
|
3011 |
|
3012 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:104
|
3013 |
__( 'Title', 'google-analytics-dashboard-for-wp' ),
|
3014 |
|
3015 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:105
|
3016 |
__( 'Label', 'google-analytics-dashboard-for-wp' ),
|
3017 |
|
3018 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:106
|
3019 |
__( 'Background', 'google-analytics-dashboard-for-wp' ),
|
3020 |
|
3021 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:107
|
3022 |
__( 'Border', 'google-analytics-dashboard-for-wp' ),
|
3023 |
|
3024 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:108
|
3025 |
__( 'Icon', 'google-analytics-dashboard-for-wp' ),
|
3026 |
|
3027 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:60
|
3028 |
__( 'Theme Preview', 'google-analytics-dashboard-for-wp' ),
|
3029 |
|
3030 |
// Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:31
|
3107 |
/* Translators: Make text green. */
|
3108 |
__( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-dashboard-for-wp' ),
|
3109 |
|
3110 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPdfReports-Lite.vue:16
|
3111 |
__( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
|
3112 |
|
3113 |
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPdfReports-Lite.vue:17
|
3201 |
__( 'There are two ways to manual include the widget in your posts.', 'google-analytics-dashboard-for-wp' ),
|
3202 |
|
3203 |
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:79
|
3204 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:105
|
3205 |
__( 'Using the Gutenberg Block', 'google-analytics-dashboard-for-wp' ),
|
3206 |
|
3207 |
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:80
|
3217 |
__( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg', 'google-analytics-dashboard-for-wp' ),
|
3218 |
|
3219 |
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:85
|
3220 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:113
|
3221 |
__( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-dashboard-for-wp' ),
|
3222 |
|
3223 |
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:86
|
3224 |
__( '%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”.', 'google-analytics-dashboard-for-wp' ),
|
3225 |
|
3226 |
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87
|
3227 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:115
|
3228 |
__( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-dashboard-for-wp' ),
|
3229 |
|
3230 |
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:89
|
3231 |
__( 'Shortcode', 'google-analytics-dashboard-for-wp' ),
|
3232 |
|
3233 |
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
|
3234 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:123
|
3235 |
__( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-dashboard-for-wp' ),
|
3236 |
|
3237 |
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:91
|
3238 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:124
|
3239 |
__( 'Copy Shortcode', 'google-analytics-dashboard-for-wp' ),
|
3240 |
|
3241 |
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:92
|
3508 |
// Reference: src/modules/growth-tools/components/GrowthNavigation.vue:21
|
3509 |
__( 'Guides & Resources', 'google-analytics-dashboard-for-wp' ),
|
3510 |
|
3511 |
+
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputMedia-Lite.vue:25
|
3512 |
__( 'Media Tracking', 'google-analytics-dashboard-for-wp' ),
|
3513 |
|
3514 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:34
|
3631 |
__( 'The following plugins will be installed: ', 'google-analytics-dashboard-for-wp' ),
|
3632 |
|
3633 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:84
|
3634 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:89
|
3635 |
__( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-dashboard-for-wp' ),
|
3636 |
|
3637 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:70
|
3638 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:75
|
3639 |
__( 'Manually enter your GA4 Measurement ID', 'google-analytics-dashboard-for-wp' ),
|
3640 |
|
3641 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:71
|
3642 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:76
|
3643 |
__( 'Warning: If you use a manual GA4 Measurement ID, you won\'t be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-dashboard-for-wp' ),
|
3644 |
|
3645 |
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:96
|
lite/assets/vue/js/wizard.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
(function(t){function e(e){for(var a,r,i=e[0],l=e[1],c=e[2],u=0,g=[];u<i.length;u++)r=i[u],o[r]&&g.push(o[r][0]),o[r]=0;for(a in l)Object.prototype.hasOwnProperty.call(l,a)&&(t[a]=l[a]);d&&d(e);while(g.length)g.shift()();return n.push.apply(n,c||[]),s()}function s(){for(var t,e=0;e<n.length;e++){for(var s=n[e],a=!0,i=1;i<s.length;i++){var l=s[i];0!==o[l]&&(a=!1)}a&&(n.splice(e--,1),t=r(r.s=s[0]))}return t}var a={},o={wizard:0},n=[];function r(e){if(a[e])return a[e].exports;var s=a[e]={i:e,l:!1,exports:{}};return t[e].call(s.exports,s,s.exports,r),s.l=!0,s.exports}r.m=t,r.c=a,r.d=function(t,e,s){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:s})},r.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,e){if(1&e&&(t=r(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var s=Object.create(null);if(r.r(s),Object.defineProperty(s,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var a in t)r.d(s,a,function(e){return t[e]}.bind(null,a));return s},r.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="https://am-plugins.site/";var i=window["exactmetricsjsonp"]=window["exactmetricsjsonp"]||[],l=i.push.bind(i);i.push=e,i=i.slice();for(var c=0;c<i.length;c++)e(i[c]);var d=l;n.push([1,"chunk-vendors","chunk-common"]),s()})({"01cb":function(t,e,s){},"0951":function(t,e,s){"use strict";s.r(e);s("e260"),s("e6cf"),s("cca6"),s("a79d");var a=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-admin-page onboarding-wizard"},[s("the-wizard-header"),s("the-wizard-timeline"),s("div",{staticClass:"exactmetrics-onboarding-wizard-container"},[s("div",{staticClass:"exactmetrics-onboarding-wizard-content"},[s("router-view")],1)]),"success"===t.route?s("OnboardingBottomUpsell"):t._e(),t.blocked?s("div",{staticClass:"exactmetrics-blocked"}):t._e()],1)},o=[],n=(s("a4d3"),s("4de4"),s("4160"),s("b0c0"),s("e439"),s("dbb4"),s("b64b"),s("159b"),s("fc11")),r=s("8c4f"),i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-step-welcome"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"exactmetrics-onboarding-wizard-form"},[s("div",{staticClass:"exactmetrics-separator"}),s("form",{on:{submit:function(e){return e.preventDefault(),t.handleSubmit(e)}}},[s("div",{staticClass:"exactmetrics-form-row"},[s("div",{staticClass:"exactmetrics-form-label"},[s("label",{domProps:{textContent:t._s(t.text_category_label)}}),s("p",{staticClass:"exactmetrics-description",domProps:{textContent:t._s(t.text_category_sublabel)}})]),s("settings-input-radio",{attrs:{name:"site_type",options:t.options,auth_disabled:!1}})],1),s("div",{staticClass:"exactmetrics-separator"}),s("div",{staticClass:"exactmetrics-form-row exactmetrics-form-buttons"},[s("button",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-large",attrs:{type:"submit",name:"next_step"},domProps:{textContent:t._s(t.text_save)}})])])])],1)},l=[],c=s("561c"),d=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("header",[s("h2",{domProps:{innerHTML:t._s(t.title)}}),t.subtitle?s("p",{staticClass:"subtitle",domProps:{innerHTML:t._s(t.subtitle)}}):t._e()])},u=[],g={name:"OnboardingContentHeader",props:{title:String,subtitle:String}},h=g,p=s("2877"),m=Object(p["a"])(h,d,u,!1,null,null,null),b=m.exports,_=s("6d70"),f={name:"OnboardingStepWelcome",components:{SettingsInputRadio:_["a"],OnboardingContentHeader:b},data:function(){return{text_header_title:Object(c["a"])("Welcome to ExactMetrics!","google-analytics-dashboard-for-wp"),text_header_subtitle:Object(c["a"])("Let's get you set up.","google-analytics-dashboard-for-wp"),text_save:Object(c["a"])("Save and Continue","google-analytics-dashboard-for-wp"),text_category_label:Object(c["a"])("Which category best describes your website?","google-analytics-dashboard-for-wp"),text_category_sublabel:Object(c["a"])("We will recommend the optimal settings for ExactMetrics based on your choice.","google-analytics-dashboard-for-wp"),options:[{value:"business",label:Object(c["a"])("Business Website","google-analytics-dashboard-for-wp")},{value:"publisher",label:Object(c["d"])(Object(c["a"])("Publisher %1$s(Blog)%2$s","google-analytics-dashboard-for-wp"),"<small>","</small>")},{value:"ecommerce",label:Object(c["a"])("Ecommerce","google-analytics-dashboard-for-wp")}]}},methods:{handleSubmit:function(){this.$router.push(this.$wizard_steps[1])}}},w=f,y=Object(p["a"])(w,i,l,!1,null,null,null),v=y.exports,x=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-step-authenticate"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"exactmetrics-onboarding-wizard-form"},[s("form",[s("div",{staticClass:"exactmetrics-form-row"},[s("onboarding-license")],1),s("div",{staticClass:"exactmetrics-separator"}),t.auth_error?[t.auth.network_manual_ua||t.auth.manual_ua?t._e():s("div",{staticClass:"exactmetrics-notice exactmetrics-notice-error"},[s("div",{staticClass:"exactmetrics-notice-inner"},[s("span",{domProps:{textContent:t._s(t.text_error_auth)}})])]),t.auth.network_manual_ua||t.auth.manual_ua?t._e():s("div",{staticClass:"exactmetrics-separator"}),s("label",{domProps:{textContent:t._s(t.text_manual_label)}}),s("p",{domProps:{innerHTML:t._s(t.text_manual_description)}}),s("input",{staticClass:"exactmetrics-manual-ua",attrs:{id:"exactmetrics-auth-manual-ua-input",type:"text"},domProps:{value:t.is_network?t.auth.network_manual_ua:t.auth.manual_ua},on:{change:t.updateManualUa,input:t.fieldInput}}),t.has_ua_error?s("label",{staticClass:"exactmetrics-error"},[s("i",{staticClass:"monstericon-warning-triangle"}),s("span",{domProps:{innerHTML:t._s(t.has_error)}})]):t._e(),s("div",{staticClass:"exactmetrics-separator"}),s("label",{staticClass:"exactmetrics-dark",domProps:{textContent:t._s(t.text_manual_v4_label)}}),s("p",{domProps:{innerHTML:t._s(t.text_manual_v4_description)}}),s("input",{staticClass:"exactmetrics-manual-ua",attrs:{id:"exactmetrics-auth-manual-v4-input",type:"text"},domProps:{value:t.is_network?t.auth.network_manual_v4:t.auth.manual_v4},on:{change:t.updateManualV4}}),t.has_v4_error?s("label",{staticClass:"exactmetrics-error"},[s("i",{staticClass:"monstericon-warning-triangle"}),s("span",{domProps:{innerHTML:t._s(t.has_error)}})]):t._e(),t.auth.manual_v4||t.auth.network_manual_v4?[s("div",{staticClass:"exactmetrics-separator"}),s("label",{staticClass:"exactmetrics-dark",attrs:{for:"exactmetrics-v4-measurement-protocol"},domProps:{textContent:t._s(t.text_v4_measurement_protocol)}}),s("p",{staticClass:"exactmetrics-field-description",domProps:{innerHTML:t._s(t.text_v4_measurement_protocol_description)}}),s("input",{staticClass:"exactmetrics-manual-ua",attrs:{id:"exactmetrics-v4-measurement-protocol",type:"text"},domProps:{value:t.measurement_protocol_secret},on:{change:t.updateMeasurementProtocolSecret}})]:t._e(),s("div",{staticClass:"exactmetrics-separator"}),s("div",{staticClass:"exactmetrics-form-row exactmetrics-form-buttons"},[s("button",{class:t.manual_button_class,attrs:{type:"submit",name:"next_step"},domProps:{textContent:t._s(t.text_save)},on:{click:function(e){return e.preventDefault(),t.handleSubmit(e)}}})])]:[s("onboarding-authenticate",{attrs:{label:t.text_authenticate_label,description:t.text_authenticate_description},on:{nextstep:t.handleSubmit}})]],2)])],1)},O=[],k=(s("d3b7"),s("e25e"),s("ac1f"),s("3ca3"),s("841c"),s("ddb0"),s("2b3d"),s("2f62")),j=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-license-lite"},[s("div",{staticClass:"exactmetrics-separator"}),s("label",{domProps:{textContent:t._s(t.text_license_label)}}),s("div",{staticClass:"settings-input settings-input-license"},[s("p",{domProps:{innerHTML:t._s(t.text_license_description_1)}}),s("p",{domProps:{innerHTML:t._s(t.text_license_description_2)}}),s("a",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-regular",attrs:{href:t.$getUpgradeUrl("onboarding","license"),target:"_blank"},domProps:{textContent:t._s(t.text_upgrade_button)}})])])},C=[];function P(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,a)}return s}function $(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?P(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):P(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var S={name:"OnboardingLicense",computed:$({},Object(k["b"])({license:"$_license/license",license_network:"$_license/license_network",auth:"$_auth/auth"})),data:function(){return{text_license_label:Object(c["a"])("License Key","google-analytics-dashboard-for-wp"),text_license_description_1:Object(c["d"])(Object(c["a"])("You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s","google-analytics-dashboard-for-wp"),"<strong>","</strong>",'<span class="exactmetrics-bg-img exactmetrics-smile"></span>'),text_license_description_2:Object(c["d"])(Object(c["a"])("As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout.","google-analytics-dashboard-for-wp"),'<span class="exactmetrics-highlighted-text">',"</span>"),text_upgrade_button:Object(c["a"])("Unlock All Features and Upgrade to Pro","google-analytics-dashboard-for-wp")}}},A=S,M=Object(p["a"])(A,j,C,!1,null,null,null),T=M.exports,E=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-settings-input exactmetrics-settings-input-authenticate"},[!t.auth.network_ua||t.is_network||t.auth.ua||t.auth.v4?t._e():s("settings-network-notice",[s("strong",{domProps:{textContent:t._s(t.text_auth_network)}}),s("span",{domProps:{textContent:t._s(t.text_auth_network_2)}})]),(t.is_network?t.auth.network_ua||t.auth.network_v4:t.auth.ua||t.auth.v4)?s("div",{staticClass:"exactmetrics-auth-info"},[s("span",{staticClass:"exactmetrics-dark",domProps:{textContent:t._s(t.text_website_profile)}}),s("p",[s("span",{domProps:{textContent:t._s(t.text_active_profile)}}),t._v(": "),s("span",{domProps:{textContent:t._s(t.is_network?t.auth.network_viewname:t.auth.viewname)}})]),s("div",{staticClass:"exactmetrics-separator"}),s("label",{staticClass:"exactmetrics-dark",attrs:{for:"exactmetrics-dual-tracking-id"},domProps:{textContent:t._s(t.text_dual_tracking_profile)}}),s("p",{staticClass:"exactmetrics-field-description"},[s("span",{domProps:{innerHTML:t._s("ua"===t.auth.connected_type?t.text_dual_v4:t.text_dual_ua)}}),s("br"),s("span",{domProps:{innerHTML:t._s("ua"===t.auth.connected_type?t.text_dual_v4_tip:t.text_dual_ua_tip)}})]),s("input",{staticClass:"exactmetrics-manual-ua",attrs:{id:"exactmetrics-dual-tracking-id",type:"text"},domProps:{value:t.dual_tracking_id},on:{change:t.updateDualTrackingId}}),t.has_dual_error?s("label",{staticClass:"exactmetrics-error"},[s("i",{staticClass:"monstericon-warning-triangle"}),s("span",{domProps:{innerHTML:t._s(t.has_error)}})]):t._e(),t.auth.v4?[s("div",{staticClass:"exactmetrics-separator"}),s("label",{staticClass:"exactmetrics-dark",attrs:{for:"exactmetrics-v4-measurement-protocol"},domProps:{textContent:t._s(t.text_v4_measurement_protocol)}}),s("p",{staticClass:"exactmetrics-field-description",domProps:{innerHTML:t._s(t.text_v4_measurement_protocol_description)}}),s("input",{staticClass:"exactmetrics-manual-ua",attrs:{id:"exactmetrics-v4-measurement-protocol",type:"text"},domProps:{value:t.measurement_protocol_secret},on:{change:t.updateMeasurementProtocolSecret}})]:t._e(),s("div",{staticClass:"exactmetrics-separator"}),s("div",[s("div",{staticClass:"exactmetrics-auth-actions"},[s("button",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-large",domProps:{textContent:t._s(t.text_button_reconnect)},on:{click:t.doReAuth}}),s("button",{staticClass:"exactmetrics-text-button exactmetrics-pull-right",attrs:{type:"submit"},on:{click:function(e){return e.preventDefault(),t.submitForm(e)}}},[s("span",{domProps:{textContent:t._s(t.text_skip)}}),s("i",{staticClass:"monstericon-arrow-right"})])])])],2):s("div",[s("span",{staticClass:"exactmetrics-dark",domProps:{textContent:t._s(t.label)}}),s("p",{domProps:{innerHTML:t._s(t.description)}}),s("button",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-large",domProps:{textContent:t._s(t.text_button_connect)},on:{click:t.doAuth}})])],1)},L=[],D=s("b333");function I(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,a)}return s}function z(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?I(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):I(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var W={name:"OnboardingAuthenticate",components:{SettingsNetworkNotice:D["a"]},props:{label:String,description:String},data:function(){return{is_network:this.$mi.network,text_button_connect:Object(c["a"])("Connect ExactMetrics","google-analytics-dashboard-for-wp"),text_button_reconnect:Object(c["a"])("Reconnect ExactMetrics","google-analytics-dashboard-for-wp"),text_website_profile:Object(c["a"])("Website profile","google-analytics-dashboard-for-wp"),text_active_profile:Object(c["a"])("Active profile","google-analytics-dashboard-for-wp"),text_auth_network:Object(c["a"])("Your website profile has been set at the network level of your WordPress Multisite.","google-analytics-dashboard-for-wp"),text_auth_network_2:Object(c["a"])("If you would like to use a different profile for this subsite, you can authenticate below.","google-analytics-dashboard-for-wp"),text_skip:Object(c["a"])("Skip and Keep Connection","google-analytics-dashboard-for-wp"),text_manual_v4_label:Object(c["a"])("Manually enter your GA4 Measurement ID","google-analytics-dashboard-for-wp"),text_manual_v4_description:Object(c["a"])("Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters.","google-analytics-dashboard-for-wp"),text_dual_tracking_profile:Object(c["a"])("Dual Tracking Profile","google-analytics-dashboard-for-wp"),text_dual_ua:Object(c["d"])(Object(c["a"])("The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s.","google-analytics-dashboard-for-wp"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.exactmetrics.com/introducing-google-analytics-4-dual-analytics-tracking-for-wordpress/")+'" target="_blank">',"</a>"),text_dual_ua_tip:Object(c["a"])("Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers.","google-analytics-dashboard-for-wp"),text_dual_v4:Object(c["d"])(Object(c["a"])("The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s.","google-analytics-dashboard-for-wp"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.exactmetrics.com/introducing-google-analytics-4-dual-analytics-tracking-for-wordpress/")+'" target="_blank">',"</a>"),text_dual_v4_tip:Object(c["a"])("Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters.","google-analytics-dashboard-for-wp"),text_v4_measurement_protocol:Object(c["a"])("Measurement Protocol API Secret","google-analytics-dashboard-for-wp"),text_v4_measurement_protocol_description:Object(c["d"])(Object(c["a"])("The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s.","google-analytics-dashboard-for-wp"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.exactmetrics.com/docs/how-to-create-your-measurement-protocol-api-secret-in-ga4/")+'" target="_blank">',"</a>"),has_error:!1,has_ua_error:!1,has_v4_error:!1,has_dual_error:!1}},computed:z({},Object(k["b"])({license:"$_license/license",license_network:"$_license/license_network",auth:"$_auth/auth"}),{iconClass:function(){var t="monstericon-arrow";return this.showButtons&&(t+=" monstericon-down"),t},dual_tracking_key:function(){var t="ua"===this.auth.connected_type?"v4":"ua",e=this.is_network?"network_":"";return e+t},dual_tracking_id:function(){return this.auth[this.dual_tracking_key]},measurement_protocol_secret:function(){return this.is_network?this.auth.network_measurement_protocol_secret:this.auth.measurement_protocol_secret}}),methods:{submitForm:function(){this.$emit("nextstep",!0)},doAuth:function(t){t.preventDefault();var e=this;this.$swal({customContainerClass:"exactmetrics-swal exactmetrics-swal-loading",type:"info",title:Object(c["a"])("Authenticating","google-analytics-dashboard-for-wp"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){e.$swal.showLoading(),e.$addCustomLoader()}}),this.$store.dispatch("$_auth/doAuth",this.is_network).then((function(t){t.data.redirect?window.location=t.data.redirect:e.$swal({type:"error",title:Object(c["a"])("Error","google-analytics-dashboard-for-wp"),html:t.data.message,confirmButtonText:Object(c["a"])("Ok","google-analytics-dashboard-for-wp")})}))},doReAuth:function(t){t.preventDefault();var e=this;this.$swal({customContainerClass:"exactmetrics-swal exactmetrics-swal-loading",type:"info",title:Object(c["a"])("Re-Authenticating","google-analytics-dashboard-for-wp"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){e.$swal.showLoading(),e.$addCustomLoader()}}),this.$store.dispatch("$_auth/doReAuth",this.is_network).then((function(t){t.data.redirect?window.location=t.data.redirect:e.$swal({type:"error",title:Object(c["a"])("Error","google-analytics-dashboard-for-wp"),html:t.data.message,confirmButtonText:Object(c["a"])("Ok","google-analytics-dashboard-for-wp")})}))},processActionResponse:function(t){!1===t.success?(t.data.ua_error?(this.has_v4_error=!1,this.has_ua_error=!0):t.data.v4_error?(this.has_ua_error=!1,this.has_v4_error=!0):t.data.error&&(this.has_ua_error=!1,this.has_v4_error=!1,this.has_dual_error=!0),this.has_error=t.data.error,this.$mi_error_toast({})):(this.has_v4_error=!1,this.has_ua_error=!1,this.has_error=!1,this.has_dual_error=!1,this.$mi_success_toast({}))},updateDualTrackingId:function(t){this.$mi_saving_toast({}),this.has_error=!1,this.$store.dispatch("$_auth/updateDualTrackingId",{value:t.target.value,network:this.is_network}).then(this.processActionResponse)},updateMeasurementProtocolSecret:function(t){this.$mi_saving_toast({}),this.has_error=!1,this.$store.dispatch("$_auth/updateMeasurementProtocolSecret",{value:t.target.value,network:this.is_network}).then(this.processActionResponse)}}},U=W,X=Object(p["a"])(U,E,L,!1,null,null,null),R=X.exports,H=s("f7fe"),G=s.n(H);function F(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,a)}return s}function B(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?F(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):F(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var Y={name:"OnboardingStepWelcome",components:{OnboardingAuthenticate:R,OnboardingLicense:T,OnboardingContentHeader:b},data:function(){return{text_header_title:Object(c["a"])("Connect ExactMetrics to Your Website","google-analytics-dashboard-for-wp"),text_header_subtitle:Object(c["a"])("ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.","google-analytics-dashboard-for-wp"),text_authenticate_label:Object(c["a"])("Connect Google Analytics + WordPress","google-analytics-dashboard-for-wp"),text_authenticate_description:Object(c["a"])("You will be taken to the ExactMetrics website where you'll need to connect your Analytics account.","google-analytics-dashboard-for-wp"),text_error_auth:Object(c["a"])("Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually.","google-analytics-dashboard-for-wp"),text_manual_label:Object(c["a"])("Manually enter your UA code","google-analytics-dashboard-for-wp"),text_manual_description:Object(c["a"])("Warning: If you use a manual UA code, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X's are numbers.","google-analytics-dashboard-for-wp"),text_save:Object(c["a"])("Save and Continue","google-analytics-dashboard-for-wp"),is_network:this.$mi.network,has_error:!1,auth_error:!1,manual_valid:!0,has_ua_error:!1,has_v4_error:!1,text_manual_v4_label:Object(c["a"])("Manually enter your GA4 Measurement ID","google-analytics-dashboard-for-wp"),text_manual_v4_description:Object(c["a"])("Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters.","google-analytics-dashboard-for-wp"),text_dual_tracking_profile:Object(c["a"])("Dual Tracking Profile","google-analytics-dashboard-for-wp"),text_dual_ua:Object(c["d"])(Object(c["a"])("The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s.","google-analytics-dashboard-for-wp"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.exactmetrics.com/introducing-google-analytics-4-dual-analytics-tracking-for-wordpress/")+'" target="_blank">',"</a>"),text_dual_ua_tip:Object(c["a"])("Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers.","google-analytics-dashboard-for-wp"),text_dual_v4:Object(c["d"])(Object(c["a"])("The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s.","google-analytics-dashboard-for-wp"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.exactmetrics.com/introducing-google-analytics-4-dual-analytics-tracking-for-wordpress/")+'" target="_blank">',"</a>"),text_dual_v4_tip:Object(c["a"])("Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters.","google-analytics-dashboard-for-wp"),text_v4_measurement_protocol:Object(c["a"])("Measurement Protocol API Secret","google-analytics-dashboard-for-wp"),text_v4_measurement_protocol_description:Object(c["d"])(Object(c["a"])("The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s.","google-analytics-dashboard-for-wp"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.exactmetrics.com/docs/how-to-create-your-measurement-protocol-api-secret-in-ga4/")+'" target="_blank">',"</a>")}},computed:B({},Object(k["b"])({auth:"$_auth/auth"}),{manual_button_class:function(){var t="exactmetrics-onboarding-button exactmetrics-onboarding-button-large";return this.manual_valid||(t+=" exactmetrics-button-disabled"),t},measurement_protocol_secret:function(){return this.is_network?this.auth.network_measurement_protocol_secret:this.auth.measurement_protocol_secret}}),methods:{fieldInput:G()((function(t){this.updateManualUa(t)}),500),handleSubmit:function(){if(this.auth_error&&""===this.auth.manual_ua&&""===this.auth.network_manual_ua)return this.manual_valid=!1,void(this.has_error=Object(c["a"])("UA code can't be empty","google-analytics-dashboard-for-wp"));this.auth_error&&!this.manual_valid||this.$router.push(this.$wizard_steps[2])},updateManualUa:function(t){var e=this;e.$swal({type:"info",title:Object(c["a"])("Saving UA code...","google-analytics-dashboard-for-wp"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){e.$swal.showLoading()}}),e.has_error=!1,e.manual_valid=!1,this.$store.dispatch("$_auth/updateManualUa",{ua:t.target.value,network:this.is_network}).then((function(s){!1===s.success?(e.has_error=s.data.error,e.has_ua_error=!0,e.has_v4_error=!1,e.$swal.close(),t.target.value=""):(e.has_error=!1,e.has_ua_error=!1,e.has_v4_error=!1,e.manual_valid=!0,e.$swal.close())}))},updateManualV4:function(t){var e=this;this.$mi_saving_toast({}),e.has_error=!1,this.$store.dispatch("$_auth/updateManualV4",{v4:t.target.value,network:this.is_network}).then((function(s){!1===s.success?(e.has_error=s.data.error,e.has_v4_error=!0,e.has_ua_error=!1,e.$swal.close(),t.target.value=""):(e.has_error=!1,e.has_v4_error=!1,e.has_ua_error=!1,e.manual_valid=!0,e.$swal.close())}))},updateMeasurementProtocolSecret:function(t){this.$mi_saving_toast({}),this.has_error=!1,this.$store.dispatch("$_auth/updateMeasurementProtocolSecret",{value:t.target.value,network:this.is_network}).then((function(e){!1===e.success?(self.has_error=e.data.error,self.$swal.close(),t.target.value=""):(self.has_error=!1,self.manual_valid=!0,self.$swal.close())}))}},mounted:function(){if("undefined"!==typeof URLSearchParams){var t=new URLSearchParams(window.location.search);if(t){var e=t.get("mi-auth-error");"1"!==e&&"2"!==e||(this.auth_error=parseInt(e),this.auth.manual_ua&&(this.manual_valid=!0))}}}},K=Y,N=Object(p["a"])(K,x,O,!1,null,null,null),V=N.exports,q=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-step-recommended-settings"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"exactmetrics-onboarding-wizard-form"},[s("form",{attrs:{action:"",method:"post"},on:{submit:function(e){return e.preventDefault(),t.handleSubmit(e)}}},[s("div",{staticClass:"exactmetrics-separator"}),s("settings-input-checkbox",{attrs:{label:t.text_events_label,description:t.text_events_description,tooltip:t.text_events_tooltip,faux:!0,faux_tooltip:t.text_events_faux_tooltip}}),s("div",{staticClass:"exactmetrics-separator"}),s("settings-input-checkbox",{attrs:{label:t.text_link_attribution_label,description:t.text_link_attribution_description,tooltip:t.text_link_attribution_tooltip,faux:!0,faux_tooltip:t.text_link_attribution_faux_tooltip}}),s("div",{staticClass:"exactmetrics-separator"}),s("settings-input-text",{attrs:{default_value:"doc,pdf,ppt,zip,xls,docx,pptx,xlsx",name:"extensions_of_files",label:t.text_extensions_of_files_label,description:t.text_extensions_of_files_description,tooltip:t.text_extensions_of_files_tooltip}}),s("div",{staticClass:"exactmetrics-separator"}),s("p",[s("label",{domProps:{textContent:t._s(t.text_affiliate_label)}}),s("span",{staticClass:"exactmetrics-sublabel",domProps:{innerHTML:t._s(t.text_affiliate_repeater_description)}}),s("settings-info-tooltip",{attrs:{content:t.text_affiliate_tooltip_content}})],1),s("settings-input-repeater",{attrs:{structure:t.repeater_structure,name:"affiliate_links",data:t.settings["affiliate_links"]}}),s("div",{staticClass:"exactmetrics-separator"}),s("settings-input-select",{attrs:{options:t.user_roles,forced:t.user_roles_manage_options,multiple:!0,name:"view_reports",label:t.text_permissions_view_label,description:t.text_permissions_view_description,tooltip:t.text_permissions_view_tooltip,addtext:t.text_add_role}}),s("div",{staticClass:"exactmetrics-separator"}),s("settings-input-checkbox",{attrs:{"value-on":"all","value-off":"none",name:"automatic_updates",label:t.text_updates_label,description:t.text_updates_description,tooltip:t.text_updates_tooltip}}),s("div",{staticClass:"exactmetrics-separator"}),s("onboarding-improve"),s("div",{staticClass:"exactmetrics-form-row exactmetrics-form-buttons"},[s("button",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-large",attrs:{type:"submit",name:"next_step"},domProps:{textContent:t._s(t.text_save)}})])],1)])],1)},Z=[],J=s("088d"),Q=s("c472"),tt=s("6ffa"),et=s("93ec"),st=s("aa9f"),at=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",[s("settings-input-checkbox",{attrs:{name:"anonymous_data",label:t.text_anonymous_label,description:t.text_anonymous_description,tooltip:t.text_anonymous_tooltip}}),s("div",{staticClass:"exactmetrics-separator"})],1)},ot=[],nt={name:"OnboardingImprove",components:{SettingsInputCheckbox:J["a"]},data:function(){return{text_anonymous_label:Object(c["a"])("Help Us Improve","google-analytics-dashboard-for-wp"),text_anonymous_description:Object(c["a"])("Help us better understand our users and their website needs.","google-analytics-dashboard-for-wp"),text_anonymous_tooltip:Object(c["d"])(Object(c["a"])("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","google-analytics-dashboard-for-wp"),'<a target="_blank" href="'+this.$getUrl("onboarding-wizard","usage-tracking","https://www.exactmetrics.com/docs/usage-tracking/")+'">',"</a>")}}},rt=nt,it=Object(p["a"])(rt,at,ot,!1,null,null,null),lt=it.exports;function ct(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,a)}return s}function dt(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?ct(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):ct(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var ut={name:"OnboardingStepRecommendedSettings",components:{OnboardingImprove:lt,SettingsInputSelect:st["a"],SettingsInfoTooltip:et["a"],SettingsInputRepeater:tt["a"],SettingsInputText:Q["a"],SettingsInputCheckbox:J["a"],OnboardingContentHeader:b},data:function(){return{text_header_title:Object(c["a"])("Recommended Settings","google-analytics-dashboard-for-wp"),text_header_subtitle:Object(c["a"])("ExactMetrics recommends the following settings based on your configuration.","google-analytics-dashboard-for-wp"),text_events_label:Object(c["a"])("Events Tracking","google-analytics-dashboard-for-wp"),text_events_description:Object(c["a"])("Must have for all click tracking on site.","google-analytics-dashboard-for-wp"),text_events_tooltip:Object(c["a"])("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.","google-analytics-dashboard-for-wp"),text_link_attribution_label:Object(c["a"])("Enhanced Link Attribution","google-analytics-dashboard-for-wp"),text_link_attribution_description:Object(c["a"])("Improves the accuracy of your In-Page Analytics.","google-analytics-dashboard-for-wp"),text_link_attribution_tooltip:Object(c["a"])("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.","google-analytics-dashboard-for-wp"),text_updates_label:Object(c["a"])("Install Updates Automatically","google-analytics-dashboard-for-wp"),text_updates_description:Object(c["a"])("Get the latest features, bug fixes, and security updates as they are released.","google-analytics-dashboard-for-wp"),text_updates_tooltip:Object(c["a"])("To ensure you get the latest bug fixes and security updates and avoid needing to spend time logging into your WordPress site to update ExactMetrics, we offer the ability to automatically have ExactMetrics update itself.","google-analytics-dashboard-for-wp"),text_extensions_of_files_label:Object(c["a"])("File Download Tracking","google-analytics-dashboard-for-wp"),text_extensions_of_files_description:Object(c["a"])("Helps you see file downloads data.","google-analytics-dashboard-for-wp"),text_extensions_of_files_tooltip:Object(c["a"])("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.","google-analytics-dashboard-for-wp"),repeater_structure:[{name:"path",label:Object(c["d"])(Object(c["a"])("Path (example: %s)","google-analytics-dashboard-for-wp"),"/go/"),pattern:/^\/\S+$/,error:Object(c["a"])("Path has to start with a / and have no spaces","google-analytics-dashboard-for-wp")},{name:"label",label:Object(c["d"])(Object(c["a"])("Label (example: %s)","google-analytics-dashboard-for-wp"),"aff"),pattern:/^\S+$/,error:Object(c["a"])("Label can't contain any spaces","google-analytics-dashboard-for-wp")}],text_affiliate_repeater_description:Object(c["a"])("Helps you increase affiliate revenue.","google-analytics-dashboard-for-wp"),text_affiliate_tooltip_content:Object(c["a"])("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.","google-analytics-dashboard-for-wp"),text_affiliate_label:Object(c["a"])("Affiliate Link Tracking","google-analytics-dashboard-for-wp"),text_permissions_view_label:Object(c["a"])("Who Can See Reports","google-analytics-dashboard-for-wp"),text_permissions_view_description:Object(c["a"])("These user roles will be able to access ExactMetrics' reports in the WordPress admin area.","google-analytics-dashboard-for-wp"),text_permissions_view_tooltip:Object(c["a"])("Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability.","google-analytics-dashboard-for-wp"),text_save:Object(c["a"])("Save and continue","google-analytics-dashboard-for-wp"),text_events_faux_tooltip:Object(c["a"])("Events Tracking is enabled the moment you set up ExactMetrics","google-analytics-dashboard-for-wp"),text_link_attribution_faux_tooltip:Object(c["a"])("Enhanced Link Attribution is enabled the moment you set up ExactMetrics","google-analytics-dashboard-for-wp"),text_add_role:Object(c["a"])("+ Add Role","google-analytics-dashboard-for-wp")}},mounted:function(){this.turnOnAutoUpdatesOption(),this.turnOnUsageTrackingOption()},methods:{handleSubmit:function(){this.$router.push(this.$wizard_steps[3])},turnOnAutoUpdatesOption:function(){this.$store.dispatch("$_settings/updateSettings",{name:"automatic_updates",value:"all"})},turnOnUsageTrackingOption:function(){this.$store.dispatch("$_settings/updateSettings",{name:"anonymous_data",value:"all"})}},computed:dt({},Object(k["b"])({settings:"$_settings/settings"}),{user_roles:function(){var t=[];for(var e in this.$mi.roles)t.push({label:this.$mi.roles[e],value:e});return t},user_roles_manage_options:function(){var t=[];for(var e in this.$mi.roles_manage_options)t.push({label:this.$mi.roles_manage_options[e],value:e});return t}})},gt=ut,ht=Object(p["a"])(gt,q,Z,!1,null,null,null),pt=ht.exports,mt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-step-recommended-addons"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"exactmetrics-onboarding-wizard-form"},[s("div",{staticClass:"exactmetrics-grey-area"},[s("div",{staticClass:"exactmetrics-separator"}),t._l(t.adddonList,(function(e,a){return s("div",{key:a},[s("onboarding-addon",{attrs:{feature:e,features_awaiting_install:t.features_awaiting_install},on:{"update-feature-await":t.updateFeatureAwaitInstall}}),s("div",{staticClass:"exactmetrics-separator"})],1)})),s("button",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-large",attrs:{type:"button",name:"next_step"},domProps:{textContent:t._s(t.text_save)},on:{click:function(e){return e.preventDefault(),t.continueNextStep(e)}}}),s("a",{staticClass:"exactmetrics-skip-addons",attrs:{href:"#",title:""},on:{click:function(e){return e.preventDefault(),t.skipAddons()}}},[s("span",[t._v("Skip for Now")]),s("svg",{attrs:{width:"16",height:"9",viewBox:"0 0 16 9",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[s("path",{attrs:{d:"M11.1289 3.34375H0.546875C0.300781 3.34375 0.125 3.55469 0.125 3.76562V5.73438C0.125 5.98047 0.300781 6.15625 0.546875 6.15625H11.1289V7.80859C11.1289 8.54688 12.043 8.93359 12.5703 8.40625L15.5938 5.34766C15.9453 5.03125 15.9453 4.50391 15.5938 4.1875L12.5703 1.12891C12.043 0.601562 11.1289 0.988281 11.1289 1.72656V3.34375Z",fill:"#586074"}})])])],2)]),t.features_awaiting_install.length?s("div",{staticClass:"exactmetrics-features-awaiting-install"},[s("span",{domProps:{textContent:t._s(t.features_awaiting_install_text)}}),s("span",{domProps:{textContent:t._s(t.featureAwaitingInstall)}})]):t._e()],1)},bt=[],_t=(s("a15b"),s("25f0"),s("96cf"),s("c964"));s("e01a"),s("d28b");function ft(t){return ft="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ft(t)}function wt(t){return wt="function"===typeof Symbol&&"symbol"===ft(Symbol.iterator)?function(t){return ft(t)}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":ft(t)},wt(t)}var yt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-features exactmetrics-flex"},[s("div",{staticClass:"exactmetrics-feat-content"},[s("p",[t._v(t._s(t.feature.data.title))]),s("p",[t._v(t._s(t.feature.data.description))])]),s("div",{staticClass:"exactmetrics-feat-checkbox"},[t.feature.data.faux?s("label",{staticClass:"exactmetrics-checkbox-round"},[s("input",{staticClass:"faux",attrs:{id:t.feature.id,type:"checkbox",checked:"",disabled:""}}),s("span",{staticClass:"checkmark",attrs:{id:"checkmark-loader-"+t.feature.id}})]):t.feature.data.checked?s("label",{staticClass:"exactmetrics-checkbox-round"},[s("div",{staticClass:"loader",attrs:{id:"loader-"+t.feature.id}}),s("input",{staticClass:"addon-checkbox",attrs:{id:t.feature.id,type:"checkbox",checked:"",name:t.feature.id},on:{click:function(e){return e.preventDefault(),t.toggleCheck(e,t.feature.data.title,t.feature.id)}}}),s("span",{staticClass:"checkmark",attrs:{id:"checkmark-loader-"+t.feature.id}})]):s("label",{staticClass:"exactmetrics-checkbox-round"},[s("div",{staticClass:"loader",attrs:{id:"loader-"+t.feature.id}}),s("input",{staticClass:"addon-checkbox",attrs:{id:t.feature.id,type:"checkbox",name:t.feature.id},on:{click:function(e){return e.preventDefault(),t.toggleCheck(e,t.feature.data.title,t.feature.id)}}}),s("span",{staticClass:"checkmark remove",attrs:{id:"checkmark-loader-"+t.feature.id}})])])])},vt=[];s("caad"),s("2532");function xt(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,a)}return s}function Ot(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?xt(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):xt(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var kt={name:"OnboardingAddon",props:{feature:Object,installed_addons:Object,features_awaiting_install:Array},data:function(){return{}},computed:Ot({},Object(k["b"])({addons:"$_addons/addons"})),methods:{toggleCheck:function(t,e,s){var a=t.target.nextElementSibling;if(a.classList.toggle("remove"),t.target.toggleAttribute("checked"),"aioseo"===s||"wpforms_lite"===s){var o=this.features_awaiting_install;o.includes(e)?o=o.filter((function(t){return t!==e})):o.push(e),this.$emit("update-feature-await",o)}}}},jt=kt,Ct=Object(p["a"])(jt,yt,vt,!1,null,null,null),Pt=Ct.exports;function $t(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,a)}return s}function St(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?$t(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):$t(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var At={name:"OnboardingStepRecommendedFeatures",components:{OnboardingContentHeader:b,OnboardingAddon:Pt},data:function(){return{text_header_title:Object(c["a"])("Which website features would you like to enable?","google-analytics-dashboard-for-wp"),text_header_subtitle:Object(c["a"])("We’ve already selected our recommended features based on your site. ","google-analytics-dashboard-for-wp"),text_other_addons:Object(c["a"])("Other Addons","google-analytics-dashboard-for-wp"),text_other_addons_button:Object(c["a"])("View all ExactMetrics addons","google-analytics-dashboard-for-wp"),text_save:Object(c["a"])("Continue","google-analytics-dashboard-for-wp"),features_awaiting_install:[],features_awaiting_install_text:Object(c["a"])("The following plugins will be installed: ","google-analytics-dashboard-for-wp")}},computed:St({},Object(k["b"])({settings:"$_settings/settings",addons:"$_addons/addons"}),{adddonList:function(){return this.addonState(this.addons)},featureAwaitingInstall:function(){return this.features_awaiting_install.join(", ")}}),mounted:function(){localStorage.removeItem("activated_addons"),this.featuresToInstall()},methods:{featuresList:function(){var t=[{id:"standard",standard:{addons:"standard"},data:{feature:"standard",title:Object(c["a"])("Standard Analytics & Reports","google-analytics-dashboard-for-wp"),description:Object(c["a"])("Get the reports and stats that matter right inside your WordPress Dashboard.","google-analytics-dashboard-for-wp"),faux:!0}},{id:"enhanced_link",enhanced_link:{addons:"enhanced-link"},data:{feature:"enhanced-link",title:Object(c["a"])("Enhanced Link Attribution","google-analytics-dashboard-for-wp"),description:Object(c["a"])("Helps you see what links your users are clicking on your site.","google-analytics-dashboard-for-wp"),faux:!0}},{id:"aioseo",aioseo:{addons:"aioseo"},data:{feature:"aioseo",title:Object(c["a"])("All In One SEO Toolkit","google-analytics-dashboard-for-wp"),description:Object(c["a"])("The best WordPress SEO plugin that works with ExactMetrics to boost your rankings.","google-analytics-dashboard-for-wp"),checked:!0}},{id:"wpforms_lite",wpforms_lite:{addons:"wpforms-lite"},data:{feature:"wpforms-lite",title:Object(c["a"])("Smart Form Builder by WPForms","google-analytics-dashboard-for-wp"),description:Object(c["a"])("The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more.","google-analytics-dashboard-for-wp"),checked:!0}},{id:"eu_compliance",eu_compliance:{addons:"eu-compliance"},data:{feature:"eu-compliance",title:Object(c["a"])("Privacy Compliance Addon","google-analytics-dashboard-for-wp"),description:Object(c["a"])("Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA.","google-analytics-dashboard-for-wp")}},{id:"advanced_reports",advanced_reports:{addons:["dimensions","forms","ecommerce","page-insights"]},data:{feature:["dimensions","forms","ecommerce","page-insights"],title:Object(c["a"])("Advanced Reports","google-analytics-dashboard-for-wp"),description:Object(c["a"])("Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more.","google-analytics-dashboard-for-wp")}},{id:"ecommerce",ecommerce:{addons:"ecommerce"},data:{feature:"ecommerce",title:Object(c["a"])("eCommerce Tracking","google-analytics-dashboard-for-wp"),description:Object(c["a"])("Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more.","google-analytics-dashboard-for-wp")}},{id:"advanced_tracking",advanced_tracking:{addons:["dimensions","forms"]},data:{feature:["dimensions","forms"],title:Object(c["a"])("20+ Advanced Tracking","google-analytics-dashboard-for-wp"),description:Object(c["a"])("Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more.","google-analytics-dashboard-for-wp")}},{id:"google_optimize",google_optimize:{addons:"google-optimize"},data:{feature:"google-optimize",title:Object(c["a"])("Advanced Growth Tools","google-analytics-dashboard-for-wp"),description:Object(c["a"])("Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more.","google-analytics-dashboard-for-wp")}},{id:"media",media:{addons:"media"},data:{feature:"media",title:Object(c["a"])("Media Tracking","google-analytics-dashboard-for-wp"),description:Object(c["a"])("Track how your users interact with videos on your website.","google-analytics-dashboard-for-wp")}}];return t},skipAddons:function(){this.$router.push(this.$wizard_steps[4])},addonState:function(t){for(var e=this.featuresList(),s=0;s<e.length;s++){var a=e[s].data.feature;if("standard"!==a&&"enhanced-link"!==a&&("string"===typeof a&&t[a]&&(t[a].active?e[s].data.faux=!0:t[a].installed&&(e[s].data.checked=!0)),"object"===wt(a))){var o=a.length,n=[],r=[];for(var i in a){var l=a[i];t[l]&&(t[l].active?(r.push(l),n.push(l)):t[l].installed&&n.push(l))}o===r.length?e[s].data.faux=!0:o===n.length&&(e[s].data.checked=!0)}}return e},continueNextStep:function(){var t=Object(_t["a"])(regeneratorRuntime.mark((function t(e){var s,a,o,n,r,i,l,d,u,g,h,p,m,b,_,f,w,y,v,x,O,k,j,C,P,$;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:for(s=this,a=this.featuresList(),o=document.querySelectorAll(".addon-checkbox"),n=[],r=0;r<o.length;r++)o[r].hasAttribute("checked")&&(i=o[r].name,n.push(i));for(l in n)d=n[l],u="checkmark-loader-"+d,g=document.getElementById(u),g&&(g.style.visibility="hidden"),h="loader-"+d,p=document.getElementById(h),p&&(p.style.display="block");m=[],b=[],_=0;case 9:if(!(_<a.length)){t.next=36;break}t.t0=regeneratorRuntime.keys(n);case 11:if((t.t1=t.t0()).done){t.next=33;break}if(f=t.t1.value,w=n[f],!a[_].hasOwnProperty(w)){t.next=31;break}if(e.target.setAttribute("disabled",!0),e.target.innerHTML="Please Wait...",y=document.querySelector(".exactmetrics-skip-addons"),y.style.visibility="hidden",v="checkmark-loader-"+w,x=document.getElementById(v),x&&(x.style.visibility="hidden"),O="loader-"+w,k=document.getElementById(O),k&&(k.style.display="block"),j=document.getElementById(w),C=a[_][w].addons,"wpforms-lite"!==C&&"aioseo"!==C){t.next=31;break}return P=this.addons[C],t.next=31,s.executeAddon(P,C,k,x,j,b,m);case 31:t.next=11;break;case 33:_++,t.next=9;break;case 36:0===b.length?(localStorage.setItem("activated_addons",m),void 0!==this.$wizard_steps[4]?this.$router.push(this.$wizard_steps[4]):this.$router.push({name:"success"})):(console.log("===================================================================="),console.log("ExactMetrics Onboarding Wizard Debug"),console.log("Following addons were not installed:"),console.log(b.toString()),console.log("===================================================================="),s.$swal({type:"error",title:Object(c["a"])("Error Processing","google-analytics-dashboard-for-wp"),text:Object(c["a"])("There was an error while processing some features. Please try again or you can skip this process for now","google-analytics-dashboard-for-wp"),confirmButtonText:Object(c["a"])("Ok","google-analytics-dashboard-for-wp")}),e.target.removeAttribute("disabled"),e.target.innerHTML="Continue",$=document.querySelector(".exactmetrics-skip-addons"),$.style.visibility="visible");case 37:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),executeAddon:function(){var t=Object(_t["a"])(regeneratorRuntime.mark((function t(e,s,a,o,n,r,i){var l,c,d,u;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:if(l=this,void 0===e){t.next=28;break}if(o&&(o.style.visibility="hidden"),e.installed){t.next=21;break}if(c="","wpforms-lite"!==s&&"aioseo"!==s){t.next=9;break}return t.next=8,l.installPlugin(e);case 8:c=t.sent;case 9:if(!0!==c){t.next=16;break}return t.next=12,l.activateAddon(e);case 12:d=t.sent,!0===d?("wpforms-lite"!==s&&"aioseo"!==s||(a.style.display="none",n.classList.add("faux"),o.style.visibility="visible"),i.push(e.title)):(r.push(s),a.style.display="none",o.classList.add("error")),t.next=19;break;case 16:r.push(s),a.style.display="none",o.classList.add("error");case 19:t.next=26;break;case 21:if(!e.installed||e.active){t.next=26;break}return t.next=24,l.activateAddon(e);case 24:u=t.sent,!0===u?i.push(e.title):(r.push(s),a.style.display="none",o.classList.add("error"));case 26:t.next=31;break;case 28:r.push(s),a.style.display="none",o.classList.add("error");case 31:n.checked=!0,o&&(o.style.visibility="visible");case 33:case"end":return t.stop()}}),t,this)})));function e(e,s,a,o,n,r,i){return t.apply(this,arguments)}return e}(),installAddon:function(){var t=Object(_t["a"])(regeneratorRuntime.mark((function t(e){var s;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,this.$store.dispatch("$_addons/installAddon",e);case 2:if(s=t.sent,void 0===s){t.next=7;break}if(!(s&&"plugin"in s)){t.next=7;break}if(e.basename!==s.plugin){t.next=7;break}return t.abrupt("return",!0);case 7:return t.abrupt("return",!1);case 8:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),installPlugin:function(){var t=Object(_t["a"])(regeneratorRuntime.mark((function t(e){var s;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,this.$store.dispatch("$_addons/installOnboardingPlugin",e);case 2:if(s=t.sent,void 0===s){t.next=7;break}if(!(s&&"success"in s)){t.next=7;break}if(!0!==s.success){t.next=7;break}return t.abrupt("return",!0);case 7:return t.abrupt("return",!1);case 8:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),activateAddon:function(){var t=Object(_t["a"])(regeneratorRuntime.mark((function t(e){var s;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,this.$store.dispatch("$_addons/activateOnboardingAddon",e);case 2:return s=t.sent,t.abrupt("return",s);case 4:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),featuresToInstall:function(){for(var t=document.querySelectorAll(".addon-checkbox"),e=this.featuresList(),s=[],a=[],o=0;o<t.length;o++)if(t[o].hasAttribute("checked")&&!t[o].classList.contains("faux")){var n=t[o].name;"aioseo"!==n&&"wpforms_lite"!==n||s.push(n)}s.length>0&&(s.forEach((function(t){for(var s=0;s<e.length;s++)e[s].id==t&&a.push(e[s].data.title)})),this.features_awaiting_install=a)},updateFeatureAwaitInstall:function(t){this.features_awaiting_install=t}}},Mt=At,Tt=Object(p["a"])(Mt,mt,bt,!1,null,null,null),Et=Tt.exports,Lt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-step-wpforms"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"exactmetrics-onboarding-wizard-form"},[s("form",{attrs:{action:"",method:"post"},on:{submit:function(e){return e.preventDefault(),t.handleSubmit(e)}}},[s("div",{staticClass:"exactmetrics-separator"}),s("div",{staticClass:"exactmetrics-addon-row exactmetrics-wpforms-row"},[t._m(0),s("div",{staticClass:"exactmetrics-addon-text"},[s("label",{domProps:{textContent:t._s(t.text_wpforms_label)}}),s("p",{domProps:{textContent:t._s(t.text_wpforms_description)}})])]),s("div",{staticClass:"exactmetrics-separator"}),s("div",{staticClass:"exactmetrics-form-row exactmetrics-form-buttons"},[s("div",{staticClass:"exactmetrics-form-input"},[s("button",{class:t.buttonClass(),attrs:{type:"button"},domProps:{textContent:t._s(t.button_text)},on:{click:function(e){return e.preventDefault(),t.installPlugin(e)}}}),t.loading?t._e():s("button",{staticClass:"exactmetrics-text-button exactmetrics-pull-right",attrs:{type:"submit",name:"next_step"}},[s("span",{domProps:{textContent:t._s(t.text_skip_step)}}),s("i",{staticClass:"monstericon-arrow-right"})])])])])])],1)},Dt=[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-addon-icon"},[s("div",{staticClass:"exactmetrics-addon-wpforms"})])}],It={name:"OnboardingStepWpforms",components:{OnboardingContentHeader:b},data:function(){return{text_header_title:Object(c["a"])("ExactMetrics Recommends WPForms","google-analytics-dashboard-for-wp"),text_header_subtitle:Object(c["a"])("Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market.","google-analytics-dashboard-for-wp"),text_wpforms_label:Object(c["a"])("Used on over 4,000,000 websites!","google-analytics-dashboard-for-wp"),text_wpforms_description:Object(c["a"])("WPForms allow you to create beautiful contact forms, subscription forms, payment forms, and other types of forms for your site in minutes, not hours!","google-analytics-dashboard-for-wp"),text_skip_step:Object(c["a"])("Skip this Step","google-analytics-dashboard-for-wp"),text_install_wpforms:Object(c["a"])("Continue & Install WPForms","google-analytics-dashboard-for-wp"),text_installing_wpforms:Object(c["a"])("Installing...","google-analytics-dashboard-for-wp"),button_text:"",loading:!1}},mounted:function(){this.button_text=this.text_install_wpforms},methods:{handleSubmit:function(){this.$router.push(this.$wizard_steps[5])},buttonClass:function(){var t="exactmetrics-onboarding-button exactmetrics-onboarding-button-large exactmetrics-install-wpforms";return this.loading&&(t+=" exactmetrics-button-disabled"),t},installPlugin:function(){var t=this;this.loading=!0,this.button_text=this.text_installing_wpforms,this.$store.dispatch("$_addons/installWPForms").then((function(){t.loading=!1,t.button_text=t.text_install_wpforms,t.handleSubmit()}))}}},zt=It,Wt=Object(p["a"])(zt,Lt,Dt,!1,null,null,null),Ut=Wt.exports,Xt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-step-success"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"exactmetrics-onboarding-wizard-form"},[s("div",{staticClass:"exactmetrics-wizard-notices"},[s("div",{staticClass:"exactmetrics-wizard-notice"},[s("p",{domProps:{innerHTML:t._s(t.text_notice)}})]),t._l(t.install_errors,(function(e,a){return[s("div",{key:a,staticClass:"exactmetrics-wizard-notice"},[s("p",{domProps:{innerHTML:t._s(e)}})])]}))],2),s("div",{staticClass:"exactmetrics-wizard-notices exactmetrics-info-notices"},[s("div",{staticClass:"exactmetrics-wizard-notice"},[s("div",{staticClass:"exactmetrics-tracking-info-container"},[s("div",{staticClass:"exactmetrics-flex exactmetrics-tracking-info"},[s("div",{staticClass:"exactmetrics-tracking-info-text"},[s("p",[t._v(t._s(t.text_connected))])]),s("div",{staticClass:"exactmetrics-tracking-info-icon"},[s("span",{staticClass:"exactmetrics-success",domProps:{innerHTML:t._s(t.text_success)}}),s("span",{staticClass:"exactmetrics-success-icon",domProps:{innerHTML:t._s(t.icon_success)}})])])])])]),s("div",{staticClass:"exactmetrics-wizard-notices exactmetrics-info-notices"},[s("div",{staticClass:"exactmetrics-wizard-notice"},[s("div",{staticClass:"exactmetrics-tracking-info-container"},[s("div",{staticClass:"exactmetrics-flex exactmetrics-tracking-info"},[s("div",{staticClass:"exactmetrics-tracking-info-text"},[s("p",[t._v(t._s(t.text_code_installed))])]),s("div",{staticClass:"exactmetrics-tracking-info-icon"},[s("span",{staticClass:"exactmetrics-success",domProps:{innerHTML:t._s(t.text_success)}}),s("span",{staticClass:"exactmetrics-success-icon",domProps:{innerHTML:t._s(t.icon_success)}})])])])])]),s("div",{staticClass:"exactmetrics-wizard-notices exactmetrics-info-notices"},[s("div",{staticClass:"exactmetrics-wizard-notice"},[s("div",{staticClass:"exactmetrics-tracking-info-container"},[s("div",{staticClass:"exactmetrics-flex exactmetrics-tracking-info"},[s("div",{staticClass:"exactmetrics-tracking-info-text"},[s("p",[t._v(t._s(t.text_data_collected))])]),s("div",{staticClass:"exactmetrics-tracking-info-icon"},[s("span",{staticClass:"exactmetrics-success",domProps:{innerHTML:t._s(t.text_success)}}),s("span",{staticClass:"exactmetrics-success-icon",domProps:{innerHTML:t._s(t.icon_success)}})])])])])]),t.activated_addons?s("div",t._l(t.activated_addons,(function(e,a){return s("div",{key:a},[s("div",{staticClass:"exactmetrics-wizard-notices exactmetrics-info-notices"},[s("div",{staticClass:"exactmetrics-wizard-notice"},[s("div",{staticClass:"exactmetrics-tracking-info-container"},[s("div",{staticClass:"exactmetrics-flex exactmetrics-tracking-info"},[s("div",{staticClass:"exactmetrics-tracking-info-text"},[s("p",[t._v(t._s(e+" Installed"))])]),s("div",{staticClass:"exactmetrics-tracking-info-icon"},[s("span",{staticClass:"exactmetrics-success"},[t._v(t._s(t.text_success))]),s("span",{staticClass:"exactmetrics-success-icon",domProps:{innerHTML:t._s(t.icon_success)}})])])])])])])})),0):t._e(),"pro"!==t.license.type?s("div",[s("div",{staticClass:"exactmetrics-onboarding-upsell"},[s("h2",[t._v(t._s(t.text_lite_user.heading))]),s("p",[t._v(t._s(t.text_lite_user.description))]),s("ul",t._l(t.text_lite_user.features,(function(e,a){return s("li",{key:a},[s("span",{staticClass:"exactmetrics-icon",domProps:{innerHTML:t._s(t.icon_checkmark)}}),s("span",{staticClass:"exactmetrics-text"},[t._v(t._s(e))])])})),0),s("div",{staticClass:"exactmetrics-upsell-upgrade-button"},[s("a",{staticClass:"exactmetrics-button exactmetrics-button-large",attrs:{target:"_blank",href:t.upgrade_button_url},domProps:{textContent:t._s(t.text_button_upgrade)}})])]),s("div",{staticClass:"exactmetrics-upsell-bottom-text"},[s("p",{domProps:{innerHTML:t._s(t.text_lite_user.bottom_text)}})]),s("div",{staticClass:"exactmetrics-settings-license-lite"},[s("label",{attrs:{for:"exactmetrics-license-key"},domProps:{innerHTML:t._s(t.text_license_label)}}),s("div",{staticClass:"exactmetrics-inline-field"},[s("input",{directives:[{name:"model",rawName:"v-model",value:t.connect_key,expression:"connect_key"}],attrs:{id:"exactmetrics-license-key",readonly:t.is_loading,type:"text",autocomplete:"off",placeholder:t.text_license_placeholder},domProps:{value:t.connect_key},on:{input:[function(e){e.target.composing||(t.connect_key=e.target.value)},t.fieldInput]}}),t.show_connect?s("span",[s("button",{staticClass:"exactmetrics-button",domProps:{textContent:t._s(t.text_upgrade_to_pro)},on:{click:function(e){return e.preventDefault(),t.startUpgradeToPro(e)}}})]):s("span",[s("button",{staticClass:"exactmetrics-button disabled",domProps:{textContent:t._s(t.text_upgrade_to_pro)}})])])])]):t._e(),"pro"!==t.license.type&&"pro"!==t.license_network.type?s("div",[s("div",{staticClass:"exactmetrics-separator"}),s("a",{staticClass:"exactmetrics-exit-link",attrs:{href:"#",title:""},on:{click:function(e){return e.preventDefault(),t.exitOnboardingWizard(e)}}},[t._v(t._s(t.text_exit_lite))])]):s("div",{staticClass:"exactmetrics-form-row exactmetrics-form-buttons"},[s("div",{staticClass:"exactmetrics-form-input"},[s("a",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-large",attrs:{href:"#"},domProps:{textContent:t._s(t.text_exit)},on:{click:function(e){return e.preventDefault(),t.exitOnboardingWizard(e)}}})])])])],1)},Rt=[],Ht=(s("1276"),s("dd62"));function Gt(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,a)}return s}function Ft(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?Gt(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):Gt(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var Bt={name:"OnboardingStepSuccess",components:{OnboardingContentHeader:b},data:function(){return{text_header_title:Object(c["a"])("Awesome! Tracking and Analytics are All Setup!","google-analytics-dashboard-for-wp"),text_header_subtitle:Object(c["a"])("ExactMetrics is connected to Google Analytics and data is being collected.","google-analytics-dashboard-for-wp"),text_notice:Object(c["d"])(Object(c["a"])("%1$sPlease Note:%2$s While Google Analytics is properly setup and tracking everything, it does not send the data back to WordPress immediately. Depending on the size of your website, it can take between a few hours to 24 hours for reports to populate.","google-analytics-dashboard-for-wp"),"<strong>","</strong>"),text_newsletter:Object(c["d"])(Object(c["a"])("%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business.","google-analytics-dashboard-for-wp"),'<a target="_blank" href="https://www.exactmetrics.com/blog/">',"</a>"),text_exit:Object(c["a"])("Finish Setup & Exit Wizard","google-analytics-dashboard-for-wp"),text_exit_lite:Object(c["a"])("Complete Setup without Upgrading","google-analytics-dashboard-for-wp"),exit_url:this.$mi.exit_url,text_success:Object(c["a"])("Success","google-analytics-dashboard-for-wp"),text_connected:Object(c["a"])("Connected to Google Analytics","google-analytics-dashboard-for-wp"),text_code_installed:Object(c["a"])("Tracking Code Installed","google-analytics-dashboard-for-wp"),text_data_collected:Object(c["a"])("Data Being Collected","google-analytics-dashboard-for-wp"),icon_success:'<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="16" height="16" rx="8" fill="#EAFAEE"/><path d="M6.70312 10.875C6.85938 11.0312 7.125 11.0312 7.28125 10.875L11.875 6.28125C12.0312 6.125 12.0312 5.85938 11.875 5.70312L11.3125 5.14062C11.1562 4.98438 10.9062 4.98438 10.75 5.14062L7 8.89062L5.23438 7.14062C5.07812 6.98438 4.82812 6.98438 4.67188 7.14062L4.10938 7.70312C3.95312 7.85938 3.95312 8.125 4.10938 8.28125L6.70312 10.875Z" fill="#46BF40"/></svg>',icon_checkmark:'<svg width="14" height="11" viewBox="0 0 14 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.05469 9.8125C5.28906 10.0469 5.6875 10.0469 5.92188 9.8125L12.8125 2.92188C13.0469 2.6875 13.0469 2.28906 12.8125 2.05469L11.9688 1.21094C11.7344 0.976562 11.3594 0.976562 11.125 1.21094L5.5 6.83594L2.85156 4.21094C2.61719 3.97656 2.24219 3.97656 2.00781 4.21094L1.16406 5.05469C0.929688 5.28906 0.929688 5.6875 1.16406 5.92188L5.05469 9.8125Z" fill="#46BF40"/></svg>',text_button_upgrade:Object(c["a"])("Upgrade to ExactMetrics Pro","google-analytics-dashboard-for-wp"),upgrade_button_url:this.$getUpgradeUrl("onboarding-lite","onboarding-lite"),activated_addons:[],text_license_label:Object(c["a"])("Already purchased? Simply enter your license key below to connect with ExactMetrics PRO!","google-analytics-dashboard-for-wp"),is_loading:!1,show_connect:!1,connect_key:"",text_license_placeholder:Object(c["a"])("Paste your license key here","google-analytics-dashboard-for-wp"),text_license_verify:Object(c["a"])("Verify","google-analytics-dashboard-for-wp"),text_upgrade_to_pro:Object(c["a"])("Verify License Key","google-analytics-dashboard-for-wp"),text_lite_user:{heading:Object(c["a"])("Upgrade to Unlock These Features","google-analytics-dashboard-for-wp"),description:Object(c["a"])("To unlock the selected features, please upgrade to Pro and enter your license key below.","google-analytics-dashboard-for-wp"),bottom_text:Object(c["d"])(Object(c["a"])("%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)","google-analytics-dashboard-for-wp"),"<strong>","</strong>","<strong>","</strong>"),features:["Advanced Reporting","20+ Advanced Tracking","eCommerce Tracking","Advanced Growth Tools","EU and Privacy Compliance","and Dozens More!"]}}},computed:Ft({},Object(k["b"])({install_errors:"$_onboarding/install_errors",license:"$_license/license",license_network:"$_license/license_network",auth:"$_auth/auth"})),mounted:function(){var t=this;t.$swal({type:"info",title:Object(c["a"])("Checking your website...","google-analytics-dashboard-for-wp"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){t.$swal.showLoading()}}),this.$store.dispatch("$_onboarding/getErrors").then((function(){t.$swal.close()}));var e=localStorage.getItem("activated_addons");e&&(this.activated_addons=e.split(","))},methods:{fieldInput:G()((function(){this.show_connect=""!==this.connect_key}),100),startUpgradeToPro:function(){var t=this;this.$swal({type:"info",title:Object(c["a"])("Verifying License...","google-analytics-dashboard-for-wp"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,customContainerClass:"exactmetrics-swal",onOpen:function(){t.$swal.showLoading()}}),Ht["a"].getUpgradeLink(t.connect_key).then((function(e){if(e.success&&e.data.url)return window.location=e.data.url;var s=e.data.message?e.data.message:Object(c["a"])("There was an error unlocking ExactMetrics PRO please try again or install manually.","google-analytics-dashboard-for-wp");t.$mi_error_toast({title:Object(c["a"])("Error","google-analytics-dashboard-for-wp"),text:s,toast:!1,position:"center",showConfirmButton:!0,showCloseButton:!1,customClass:!1,confirmButtonText:Object(c["a"])("Ok","google-analytics-dashboard-for-wp")}).then((function(){e.data.reload&&window.location.reload()}))})).catch((function(){t.$swal.close()}))},exitOnboardingWizard:function(){var t=this;this.$store.dispatch("$_onboarding/disableWPFormsWelcomeScreen").then((function(){window.location=t.exit_url}))}}},Yt=Bt,Kt=Object(p["a"])(Yt,Xt,Rt,!1,null,null,null),Nt=Kt.exports,Vt=new r["a"]({routes:[{path:"*",redirect:"/"},{path:"/",name:"welcome",component:v},{path:"/authenticate",name:"authenticate",component:V},{path:"/recommended_settings",name:"recommended_settings",component:pt},{path:"/recommended_addons",name:"recommended_addons",component:Et},{path:"/wpforms",name:"wpforms",component:Ut},{path:"/success",name:"success",component:Nt}],scrollBehavior:function(){return{x:0,y:0}}}),qt=s("7220"),Zt=s("bc3a"),Jt=s.n(Zt),Qt=s("2b0e"),te=function(t){return new Promise((function(e){var s=new FormData,a=Qt["a"].prototype.$addQueryArg(Qt["a"].prototype.$mi.ajax,"page","exactmetrics-onboarding");s.append("action","exactmetrics_onboarding_get_errors"),Jt.a.post(a,s).then((function(t){e(t.data)})).catch((function(e){if(t.dispatch("$_app/block",!1,{root:!0}),e.response){var s=e.response;return Qt["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't load errors. Error: %1$s, %2$s","google-analytics-dashboard-for-wp"),s.status,s.statusText)})}Qt["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-dashboard-for-wp")})}))}))},ee=function(){return new Promise((function(t){var e=new FormData;e.append("action","exactmetrics_onboarding_disable_wpforms_onboarding"),Jt.a.post(Qt["a"].prototype.$mi.ajax,e).then((function(e){t(e.data)})).catch((function(t){if(t.response){var e=t.response;return Qt["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't load errors. Error: %1$s, %2$s","google-analytics-dashboard-for-wp"),e.status,e.statusText)})}Qt["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-dashboard-for-wp")})}))}))},se={fetchErrors:te,disableWPFormsWelcomeScreen:ee},ae=function(t){var e=se.fetchErrors(t);return e.then((function(e){t.commit("ERRORS_UPDATED",e)})).catch((function(t){console.error(t)})),e},oe=function(){se.disableWPFormsWelcomeScreen()},ne={getErrors:ae,disableWPFormsWelcomeScreen:oe},re=function(t){return t.install_errors},ie={install_errors:re},le=function(t,e){t.install_errors=e},ce={ERRORS_UPDATED:le},de={install_errors:[]},ue={namespaced:!0,state:de,actions:ne,getters:ie,mutations:ce},ge=(s("3358"),function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("header",{staticClass:"exactmetrics-onboarding-header"},[s("nav",{staticClass:"exactmetrics-header-navigation"},[s("a",{staticClass:"exactmetrics-exit-button",attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.exitOnboardingWizard(e)}}},[s("i",{staticClass:"monstericon-times-circle"}),s("span",{domProps:{textContent:t._s(t.text_exit)}})])]),t._m(0)])}),he=[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("h1",{staticClass:"exactmetrics-onboarding-wizard-logo"},[s("div",{staticClass:"exactmetrics-logo"},[s("div",{staticClass:"exactmetrics-bg-img"})])])}],pe={name:"TheWizardHeader",data:function(){return{text_exit:Object(c["a"])("Exit Setup","google-analytics-dashboard-for-wp"),href:this.$mi.exit_url}},methods:{exitOnboardingWizard:function(){var t=this;this.$store.dispatch("$_onboarding/disableWPFormsWelcomeScreen").then((function(){window.location=t.href}))}}},me=pe,be=Object(p["a"])(me,ge,he,!1,null,null,null),_e=be.exports,fe=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-wizard-container"},[s("div",{staticClass:"exactmetrics-onboarding-wizard-steps"},[t._l(t.steps,(function(e,a){return[a>0?s("div",{key:a+"line",class:t.lineClass(a)}):t._e(),s("div",{key:a,class:t.stepClass(a)})]}))],2)])},we=[],ye={name:"TheWizardTimeline",data:function(){return{steps:this.$wizard_steps}},methods:{stepClass:function(t){var e="exactmetrics-onboarding-wizard-step",s=0;for(var a in this.steps)this.$route.name===this.steps[a]&&(s=a);return t<s&&(e+=" exactmetrics-onboarding-wizard-step-completed"),parseInt(t)===parseInt(s)&&(e+=" exactmetrics-onboarding-wizard-step-active"),e},lineClass:function(t){var e="exactmetrics-onboarding-wizard-step-line",s=0;for(var a in this.steps)this.$route.name===this.steps[a]&&(s=a);return t<=s&&(e+=" exactmetrics-onboarding-wizard-line-active"),e}}},ve=ye,xe=Object(p["a"])(ve,fe,we,!1,null,null,null),Oe=xe.exports,ke=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div")},je=[],Ce={name:"OnboardingBottomUpsell",data:function(){return{text_pro_plan:Object(c["a"])("Pro Plan","google-analytics-dashboard-for-wp"),text_per_year:Object(c["a"])("per year","google-analytics-dashboard-for-wp"),text_upgrade_now:Object(c["a"])("Upgrade Now","google-analytics-dashboard-for-wp"),upgrade_url:this.$getUpgradeUrl("welcome-screen","upgrade-upsell"),text_get_pro:Object(c["a"])("Upgrade to PRO","google-analytics-dashboard-for-wp"),check_list:[Object(c["a"])("eCommerce Tracking","google-analytics-dashboard-for-wp"),Object(c["a"])("Custom Dimensions","google-analytics-dashboard-for-wp"),Object(c["a"])("Form Tracking","google-analytics-dashboard-for-wp"),Object(c["a"])("AMP Support","google-analytics-dashboard-for-wp"),Object(c["a"])("Author Tracking","google-analytics-dashboard-for-wp")],check_list_2:[Object(c["a"])("EU Compliance Addon","google-analytics-dashboard-for-wp"),Object(c["a"])("Real Time Report","google-analytics-dashboard-for-wp"),Object(c["a"])("Google Optimize","google-analytics-dashboard-for-wp"),Object(c["a"])("Search Console","google-analytics-dashboard-for-wp"),Object(c["a"])("Custom Date Ranges","google-analytics-dashboard-for-wp")],testimonials:[{image:"exactmetrics-about-testimonial-avatar-1",text:Object(c["a"])("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!","google-analytics-dashboard-for-wp"),author:Object(c["a"])("Daniel Monaghan - Experienced","google-analytics-dashboard-for-wp")},{image:"exactmetrics-about-testimonial-avatar-2",text:Object(c["a"])("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.","google-analytics-dashboard-for-wp"),author:Object(c["a"])("Naomi Spirit - From This Day","google-analytics-dashboard-for-wp")},{image:"exactmetrics-about-testimonial-avatar-3",text:Object(c["a"])("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!","google-analytics-dashboard-for-wp"),author:Object(c["a"])("Julie Dupuis - Faraway Land Travel","google-analytics-dashboard-for-wp")}]}}},Pe=Ce,$e=Object(p["a"])(Pe,ke,je,!1,null,null,null),Se=$e.exports;function Ae(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,a)}return s}function Me(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?Ae(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):Ae(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var Te={name:"WizardModuleOnboarding",components:{OnboardingBottomUpsell:Se,TheWizardTimeline:Oe,TheWizardHeader:_e},router:Vt,created:function(){var t="$_settings";t in this.$store._modules.root._children||this.$store.registerModule(t,qt["a"]);var e="$_onboarding";e in this.$store._modules.root._children||this.$store.registerModule(e,ue)},computed:Me({},Object(k["b"])({blocked:"$_app/blocked"}),{route:function(){return this.$route.name}}),mounted:function(){this.$mi_loading_toast(),this.$store.dispatch("$_settings/getSettings")}},Ee=Te,Le=(s("1608"),Object(p["a"])(Ee,a,o,!1,null,"283d1087",null)),De=Le.exports,Ie=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-admin-page"},[s("div",{staticClass:"exactmetrics-about-page-top"},[s("div",{staticClass:"exactmetrics-container"},[s("h3",{domProps:{textContent:t._s(t.text_welcome)}}),s("div",{staticClass:"exactmetrics-bg-img exactmetrics-em-logo-color"}),s("h2",{domProps:{innerHTML:t._s(t.text_thank_you)}}),s("div",{staticClass:"exactmetrics-about-top-button"},[s("a",{staticClass:"exactmetrics-button exactmetrics-button-green exactmetrics-button-xl",attrs:{href:t.wizard_url}},[s("span",{domProps:{textContent:t._s(t.text_getting_started_link1)}}),s("i",{staticClass:"monstericon-long-arrow-right-light"})]),s("p",{domProps:{innerHTML:t._s(t.text_efortless)}})])]),s("div",{staticClass:"exactmetrics-bg-img exactmetrics-about-getting-started-video",on:{click:function(e){t.welcome_video=!0}}}),t.welcome_video?s("welcome-overlay",{attrs:{id:"getting-started-video"},on:{close:function(e){t.welcome_video=!1}}},[s("iframe",{attrs:{width:"1280",height:"720",src:"https://www.youtube.com/embed/4GZ-IgZssao?autoplay=1&modestbranding=1&showinfo=0&rel=0&fs=1",frameborder:"0",allow:"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture",allowfullscreen:""}})]):t._e()],1),s("div",{staticClass:"exactmetrics-container exactmetrics-about-middle-title"},[s("a",{staticClass:"exactmetrics-button exactmetrics-button-green exactmetrics-button-xl",attrs:{href:t.wizard_url}},[s("span",{domProps:{textContent:t._s(t.text_getting_started_link1)}}),s("i",{staticClass:"monstericon-long-arrow-right-light"})]),s("h2",{domProps:{textContent:t._s(t.text_features_addons)}}),s("p",{domProps:{textContent:t._s(t.text_features_addons_subtitle)}})]),s("content-icon-list",{attrs:{upsell_list:t.icons_list}}),s("div",{staticClass:"exactmetrics-wide-purple"},[s("div",{staticClass:"exactmetrics-container"},[s("div",{staticClass:"exactmetrics-about-upgrade-box-flex"},[s("div",{staticClass:"exactmetrics-about-pro-plan-box"},[s("span",{domProps:{textContent:t._s(t.text_pro_plan)}}),s("span",{staticClass:"exactmetrics-price-large"},[t._v("$199")]),s("span",{staticClass:"exactmetrics-price-term",domProps:{textContent:t._s(t.text_per_year)}}),s("a",{staticClass:"exactmetrics-button",attrs:{href:t.upgrade_url},domProps:{textContent:t._s(t.text_upgrade_now)}})]),s("div",{staticClass:"exactmetrics-about-pro-checkboxes"},[s("h3",{domProps:{textContent:t._s(t.text_get_pro)}}),s("div",{staticClass:"exactmetrics-two-column"},[s("div",{staticClass:"exactmetrics-list-check"},[s("ul",t._l(t.check_list,(function(e,a){return s("li",{key:a,domProps:{innerHTML:t._s(e)}})})),0)]),s("div",{staticClass:"exactmetrics-list-check"},[s("ul",t._l(t.check_list_2,(function(e,a){return s("li",{key:a,domProps:{innerHTML:t._s(e)}})})),0)])])])]),s("div",{staticClass:"exactmetrics-separator"}),s("about-testimonials-slider",{attrs:{testimonials:t.testimonials}})],1)]),s("div",{staticClass:"exactmetrics-container exactmetrics-bottom-buttons"},[s("a",{staticClass:"exactmetrics-button exactmetrics-button-green exactmetrics-button-xl",attrs:{href:t.wizard_url}},[s("span",{domProps:{textContent:t._s(t.text_getting_started_link1)}}),s("i",{staticClass:"monstericon-long-arrow-right-light"})]),s("br"),s("a",{staticClass:"exactmetrics-button exactmetrics-button-text",attrs:{href:t.$getUpgradeUrl("welcome-screen","bottom-link"),target:"_blank",rel:"noopener"}},[s("span",{domProps:{textContent:t._s(t.text_upgrade_pro_now)}}),s("i",{staticClass:"monstericon-long-arrow-right-light"})])])],1)},ze=[],We=(s("01cb"),s("a4cc")),Ue=s("8a0f"),Xe=s("de15"),Re={name:"WizardModuleWelcome",components:{AboutTestimonialsSlider:Xe["a"],ContentIconList:Ue["a"],WelcomeOverlay:We["a"]},data:function(){return{text_getting_started_title:Object(c["a"])("Getting Started with ExactMetrics","google-analytics-dashboard-for-wp"),text_getting_started_p1:Object(c["a"])("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.","google-analytics-dashboard-for-wp"),text_getting_started_p2:Object(c["a"])("To begin with, we’ll get your site authorized with Google Analytics, so we can start tracking and generating reports for you right away.","google-analytics-dashboard-for-wp"),text_getting_started_p3:Object(c["a"])("In no time at all, and after just a few clicks, you'll have setup the most powerful Google Analytics tracking available for WordPress. It's easy to double your traffic and sales when you know exactly how people find and use your website. Let's get started!.","google-analytics-dashboard-for-wp"),text_getting_started_link1:Object(c["a"])("Launch the wizard!","google-analytics-dashboard-for-wp"),wizard_url:this.$mi.wizard_url,text_welcome:Object(c["a"])("Welcome to","google-analytics-dashboard-for-wp"),text_thank_you:Object(c["d"])(Object(c["a"])("Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin","google-analytics-dashboard-for-wp"),"<br />"),text_efortless:Object(c["d"])(Object(c["a"])("%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.","google-analytics-dashboard-for-wp"),"<b>","</b>"),welcome_video:!1,text_features_addons:Object(c["a"])("ExactMetrics Features & Addons","google-analytics-dashboard-for-wp"),text_features_addons_subtitle:Object(c["a"])("Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market.","google-analytics-dashboard-for-wp"),icons_list:[{icon:"monstericon-chart-bar",text:Object(c["d"])(Object(c["a"])("%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code).","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-file-alt-em",text:Object(c["d"])(Object(c["a"])("%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-clock",text:Object(c["d"])(Object(c["a"])("%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-check-circle-em",text:Object(c["d"])(Object(c["a"])("%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-shopping-bag",text:Object(c["d"])(Object(c["a"])("%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.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-links",text:Object(c["d"])(Object(c["a"])("%1$sAffiliate Link & Ads Tracking%2$s - Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-unlock",text:Object(c["d"])(Object(c["a"])("%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-cog",text:Object(c["d"])(Object(c["a"])("%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"",text:Object(c["d"])(Object(c["a"])("%1$sSee All Features%2$s","google-analytics-dashboard-for-wp"),'<a target="_blank" href="'+this.$getUrl("about-page","features","https://www.exactmetrics.com/features/")+'">','<i class="monstericon-long-arrow-right-light"></i></a>')}],text_pro_plan:Object(c["a"])("Pro Plan","google-analytics-dashboard-for-wp"),text_per_year:Object(c["a"])("per year","google-analytics-dashboard-for-wp"),text_upgrade_now:Object(c["a"])("Upgrade Now","google-analytics-dashboard-for-wp"),text_upgrade_pro_now:Object(c["a"])("Upgrade to ExactMetrics Pro Now","google-analytics-dashboard-for-wp"),upgrade_url:this.$getUpgradeUrl("welcome-screen","upgrade-upsell"),testimonials:[{image:"exactmetrics-about-testimonial-avatar-1",text:Object(c["a"])("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!","google-analytics-dashboard-for-wp"),author:Object(c["a"])("Daniel Monaghan - Experienced","google-analytics-dashboard-for-wp")},{image:"exactmetrics-about-testimonial-avatar-2",text:Object(c["a"])("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.","google-analytics-dashboard-for-wp"),author:Object(c["a"])("Naomi Spirit - From This Day","google-analytics-dashboard-for-wp")},{image:"exactmetrics-about-testimonial-avatar-3",text:Object(c["a"])("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!","google-analytics-dashboard-for-wp"),author:Object(c["a"])("Julie Dupuis - Faraway Land Travel","google-analytics-dashboard-for-wp")}],text_guides:Object(c["a"])("Guides and Documentation:","google-analytics-dashboard-for-wp"),text_get_pro:Object(c["a"])("Upgrade to PRO","google-analytics-dashboard-for-wp"),check_list:[Object(c["a"])("eCommerce Tracking","google-analytics-dashboard-for-wp"),Object(c["a"])("Custom Dimensions","google-analytics-dashboard-for-wp"),Object(c["a"])("Form Tracking","google-analytics-dashboard-for-wp"),Object(c["a"])("AMP Support","google-analytics-dashboard-for-wp"),Object(c["a"])("Author Tracking","google-analytics-dashboard-for-wp")],check_list_2:[Object(c["a"])("EU Compliance Addon","google-analytics-dashboard-for-wp"),Object(c["a"])("Real Time Report","google-analytics-dashboard-for-wp"),Object(c["a"])("Google Optimize","google-analytics-dashboard-for-wp"),Object(c["a"])("Search Console","google-analytics-dashboard-for-wp"),Object(c["a"])("Custom Date Ranges","google-analytics-dashboard-for-wp")]}}},He=Re,Ge=Object(p["a"])(He,Ie,ze,!1,null,null,null),Fe=Ge.exports,Be=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-admin-page onboarding-wizard"},[s("the-wizard-header"),s("the-wizard-timeline"),s("div",{staticClass:"exactmetrics-onboarding-wizard-container"},[s("div",{staticClass:"exactmetrics-onboarding-wizard-content"},[s("onboarding-above-content"),s("router-view"),s("onboarding-below-content")],1)]),t.blocked?s("div",{staticClass:"exactmetrics-blocked"}):t._e()],1)},Ye=[],Ke=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-migration-step exactmetrics-migration-step-welcome"},[s("form",{attrs:{action:"",method:"post"},on:{submit:function(e){return e.preventDefault(),t.handleSubmit(e)}}},[t._m(0),s("h1",{domProps:{textContent:t._s(t.text_welcome)}}),s("p",{domProps:{textContent:t._s(t.text_subtitle)}}),s("div",{staticClass:"exactmetrics-bg-img exactmetrics-em-migration-image"}),s("p",{domProps:{textContent:t._s(t.text_new_improved)}}),s("div",{staticClass:"exactmetrics-migration-checkboxes"},t._l(t.text_bullets,(function(e,a){return s("div",{key:a,staticClass:"exactmetrics-migration-checkbox"},[s("i",{staticClass:"monstericon-check"}),s("span",{domProps:{textContent:t._s(e)}})])})),0),s("div",[s("button",{staticClass:"exactmetrics-button exactmetrics-button-large",attrs:{type:"submit"}},[s("span",{domProps:{textContent:t._s(t.text_continue)}}),s("i",{staticClass:"monstericon-long-arrow-right-light"})])]),s("div",{staticClass:"exactmetrics-migration-footer"},[s("i",{staticClass:"monstericon-info-circle-regular"}),s("span",{domProps:{textContent:t._s(t.text_your_settings)}}),s("span",{staticClass:"exactmetrics-migration-info",domProps:{innerHTML:t._s(t.text_reauth_needed)}})])])])},Ne=[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-welcome-header-logo"},[s("div",{staticClass:"exactmetrics-bg-img exactmetrics-em-logo-icon"})])}],Ve={name:"MigrationStepWelcome",data:function(){return{text_welcome:Object(c["a"])("Welcome to the all-new ExactMetrics","google-analytics-dashboard-for-wp"),text_subtitle:Object(c["a"])("Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress.","google-analytics-dashboard-for-wp"),text_new_improved:Object(c["a"])("The New & Improved ExactMetrics includes:","google-analytics-dashboard-for-wp"),text_bullets:[Object(c["a"])("All-New Design","google-analytics-dashboard-for-wp"),Object(c["a"])("Better Reporting","google-analytics-dashboard-for-wp"),Object(c["a"])("Better Tracking","google-analytics-dashboard-for-wp"),Object(c["a"])("Better Support","google-analytics-dashboard-for-wp")],text_continue:Object(c["a"])("Continue","google-analytics-dashboard-for-wp"),text_your_settings:Object(c["a"])("Your settings have been automatically transferred.","google-analytics-dashboard-for-wp"),text_reauth_needed:Object(c["d"])(Object(c["a"])("On the next step, you will be asked to re-authenticate with Google Analytics. Please %1$ssee our detailed post%2$s to learn why we need your help. Don't worry, your tracking will continue to work as-is even if you don't do this, but re-auth is required to see analytics reports inside WordPress dashboard.","google-analytics-dashboard-for-wp"),'<a href="'+this.$getUrl("migration","first-step","https://www.exactmetrics.com/why-did-we-implement-the-new-google-analytics-authentication-flow-challenges-explained/")+'" target="_blank">',"</a>")}},methods:{handleSubmit:function(){this.$router.push(this.$wizard_steps[1])}}},qe=Ve,Ze=Object(p["a"])(qe,Ke,Ne,!1,null,null,null),Je=Ze.exports,Qe=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-migration-step exactmetrics-migration-step-upsell"},[s("form",{attrs:{action:"",method:"post"},on:{submit:function(e){return e.preventDefault(),t.handleSubmit(e)}}},[s("h1",{domProps:{innerHTML:t._s(t.text_need)}}),s("h2",{domProps:{textContent:t._s(t.text_subtitle)}}),s("p",{domProps:{textContent:t._s(t.text_upgrade_paragraph)}}),s("p",{staticClass:"exactmetrics-paragraph-limit",domProps:{textContent:t._s(t.text_pro_includes)}}),s("div",{staticClass:"exactmetrics-migration-checkboxes"},t._l(t.text_bullets,(function(e,a){return s("div",{key:a,staticClass:"exactmetrics-migration-checkbox"},[s("i",{staticClass:"monstericon-check"}),s("span",{domProps:{textContent:t._s(e)}})])})),0),s("div",[s("a",{staticClass:"exactmetrics-button exactmetrics-button-large",attrs:{href:t.features_link,target:"_blank",rel:"noopener"}},[s("span",{domProps:{textContent:t._s(t.text_see_all)}}),s("i",{staticClass:"monstericon-external-link-alt"})]),s("button",{staticClass:"exactmetrics-button exactmetrics-button-text",attrs:{type:"submit"}},[s("span",{domProps:{textContent:t._s(t.text_continue)}}),s("i",{staticClass:"monstericon-long-arrow-right-light"})])])])])},ts=[],es={name:"MigrationStepUpsell",data:function(){return{text_need:Object(c["d"])(Object(c["a"])("%1$sNeed%2$s to Grow FASTER??","google-analytics-dashboard-for-wp"),'<span class="exactmetrics-highlight">',"</span>"),text_subtitle:Object(c["a"])("Get additional, actionable insights by going Pro.","google-analytics-dashboard-for-wp"),text_continue:Object(c["a"])("Skip","google-analytics-dashboard-for-wp"),text_see_all:Object(c["a"])("See All Features","google-analytics-dashboard-for-wp"),text_upgrade_paragraph:Object(c["a"])("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.","google-analytics-dashboard-for-wp"),text_pro_includes:Object(c["a"])("Our Pro plan includes:","google-analytics-dashboard-for-wp"),text_bullets:[Object(c["a"])("eCommerce Tracking","google-analytics-dashboard-for-wp"),Object(c["a"])("EU Compliance Addon","google-analytics-dashboard-for-wp"),Object(c["a"])("Custom Dimensions","google-analytics-dashboard-for-wp"),Object(c["a"])("Real Time Report","google-analytics-dashboard-for-wp"),Object(c["a"])("Form Tracking","google-analytics-dashboard-for-wp"),Object(c["a"])("Google Optimize","google-analytics-dashboard-for-wp"),Object(c["a"])("AMP Support","google-analytics-dashboard-for-wp"),Object(c["a"])("Search Console","google-analytics-dashboard-for-wp"),Object(c["a"])("Author Tracking","google-analytics-dashboard-for-wp"),Object(c["a"])("Custom Date Ranges","google-analytics-dashboard-for-wp")],features_link:this.$getUpgradeUrl("migration-wizard","features","https://exactmetrics.com/features")}},methods:{handleSubmit:function(){this.$router.push(this.$wizard_steps[4])}}},ss=es,as=Object(p["a"])(ss,Qe,ts,!1,null,null,null),os=as.exports,ns=new r["a"]({routes:[{path:"*",redirect:"/"},{path:"/",name:"welcome",component:Je},{path:"/authenticate",name:"authenticate",component:V},{path:"/recommended_settings",name:"recommended_settings",component:pt},{path:"/pro",name:"pro",component:os},{path:"/success",name:"success",component:Nt}],scrollBehavior:function(){return{x:0,y:0}}}),rs=(s("2c58"),function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-above-content"},[s("span",{staticClass:"exactmetrics-step-current",domProps:{textContent:t._s(t.textCurrentStep)}})])}),is=[],ls={name:"OnboardingAboveContent",data:function(){return{steps:this.$wizard_steps,text_step:Object(c["a"])("Step %1$s of %2$s","google-analytics-dashboard-for-wp")}},computed:{currentStep:function(){var t=0;for(var e in this.steps)this.steps.hasOwnProperty(e)&&this.$route.name===this.steps[e]&&(t=parseInt(e));return t+1},totalSteps:function(){return this.steps.length?this.steps.length:0},textCurrentStep:function(){return Object(c["d"])(this.text_step,this.currentStep,this.totalSteps)}}},cs=ls,ds=Object(p["a"])(cs,rs,is,!1,null,null,null),us=ds.exports,gs=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-below-content"},[s("button",{staticClass:"exactmetrics-button-go-back",on:{click:t.goBack}},[s("i",{staticClass:"monstericon-long-arrow-right-light"}),s("span",{domProps:{textContent:t._s(t.text_go_back)}})])])},hs=[],ps={name:"OnboardingBelowContent",data:function(){return{steps:this.$wizard_steps,text_go_back:Object(c["a"])("Go back","google-analytics-dashboard-for-wp")}},computed:{currentStep:function(){var t=0;for(var e in this.steps)this.steps.hasOwnProperty(e)&&this.$route.name===this.steps[e]&&(t=parseInt(e));return t}},methods:{goBack:function(){if(0!==this.currentStep){var t=this.currentStep-1;this.$router.push(this.$wizard_steps[t])}else window.location=this.$mi.exit_url}}},ms=ps,bs=Object(p["a"])(ms,gs,hs,!1,null,null,null),_s=bs.exports;function fs(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,a)}return s}function ws(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?fs(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):fs(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var ys={name:"WizardModuleMigration",components:{OnboardingBelowContent:_s,OnboardingAboveContent:us,TheWizardTimeline:Oe,TheWizardHeader:_e},router:ns,created:function(){var t="$_settings";t in this.$store._modules.root._children||this.$store.registerModule(t,qt["a"]);var e="$_onboarding";e in this.$store._modules.root._children||this.$store.registerModule(e,ue)},computed:ws({},Object(k["b"])({blocked:"$_app/blocked"})),mounted:function(){this.$mi_loading_toast(),this.$store.dispatch("$_settings/getSettings")}},vs=ys,xs=(s("56f6"),Object(p["a"])(vs,Be,Ye,!1,null,"bcb9681a",null)),Os=xs.exports,ks=s("619c"),js=s("7460"),Cs={install:function(t){var e=this;t.prototype.$swal&&(t.prototype.$mi_saving_toast=function(){},t.prototype.$mi_success_toast=function(){},t.prototype.$mi_error_toast=function(){},t.prototype.$mi_loading_toast=function(){var s="exactmetrics-swal exactmetrics-swal-loading";window.scrollY>0&&(s+=" exactmetrics-swal-full-height"),t.prototype.$swal({customContainerClass:s,type:"info",title:Object(c["a"])("Loading settings","google-analytics-dashboard-for-wp"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){t.prototype.$swal.showLoading(),e.addCustomLoader()}})}),t.prototype.$addCustomLoader=e.addCustomLoader},addCustomLoader:function(){var t='<div class="exactmetrics-roller"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>';document.querySelector(".swal2-actions.swal2-loading").innerHTML=t}},Ps=Cs,$s=s("4360"),Ss=s("e37d"),As=s("6c6b"),Ms=document.getElementById("exactmetrics-vue-onboarding-wizard"),Ts=document.getElementById("exactmetrics-welcome"),Es=document.getElementById("exactmetrics-migration-wizard");if(Qt["a"].config.productionTip=!1,Ms||Ts||Es)if(Object(As["a"])({ctrl:!0}),Qt["a"].use(r["a"]),Qt["a"].use(ks["a"]),Qt["a"].use(Ss["a"],{defaultTemplate:'<div class="exactmetrics-tooltip" role="tooltip"><div class="exactmetrics-tooltip-arrow"></div><div class="exactmetrics-tooltip-inner"></div></div>',defaultArrowSelector:".exactmetrics-tooltip-arrow, .exactmetrics-tooltip__arrow",defaultInnerSelector:".exactmetrics-tooltip-inner, .exactmetrics-tooltip__inner"}),Qt["a"].use(js["a"]),Object(c["c"])(window.exactmetrics.translations,"google-analytics-dashboard-for-wp"),Ts)new Qt["a"]({store:$s["a"],mounted:function(){$s["a"].dispatch("$_app/init")},render:function(t){return t(Fe)}}).$mount(Ts);else if(Es){var Ls={install:function(t){t.prototype.$wizard_steps=["welcome","authenticate","recommended_settings"],t.prototype.$mi&&t.prototype.$mi.had_ecommerce&&t.prototype.$wizard_steps.push("pro"),t.prototype.$wizard_steps.push("success")}};Qt["a"].use(Ls),Qt["a"].use(Ps),new Qt["a"]({store:$s["a"],mounted:function(){$s["a"].dispatch("$_app/init"),$s["a"].dispatch("$_license/getLicense"),$s["a"].dispatch("$_auth/getAuth"),$s["a"].dispatch("$_addons/getAddons")},render:function(t){return t(Os)}}).$mount(Es)}else{var Ds={install:function(t){t.prototype.$wizard_steps=["welcome","authenticate"],t.prototype.$mi&&!t.prototype.$mi.network&&t.prototype.$wizard_steps.push("recommended_settings"),t.prototype.$mi&&!t.prototype.$mi.migrated&&t.prototype.$wizard_steps.push("recommended_addons"),t.prototype.$wizard_steps.push("success")}};Qt["a"].use(Ds),Qt["a"].use(Ps),new Qt["a"]({store:$s["a"],mounted:function(){$s["a"].dispatch("$_app/init"),$s["a"].dispatch("$_license/getLicense"),$s["a"].dispatch("$_auth/getAuth"),$s["a"].dispatch("$_addons/getAddons")},render:function(t){return t(De)}}).$mount(Ms)}},1:function(t,e,s){t.exports=s("0951")},1608:function(t,e,s){"use strict";var a=s("346d"),o=s.n(a);o.a},2532:function(t,e,s){"use strict";var a=s("23e7"),o=s("5a34"),n=s("1d80"),r=s("ab13");a({target:"String",proto:!0,forced:!r("includes")},{includes:function(t){return!!~String(n(this)).indexOf(o(t),arguments.length>1?arguments[1]:void 0)}})},"2c58":function(t,e,s){},3358:function(t,e,s){},"346d":function(t,e,s){},"56f6":function(t,e,s){"use strict";var a=s("d8ce"),o=s.n(a);o.a},"5a34":function(t,e,s){var a=s("44e7");t.exports=function(t){if(a(t))throw TypeError("The method doesn't accept regular expressions");return t}},ab13:function(t,e,s){var a=s("b622"),o=a("match");t.exports=function(t){var e=/./;try{"/./"[t](e)}catch(s){try{return e[o]=!1,"/./"[t](e)}catch(a){}}return!1}},caad:function(t,e,s){"use strict";var a=s("23e7"),o=s("4d64").includes,n=s("44d2"),r=s("ae40"),i=r("indexOf",{ACCESSORS:!0,1:0});a({target:"Array",proto:!0,forced:!i},{includes:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),n("includes")},d8ce:function(t,e,s){}});
|
1 |
+
(function(t){function e(e){for(var a,r,i=e[0],l=e[1],c=e[2],u=0,g=[];u<i.length;u++)r=i[u],o[r]&&g.push(o[r][0]),o[r]=0;for(a in l)Object.prototype.hasOwnProperty.call(l,a)&&(t[a]=l[a]);d&&d(e);while(g.length)g.shift()();return n.push.apply(n,c||[]),s()}function s(){for(var t,e=0;e<n.length;e++){for(var s=n[e],a=!0,i=1;i<s.length;i++){var l=s[i];0!==o[l]&&(a=!1)}a&&(n.splice(e--,1),t=r(r.s=s[0]))}return t}var a={},o={wizard:0},n=[];function r(e){if(a[e])return a[e].exports;var s=a[e]={i:e,l:!1,exports:{}};return t[e].call(s.exports,s,s.exports,r),s.l=!0,s.exports}r.m=t,r.c=a,r.d=function(t,e,s){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:s})},r.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,e){if(1&e&&(t=r(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var s=Object.create(null);if(r.r(s),Object.defineProperty(s,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var a in t)r.d(s,a,function(e){return t[e]}.bind(null,a));return s},r.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="https://am-plugins.site/";var i=window["exactmetricsjsonp"]=window["exactmetricsjsonp"]||[],l=i.push.bind(i);i.push=e,i=i.slice();for(var c=0;c<i.length;c++)e(i[c]);var d=l;n.push([1,"chunk-vendors","chunk-common"]),s()})({"01cb":function(t,e,s){},"0951":function(t,e,s){"use strict";s.r(e);s("e260"),s("e6cf"),s("cca6"),s("a79d");var a=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-admin-page onboarding-wizard"},[s("the-wizard-header"),s("the-wizard-timeline"),s("div",{staticClass:"exactmetrics-onboarding-wizard-container"},[s("div",{staticClass:"exactmetrics-onboarding-wizard-content"},[s("router-view")],1)]),"success"===t.route?s("OnboardingBottomUpsell"):t._e(),t.blocked?s("div",{staticClass:"exactmetrics-blocked"}):t._e()],1)},o=[],n=(s("a4d3"),s("4de4"),s("4160"),s("b0c0"),s("e439"),s("dbb4"),s("b64b"),s("159b"),s("fc11")),r=s("8c4f"),i=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-step-welcome"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"exactmetrics-onboarding-wizard-form"},[s("div",{staticClass:"exactmetrics-separator"}),s("form",{on:{submit:function(e){return e.preventDefault(),t.handleSubmit(e)}}},[s("div",{staticClass:"exactmetrics-form-row"},[s("div",{staticClass:"exactmetrics-form-label"},[s("label",{domProps:{textContent:t._s(t.text_category_label)}}),s("p",{staticClass:"exactmetrics-description",domProps:{textContent:t._s(t.text_category_sublabel)}})]),s("settings-input-radio",{attrs:{name:"site_type",options:t.options,auth_disabled:!1}})],1),s("div",{staticClass:"exactmetrics-separator"}),s("div",{staticClass:"exactmetrics-form-row exactmetrics-form-buttons"},[s("button",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-large",attrs:{type:"submit",name:"next_step"},domProps:{textContent:t._s(t.text_save)}})])])])],1)},l=[],c=s("561c"),d=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("header",[s("h2",{domProps:{innerHTML:t._s(t.title)}}),t.subtitle?s("p",{staticClass:"subtitle",domProps:{innerHTML:t._s(t.subtitle)}}):t._e()])},u=[],g={name:"OnboardingContentHeader",props:{title:String,subtitle:String}},h=g,p=s("2877"),m=Object(p["a"])(h,d,u,!1,null,null,null),b=m.exports,_=s("6d70"),f={name:"OnboardingStepWelcome",components:{SettingsInputRadio:_["a"],OnboardingContentHeader:b},data:function(){return{text_header_title:Object(c["a"])("Welcome to ExactMetrics!","google-analytics-dashboard-for-wp"),text_header_subtitle:Object(c["a"])("Let's get you set up.","google-analytics-dashboard-for-wp"),text_save:Object(c["a"])("Save and Continue","google-analytics-dashboard-for-wp"),text_category_label:Object(c["a"])("Which category best describes your website?","google-analytics-dashboard-for-wp"),text_category_sublabel:Object(c["a"])("We will recommend the optimal settings for ExactMetrics based on your choice.","google-analytics-dashboard-for-wp"),options:[{value:"business",label:Object(c["a"])("Business Website","google-analytics-dashboard-for-wp")},{value:"publisher",label:Object(c["d"])(Object(c["a"])("Publisher %1$s(Blog)%2$s","google-analytics-dashboard-for-wp"),"<small>","</small>")},{value:"ecommerce",label:Object(c["a"])("Ecommerce","google-analytics-dashboard-for-wp")}]}},methods:{handleSubmit:function(){this.$router.push(this.$wizard_steps[1])}}},w=f,y=Object(p["a"])(w,i,l,!1,null,null,null),v=y.exports,x=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-step-authenticate"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"exactmetrics-onboarding-wizard-form"},[s("form",[s("div",{staticClass:"exactmetrics-form-row"},[s("onboarding-license")],1),s("div",{staticClass:"exactmetrics-separator"}),t.auth_error?[t.auth.network_manual_ua||t.auth.manual_ua?t._e():s("div",{staticClass:"exactmetrics-notice exactmetrics-notice-error"},[s("div",{staticClass:"exactmetrics-notice-inner"},[s("span",{domProps:{textContent:t._s(t.text_error_auth)}})])]),t.auth.network_manual_ua||t.auth.manual_ua?t._e():s("div",{staticClass:"exactmetrics-separator"}),s("label",{domProps:{textContent:t._s(t.text_manual_label)}}),s("p",{domProps:{innerHTML:t._s(t.text_manual_description)}}),s("input",{staticClass:"exactmetrics-manual-ua",attrs:{id:"exactmetrics-auth-manual-ua-input",type:"text"},domProps:{value:t.is_network?t.auth.network_manual_ua:t.auth.manual_ua},on:{change:t.updateManualUa,input:t.fieldInput}}),t.has_ua_error?s("label",{staticClass:"exactmetrics-error"},[s("i",{staticClass:"monstericon-warning-triangle"}),s("span",{domProps:{innerHTML:t._s(t.has_error)}})]):t._e(),s("div",{staticClass:"exactmetrics-separator"}),s("label",{staticClass:"exactmetrics-dark",domProps:{textContent:t._s(t.text_manual_v4_label)}}),s("p",{domProps:{innerHTML:t._s(t.text_manual_v4_description)}}),s("input",{staticClass:"exactmetrics-manual-ua",attrs:{id:"exactmetrics-auth-manual-v4-input",type:"text"},domProps:{value:t.is_network?t.auth.network_manual_v4:t.auth.manual_v4},on:{change:t.updateManualV4}}),t.has_v4_error?s("label",{staticClass:"exactmetrics-error"},[s("i",{staticClass:"monstericon-warning-triangle"}),s("span",{domProps:{innerHTML:t._s(t.has_error)}})]):t._e(),t.auth.manual_v4||t.auth.network_manual_v4?[s("div",{staticClass:"exactmetrics-separator"}),s("label",{staticClass:"exactmetrics-dark",attrs:{for:"exactmetrics-v4-measurement-protocol"},domProps:{textContent:t._s(t.text_v4_measurement_protocol)}}),s("p",{staticClass:"exactmetrics-field-description",domProps:{innerHTML:t._s(t.text_v4_measurement_protocol_description)}}),s("input",{staticClass:"exactmetrics-manual-ua",attrs:{id:"exactmetrics-v4-measurement-protocol",type:"text"},domProps:{value:t.measurement_protocol_secret},on:{change:t.updateMeasurementProtocolSecret}})]:t._e(),s("div",{staticClass:"exactmetrics-separator"}),s("div",{staticClass:"exactmetrics-form-row exactmetrics-form-buttons"},[s("button",{class:t.manual_button_class,attrs:{type:"submit",name:"next_step"},domProps:{textContent:t._s(t.text_save)},on:{click:function(e){return e.preventDefault(),t.handleSubmit(e)}}})])]:[s("onboarding-authenticate",{attrs:{label:t.text_authenticate_label,description:t.text_authenticate_description},on:{nextstep:t.handleSubmit}})]],2)])],1)},O=[],k=(s("d3b7"),s("e25e"),s("ac1f"),s("3ca3"),s("841c"),s("ddb0"),s("2b3d"),s("2f62")),j=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-license-lite"},[s("div",{staticClass:"exactmetrics-separator"}),s("label",{domProps:{textContent:t._s(t.text_license_label)}}),s("div",{staticClass:"settings-input settings-input-license"},[s("p",{domProps:{innerHTML:t._s(t.text_license_description_1)}}),s("p",{domProps:{innerHTML:t._s(t.text_license_description_2)}}),s("a",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-regular",attrs:{href:t.$getUpgradeUrl("onboarding","license"),target:"_blank"},domProps:{textContent:t._s(t.text_upgrade_button)}})])])},C=[];function P(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,a)}return s}function $(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?P(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):P(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var S={name:"OnboardingLicense",computed:$({},Object(k["b"])({license:"$_license/license",license_network:"$_license/license_network",auth:"$_auth/auth"})),data:function(){return{text_license_label:Object(c["a"])("License Key","google-analytics-dashboard-for-wp"),text_license_description_1:Object(c["d"])(Object(c["a"])("You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s","google-analytics-dashboard-for-wp"),"<strong>","</strong>",'<span class="exactmetrics-bg-img exactmetrics-smile"></span>'),text_license_description_2:Object(c["d"])(Object(c["a"])("As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout.","google-analytics-dashboard-for-wp"),'<span class="exactmetrics-highlighted-text">',"</span>"),text_upgrade_button:Object(c["a"])("Unlock All Features and Upgrade to Pro","google-analytics-dashboard-for-wp")}}},A=S,M=Object(p["a"])(A,j,C,!1,null,null,null),T=M.exports,E=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-settings-input exactmetrics-settings-input-authenticate"},[!t.auth.network_ua||t.is_network||t.auth.ua||t.auth.v4?t._e():s("settings-network-notice",[s("strong",{domProps:{textContent:t._s(t.text_auth_network)}}),s("span",{domProps:{textContent:t._s(t.text_auth_network_2)}})]),(t.is_network?t.auth.network_ua||t.auth.network_v4:t.auth.ua||t.auth.v4)?s("div",{staticClass:"exactmetrics-auth-info"},[s("span",{staticClass:"exactmetrics-dark",domProps:{textContent:t._s(t.text_website_profile)}}),s("p",[s("span",{domProps:{textContent:t._s(t.text_active_profile)}}),t._v(": "),s("span",{domProps:{textContent:t._s(t.is_network?t.auth.network_viewname:t.auth.viewname)}})]),s("div",{staticClass:"exactmetrics-separator"}),s("label",{staticClass:"exactmetrics-dark",attrs:{for:"exactmetrics-dual-tracking-id"},domProps:{textContent:t._s(t.text_dual_tracking_profile)}}),s("p",{staticClass:"exactmetrics-field-description"},[s("span",{domProps:{innerHTML:t._s("ua"===t.auth.connected_type?t.text_dual_v4:t.text_dual_ua)}}),s("br"),s("span",{domProps:{innerHTML:t._s("ua"===t.auth.connected_type?t.text_dual_v4_tip:t.text_dual_ua_tip)}})]),s("input",{staticClass:"exactmetrics-manual-ua",attrs:{id:"exactmetrics-dual-tracking-id",type:"text"},domProps:{value:t.dual_tracking_id},on:{change:t.updateDualTrackingId}}),t.has_dual_error?s("label",{staticClass:"exactmetrics-error"},[s("i",{staticClass:"monstericon-warning-triangle"}),s("span",{domProps:{innerHTML:t._s(t.has_error)}})]):t._e(),t.auth.v4?[s("div",{staticClass:"exactmetrics-separator"}),s("label",{staticClass:"exactmetrics-dark",attrs:{for:"exactmetrics-v4-measurement-protocol"},domProps:{textContent:t._s(t.text_v4_measurement_protocol)}}),s("p",{staticClass:"exactmetrics-field-description",domProps:{innerHTML:t._s(t.text_v4_measurement_protocol_description)}}),s("input",{staticClass:"exactmetrics-manual-ua",attrs:{id:"exactmetrics-v4-measurement-protocol",type:"text"},domProps:{value:t.measurement_protocol_secret},on:{change:t.updateMeasurementProtocolSecret}})]:t._e(),s("div",{staticClass:"exactmetrics-separator"}),s("div",[s("div",{staticClass:"exactmetrics-auth-actions"},[s("button",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-large",domProps:{textContent:t._s(t.text_button_reconnect)},on:{click:t.doReAuth}}),s("button",{staticClass:"exactmetrics-text-button exactmetrics-pull-right",attrs:{type:"submit"},on:{click:function(e){return e.preventDefault(),t.submitForm(e)}}},[s("span",{domProps:{textContent:t._s(t.text_skip)}}),s("i",{staticClass:"monstericon-arrow-right"})])])])],2):s("div",[s("span",{staticClass:"exactmetrics-dark",domProps:{textContent:t._s(t.label)}}),s("p",{domProps:{innerHTML:t._s(t.description)}}),s("button",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-large",domProps:{textContent:t._s(t.text_button_connect)},on:{click:t.doAuth}})])],1)},L=[],D=s("b333");function I(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,a)}return s}function z(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?I(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):I(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var U={name:"OnboardingAuthenticate",components:{SettingsNetworkNotice:D["a"]},props:{label:String,description:String},data:function(){return{is_network:this.$mi.network,text_button_connect:Object(c["a"])("Connect ExactMetrics","google-analytics-dashboard-for-wp"),text_button_reconnect:Object(c["a"])("Reconnect ExactMetrics","google-analytics-dashboard-for-wp"),text_website_profile:Object(c["a"])("Website profile","google-analytics-dashboard-for-wp"),text_active_profile:Object(c["a"])("Active profile","google-analytics-dashboard-for-wp"),text_auth_network:Object(c["a"])("Your website profile has been set at the network level of your WordPress Multisite.","google-analytics-dashboard-for-wp"),text_auth_network_2:Object(c["a"])("If you would like to use a different profile for this subsite, you can authenticate below.","google-analytics-dashboard-for-wp"),text_skip:Object(c["a"])("Skip and Keep Connection","google-analytics-dashboard-for-wp"),text_manual_v4_label:Object(c["a"])("Manually enter your GA4 Measurement ID","google-analytics-dashboard-for-wp"),text_manual_v4_description:Object(c["a"])("Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters.","google-analytics-dashboard-for-wp"),text_dual_tracking_profile:Object(c["a"])("Dual Tracking Profile","google-analytics-dashboard-for-wp"),text_dual_ua:Object(c["d"])(Object(c["a"])("The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s.","google-analytics-dashboard-for-wp"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.exactmetrics.com/introducing-google-analytics-4-dual-analytics-tracking-for-wordpress/")+'" target="_blank">',"</a>"),text_dual_ua_tip:Object(c["a"])("Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers.","google-analytics-dashboard-for-wp"),text_dual_v4:Object(c["d"])(Object(c["a"])("The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s.","google-analytics-dashboard-for-wp"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.exactmetrics.com/introducing-google-analytics-4-dual-analytics-tracking-for-wordpress/")+'" target="_blank">',"</a>"),text_dual_v4_tip:Object(c["a"])("Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters.","google-analytics-dashboard-for-wp"),text_v4_measurement_protocol:Object(c["a"])("Measurement Protocol API Secret","google-analytics-dashboard-for-wp"),text_v4_measurement_protocol_description:Object(c["d"])(Object(c["a"])("The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s.","google-analytics-dashboard-for-wp"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.exactmetrics.com/docs/how-to-create-your-measurement-protocol-api-secret-in-ga4/")+'" target="_blank">',"</a>"),has_error:!1,has_ua_error:!1,has_v4_error:!1,has_dual_error:!1}},computed:z({},Object(k["b"])({license:"$_license/license",license_network:"$_license/license_network",auth:"$_auth/auth"}),{iconClass:function(){var t="monstericon-arrow";return this.showButtons&&(t+=" monstericon-down"),t},dual_tracking_key:function(){var t="ua"===this.auth.connected_type?"v4":"ua",e=this.is_network?"network_":"";return e+t},dual_tracking_id:function(){return this.auth[this.dual_tracking_key]},measurement_protocol_secret:function(){return this.is_network?this.auth.network_measurement_protocol_secret:this.auth.measurement_protocol_secret}}),methods:{submitForm:function(){this.$emit("nextstep",!0)},doAuth:function(t){t.preventDefault();var e=this;this.$swal({customContainerClass:"exactmetrics-swal exactmetrics-swal-loading",type:"info",title:Object(c["a"])("Authenticating","google-analytics-dashboard-for-wp"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){e.$swal.showLoading(),e.$addCustomLoader()}}),this.$store.dispatch("$_auth/doAuth",this.is_network).then((function(t){t.data.redirect?window.location=t.data.redirect:e.$swal({type:"error",title:Object(c["a"])("Error","google-analytics-dashboard-for-wp"),html:t.data.message,confirmButtonText:Object(c["a"])("Ok","google-analytics-dashboard-for-wp")})}))},doReAuth:function(t){t.preventDefault();var e=this;this.$swal({customContainerClass:"exactmetrics-swal exactmetrics-swal-loading",type:"info",title:Object(c["a"])("Re-Authenticating","google-analytics-dashboard-for-wp"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){e.$swal.showLoading(),e.$addCustomLoader()}}),this.$store.dispatch("$_auth/doReAuth",this.is_network).then((function(t){t.data.redirect?window.location=t.data.redirect:e.$swal({type:"error",title:Object(c["a"])("Error","google-analytics-dashboard-for-wp"),html:t.data.message,confirmButtonText:Object(c["a"])("Ok","google-analytics-dashboard-for-wp")})}))},processActionResponse:function(t){!1===t.success?(t.data.ua_error?(this.has_v4_error=!1,this.has_ua_error=!0):t.data.v4_error?(this.has_ua_error=!1,this.has_v4_error=!0):t.data.error&&(this.has_ua_error=!1,this.has_v4_error=!1,this.has_dual_error=!0),this.has_error=t.data.error,this.$mi_error_toast({})):(this.has_v4_error=!1,this.has_ua_error=!1,this.has_error=!1,this.has_dual_error=!1,this.$mi_success_toast({}))},updateDualTrackingId:function(t){this.$mi_saving_toast({}),this.has_error=!1,this.$store.dispatch("$_auth/updateDualTrackingId",{value:t.target.value,network:this.is_network}).then(this.processActionResponse)},updateMeasurementProtocolSecret:function(t){this.$mi_saving_toast({}),this.has_error=!1,this.$store.dispatch("$_auth/updateMeasurementProtocolSecret",{value:t.target.value,network:this.is_network}).then(this.processActionResponse)}}},X=U,W=Object(p["a"])(X,E,L,!1,null,null,null),R=W.exports,H=s("f7fe"),G=s.n(H);function B(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,a)}return s}function F(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?B(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):B(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var Y={name:"OnboardingStepWelcome",components:{OnboardingAuthenticate:R,OnboardingLicense:T,OnboardingContentHeader:b},data:function(){return{text_header_title:Object(c["a"])("Connect ExactMetrics to Your Website","google-analytics-dashboard-for-wp"),text_header_subtitle:Object(c["a"])("ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.","google-analytics-dashboard-for-wp"),text_authenticate_label:Object(c["a"])("Connect Google Analytics + WordPress","google-analytics-dashboard-for-wp"),text_authenticate_description:Object(c["a"])("You will be taken to the ExactMetrics website where you'll need to connect your Analytics account.","google-analytics-dashboard-for-wp"),text_error_auth:Object(c["a"])("Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually.","google-analytics-dashboard-for-wp"),text_manual_label:Object(c["a"])("Manually enter your UA code","google-analytics-dashboard-for-wp"),text_manual_description:Object(c["a"])("Warning: If you use a manual UA code, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X's are numbers.","google-analytics-dashboard-for-wp"),text_save:Object(c["a"])("Save and Continue","google-analytics-dashboard-for-wp"),is_network:this.$mi.network,has_error:!1,auth_error:!1,manual_valid:!0,has_ua_error:!1,has_v4_error:!1,text_manual_v4_label:Object(c["a"])("Manually enter your GA4 Measurement ID","google-analytics-dashboard-for-wp"),text_manual_v4_description:Object(c["a"])("Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters.","google-analytics-dashboard-for-wp"),text_dual_tracking_profile:Object(c["a"])("Dual Tracking Profile","google-analytics-dashboard-for-wp"),text_dual_ua:Object(c["d"])(Object(c["a"])("The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s.","google-analytics-dashboard-for-wp"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.exactmetrics.com/introducing-google-analytics-4-dual-analytics-tracking-for-wordpress/")+'" target="_blank">',"</a>"),text_dual_ua_tip:Object(c["a"])("Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers.","google-analytics-dashboard-for-wp"),text_dual_v4:Object(c["d"])(Object(c["a"])("The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s.","google-analytics-dashboard-for-wp"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.exactmetrics.com/introducing-google-analytics-4-dual-analytics-tracking-for-wordpress/")+'" target="_blank">',"</a>"),text_dual_v4_tip:Object(c["a"])("Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters.","google-analytics-dashboard-for-wp"),text_v4_measurement_protocol:Object(c["a"])("Measurement Protocol API Secret","google-analytics-dashboard-for-wp"),text_v4_measurement_protocol_description:Object(c["d"])(Object(c["a"])("The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s.","google-analytics-dashboard-for-wp"),'<a href="'+this.$getUrl("dual-tracking","settings","https://www.exactmetrics.com/docs/how-to-create-your-measurement-protocol-api-secret-in-ga4/")+'" target="_blank">',"</a>")}},computed:F({},Object(k["b"])({auth:"$_auth/auth"}),{manual_button_class:function(){var t="exactmetrics-onboarding-button exactmetrics-onboarding-button-large";return this.manual_valid||(t+=" exactmetrics-button-disabled"),t},measurement_protocol_secret:function(){return this.is_network?this.auth.network_measurement_protocol_secret:this.auth.measurement_protocol_secret}}),methods:{fieldInput:G()((function(t){this.updateManualUa(t)}),500),handleSubmit:function(){if(this.auth_error&&""===this.auth.manual_ua&&""===this.auth.network_manual_ua)return this.manual_valid=!1,void(this.has_error=Object(c["a"])("UA code can't be empty","google-analytics-dashboard-for-wp"));this.auth_error&&!this.manual_valid||this.$router.push(this.$wizard_steps[2])},updateManualUa:function(t){var e=this;e.$swal({type:"info",title:Object(c["a"])("Saving UA code...","google-analytics-dashboard-for-wp"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){e.$swal.showLoading()}}),e.has_error=!1,e.manual_valid=!1,this.$store.dispatch("$_auth/updateManualUa",{ua:t.target.value,network:this.is_network}).then((function(s){!1===s.success?(e.has_error=s.data.error,e.has_ua_error=!0,e.has_v4_error=!1,e.$swal.close(),t.target.value=""):(e.has_error=!1,e.has_ua_error=!1,e.has_v4_error=!1,e.manual_valid=!0,e.$swal.close())}))},updateManualV4:function(t){var e=this;this.$mi_saving_toast({}),e.has_error=!1,this.$store.dispatch("$_auth/updateManualV4",{v4:t.target.value,network:this.is_network}).then((function(s){!1===s.success?(e.has_error=s.data.error,e.has_v4_error=!0,e.has_ua_error=!1,e.$swal.close(),t.target.value=""):(e.has_error=!1,e.has_v4_error=!1,e.has_ua_error=!1,e.manual_valid=!0,e.$swal.close())}))},updateMeasurementProtocolSecret:function(t){this.$mi_saving_toast({}),this.has_error=!1,this.$store.dispatch("$_auth/updateMeasurementProtocolSecret",{value:t.target.value,network:this.is_network}).then((function(e){!1===e.success?(self.has_error=e.data.error,self.$swal.close(),t.target.value=""):(self.has_error=!1,self.manual_valid=!0,self.$swal.close())}))}},mounted:function(){if("undefined"!==typeof URLSearchParams){var t=new URLSearchParams(window.location.search);if(t){var e=t.get("mi-auth-error");"1"!==e&&"2"!==e||(this.auth_error=parseInt(e),this.auth.manual_ua&&(this.manual_valid=!0))}}}},K=Y,N=Object(p["a"])(K,x,O,!1,null,null,null),V=N.exports,q=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-step-recommended-settings"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"exactmetrics-onboarding-wizard-form"},[s("form",{attrs:{action:"",method:"post"},on:{submit:function(e){return e.preventDefault(),t.handleSubmit(e)}}},[s("div",{staticClass:"exactmetrics-separator"}),s("settings-input-checkbox",{attrs:{label:t.text_events_label,description:t.text_events_description,tooltip:t.text_events_tooltip,faux:!0,faux_tooltip:t.text_events_faux_tooltip}}),s("div",{staticClass:"exactmetrics-separator"}),s("settings-input-checkbox",{attrs:{label:t.text_link_attribution_label,description:t.text_link_attribution_description,tooltip:t.text_link_attribution_tooltip,faux:!0,faux_tooltip:t.text_link_attribution_faux_tooltip}}),s("div",{staticClass:"exactmetrics-separator"}),s("settings-input-text",{attrs:{default_value:"doc,pdf,ppt,zip,xls,docx,pptx,xlsx",name:"extensions_of_files",label:t.text_extensions_of_files_label,description:t.text_extensions_of_files_description,tooltip:t.text_extensions_of_files_tooltip}}),s("div",{staticClass:"exactmetrics-separator"}),s("p",[s("label",{domProps:{textContent:t._s(t.text_affiliate_label)}}),s("span",{staticClass:"exactmetrics-sublabel",domProps:{innerHTML:t._s(t.text_affiliate_repeater_description)}}),s("settings-info-tooltip",{attrs:{content:t.text_affiliate_tooltip_content}})],1),s("settings-input-repeater",{attrs:{structure:t.repeater_structure,name:"affiliate_links",data:t.settings["affiliate_links"]}}),s("div",{staticClass:"exactmetrics-separator"}),s("settings-input-select",{attrs:{options:t.user_roles,forced:t.user_roles_manage_options,multiple:!0,name:"view_reports",label:t.text_permissions_view_label,description:t.text_permissions_view_description,tooltip:t.text_permissions_view_tooltip,addtext:t.text_add_role}}),s("div",{staticClass:"exactmetrics-separator"}),s("settings-input-checkbox",{attrs:{"value-on":"all","value-off":"none",name:"automatic_updates",label:t.text_updates_label,description:t.text_updates_description,tooltip:t.text_updates_tooltip}}),s("div",{staticClass:"exactmetrics-separator"}),s("onboarding-improve"),s("div",{staticClass:"exactmetrics-form-row exactmetrics-form-buttons"},[s("button",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-large",attrs:{type:"submit",name:"next_step"},domProps:{textContent:t._s(t.text_save)}})])],1)])],1)},Z=[],J=s("088d"),Q=s("c472"),tt=s("6ffa"),et=s("93ec"),st=s("aa9f"),at=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",[s("settings-input-checkbox",{attrs:{name:"anonymous_data",label:t.text_anonymous_label,description:t.text_anonymous_description,tooltip:t.text_anonymous_tooltip}}),s("div",{staticClass:"exactmetrics-separator"})],1)},ot=[],nt={name:"OnboardingImprove",components:{SettingsInputCheckbox:J["a"]},data:function(){return{text_anonymous_label:Object(c["a"])("Help Us Improve","google-analytics-dashboard-for-wp"),text_anonymous_description:Object(c["a"])("Help us better understand our users and their website needs.","google-analytics-dashboard-for-wp"),text_anonymous_tooltip:Object(c["d"])(Object(c["a"])("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","google-analytics-dashboard-for-wp"),'<a target="_blank" href="'+this.$getUrl("onboarding-wizard","usage-tracking","https://www.exactmetrics.com/docs/usage-tracking/")+'">',"</a>")}}},rt=nt,it=Object(p["a"])(rt,at,ot,!1,null,null,null),lt=it.exports;function ct(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,a)}return s}function dt(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?ct(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):ct(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var ut={name:"OnboardingStepRecommendedSettings",components:{OnboardingImprove:lt,SettingsInputSelect:st["a"],SettingsInfoTooltip:et["a"],SettingsInputRepeater:tt["a"],SettingsInputText:Q["a"],SettingsInputCheckbox:J["a"],OnboardingContentHeader:b},data:function(){return{text_header_title:Object(c["a"])("Recommended Settings","google-analytics-dashboard-for-wp"),text_header_subtitle:Object(c["a"])("ExactMetrics recommends the following settings based on your configuration.","google-analytics-dashboard-for-wp"),text_events_label:Object(c["a"])("Events Tracking","google-analytics-dashboard-for-wp"),text_events_description:Object(c["a"])("Must have for all click tracking on site.","google-analytics-dashboard-for-wp"),text_events_tooltip:Object(c["a"])("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.","google-analytics-dashboard-for-wp"),text_link_attribution_label:Object(c["a"])("Enhanced Link Attribution","google-analytics-dashboard-for-wp"),text_link_attribution_description:Object(c["a"])("Improves the accuracy of your In-Page Analytics.","google-analytics-dashboard-for-wp"),text_link_attribution_tooltip:Object(c["a"])("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.","google-analytics-dashboard-for-wp"),text_updates_label:Object(c["a"])("Install Updates Automatically","google-analytics-dashboard-for-wp"),text_updates_description:Object(c["a"])("Get the latest features, bug fixes, and security updates as they are released.","google-analytics-dashboard-for-wp"),text_updates_tooltip:Object(c["a"])("To ensure you get the latest bug fixes and security updates and avoid needing to spend time logging into your WordPress site to update ExactMetrics, we offer the ability to automatically have ExactMetrics update itself.","google-analytics-dashboard-for-wp"),text_extensions_of_files_label:Object(c["a"])("File Download Tracking","google-analytics-dashboard-for-wp"),text_extensions_of_files_description:Object(c["a"])("Helps you see file downloads data.","google-analytics-dashboard-for-wp"),text_extensions_of_files_tooltip:Object(c["a"])("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.","google-analytics-dashboard-for-wp"),repeater_structure:[{name:"path",label:Object(c["d"])(Object(c["a"])("Path (example: %s)","google-analytics-dashboard-for-wp"),"/go/"),pattern:/^\/\S+$/,error:Object(c["a"])("Path has to start with a / and have no spaces","google-analytics-dashboard-for-wp")},{name:"label",label:Object(c["d"])(Object(c["a"])("Label (example: %s)","google-analytics-dashboard-for-wp"),"aff"),pattern:/^\S+$/,error:Object(c["a"])("Label can't contain any spaces","google-analytics-dashboard-for-wp")}],text_affiliate_repeater_description:Object(c["a"])("Helps you increase affiliate revenue.","google-analytics-dashboard-for-wp"),text_affiliate_tooltip_content:Object(c["a"])("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.","google-analytics-dashboard-for-wp"),text_affiliate_label:Object(c["a"])("Affiliate Link Tracking","google-analytics-dashboard-for-wp"),text_permissions_view_label:Object(c["a"])("Who Can See Reports","google-analytics-dashboard-for-wp"),text_permissions_view_description:Object(c["a"])("These user roles will be able to access ExactMetrics' reports in the WordPress admin area.","google-analytics-dashboard-for-wp"),text_permissions_view_tooltip:Object(c["a"])("Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability.","google-analytics-dashboard-for-wp"),text_save:Object(c["a"])("Save and continue","google-analytics-dashboard-for-wp"),text_events_faux_tooltip:Object(c["a"])("Events Tracking is enabled the moment you set up ExactMetrics","google-analytics-dashboard-for-wp"),text_link_attribution_faux_tooltip:Object(c["a"])("Enhanced Link Attribution is enabled the moment you set up ExactMetrics","google-analytics-dashboard-for-wp"),text_add_role:Object(c["a"])("+ Add Role","google-analytics-dashboard-for-wp")}},mounted:function(){this.turnOnAutoUpdatesOption(),this.turnOnUsageTrackingOption()},methods:{handleSubmit:function(){this.$router.push(this.$wizard_steps[3])},turnOnAutoUpdatesOption:function(){this.$store.dispatch("$_settings/updateSettings",{name:"automatic_updates",value:"all"})},turnOnUsageTrackingOption:function(){this.$store.dispatch("$_settings/updateSettings",{name:"anonymous_data",value:"all"})}},computed:dt({},Object(k["b"])({settings:"$_settings/settings"}),{user_roles:function(){var t=[];for(var e in this.$mi.roles)t.push({label:this.$mi.roles[e],value:e});return t},user_roles_manage_options:function(){var t=[];for(var e in this.$mi.roles_manage_options)t.push({label:this.$mi.roles_manage_options[e],value:e});return t}})},gt=ut,ht=Object(p["a"])(gt,q,Z,!1,null,null,null),pt=ht.exports,mt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-step-recommended-addons"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"exactmetrics-onboarding-wizard-form"},[s("div",{staticClass:"exactmetrics-grey-area"},[s("div",{staticClass:"exactmetrics-separator"}),t._l(t.adddonList,(function(e,a){return s("div",{key:a},[s("onboarding-addon",{attrs:{feature:e,features_awaiting_install:t.features_awaiting_install},on:{"update-feature-await":t.updateFeatureAwaitInstall}}),s("div",{staticClass:"exactmetrics-separator"})],1)})),s("button",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-large",attrs:{type:"button",name:"next_step"},domProps:{textContent:t._s(t.text_save)},on:{click:function(e){return e.preventDefault(),t.continueNextStep(e)}}}),s("a",{staticClass:"exactmetrics-skip-addons",attrs:{href:"#",title:""},on:{click:function(e){return e.preventDefault(),t.skipAddons()}}},[s("span",[t._v("Skip for Now")]),s("svg",{attrs:{width:"16",height:"9",viewBox:"0 0 16 9",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[s("path",{attrs:{d:"M11.1289 3.34375H0.546875C0.300781 3.34375 0.125 3.55469 0.125 3.76562V5.73438C0.125 5.98047 0.300781 6.15625 0.546875 6.15625H11.1289V7.80859C11.1289 8.54688 12.043 8.93359 12.5703 8.40625L15.5938 5.34766C15.9453 5.03125 15.9453 4.50391 15.5938 4.1875L12.5703 1.12891C12.043 0.601562 11.1289 0.988281 11.1289 1.72656V3.34375Z",fill:"#586074"}})])])],2)]),t.features_awaiting_install.length?s("div",{staticClass:"exactmetrics-features-awaiting-install"},[s("span",{domProps:{textContent:t._s(t.features_awaiting_install_text)}}),s("span",{domProps:{textContent:t._s(t.featureAwaitingInstall)}})]):t._e()],1)},bt=[],_t=(s("a15b"),s("25f0"),s("96cf"),s("c964"));s("e01a"),s("d28b");function ft(t){return ft="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},ft(t)}function wt(t){return wt="function"===typeof Symbol&&"symbol"===ft(Symbol.iterator)?function(t){return ft(t)}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":ft(t)},wt(t)}var yt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-features exactmetrics-flex"},[s("div",{staticClass:"exactmetrics-feat-content"},[s("p",[t._v(t._s(t.feature.data.title))]),s("p",[t._v(t._s(t.feature.data.description))])]),s("div",{staticClass:"exactmetrics-feat-checkbox"},[t.feature.data.faux?s("label",{staticClass:"exactmetrics-checkbox-round"},[s("input",{staticClass:"faux",attrs:{id:t.feature.id,type:"checkbox",checked:"",disabled:""}}),s("span",{staticClass:"checkmark",attrs:{id:"checkmark-loader-"+t.feature.id}})]):t.feature.data.checked?s("label",{staticClass:"exactmetrics-checkbox-round"},[s("div",{staticClass:"loader",attrs:{id:"loader-"+t.feature.id}}),s("input",{staticClass:"addon-checkbox",attrs:{id:t.feature.id,type:"checkbox",checked:"",name:t.feature.id},on:{click:function(e){return e.preventDefault(),t.toggleCheck(e,t.feature.data.title,t.feature.id)}}}),s("span",{staticClass:"checkmark",attrs:{id:"checkmark-loader-"+t.feature.id}})]):s("label",{staticClass:"exactmetrics-checkbox-round"},[s("div",{staticClass:"loader",attrs:{id:"loader-"+t.feature.id}}),s("input",{staticClass:"addon-checkbox",attrs:{id:t.feature.id,type:"checkbox",name:t.feature.id},on:{click:function(e){return e.preventDefault(),t.toggleCheck(e,t.feature.data.title,t.feature.id)}}}),s("span",{staticClass:"checkmark remove",attrs:{id:"checkmark-loader-"+t.feature.id}})])])])},vt=[];s("caad"),s("2532");function xt(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,a)}return s}function Ot(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?xt(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):xt(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var kt={name:"OnboardingAddon",props:{feature:Object,installed_addons:Object,features_awaiting_install:Array},data:function(){return{}},computed:Ot({},Object(k["b"])({addons:"$_addons/addons"})),methods:{toggleCheck:function(t,e,s){var a=t.target.nextElementSibling;if(a.classList.toggle("remove"),t.target.toggleAttribute("checked"),"aioseo"===s||"wpforms_lite"===s){var o=this.features_awaiting_install;o.includes(e)?o=o.filter((function(t){return t!==e})):o.push(e),this.$emit("update-feature-await",o)}}}},jt=kt,Ct=Object(p["a"])(jt,yt,vt,!1,null,null,null),Pt=Ct.exports;function $t(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,a)}return s}function St(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?$t(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):$t(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var At={name:"OnboardingStepRecommendedFeatures",components:{OnboardingContentHeader:b,OnboardingAddon:Pt},data:function(){return{text_header_title:Object(c["a"])("Which website features would you like to enable?","google-analytics-dashboard-for-wp"),text_header_subtitle:Object(c["a"])("We’ve already selected our recommended features based on your site. ","google-analytics-dashboard-for-wp"),text_other_addons:Object(c["a"])("Other Addons","google-analytics-dashboard-for-wp"),text_other_addons_button:Object(c["a"])("View all ExactMetrics addons","google-analytics-dashboard-for-wp"),text_save:Object(c["a"])("Continue","google-analytics-dashboard-for-wp"),features_awaiting_install:[],features_awaiting_install_text:Object(c["a"])("The following plugins will be installed: ","google-analytics-dashboard-for-wp")}},computed:St({},Object(k["b"])({settings:"$_settings/settings",addons:"$_addons/addons"}),{adddonList:function(){return this.addonState(this.addons)},featureAwaitingInstall:function(){return this.features_awaiting_install.join(", ")}}),mounted:function(){localStorage.removeItem("activated_addons"),this.featuresToInstall()},methods:{featuresList:function(){var t=[{id:"standard",standard:{addons:"standard"},data:{feature:"standard",title:Object(c["a"])("Standard Analytics & Reports","google-analytics-dashboard-for-wp"),description:Object(c["a"])("Get the reports and stats that matter right inside your WordPress Dashboard.","google-analytics-dashboard-for-wp"),faux:!0}},{id:"enhanced_link",enhanced_link:{addons:"enhanced-link"},data:{feature:"enhanced-link",title:Object(c["a"])("Enhanced Link Attribution","google-analytics-dashboard-for-wp"),description:Object(c["a"])("Helps you see what links your users are clicking on your site.","google-analytics-dashboard-for-wp"),faux:!0}},{id:"aioseo",aioseo:{addons:"aioseo"},data:{feature:"aioseo",title:Object(c["a"])("All In One SEO Toolkit","google-analytics-dashboard-for-wp"),description:Object(c["a"])("The best WordPress SEO plugin that works with ExactMetrics to boost your rankings.","google-analytics-dashboard-for-wp"),checked:!0}},{id:"wpforms_lite",wpforms_lite:{addons:"wpforms-lite"},data:{feature:"wpforms-lite",title:Object(c["a"])("Smart Form Builder by WPForms","google-analytics-dashboard-for-wp"),description:Object(c["a"])("The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more.","google-analytics-dashboard-for-wp"),checked:!0}},{id:"eu_compliance",eu_compliance:{addons:"eu-compliance"},data:{feature:"eu-compliance",title:Object(c["a"])("Privacy Compliance Addon","google-analytics-dashboard-for-wp"),description:Object(c["a"])("Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA.","google-analytics-dashboard-for-wp")}},{id:"advanced_reports",advanced_reports:{addons:["dimensions","forms","ecommerce","page-insights"]},data:{feature:["dimensions","forms","ecommerce","page-insights"],title:Object(c["a"])("Advanced Reports","google-analytics-dashboard-for-wp"),description:Object(c["a"])("Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more.","google-analytics-dashboard-for-wp")}},{id:"ecommerce",ecommerce:{addons:"ecommerce"},data:{feature:"ecommerce",title:Object(c["a"])("eCommerce Tracking","google-analytics-dashboard-for-wp"),description:Object(c["a"])("Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more.","google-analytics-dashboard-for-wp")}},{id:"advanced_tracking",advanced_tracking:{addons:["dimensions","forms"]},data:{feature:["dimensions","forms"],title:Object(c["a"])("20+ Advanced Tracking","google-analytics-dashboard-for-wp"),description:Object(c["a"])("Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more.","google-analytics-dashboard-for-wp")}},{id:"google_optimize",google_optimize:{addons:"google-optimize"},data:{feature:"google-optimize",title:Object(c["a"])("Advanced Growth Tools","google-analytics-dashboard-for-wp"),description:Object(c["a"])("Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more.","google-analytics-dashboard-for-wp")}},{id:"media",media:{addons:"media"},data:{feature:"media",title:Object(c["a"])("Media Tracking","google-analytics-dashboard-for-wp"),description:Object(c["a"])("Track how your users interact with videos on your website.","google-analytics-dashboard-for-wp")}}];return t},skipAddons:function(){this.$router.push(this.$wizard_steps[4])},addonState:function(t){for(var e=this.featuresList(),s=0;s<e.length;s++){var a=e[s].data.feature;if("standard"!==a&&"enhanced-link"!==a&&("string"===typeof a&&t[a]&&(t[a].active?e[s].data.faux=!0:t[a].installed&&(e[s].data.checked=!0)),"object"===wt(a))){var o=a.length,n=[],r=[];for(var i in a){var l=a[i];t[l]&&(t[l].active?(r.push(l),n.push(l)):t[l].installed&&n.push(l))}o===r.length?e[s].data.faux=!0:o===n.length&&(e[s].data.checked=!0)}}return e},continueNextStep:function(){var t=Object(_t["a"])(regeneratorRuntime.mark((function t(e){var s,a,o,n,r,i,l,d,u,g,h,p,m,b,_,f,w,y,v,x,O,k,j,C,P,$;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:for(s=this,a=this.featuresList(),o=document.querySelectorAll(".addon-checkbox"),n=[],r=0;r<o.length;r++)o[r].hasAttribute("checked")&&(i=o[r].name,n.push(i));for(l in n)d=n[l],u="checkmark-loader-"+d,g=document.getElementById(u),g&&(g.style.visibility="hidden"),h="loader-"+d,p=document.getElementById(h),p&&(p.style.display="block");m=[],b=[],_=0;case 9:if(!(_<a.length)){t.next=36;break}t.t0=regeneratorRuntime.keys(n);case 11:if((t.t1=t.t0()).done){t.next=33;break}if(f=t.t1.value,w=n[f],!a[_].hasOwnProperty(w)){t.next=31;break}if(e.target.setAttribute("disabled",!0),e.target.innerHTML="Please Wait...",y=document.querySelector(".exactmetrics-skip-addons"),y.style.visibility="hidden",v="checkmark-loader-"+w,x=document.getElementById(v),x&&(x.style.visibility="hidden"),O="loader-"+w,k=document.getElementById(O),k&&(k.style.display="block"),j=document.getElementById(w),C=a[_][w].addons,"wpforms-lite"!==C&&"aioseo"!==C){t.next=31;break}return P=this.addons[C],t.next=31,s.executeAddon(P,C,k,x,j,b,m);case 31:t.next=11;break;case 33:_++,t.next=9;break;case 36:0===b.length?(localStorage.setItem("activated_addons",m),void 0!==this.$wizard_steps[4]?this.$router.push(this.$wizard_steps[4]):this.$router.push({name:"success"})):(console.log("===================================================================="),console.log("ExactMetrics Onboarding Wizard Debug"),console.log("Following addons were not installed:"),console.log(b.toString()),console.log("===================================================================="),s.$swal({type:"error",title:Object(c["a"])("Error Processing","google-analytics-dashboard-for-wp"),text:Object(c["a"])("There was an error while processing some features. Please try again or you can skip this process for now","google-analytics-dashboard-for-wp"),confirmButtonText:Object(c["a"])("Ok","google-analytics-dashboard-for-wp")}),e.target.removeAttribute("disabled"),e.target.innerHTML="Continue",$=document.querySelector(".exactmetrics-skip-addons"),$.style.visibility="visible");case 37:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),executeAddon:function(){var t=Object(_t["a"])(regeneratorRuntime.mark((function t(e,s,a,o,n,r,i){var l,c,d,u;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:if(l=this,void 0===e){t.next=28;break}if(o&&(o.style.visibility="hidden"),e.installed){t.next=21;break}if(c="","wpforms-lite"!==s&&"aioseo"!==s){t.next=9;break}return t.next=8,l.installPlugin(e);case 8:c=t.sent;case 9:if(!0!==c){t.next=16;break}return t.next=12,l.activateAddon(e);case 12:d=t.sent,!0===d?("wpforms-lite"!==s&&"aioseo"!==s||(a.style.display="none",n.classList.add("faux"),o.style.visibility="visible"),i.push(e.title)):(r.push(s),a.style.display="none",o.classList.add("error")),t.next=19;break;case 16:r.push(s),a.style.display="none",o.classList.add("error");case 19:t.next=26;break;case 21:if(!e.installed||e.active){t.next=26;break}return t.next=24,l.activateAddon(e);case 24:u=t.sent,!0===u?i.push(e.title):(r.push(s),a.style.display="none",o.classList.add("error"));case 26:t.next=31;break;case 28:r.push(s),a.style.display="none",o.classList.add("error");case 31:n.checked=!0,o&&(o.style.visibility="visible");case 33:case"end":return t.stop()}}),t,this)})));function e(e,s,a,o,n,r,i){return t.apply(this,arguments)}return e}(),installAddon:function(){var t=Object(_t["a"])(regeneratorRuntime.mark((function t(e){var s;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,this.$store.dispatch("$_addons/installAddon",e);case 2:if(s=t.sent,void 0===s){t.next=7;break}if(!(s&&"plugin"in s)){t.next=7;break}if(e.basename!==s.plugin){t.next=7;break}return t.abrupt("return",!0);case 7:return t.abrupt("return",!1);case 8:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),installPlugin:function(){var t=Object(_t["a"])(regeneratorRuntime.mark((function t(e){var s;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,this.$store.dispatch("$_addons/installOnboardingPlugin",e);case 2:if(s=t.sent,void 0===s){t.next=7;break}if(!(s&&"success"in s)){t.next=7;break}if(!0!==s.success){t.next=7;break}return t.abrupt("return",!0);case 7:return t.abrupt("return",!1);case 8:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),activateAddon:function(){var t=Object(_t["a"])(regeneratorRuntime.mark((function t(e){var s;return regeneratorRuntime.wrap((function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,this.$store.dispatch("$_addons/activateOnboardingAddon",e);case 2:return s=t.sent,t.abrupt("return",s);case 4:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),featuresToInstall:function(){for(var t=document.querySelectorAll(".addon-checkbox"),e=this.featuresList(),s=[],a=[],o=0;o<t.length;o++)if(t[o].hasAttribute("checked")&&!t[o].classList.contains("faux")){var n=t[o].name;"aioseo"!==n&&"wpforms_lite"!==n||s.push(n)}s.length>0&&(s.forEach((function(t){for(var s=0;s<e.length;s++)e[s].id==t&&a.push(e[s].data.title)})),this.features_awaiting_install=a)},updateFeatureAwaitInstall:function(t){this.features_awaiting_install=t}}},Mt=At,Tt=Object(p["a"])(Mt,mt,bt,!1,null,null,null),Et=Tt.exports,Lt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-step-wpforms"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"exactmetrics-onboarding-wizard-form"},[s("form",{attrs:{action:"",method:"post"},on:{submit:function(e){return e.preventDefault(),t.handleSubmit(e)}}},[s("div",{staticClass:"exactmetrics-separator"}),s("div",{staticClass:"exactmetrics-addon-row exactmetrics-wpforms-row"},[t._m(0),s("div",{staticClass:"exactmetrics-addon-text"},[s("label",{domProps:{textContent:t._s(t.text_wpforms_label)}}),s("p",{domProps:{textContent:t._s(t.text_wpforms_description)}})])]),s("div",{staticClass:"exactmetrics-separator"}),s("div",{staticClass:"exactmetrics-form-row exactmetrics-form-buttons"},[s("div",{staticClass:"exactmetrics-form-input"},[s("button",{class:t.buttonClass(),attrs:{type:"button"},domProps:{textContent:t._s(t.button_text)},on:{click:function(e){return e.preventDefault(),t.installPlugin(e)}}}),t.loading?t._e():s("button",{staticClass:"exactmetrics-text-button exactmetrics-pull-right",attrs:{type:"submit",name:"next_step"}},[s("span",{domProps:{textContent:t._s(t.text_skip_step)}}),s("i",{staticClass:"monstericon-arrow-right"})])])])])])],1)},Dt=[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-addon-icon"},[s("div",{staticClass:"exactmetrics-addon-wpforms"})])}],It={name:"OnboardingStepWpforms",components:{OnboardingContentHeader:b},data:function(){return{text_header_title:Object(c["a"])("ExactMetrics Recommends WPForms","google-analytics-dashboard-for-wp"),text_header_subtitle:Object(c["a"])("Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market.","google-analytics-dashboard-for-wp"),text_wpforms_label:Object(c["a"])("Used on over 4,000,000 websites!","google-analytics-dashboard-for-wp"),text_wpforms_description:Object(c["a"])("WPForms allow you to create beautiful contact forms, subscription forms, payment forms, and other types of forms for your site in minutes, not hours!","google-analytics-dashboard-for-wp"),text_skip_step:Object(c["a"])("Skip this Step","google-analytics-dashboard-for-wp"),text_install_wpforms:Object(c["a"])("Continue & Install WPForms","google-analytics-dashboard-for-wp"),text_installing_wpforms:Object(c["a"])("Installing...","google-analytics-dashboard-for-wp"),button_text:"",loading:!1}},mounted:function(){this.button_text=this.text_install_wpforms},methods:{handleSubmit:function(){this.$router.push(this.$wizard_steps[5])},buttonClass:function(){var t="exactmetrics-onboarding-button exactmetrics-onboarding-button-large exactmetrics-install-wpforms";return this.loading&&(t+=" exactmetrics-button-disabled"),t},installPlugin:function(){var t=this;this.loading=!0,this.button_text=this.text_installing_wpforms,this.$store.dispatch("$_addons/installWPForms").then((function(){t.loading=!1,t.button_text=t.text_install_wpforms,t.handleSubmit()}))}}},zt=It,Ut=Object(p["a"])(zt,Lt,Dt,!1,null,null,null),Xt=Ut.exports,Wt=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-step-success"},[s("onboarding-content-header",{attrs:{title:t.text_header_title,subtitle:t.text_header_subtitle}}),s("div",{staticClass:"exactmetrics-onboarding-wizard-form"},[s("div",{staticClass:"exactmetrics-wizard-notices"},[s("div",{staticClass:"exactmetrics-wizard-notice"},[s("p",{domProps:{innerHTML:t._s(t.text_notice)}})]),t._l(t.install_errors,(function(e,a){return[s("div",{key:a,staticClass:"exactmetrics-wizard-notice"},[s("p",{domProps:{innerHTML:t._s(e)}})])]}))],2),s("div",{staticClass:"exactmetrics-wizard-notices exactmetrics-info-notices"},[s("div",{staticClass:"exactmetrics-wizard-notice"},[s("div",{staticClass:"exactmetrics-tracking-info-container"},[s("div",{staticClass:"exactmetrics-flex exactmetrics-tracking-info"},[s("div",{staticClass:"exactmetrics-tracking-info-text"},[s("p",[t._v(t._s(t.text_connected))])]),s("div",{staticClass:"exactmetrics-tracking-info-icon"},[s("span",{staticClass:"exactmetrics-success",domProps:{innerHTML:t._s(t.text_success)}}),s("span",{staticClass:"exactmetrics-success-icon",domProps:{innerHTML:t._s(t.icon_success)}})])])])])]),s("div",{staticClass:"exactmetrics-wizard-notices exactmetrics-info-notices"},[s("div",{staticClass:"exactmetrics-wizard-notice"},[s("div",{staticClass:"exactmetrics-tracking-info-container"},[s("div",{staticClass:"exactmetrics-flex exactmetrics-tracking-info"},[s("div",{staticClass:"exactmetrics-tracking-info-text"},[s("p",[t._v(t._s(t.text_code_installed))])]),s("div",{staticClass:"exactmetrics-tracking-info-icon"},[s("span",{staticClass:"exactmetrics-success",domProps:{innerHTML:t._s(t.text_success)}}),s("span",{staticClass:"exactmetrics-success-icon",domProps:{innerHTML:t._s(t.icon_success)}})])])])])]),s("div",{staticClass:"exactmetrics-wizard-notices exactmetrics-info-notices"},[s("div",{staticClass:"exactmetrics-wizard-notice"},[s("div",{staticClass:"exactmetrics-tracking-info-container"},[s("div",{staticClass:"exactmetrics-flex exactmetrics-tracking-info"},[s("div",{staticClass:"exactmetrics-tracking-info-text"},[s("p",[t._v(t._s(t.text_data_collected))])]),s("div",{staticClass:"exactmetrics-tracking-info-icon"},[s("span",{staticClass:"exactmetrics-success",domProps:{innerHTML:t._s(t.text_success)}}),s("span",{staticClass:"exactmetrics-success-icon",domProps:{innerHTML:t._s(t.icon_success)}})])])])])]),t.activated_addons?s("div",t._l(t.activated_addons,(function(e,a){return s("div",{key:a},[s("div",{staticClass:"exactmetrics-wizard-notices exactmetrics-info-notices"},[s("div",{staticClass:"exactmetrics-wizard-notice"},[s("div",{staticClass:"exactmetrics-tracking-info-container"},[s("div",{staticClass:"exactmetrics-flex exactmetrics-tracking-info"},[s("div",{staticClass:"exactmetrics-tracking-info-text"},[s("p",[t._v(t._s(e+" Installed"))])]),s("div",{staticClass:"exactmetrics-tracking-info-icon"},[s("span",{staticClass:"exactmetrics-success"},[t._v(t._s(t.text_success))]),s("span",{staticClass:"exactmetrics-success-icon",domProps:{innerHTML:t._s(t.icon_success)}})])])])])])])})),0):t._e(),"pro"!==t.license.type?s("div",[s("div",{staticClass:"exactmetrics-onboarding-upsell"},[s("h2",[t._v(t._s(t.text_lite_user.heading))]),s("p",[t._v(t._s(t.text_lite_user.description))]),s("ul",t._l(t.text_lite_user.features,(function(e,a){return s("li",{key:a},[s("span",{staticClass:"exactmetrics-icon",domProps:{innerHTML:t._s(t.icon_checkmark)}}),s("span",{staticClass:"exactmetrics-text"},[t._v(t._s(e))])])})),0),s("div",{staticClass:"exactmetrics-upsell-upgrade-button"},[s("a",{staticClass:"exactmetrics-button exactmetrics-button-large",attrs:{target:"_blank",href:t.upgrade_button_url},domProps:{textContent:t._s(t.text_button_upgrade)}})])]),s("div",{staticClass:"exactmetrics-upsell-bottom-text"},[s("p",{domProps:{innerHTML:t._s(t.text_lite_user.bottom_text)}})]),s("div",{staticClass:"exactmetrics-settings-license-lite"},[s("label",{attrs:{for:"exactmetrics-license-key"},domProps:{innerHTML:t._s(t.text_license_label)}}),s("div",{staticClass:"exactmetrics-inline-field"},[s("input",{directives:[{name:"model",rawName:"v-model",value:t.connect_key,expression:"connect_key"}],attrs:{id:"exactmetrics-license-key",readonly:t.is_loading,type:"text",autocomplete:"off",placeholder:t.text_license_placeholder},domProps:{value:t.connect_key},on:{input:[function(e){e.target.composing||(t.connect_key=e.target.value)},t.fieldInput]}}),t.show_connect?s("span",[s("button",{staticClass:"exactmetrics-button",domProps:{textContent:t._s(t.text_upgrade_to_pro)},on:{click:function(e){return e.preventDefault(),t.startUpgradeToPro(e)}}})]):s("span",[s("button",{staticClass:"exactmetrics-button disabled",domProps:{textContent:t._s(t.text_upgrade_to_pro)}})])])])]):t._e(),"pro"!==t.license.type&&"pro"!==t.license_network.type?s("div",[s("div",{staticClass:"exactmetrics-separator"}),s("a",{staticClass:"exactmetrics-exit-link",attrs:{href:"#",title:""},on:{click:function(e){return e.preventDefault(),t.exitOnboardingWizard(e)}}},[t._v(t._s(t.text_exit_lite))])]):s("div",{staticClass:"exactmetrics-form-row exactmetrics-form-buttons"},[s("div",{staticClass:"exactmetrics-form-input"},[s("a",{staticClass:"exactmetrics-onboarding-button exactmetrics-onboarding-button-large",attrs:{href:"#"},domProps:{textContent:t._s(t.text_exit)},on:{click:function(e){return e.preventDefault(),t.exitOnboardingWizard(e)}}})])])])],1)},Rt=[],Ht=(s("1276"),s("dd62"));function Gt(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,a)}return s}function Bt(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?Gt(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):Gt(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var Ft={name:"OnboardingStepSuccess",components:{OnboardingContentHeader:b},data:function(){return{text_header_title:Object(c["a"])("Awesome! Tracking and Analytics are All Setup!","google-analytics-dashboard-for-wp"),text_header_subtitle:Object(c["a"])("ExactMetrics is connected to Google Analytics and data is being collected.","google-analytics-dashboard-for-wp"),text_notice:Object(c["d"])(Object(c["a"])("%1$sPlease Note:%2$s While Google Analytics is properly setup and tracking everything, it does not send the data back to WordPress immediately. Depending on the size of your website, it can take between a few hours to 24 hours for reports to populate.","google-analytics-dashboard-for-wp"),"<strong>","</strong>"),text_newsletter:Object(c["d"])(Object(c["a"])("%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business.","google-analytics-dashboard-for-wp"),'<a target="_blank" href="https://www.exactmetrics.com/blog/">',"</a>"),text_exit:Object(c["a"])("Finish Setup & Exit Wizard","google-analytics-dashboard-for-wp"),text_exit_lite:Object(c["a"])("Complete Setup without Upgrading","google-analytics-dashboard-for-wp"),exit_url:this.$mi.exit_url,text_success:Object(c["a"])("Success","google-analytics-dashboard-for-wp"),text_connected:Object(c["a"])("Connected to Google Analytics","google-analytics-dashboard-for-wp"),text_code_installed:Object(c["a"])("Tracking Code Installed","google-analytics-dashboard-for-wp"),text_data_collected:Object(c["a"])("Data Being Collected","google-analytics-dashboard-for-wp"),icon_success:'<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="16" height="16" rx="8" fill="#EAFAEE"/><path d="M6.70312 10.875C6.85938 11.0312 7.125 11.0312 7.28125 10.875L11.875 6.28125C12.0312 6.125 12.0312 5.85938 11.875 5.70312L11.3125 5.14062C11.1562 4.98438 10.9062 4.98438 10.75 5.14062L7 8.89062L5.23438 7.14062C5.07812 6.98438 4.82812 6.98438 4.67188 7.14062L4.10938 7.70312C3.95312 7.85938 3.95312 8.125 4.10938 8.28125L6.70312 10.875Z" fill="#46BF40"/></svg>',icon_checkmark:'<svg width="14" height="11" viewBox="0 0 14 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.05469 9.8125C5.28906 10.0469 5.6875 10.0469 5.92188 9.8125L12.8125 2.92188C13.0469 2.6875 13.0469 2.28906 12.8125 2.05469L11.9688 1.21094C11.7344 0.976562 11.3594 0.976562 11.125 1.21094L5.5 6.83594L2.85156 4.21094C2.61719 3.97656 2.24219 3.97656 2.00781 4.21094L1.16406 5.05469C0.929688 5.28906 0.929688 5.6875 1.16406 5.92188L5.05469 9.8125Z" fill="#46BF40"/></svg>',text_button_upgrade:Object(c["a"])("Upgrade to ExactMetrics Pro","google-analytics-dashboard-for-wp"),upgrade_button_url:this.$getUpgradeUrl("onboarding-lite","onboarding-lite"),activated_addons:[],text_license_label:Object(c["a"])("Already purchased? Simply enter your license key below to connect with ExactMetrics PRO!","google-analytics-dashboard-for-wp"),is_loading:!1,show_connect:!1,connect_key:"",text_license_placeholder:Object(c["a"])("Paste your license key here","google-analytics-dashboard-for-wp"),text_license_verify:Object(c["a"])("Verify","google-analytics-dashboard-for-wp"),text_upgrade_to_pro:Object(c["a"])("Verify License Key","google-analytics-dashboard-for-wp"),text_lite_user:{heading:Object(c["a"])("Upgrade to Unlock These Features","google-analytics-dashboard-for-wp"),description:Object(c["a"])("To unlock the selected features, please upgrade to Pro and enter your license key below.","google-analytics-dashboard-for-wp"),bottom_text:Object(c["d"])(Object(c["a"])("%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)","google-analytics-dashboard-for-wp"),"<strong>","</strong>","<strong>","</strong>"),features:["Advanced Reporting","20+ Advanced Tracking","eCommerce Tracking","Advanced Growth Tools","EU and Privacy Compliance","and Dozens More!"]}}},computed:Bt({},Object(k["b"])({install_errors:"$_onboarding/install_errors",license:"$_license/license",license_network:"$_license/license_network",auth:"$_auth/auth"})),mounted:function(){var t=this;t.$swal({type:"info",title:Object(c["a"])("Checking your website...","google-analytics-dashboard-for-wp"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){t.$swal.showLoading()}}),this.$store.dispatch("$_onboarding/getErrors").then((function(){t.$swal.close()}));var e=localStorage.getItem("activated_addons");e&&(this.activated_addons=e.split(","))},methods:{fieldInput:G()((function(){this.show_connect=""!==this.connect_key}),100),startUpgradeToPro:function(){var t=this;this.$swal({type:"info",title:Object(c["a"])("Verifying License...","google-analytics-dashboard-for-wp"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,customContainerClass:"exactmetrics-swal",onOpen:function(){t.$swal.showLoading()}}),Ht["a"].getUpgradeLink(t.connect_key).then((function(e){if(e.success&&e.data.url)return window.location=e.data.url;var s=e.data.message?e.data.message:Object(c["a"])("There was an error unlocking ExactMetrics PRO please try again or install manually.","google-analytics-dashboard-for-wp");t.$mi_error_toast({title:Object(c["a"])("Error","google-analytics-dashboard-for-wp"),text:s,toast:!1,position:"center",showConfirmButton:!0,showCloseButton:!1,customClass:!1,confirmButtonText:Object(c["a"])("Ok","google-analytics-dashboard-for-wp")}).then((function(){e.data.reload&&window.location.reload()}))})).catch((function(){t.$swal.close()}))},exitOnboardingWizard:function(){window.location=this.exit_url}}},Yt=Ft,Kt=Object(p["a"])(Yt,Wt,Rt,!1,null,null,null),Nt=Kt.exports,Vt=new r["a"]({routes:[{path:"*",redirect:"/"},{path:"/",name:"welcome",component:v},{path:"/authenticate",name:"authenticate",component:V},{path:"/recommended_settings",name:"recommended_settings",component:pt},{path:"/recommended_addons",name:"recommended_addons",component:Et},{path:"/wpforms",name:"wpforms",component:Xt},{path:"/success",name:"success",component:Nt}],scrollBehavior:function(){return{x:0,y:0}}}),qt=s("7220"),Zt=s("bc3a"),Jt=s.n(Zt),Qt=s("2b0e"),te=function(t){return new Promise((function(e){var s=new FormData,a=Qt["a"].prototype.$addQueryArg(Qt["a"].prototype.$mi.ajax,"page","exactmetrics-onboarding");s.append("action","exactmetrics_onboarding_get_errors"),Jt.a.post(a,s).then((function(t){e(t.data)})).catch((function(e){if(t.dispatch("$_app/block",!1,{root:!0}),e.response){var s=e.response;return Qt["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't load errors. Error: %1$s, %2$s","google-analytics-dashboard-for-wp"),s.status,s.statusText)})}Qt["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-dashboard-for-wp")})}))}))},ee={fetchErrors:te},se=function(t){var e=ee.fetchErrors(t);return e.then((function(e){t.commit("ERRORS_UPDATED",e)})).catch((function(t){console.error(t)})),e},ae={getErrors:se},oe=function(t){return t.install_errors},ne={install_errors:oe},re=function(t,e){t.install_errors=e},ie={ERRORS_UPDATED:re},le={install_errors:[]},ce={namespaced:!0,state:le,actions:ae,getters:ne,mutations:ie},de=(s("3358"),function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("header",{staticClass:"exactmetrics-onboarding-header"},[s("nav",{staticClass:"exactmetrics-header-navigation"},[s("a",{staticClass:"exactmetrics-exit-button",attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),t.exitOnboardingWizard(e)}}},[s("i",{staticClass:"monstericon-times-circle"}),s("span",{domProps:{textContent:t._s(t.text_exit)}})])]),t._m(0)])}),ue=[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("h1",{staticClass:"exactmetrics-onboarding-wizard-logo"},[s("div",{staticClass:"exactmetrics-logo"},[s("div",{staticClass:"exactmetrics-bg-img"})])])}],ge={name:"TheWizardHeader",data:function(){return{text_exit:Object(c["a"])("Exit Setup","google-analytics-dashboard-for-wp"),href:this.$mi.exit_url}},methods:{exitOnboardingWizard:function(){window.location=this.href}}},he=ge,pe=Object(p["a"])(he,de,ue,!1,null,null,null),me=pe.exports,be=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-onboarding-wizard-container"},[s("div",{staticClass:"exactmetrics-onboarding-wizard-steps"},[t._l(t.steps,(function(e,a){return[a>0?s("div",{key:a+"line",class:t.lineClass(a)}):t._e(),s("div",{key:a,class:t.stepClass(a)})]}))],2)])},_e=[],fe={name:"TheWizardTimeline",data:function(){return{steps:this.$wizard_steps}},methods:{stepClass:function(t){var e="exactmetrics-onboarding-wizard-step",s=0;for(var a in this.steps)this.$route.name===this.steps[a]&&(s=a);return t<s&&(e+=" exactmetrics-onboarding-wizard-step-completed"),parseInt(t)===parseInt(s)&&(e+=" exactmetrics-onboarding-wizard-step-active"),e},lineClass:function(t){var e="exactmetrics-onboarding-wizard-step-line",s=0;for(var a in this.steps)this.$route.name===this.steps[a]&&(s=a);return t<=s&&(e+=" exactmetrics-onboarding-wizard-line-active"),e}}},we=fe,ye=Object(p["a"])(we,be,_e,!1,null,null,null),ve=ye.exports,xe=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div")},Oe=[],ke={name:"OnboardingBottomUpsell",data:function(){return{text_pro_plan:Object(c["a"])("Pro Plan","google-analytics-dashboard-for-wp"),text_per_year:Object(c["a"])("per year","google-analytics-dashboard-for-wp"),text_upgrade_now:Object(c["a"])("Upgrade Now","google-analytics-dashboard-for-wp"),upgrade_url:this.$getUpgradeUrl("welcome-screen","upgrade-upsell"),text_get_pro:Object(c["a"])("Upgrade to PRO","google-analytics-dashboard-for-wp"),check_list:[Object(c["a"])("eCommerce Tracking","google-analytics-dashboard-for-wp"),Object(c["a"])("Custom Dimensions","google-analytics-dashboard-for-wp"),Object(c["a"])("Form Tracking","google-analytics-dashboard-for-wp"),Object(c["a"])("AMP Support","google-analytics-dashboard-for-wp"),Object(c["a"])("Author Tracking","google-analytics-dashboard-for-wp")],check_list_2:[Object(c["a"])("EU Compliance Addon","google-analytics-dashboard-for-wp"),Object(c["a"])("Real Time Report","google-analytics-dashboard-for-wp"),Object(c["a"])("Google Optimize","google-analytics-dashboard-for-wp"),Object(c["a"])("Search Console","google-analytics-dashboard-for-wp"),Object(c["a"])("Custom Date Ranges","google-analytics-dashboard-for-wp")],testimonials:[{image:"exactmetrics-about-testimonial-avatar-1",text:Object(c["a"])("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!","google-analytics-dashboard-for-wp"),author:Object(c["a"])("Daniel Monaghan - Experienced","google-analytics-dashboard-for-wp")},{image:"exactmetrics-about-testimonial-avatar-2",text:Object(c["a"])("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.","google-analytics-dashboard-for-wp"),author:Object(c["a"])("Naomi Spirit - From This Day","google-analytics-dashboard-for-wp")},{image:"exactmetrics-about-testimonial-avatar-3",text:Object(c["a"])("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!","google-analytics-dashboard-for-wp"),author:Object(c["a"])("Julie Dupuis - Faraway Land Travel","google-analytics-dashboard-for-wp")}]}}},je=ke,Ce=Object(p["a"])(je,xe,Oe,!1,null,null,null),Pe=Ce.exports;function $e(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,a)}return s}function Se(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?$e(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):$e(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var Ae={name:"WizardModuleOnboarding",components:{OnboardingBottomUpsell:Pe,TheWizardTimeline:ve,TheWizardHeader:me},router:Vt,created:function(){var t="$_settings";t in this.$store._modules.root._children||this.$store.registerModule(t,qt["a"]);var e="$_onboarding";e in this.$store._modules.root._children||this.$store.registerModule(e,ce)},computed:Se({},Object(k["b"])({blocked:"$_app/blocked"}),{route:function(){return this.$route.name}}),mounted:function(){this.$mi_loading_toast(),this.$store.dispatch("$_settings/getSettings")}},Me=Ae,Te=(s("1608"),Object(p["a"])(Me,a,o,!1,null,"283d1087",null)),Ee=Te.exports,Le=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-admin-page"},[s("div",{staticClass:"exactmetrics-about-page-top"},[s("div",{staticClass:"exactmetrics-container"},[s("h3",{domProps:{textContent:t._s(t.text_welcome)}}),s("div",{staticClass:"exactmetrics-bg-img exactmetrics-em-logo-color"}),s("h2",{domProps:{innerHTML:t._s(t.text_thank_you)}}),s("div",{staticClass:"exactmetrics-about-top-button"},[s("a",{staticClass:"exactmetrics-button exactmetrics-button-green exactmetrics-button-xl",attrs:{href:t.wizard_url}},[s("span",{domProps:{textContent:t._s(t.text_getting_started_link1)}}),s("i",{staticClass:"monstericon-long-arrow-right-light"})]),s("p",{domProps:{innerHTML:t._s(t.text_efortless)}})])]),s("div",{staticClass:"exactmetrics-bg-img exactmetrics-about-getting-started-video",on:{click:function(e){t.welcome_video=!0}}}),t.welcome_video?s("welcome-overlay",{attrs:{id:"getting-started-video"},on:{close:function(e){t.welcome_video=!1}}},[s("iframe",{attrs:{width:"1280",height:"720",src:"https://www.youtube.com/embed/4GZ-IgZssao?autoplay=1&modestbranding=1&showinfo=0&rel=0&fs=1",frameborder:"0",allow:"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture",allowfullscreen:""}})]):t._e()],1),s("div",{staticClass:"exactmetrics-container exactmetrics-about-middle-title"},[s("a",{staticClass:"exactmetrics-button exactmetrics-button-green exactmetrics-button-xl",attrs:{href:t.wizard_url}},[s("span",{domProps:{textContent:t._s(t.text_getting_started_link1)}}),s("i",{staticClass:"monstericon-long-arrow-right-light"})]),s("h2",{domProps:{textContent:t._s(t.text_features_addons)}}),s("p",{domProps:{textContent:t._s(t.text_features_addons_subtitle)}})]),s("content-icon-list",{attrs:{upsell_list:t.icons_list}}),s("div",{staticClass:"exactmetrics-wide-purple"},[s("div",{staticClass:"exactmetrics-container"},[s("div",{staticClass:"exactmetrics-about-upgrade-box-flex"},[s("div",{staticClass:"exactmetrics-about-pro-plan-box"},[s("span",{domProps:{textContent:t._s(t.text_pro_plan)}}),s("span",{staticClass:"exactmetrics-price-large"},[t._v("$199")]),s("span",{staticClass:"exactmetrics-price-term",domProps:{textContent:t._s(t.text_per_year)}}),s("a",{staticClass:"exactmetrics-button",attrs:{href:t.upgrade_url},domProps:{textContent:t._s(t.text_upgrade_now)}})]),s("div",{staticClass:"exactmetrics-about-pro-checkboxes"},[s("h3",{domProps:{textContent:t._s(t.text_get_pro)}}),s("div",{staticClass:"exactmetrics-two-column"},[s("div",{staticClass:"exactmetrics-list-check"},[s("ul",t._l(t.check_list,(function(e,a){return s("li",{key:a,domProps:{innerHTML:t._s(e)}})})),0)]),s("div",{staticClass:"exactmetrics-list-check"},[s("ul",t._l(t.check_list_2,(function(e,a){return s("li",{key:a,domProps:{innerHTML:t._s(e)}})})),0)])])])]),s("div",{staticClass:"exactmetrics-separator"}),s("about-testimonials-slider",{attrs:{testimonials:t.testimonials}})],1)]),s("div",{staticClass:"exactmetrics-container exactmetrics-bottom-buttons"},[s("a",{staticClass:"exactmetrics-button exactmetrics-button-green exactmetrics-button-xl",attrs:{href:t.wizard_url}},[s("span",{domProps:{textContent:t._s(t.text_getting_started_link1)}}),s("i",{staticClass:"monstericon-long-arrow-right-light"})]),s("br"),s("a",{staticClass:"exactmetrics-button exactmetrics-button-text",attrs:{href:t.$getUpgradeUrl("welcome-screen","bottom-link"),target:"_blank",rel:"noopener"}},[s("span",{domProps:{textContent:t._s(t.text_upgrade_pro_now)}}),s("i",{staticClass:"monstericon-long-arrow-right-light"})])])],1)},De=[],Ie=(s("01cb"),s("a4cc")),ze=s("8a0f"),Ue=s("de15"),Xe={name:"WizardModuleWelcome",components:{AboutTestimonialsSlider:Ue["a"],ContentIconList:ze["a"],WelcomeOverlay:Ie["a"]},data:function(){return{text_getting_started_title:Object(c["a"])("Getting Started with ExactMetrics","google-analytics-dashboard-for-wp"),text_getting_started_p1:Object(c["a"])("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.","google-analytics-dashboard-for-wp"),text_getting_started_p2:Object(c["a"])("To begin with, we’ll get your site authorized with Google Analytics, so we can start tracking and generating reports for you right away.","google-analytics-dashboard-for-wp"),text_getting_started_p3:Object(c["a"])("In no time at all, and after just a few clicks, you'll have setup the most powerful Google Analytics tracking available for WordPress. It's easy to double your traffic and sales when you know exactly how people find and use your website. Let's get started!.","google-analytics-dashboard-for-wp"),text_getting_started_link1:Object(c["a"])("Launch the wizard!","google-analytics-dashboard-for-wp"),wizard_url:this.$mi.wizard_url,text_welcome:Object(c["a"])("Welcome to","google-analytics-dashboard-for-wp"),text_thank_you:Object(c["d"])(Object(c["a"])("Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin","google-analytics-dashboard-for-wp"),"<br />"),text_efortless:Object(c["d"])(Object(c["a"])("%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.","google-analytics-dashboard-for-wp"),"<b>","</b>"),welcome_video:!1,text_features_addons:Object(c["a"])("ExactMetrics Features & Addons","google-analytics-dashboard-for-wp"),text_features_addons_subtitle:Object(c["a"])("Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market.","google-analytics-dashboard-for-wp"),icons_list:[{icon:"monstericon-chart-bar",text:Object(c["d"])(Object(c["a"])("%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code).","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-file-alt-em",text:Object(c["d"])(Object(c["a"])("%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-clock",text:Object(c["d"])(Object(c["a"])("%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-check-circle-em",text:Object(c["d"])(Object(c["a"])("%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-shopping-bag",text:Object(c["d"])(Object(c["a"])("%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.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-links",text:Object(c["d"])(Object(c["a"])("%1$sAffiliate Link & Ads Tracking%2$s - Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-unlock",text:Object(c["d"])(Object(c["a"])("%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"monstericon-cog",text:Object(c["d"])(Object(c["a"])("%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click.","google-analytics-dashboard-for-wp"),"<b>","</b>")},{icon:"",text:Object(c["d"])(Object(c["a"])("%1$sSee All Features%2$s","google-analytics-dashboard-for-wp"),'<a target="_blank" href="'+this.$getUrl("about-page","features","https://www.exactmetrics.com/features/")+'">','<i class="monstericon-long-arrow-right-light"></i></a>')}],text_pro_plan:Object(c["a"])("Pro Plan","google-analytics-dashboard-for-wp"),text_per_year:Object(c["a"])("per year","google-analytics-dashboard-for-wp"),text_upgrade_now:Object(c["a"])("Upgrade Now","google-analytics-dashboard-for-wp"),text_upgrade_pro_now:Object(c["a"])("Upgrade to ExactMetrics Pro Now","google-analytics-dashboard-for-wp"),upgrade_url:this.$getUpgradeUrl("welcome-screen","upgrade-upsell"),testimonials:[{image:"exactmetrics-about-testimonial-avatar-1",text:Object(c["a"])("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!","google-analytics-dashboard-for-wp"),author:Object(c["a"])("Daniel Monaghan - Experienced","google-analytics-dashboard-for-wp")},{image:"exactmetrics-about-testimonial-avatar-2",text:Object(c["a"])("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.","google-analytics-dashboard-for-wp"),author:Object(c["a"])("Naomi Spirit - From This Day","google-analytics-dashboard-for-wp")},{image:"exactmetrics-about-testimonial-avatar-3",text:Object(c["a"])("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!","google-analytics-dashboard-for-wp"),author:Object(c["a"])("Julie Dupuis - Faraway Land Travel","google-analytics-dashboard-for-wp")}],text_guides:Object(c["a"])("Guides and Documentation:","google-analytics-dashboard-for-wp"),text_get_pro:Object(c["a"])("Upgrade to PRO","google-analytics-dashboard-for-wp"),check_list:[Object(c["a"])("eCommerce Tracking","google-analytics-dashboard-for-wp"),Object(c["a"])("Custom Dimensions","google-analytics-dashboard-for-wp"),Object(c["a"])("Form Tracking","google-analytics-dashboard-for-wp"),Object(c["a"])("AMP Support","google-analytics-dashboard-for-wp"),Object(c["a"])("Author Tracking","google-analytics-dashboard-for-wp")],check_list_2:[Object(c["a"])("EU Compliance Addon","google-analytics-dashboard-for-wp"),Object(c["a"])("Real Time Report","google-analytics-dashboard-for-wp"),Object(c["a"])("Google Optimize","google-analytics-dashboard-for-wp"),Object(c["a"])("Search Console","google-analytics-dashboard-for-wp"),Object(c["a"])("Custom Date Ranges","google-analytics-dashboard-for-wp")]}}},We=Xe,Re=Object(p["a"])(We,Le,De,!1,null,null,null),He=Re.exports,Ge=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-admin-page onboarding-wizard"},[s("the-wizard-header"),s("the-wizard-timeline"),s("div",{staticClass:"exactmetrics-onboarding-wizard-container"},[s("div",{staticClass:"exactmetrics-onboarding-wizard-content"},[s("onboarding-above-content"),s("router-view"),s("onboarding-below-content")],1)]),t.blocked?s("div",{staticClass:"exactmetrics-blocked"}):t._e()],1)},Be=[],Fe=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-migration-step exactmetrics-migration-step-welcome"},[s("form",{attrs:{action:"",method:"post"},on:{submit:function(e){return e.preventDefault(),t.handleSubmit(e)}}},[t._m(0),s("h1",{domProps:{textContent:t._s(t.text_welcome)}}),s("p",{domProps:{textContent:t._s(t.text_subtitle)}}),s("div",{staticClass:"exactmetrics-bg-img exactmetrics-em-migration-image"}),s("p",{domProps:{textContent:t._s(t.text_new_improved)}}),s("div",{staticClass:"exactmetrics-migration-checkboxes"},t._l(t.text_bullets,(function(e,a){return s("div",{key:a,staticClass:"exactmetrics-migration-checkbox"},[s("i",{staticClass:"monstericon-check"}),s("span",{domProps:{textContent:t._s(e)}})])})),0),s("div",[s("button",{staticClass:"exactmetrics-button exactmetrics-button-large",attrs:{type:"submit"}},[s("span",{domProps:{textContent:t._s(t.text_continue)}}),s("i",{staticClass:"monstericon-long-arrow-right-light"})])]),s("div",{staticClass:"exactmetrics-migration-footer"},[s("i",{staticClass:"monstericon-info-circle-regular"}),s("span",{domProps:{textContent:t._s(t.text_your_settings)}}),s("span",{staticClass:"exactmetrics-migration-info",domProps:{innerHTML:t._s(t.text_reauth_needed)}})])])])},Ye=[function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-welcome-header-logo"},[s("div",{staticClass:"exactmetrics-bg-img exactmetrics-em-logo-icon"})])}],Ke={name:"MigrationStepWelcome",data:function(){return{text_welcome:Object(c["a"])("Welcome to the all-new ExactMetrics","google-analytics-dashboard-for-wp"),text_subtitle:Object(c["a"])("Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress.","google-analytics-dashboard-for-wp"),text_new_improved:Object(c["a"])("The New & Improved ExactMetrics includes:","google-analytics-dashboard-for-wp"),text_bullets:[Object(c["a"])("All-New Design","google-analytics-dashboard-for-wp"),Object(c["a"])("Better Reporting","google-analytics-dashboard-for-wp"),Object(c["a"])("Better Tracking","google-analytics-dashboard-for-wp"),Object(c["a"])("Better Support","google-analytics-dashboard-for-wp")],text_continue:Object(c["a"])("Continue","google-analytics-dashboard-for-wp"),text_your_settings:Object(c["a"])("Your settings have been automatically transferred.","google-analytics-dashboard-for-wp"),text_reauth_needed:Object(c["d"])(Object(c["a"])("On the next step, you will be asked to re-authenticate with Google Analytics. Please %1$ssee our detailed post%2$s to learn why we need your help. Don't worry, your tracking will continue to work as-is even if you don't do this, but re-auth is required to see analytics reports inside WordPress dashboard.","google-analytics-dashboard-for-wp"),'<a href="'+this.$getUrl("migration","first-step","https://www.exactmetrics.com/why-did-we-implement-the-new-google-analytics-authentication-flow-challenges-explained/")+'" target="_blank">',"</a>")}},methods:{handleSubmit:function(){this.$router.push(this.$wizard_steps[1])}}},Ne=Ke,Ve=Object(p["a"])(Ne,Fe,Ye,!1,null,null,null),qe=Ve.exports,Ze=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-migration-step exactmetrics-migration-step-upsell"},[s("form",{attrs:{action:"",method:"post"},on:{submit:function(e){return e.preventDefault(),t.handleSubmit(e)}}},[s("h1",{domProps:{innerHTML:t._s(t.text_need)}}),s("h2",{domProps:{textContent:t._s(t.text_subtitle)}}),s("p",{domProps:{textContent:t._s(t.text_upgrade_paragraph)}}),s("p",{staticClass:"exactmetrics-paragraph-limit",domProps:{textContent:t._s(t.text_pro_includes)}}),s("div",{staticClass:"exactmetrics-migration-checkboxes"},t._l(t.text_bullets,(function(e,a){return s("div",{key:a,staticClass:"exactmetrics-migration-checkbox"},[s("i",{staticClass:"monstericon-check"}),s("span",{domProps:{textContent:t._s(e)}})])})),0),s("div",[s("a",{staticClass:"exactmetrics-button exactmetrics-button-large",attrs:{href:t.features_link,target:"_blank",rel:"noopener"}},[s("span",{domProps:{textContent:t._s(t.text_see_all)}}),s("i",{staticClass:"monstericon-external-link-alt"})]),s("button",{staticClass:"exactmetrics-button exactmetrics-button-text",attrs:{type:"submit"}},[s("span",{domProps:{textContent:t._s(t.text_continue)}}),s("i",{staticClass:"monstericon-long-arrow-right-light"})])])])])},Je=[],Qe={name:"MigrationStepUpsell",data:function(){return{text_need:Object(c["d"])(Object(c["a"])("%1$sNeed%2$s to Grow FASTER??","google-analytics-dashboard-for-wp"),'<span class="exactmetrics-highlight">',"</span>"),text_subtitle:Object(c["a"])("Get additional, actionable insights by going Pro.","google-analytics-dashboard-for-wp"),text_continue:Object(c["a"])("Skip","google-analytics-dashboard-for-wp"),text_see_all:Object(c["a"])("See All Features","google-analytics-dashboard-for-wp"),text_upgrade_paragraph:Object(c["a"])("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.","google-analytics-dashboard-for-wp"),text_pro_includes:Object(c["a"])("Our Pro plan includes:","google-analytics-dashboard-for-wp"),text_bullets:[Object(c["a"])("eCommerce Tracking","google-analytics-dashboard-for-wp"),Object(c["a"])("EU Compliance Addon","google-analytics-dashboard-for-wp"),Object(c["a"])("Custom Dimensions","google-analytics-dashboard-for-wp"),Object(c["a"])("Real Time Report","google-analytics-dashboard-for-wp"),Object(c["a"])("Form Tracking","google-analytics-dashboard-for-wp"),Object(c["a"])("Google Optimize","google-analytics-dashboard-for-wp"),Object(c["a"])("AMP Support","google-analytics-dashboard-for-wp"),Object(c["a"])("Search Console","google-analytics-dashboard-for-wp"),Object(c["a"])("Author Tracking","google-analytics-dashboard-for-wp"),Object(c["a"])("Custom Date Ranges","google-analytics-dashboard-for-wp")],features_link:this.$getUpgradeUrl("migration-wizard","features","https://exactmetrics.com/features")}},methods:{handleSubmit:function(){this.$router.push(this.$wizard_steps[4])}}},ts=Qe,es=Object(p["a"])(ts,Ze,Je,!1,null,null,null),ss=es.exports,as=new r["a"]({routes:[{path:"*",redirect:"/"},{path:"/",name:"welcome",component:qe},{path:"/authenticate",name:"authenticate",component:V},{path:"/recommended_settings",name:"recommended_settings",component:pt},{path:"/pro",name:"pro",component:ss},{path:"/success",name:"success",component:Nt}],scrollBehavior:function(){return{x:0,y:0}}}),os=(s("2c58"),function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-above-content"},[s("span",{staticClass:"exactmetrics-step-current",domProps:{textContent:t._s(t.textCurrentStep)}})])}),ns=[],rs={name:"OnboardingAboveContent",data:function(){return{steps:this.$wizard_steps,text_step:Object(c["a"])("Step %1$s of %2$s","google-analytics-dashboard-for-wp")}},computed:{currentStep:function(){var t=0;for(var e in this.steps)this.steps.hasOwnProperty(e)&&this.$route.name===this.steps[e]&&(t=parseInt(e));return t+1},totalSteps:function(){return this.steps.length?this.steps.length:0},textCurrentStep:function(){return Object(c["d"])(this.text_step,this.currentStep,this.totalSteps)}}},is=rs,ls=Object(p["a"])(is,os,ns,!1,null,null,null),cs=ls.exports,ds=function(){var t=this,e=t.$createElement,s=t._self._c||e;return s("div",{staticClass:"exactmetrics-below-content"},[s("button",{staticClass:"exactmetrics-button-go-back",on:{click:t.goBack}},[s("i",{staticClass:"monstericon-long-arrow-right-light"}),s("span",{domProps:{textContent:t._s(t.text_go_back)}})])])},us=[],gs={name:"OnboardingBelowContent",data:function(){return{steps:this.$wizard_steps,text_go_back:Object(c["a"])("Go back","google-analytics-dashboard-for-wp")}},computed:{currentStep:function(){var t=0;for(var e in this.steps)this.steps.hasOwnProperty(e)&&this.$route.name===this.steps[e]&&(t=parseInt(e));return t}},methods:{goBack:function(){if(0!==this.currentStep){var t=this.currentStep-1;this.$router.push(this.$wizard_steps[t])}else window.location=this.$mi.exit_url}}},hs=gs,ps=Object(p["a"])(hs,ds,us,!1,null,null,null),ms=ps.exports;function bs(t,e){var s=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),s.push.apply(s,a)}return s}function _s(t){for(var e=1;e<arguments.length;e++){var s=null!=arguments[e]?arguments[e]:{};e%2?bs(Object(s),!0).forEach((function(e){Object(n["a"])(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):bs(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}var fs={name:"WizardModuleMigration",components:{OnboardingBelowContent:ms,OnboardingAboveContent:cs,TheWizardTimeline:ve,TheWizardHeader:me},router:as,created:function(){var t="$_settings";t in this.$store._modules.root._children||this.$store.registerModule(t,qt["a"]);var e="$_onboarding";e in this.$store._modules.root._children||this.$store.registerModule(e,ce)},computed:_s({},Object(k["b"])({blocked:"$_app/blocked"})),mounted:function(){this.$mi_loading_toast(),this.$store.dispatch("$_settings/getSettings")}},ws=fs,ys=(s("56f6"),Object(p["a"])(ws,Ge,Be,!1,null,"bcb9681a",null)),vs=ys.exports,xs=s("619c"),Os=s("7460"),ks={install:function(t){var e=this;t.prototype.$swal&&(t.prototype.$mi_saving_toast=function(){},t.prototype.$mi_success_toast=function(){},t.prototype.$mi_error_toast=function(){},t.prototype.$mi_loading_toast=function(){var s="exactmetrics-swal exactmetrics-swal-loading";window.scrollY>0&&(s+=" exactmetrics-swal-full-height"),t.prototype.$swal({customContainerClass:s,type:"info",title:Object(c["a"])("Loading settings","google-analytics-dashboard-for-wp"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){t.prototype.$swal.showLoading(),e.addCustomLoader()}})}),t.prototype.$addCustomLoader=e.addCustomLoader},addCustomLoader:function(){var t='<div class="exactmetrics-roller"><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>';document.querySelector(".swal2-actions.swal2-loading").innerHTML=t}},js=ks,Cs=s("4360"),Ps=s("e37d"),$s=s("6c6b"),Ss=document.getElementById("exactmetrics-vue-onboarding-wizard"),As=document.getElementById("exactmetrics-welcome"),Ms=document.getElementById("exactmetrics-migration-wizard");if(Qt["a"].config.productionTip=!1,Ss||As||Ms)if(Object($s["a"])({ctrl:!0}),Qt["a"].use(r["a"]),Qt["a"].use(xs["a"]),Qt["a"].use(Ps["a"],{defaultTemplate:'<div class="exactmetrics-tooltip" role="tooltip"><div class="exactmetrics-tooltip-arrow"></div><div class="exactmetrics-tooltip-inner"></div></div>',defaultArrowSelector:".exactmetrics-tooltip-arrow, .exactmetrics-tooltip__arrow",defaultInnerSelector:".exactmetrics-tooltip-inner, .exactmetrics-tooltip__inner"}),Qt["a"].use(Os["a"]),Object(c["c"])(window.exactmetrics.translations,"google-analytics-dashboard-for-wp"),As)new Qt["a"]({store:Cs["a"],mounted:function(){Cs["a"].dispatch("$_app/init")},render:function(t){return t(He)}}).$mount(As);else if(Ms){var Ts={install:function(t){t.prototype.$wizard_steps=["welcome","authenticate","recommended_settings"],t.prototype.$mi&&t.prototype.$mi.had_ecommerce&&t.prototype.$wizard_steps.push("pro"),t.prototype.$wizard_steps.push("success")}};Qt["a"].use(Ts),Qt["a"].use(js),new Qt["a"]({store:Cs["a"],mounted:function(){Cs["a"].dispatch("$_app/init"),Cs["a"].dispatch("$_license/getLicense"),Cs["a"].dispatch("$_auth/getAuth"),Cs["a"].dispatch("$_addons/getAddons")},render:function(t){return t(vs)}}).$mount(Ms)}else{var Es={install:function(t){t.prototype.$wizard_steps=["welcome","authenticate"],t.prototype.$mi&&!t.prototype.$mi.network&&t.prototype.$wizard_steps.push("recommended_settings"),t.prototype.$mi&&!t.prototype.$mi.migrated&&t.prototype.$wizard_steps.push("recommended_addons"),t.prototype.$wizard_steps.push("success")}};Qt["a"].use(Es),Qt["a"].use(js),new Qt["a"]({store:Cs["a"],mounted:function(){Cs["a"].dispatch("$_app/init"),Cs["a"].dispatch("$_license/getLicense"),Cs["a"].dispatch("$_auth/getAuth"),Cs["a"].dispatch("$_addons/getAddons")},render:function(t){return t(Ee)}}).$mount(Ss)}},1:function(t,e,s){t.exports=s("0951")},1608:function(t,e,s){"use strict";var a=s("346d"),o=s.n(a);o.a},2532:function(t,e,s){"use strict";var a=s("23e7"),o=s("5a34"),n=s("1d80"),r=s("ab13");a({target:"String",proto:!0,forced:!r("includes")},{includes:function(t){return!!~String(n(this)).indexOf(o(t),arguments.length>1?arguments[1]:void 0)}})},"2c58":function(t,e,s){},3358:function(t,e,s){},"346d":function(t,e,s){},"56f6":function(t,e,s){"use strict";var a=s("d8ce"),o=s.n(a);o.a},"5a34":function(t,e,s){var a=s("44e7");t.exports=function(t){if(a(t))throw TypeError("The method doesn't accept regular expressions");return t}},ab13:function(t,e,s){var a=s("b622"),o=a("match");t.exports=function(t){var e=/./;try{"/./"[t](e)}catch(s){try{return e[o]=!1,"/./"[t](e)}catch(a){}}return!1}},caad:function(t,e,s){"use strict";var a=s("23e7"),o=s("4d64").includes,n=s("44d2"),r=s("ae40"),i=r("indexOf",{ACCESSORS:!0,1:0});a({target:"Array",proto:!0,forced:!i},{includes:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}}),n("includes")},d8ce:function(t,e,s){}});
|
lite/includes/admin/onboarding-wizard.php
CHANGED
@@ -38,10 +38,8 @@ class ExactMetrics_Onboarding_Wizard {
|
|
38 |
'get_install_errors',
|
39 |
) );
|
40 |
|
41 |
-
add_action( '
|
42 |
-
|
43 |
-
'disable_wp_forms_onboarding_process',
|
44 |
-
) );
|
45 |
|
46 |
// This will only be called in the Onboarding Wizard context because of previous checks.
|
47 |
add_filter( 'exactmetrics_maybe_authenticate_siteurl', array( $this, 'change_return_url' ) );
|
@@ -443,27 +441,32 @@ class ExactMetrics_Onboarding_Wizard {
|
|
443 |
|
444 |
}
|
445 |
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
* Screen rather than displaying WPForms Welcome Screen when a user has gone
|
451 |
-
* through ExactMetrics Onboarding.
|
452 |
-
*
|
453 |
-
* @since 8.4.0
|
454 |
-
*
|
455 |
-
* @return bool
|
456 |
-
*/
|
457 |
-
public function disable_wp_forms_onboarding_process() {
|
458 |
-
if ( function_exists( 'wpforms' ) ) {
|
459 |
-
if ( get_transient( 'wpforms_activation_redirect' ) ) {
|
460 |
-
delete_transient( 'wpforms_activation_redirect' );
|
461 |
|
462 |
-
|
463 |
-
|
464 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
465 |
|
466 |
-
|
467 |
}
|
468 |
|
469 |
}
|
38 |
'get_install_errors',
|
39 |
) );
|
40 |
|
41 |
+
add_action( 'exactmetrics_after_ajax_activate_addon', array( $this, 'disable_aioseo_onboarding_wizard' ) );
|
42 |
+
add_action( 'exactmetrics_after_ajax_activate_addon', array( $this, 'disable_wpforms_onboarding_wizard' ) );
|
|
|
|
|
43 |
|
44 |
// This will only be called in the Onboarding Wizard context because of previous checks.
|
45 |
add_filter( 'exactmetrics_maybe_authenticate_siteurl', array( $this, 'change_return_url' ) );
|
441 |
|
442 |
}
|
443 |
|
444 |
+
public function disable_aioseo_onboarding_wizard( $plugin ) {
|
445 |
+
if ( empty( $plugin ) ) {
|
446 |
+
return;
|
447 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
448 |
|
449 |
+
if ( 'all-in-one-seo-pack/all_in_one_seo_pack.php' !== $plugin ) {
|
450 |
+
return;
|
451 |
+
}
|
452 |
+
|
453 |
+
update_option( 'aioseo_activation_redirect', true );
|
454 |
+
}
|
455 |
+
|
456 |
+
public function disable_wpforms_onboarding_wizard( $plugin ) {
|
457 |
+
if ( empty( $plugin ) ) {
|
458 |
+
return;
|
459 |
+
}
|
460 |
+
|
461 |
+
if ( 'wpforms-lite/wpforms.php' !== $plugin ) {
|
462 |
+
return;
|
463 |
+
}
|
464 |
+
|
465 |
+
if ( false === get_transient( 'wpforms_activation_redirect' ) ){
|
466 |
+
return;
|
467 |
+
}
|
468 |
|
469 |
+
delete_transient( 'wpforms_activation_redirect' );
|
470 |
}
|
471 |
|
472 |
}
|
lite/includes/admin/user-journey/init.php
CHANGED
@@ -67,11 +67,15 @@ final class ExactMetrics_Lite_User_Journey_Admin {
|
|
67 |
public function add_admin_scripts() {
|
68 |
$current_screen = get_current_screen();
|
69 |
|
70 |
-
if ( is_object( $current_screen ) ) {
|
71 |
-
|
72 |
-
wp_enqueue_style( 'exactmetrics-lite-user-journey-admin', EXACTMETRICS_PLUGIN_URL . 'lite/includes/admin/user-journey/assets/css/user-journey.css', EXACTMETRICS_VERSION );
|
73 |
-
}
|
74 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
}
|
76 |
}
|
77 |
// Initialize the class
|
67 |
public function add_admin_scripts() {
|
68 |
$current_screen = get_current_screen();
|
69 |
|
70 |
+
if ( ! is_object( $current_screen ) ) {
|
71 |
+
return;
|
|
|
|
|
72 |
}
|
73 |
+
|
74 |
+
if ( ! in_array( $current_screen->id, $this->screens, true ) ) {
|
75 |
+
return;
|
76 |
+
}
|
77 |
+
|
78 |
+
wp_enqueue_style( 'exactmetrics-lite-user-journey-admin', EXACTMETRICS_PLUGIN_URL . 'lite/includes/admin/user-journey/assets/css/user-journey.css', EXACTMETRICS_VERSION );
|
79 |
}
|
80 |
}
|
81 |
// Initialize the class
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.wpbeginner.com/wpbeginner-needs-your-help/
|
|
4 |
Tags: analytics,google analytics,google analytics dashboard,google analytics plugin,google analytics widget,gtag
|
5 |
Requires at least: 4.8.0
|
6 |
Tested up to: 6.0
|
7 |
-
Stable tag: 7.
|
8 |
Requires PHP: 5.5
|
9 |
License: GPL v3
|
10 |
|
@@ -19,13 +19,13 @@ Our goal at ExactMetrics is to help you grow your business faster with data-driv
|
|
19 |
|
20 |
This is why we built the most comprehensive Google Analytics plugin for WordPress, so you can setup all the powerful tracking features that website owners otherwise miss out on when simply pasting the analytics code in WordPress.
|
21 |
|
22 |
-
We go beyond the simple analytics script and add the advanced event tracking, so you can see all important user behavior in WordPress with just a few clicks (without hiring a developer).
|
23 |
|
24 |
-
With our dual tracking feature, ExactMetrics tracks
|
25 |
|
26 |
Basically, we made the same advanced Google analytics setup that big enterprise companies used to pay thousands of dollars for, available to every small business owner without the high costs.
|
27 |
|
28 |
-
This is why even the large companies like Microsoft, Quickbooks, Pizza Hut, Delta, Pepsi, Coldwell Bankers, and many others are using
|
29 |
|
30 |
> <strong>ExactMetrics Pro</strong><br />
|
31 |
> This plugin is the lite version of ExactMetrics Pro plugin that comes with all the Google analytics tracking features you will ever need including events tracking, ecommerce tracking, custom dimensions tracking, form conversion tracking, affiliate link tracking, and tons more. <a href="https://exactmetrics.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion" rel="friend" title="ExactMetrics">Click here to purchase the best premium Google Analytics plugin for WordPress now!</a>
|
@@ -49,7 +49,7 @@ See what one business owner is saying about ExactMetrics:
|
|
49 |
* Ecommerce Tracking - Setup Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Downloads, & MemberPress (with 1-click).
|
50 |
* GDPR / CCPA Compliant - Automatically make Google Analytics compliant with GDPR, CCPA, and other privacy regulations.
|
51 |
* Affiliate Link Tracking - Automatically track clicks on your affiliate links with our enhanced link attribution.
|
52 |
-
*
|
53 |
* File Download Tracking - Track every file download with just one-click.
|
54 |
* Outbound link tracking - Track your outbound link clicks inside Google Analytics.
|
55 |
* Custom Dimensions Tracking - Enable Google analytics custom dimensions tracking for WordPress events.
|
@@ -177,6 +177,10 @@ You can translate Google Analytics Dashboard for WP by ExactMetrics on [translat
|
|
177 |
4. Want more features? <a href="https://www.exactmetrics.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Purchase ExactMetrics Pro</a>!
|
178 |
|
179 |
== Changelog ==
|
|
|
|
|
|
|
|
|
180 |
= 7.5.3: May 18, 2022 =
|
181 |
- Fix: We optimized the user ID custom dimension for GAv4
|
182 |
- Fix: We optimized the affiliate events for GAv4
|
4 |
Tags: analytics,google analytics,google analytics dashboard,google analytics plugin,google analytics widget,gtag
|
5 |
Requires at least: 4.8.0
|
6 |
Tested up to: 6.0
|
7 |
+
Stable tag: 7.6.0
|
8 |
Requires PHP: 5.5
|
9 |
License: GPL v3
|
10 |
|
19 |
|
20 |
This is why we built the most comprehensive Google Analytics plugin for WordPress, so you can setup all the powerful tracking features that website owners otherwise miss out on when simply pasting the analytics code in WordPress.
|
21 |
|
22 |
+
We go beyond the simple google analytics script and add the advanced event tracking, so you can see all important user behavior in WordPress with just a few clicks (without hiring a developer).
|
23 |
|
24 |
+
With our dual tracking feature, ExactMetrics automatically tracks both Universal Google Analytics (GA3) as well as Google Analytics 4 (GA4), so that you can your website can be prepared for the future of Google Analytics.
|
25 |
|
26 |
Basically, we made the same advanced Google analytics setup that big enterprise companies used to pay thousands of dollars for, available to every small business owner without the high costs.
|
27 |
|
28 |
+
This is why even the large companies like Microsoft, Quickbooks, Pizza Hut, Delta, Pepsi, Coldwell Bankers, and many others are using ExactMetrics to properly setup Google Analytics and see the custom analytics reports in WordPress.
|
29 |
|
30 |
> <strong>ExactMetrics Pro</strong><br />
|
31 |
> This plugin is the lite version of ExactMetrics Pro plugin that comes with all the Google analytics tracking features you will ever need including events tracking, ecommerce tracking, custom dimensions tracking, form conversion tracking, affiliate link tracking, and tons more. <a href="https://exactmetrics.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion" rel="friend" title="ExactMetrics">Click here to purchase the best premium Google Analytics plugin for WordPress now!</a>
|
49 |
* Ecommerce Tracking - Setup Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Downloads, & MemberPress (with 1-click).
|
50 |
* GDPR / CCPA Compliant - Automatically make Google Analytics compliant with GDPR, CCPA, and other privacy regulations.
|
51 |
* Affiliate Link Tracking - Automatically track clicks on your affiliate links with our enhanced link attribution.
|
52 |
+
* Google Ads Tracking - Automatically track sales from Google Ads inside WooCommerce, EasyDigitalDownloads, and MemberPress.
|
53 |
* File Download Tracking - Track every file download with just one-click.
|
54 |
* Outbound link tracking - Track your outbound link clicks inside Google Analytics.
|
55 |
* Custom Dimensions Tracking - Enable Google analytics custom dimensions tracking for WordPress events.
|
177 |
4. Want more features? <a href="https://www.exactmetrics.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Purchase ExactMetrics Pro</a>!
|
178 |
|
179 |
== Changelog ==
|
180 |
+
= 7.6.0: Jun 13, 2022 =
|
181 |
+
- Enhancement: We updated the User Journey display
|
182 |
+
- Enhancement: We optimized the plugin activation process, popular posts, userID tracking, and onboarding
|
183 |
+
|
184 |
= 7.5.3: May 18, 2022 =
|
185 |
- Fix: We optimized the user ID custom dimension for GAv4
|
186 |
- Fix: We optimized the affiliate events for GAv4
|