Version Description
Download this release
Release Info
Developer | chriscct7 |
Plugin | Google Analytics Dashboard for WP (GADWP) |
Version | 6.1.0 |
Comparing to | |
See all releases |
Code changes from version 6.0.2 to 6.1.0
- assets/css/admin-common.css +18 -0
- assets/css/admin-common.min.css +1 -1
- gadwp.php +24 -8
- includes/admin/admin.php +13 -6
- includes/admin/api-auth.php +2 -2
- includes/admin/common.php +35 -31
- includes/admin/licensing/plugin-upgrader.php +571 -0
- includes/admin/notifications.php +408 -0
- includes/admin/routes.php +47 -4
- includes/em-install.php +33 -0
- includes/emails/class-emails.php +664 -0
- includes/emails/templates/body-default-plain.php +2 -0
- includes/emails/templates/body-default.php +16 -0
- includes/emails/templates/footer-default.php +65 -0
- includes/emails/templates/header-default.php +273 -0
- includes/frontend/frontend.php +4 -3
- includes/frontend/tracking/class-tracking-analytics.php +1 -1
- includes/helpers.php +208 -5
- languages/google-analytics-dashboard-for-wp.pot +1455 -1311
- languages/vue.php +1278 -1194
- lite/assets/vue/css/chunk-common.css +1 -1
- lite/assets/vue/css/chunk-common.rtl.css +1 -1
- lite/assets/vue/css/frontend.css +1 -1
- lite/assets/vue/css/frontend.rtl.css +1 -1
- lite/assets/vue/css/reports.css +1 -1
assets/css/admin-common.css
CHANGED
@@ -46,3 +46,21 @@
|
|
46 |
display: none;
|
47 |
}
|
48 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
display: none;
|
47 |
}
|
48 |
}
|
49 |
+
|
50 |
+
#wpadminbar .exactmetrics-menu-notification-indicator,
|
51 |
+
.exactmetrics-menu-notification-indicator {
|
52 |
+
width: 12px;
|
53 |
+
height: 12px;
|
54 |
+
border-radius: 50%;
|
55 |
+
background: #C84B29;
|
56 |
+
display: inline-block;
|
57 |
+
margin-left: 8px;
|
58 |
+
}
|
59 |
+
|
60 |
+
@media (max-width: 782px) {
|
61 |
+
#wpadminbar .exactmetrics-menu-notification-indicator {
|
62 |
+
margin: 0 0 10px -13px;
|
63 |
+
z-index: 10;
|
64 |
+
position: relative;
|
65 |
+
}
|
66 |
+
}
|
assets/css/admin-common.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.exactmetrics-wooedd-upsell-left{width:50%;display:table-cell;float:left}.exactmetrics-wooedd-upsell-right{width:50%;display:table-cell;float:left}.exactmetrics-wooedd-upsell-image{width:100%;height:auto;padding:20px}.exactmetrics-wooedd-upsell-image-small{display:none}.exactmetrics-wooedd-upsell-row{display:table}.exactmetrics-wooedd-upsell-left p{margin:1em 0;font-size:16px}@media (max-width: 900px){.exactmetrics-wooedd-upsell-left{width:100%}.exactmetrics-wooedd-upsell-right{display:none}.exactmetrics-wooedd-upsell-image-small{display:block}.exactmetrics-wooedd-upsell-image-large{display:none}}
|
1 |
+
.exactmetrics-wooedd-upsell-left{width:50%;display:table-cell;float:left}.exactmetrics-wooedd-upsell-right{width:50%;display:table-cell;float:left}.exactmetrics-wooedd-upsell-image{width:100%;height:auto;padding:20px}.exactmetrics-wooedd-upsell-image-small{display:none}.exactmetrics-wooedd-upsell-row{display:table}.exactmetrics-wooedd-upsell-left p{margin:1em 0;font-size:16px}@media (max-width: 900px){.exactmetrics-wooedd-upsell-left{width:100%}.exactmetrics-wooedd-upsell-right{display:none}.exactmetrics-wooedd-upsell-image-small{display:block}.exactmetrics-wooedd-upsell-image-large{display:none}}#wpadminbar .exactmetrics-menu-notification-indicator,.exactmetrics-menu-notification-indicator{width:12px;height:12px;border-radius:50%;background:#C84B29;display:inline-block;margin-left:8px}@media (max-width: 782px){#wpadminbar .exactmetrics-menu-notification-indicator{margin:0 0 10px -13px;z-index:10;position:relative}}
|
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: 6.0
|
8 |
* Author URI: https://exactmetrics.com
|
9 |
* Text Domain: google-analytics-dashboard-for-wp
|
10 |
* Domain Path: /languages
|
@@ -42,7 +42,7 @@ final class ExactMetrics_Lite {
|
|
42 |
* @access public
|
43 |
* @var string $version Plugin version.
|
44 |
*/
|
45 |
-
public $version = '6.0
|
46 |
|
47 |
/**
|
48 |
* Plugin file.
|
@@ -89,6 +89,15 @@ final class ExactMetrics_Lite {
|
|
89 |
*/
|
90 |
public $notices;
|
91 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
/**
|
93 |
* Holds instance of ExactMetrics Reporting class.
|
94 |
*
|
@@ -101,7 +110,7 @@ final class ExactMetrics_Lite {
|
|
101 |
/**
|
102 |
* Holds instance of ExactMetrics Auth class.
|
103 |
*
|
104 |
-
* @since
|
105 |
* @access public
|
106 |
* @var ExactMetrics_Auth $auth Instance of Auth class.
|
107 |
*/
|
@@ -119,7 +128,7 @@ final class ExactMetrics_Lite {
|
|
119 |
/**
|
120 |
* Holds instance of ExactMetrics API Rest Routes class.
|
121 |
*
|
122 |
-
* @since
|
123 |
* @access public
|
124 |
* @var ExactMetrics_Rest_Routes $routes Instance of rest routes.
|
125 |
*/
|
@@ -180,7 +189,7 @@ final class ExactMetrics_Lite {
|
|
180 |
|
181 |
// This does the version to version background upgrade routines and initial install
|
182 |
$em_version = get_option( 'exactmetrics_current_version', '5.5.3' );
|
183 |
-
if ( version_compare( $em_version, '6.
|
184 |
exactmetrics_lite_call_install_and_upgrade();
|
185 |
}
|
186 |
|
@@ -197,6 +206,7 @@ final class ExactMetrics_Lite {
|
|
197 |
self::$instance->reporting = new ExactMetrics_Reporting();
|
198 |
self::$instance->api_auth = new ExactMetrics_API_Auth();
|
199 |
self::$instance->routes = new ExactMetrics_Rest_Routes();
|
|
|
200 |
}
|
201 |
|
202 |
if ( exactmetrics_is_pro_version() ) {
|
@@ -249,7 +259,7 @@ final class ExactMetrics_Lite {
|
|
249 |
* the API & Auth frontend, so it's only loaded if user is using a plugin
|
250 |
* that requires it.
|
251 |
*
|
252 |
-
* @since
|
253 |
* @access public
|
254 |
*
|
255 |
* @return void
|
@@ -429,7 +439,7 @@ final class ExactMetrics_Lite {
|
|
429 |
*
|
430 |
* Loads license class used by ExactMetrics
|
431 |
*
|
432 |
-
* @since
|
433 |
* @access public
|
434 |
*
|
435 |
* @return void
|
@@ -446,7 +456,7 @@ final class ExactMetrics_Lite {
|
|
446 |
*
|
447 |
* Loads auth used by ExactMetrics
|
448 |
*
|
449 |
-
* @since
|
450 |
* @access public
|
451 |
*
|
452 |
* @return void
|
@@ -498,6 +508,12 @@ final class ExactMetrics_Lite {
|
|
498 |
|
499 |
// Routes used by Vue
|
500 |
require_once EXACTMETRICS_PLUGIN_DIR . 'includes/admin/routes.php';
|
|
|
|
|
|
|
|
|
|
|
|
|
501 |
}
|
502 |
|
503 |
require_once EXACTMETRICS_PLUGIN_DIR . 'includes/api-request.php';
|
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: 6.1.0
|
8 |
* Author URI: https://exactmetrics.com
|
9 |
* Text Domain: google-analytics-dashboard-for-wp
|
10 |
* Domain Path: /languages
|
42 |
* @access public
|
43 |
* @var string $version Plugin version.
|
44 |
*/
|
45 |
+
public $version = '6.1.0';
|
46 |
|
47 |
/**
|
48 |
* Plugin file.
|
89 |
*/
|
90 |
public $notices;
|
91 |
|
92 |
+
/**
|
93 |
+
* Holds instance of ExactMetrics Notifications class.
|
94 |
+
*
|
95 |
+
* @since 6.1
|
96 |
+
* @access public
|
97 |
+
* @var ExactMetrics_Notifications $notifications Instance of Notifications class.
|
98 |
+
*/
|
99 |
+
public $notifications;
|
100 |
+
|
101 |
/**
|
102 |
* Holds instance of ExactMetrics Reporting class.
|
103 |
*
|
110 |
/**
|
111 |
* Holds instance of ExactMetrics Auth class.
|
112 |
*
|
113 |
+
* @since 6.0.0
|
114 |
* @access public
|
115 |
* @var ExactMetrics_Auth $auth Instance of Auth class.
|
116 |
*/
|
128 |
/**
|
129 |
* Holds instance of ExactMetrics API Rest Routes class.
|
130 |
*
|
131 |
+
* @since 6.0.0
|
132 |
* @access public
|
133 |
* @var ExactMetrics_Rest_Routes $routes Instance of rest routes.
|
134 |
*/
|
189 |
|
190 |
// This does the version to version background upgrade routines and initial install
|
191 |
$em_version = get_option( 'exactmetrics_current_version', '5.5.3' );
|
192 |
+
if ( version_compare( $em_version, '6.1.0', '<' ) ) {
|
193 |
exactmetrics_lite_call_install_and_upgrade();
|
194 |
}
|
195 |
|
206 |
self::$instance->reporting = new ExactMetrics_Reporting();
|
207 |
self::$instance->api_auth = new ExactMetrics_API_Auth();
|
208 |
self::$instance->routes = new ExactMetrics_Rest_Routes();
|
209 |
+
self::$instance->notifications = new ExactMetrics_Notifications();
|
210 |
}
|
211 |
|
212 |
if ( exactmetrics_is_pro_version() ) {
|
259 |
* the API & Auth frontend, so it's only loaded if user is using a plugin
|
260 |
* that requires it.
|
261 |
*
|
262 |
+
* @since 6.0.0
|
263 |
* @access public
|
264 |
*
|
265 |
* @return void
|
439 |
*
|
440 |
* Loads license class used by ExactMetrics
|
441 |
*
|
442 |
+
* @since 6.0.0
|
443 |
* @access public
|
444 |
*
|
445 |
* @return void
|
456 |
*
|
457 |
* Loads auth used by ExactMetrics
|
458 |
*
|
459 |
+
* @since 6.0.0
|
460 |
* @access public
|
461 |
*
|
462 |
* @return void
|
508 |
|
509 |
// Routes used by Vue
|
510 |
require_once EXACTMETRICS_PLUGIN_DIR . 'includes/admin/routes.php';
|
511 |
+
|
512 |
+
// Emails
|
513 |
+
require_once EXACTMETRICS_PLUGIN_DIR . 'includes/emails/class-emails.php';
|
514 |
+
|
515 |
+
// Notifications class.
|
516 |
+
require_once EXACTMETRICS_PLUGIN_DIR . 'includes/admin/notifications.php';
|
517 |
}
|
518 |
|
519 |
require_once EXACTMETRICS_PLUGIN_DIR . 'includes/api-request.php';
|
includes/admin/admin.php
CHANGED
@@ -28,13 +28,13 @@ function exactmetrics_admin_menu() {
|
|
28 |
|
29 |
if ( $hook === 'exactmetrics_settings' ) {
|
30 |
// If dashboards disabled, first settings page
|
31 |
-
add_menu_page( __( 'ExactMetrics', 'google-analytics-dashboard-for-wp' ), 'ExactMetrics', 'exactmetrics_save_settings', 'exactmetrics_settings', 'exactmetrics_settings_page', $menu_icon_inline, '100.00013467543' );
|
32 |
$hook = 'exactmetrics_settings';
|
33 |
|
34 |
add_submenu_page( $hook, __( 'ExactMetrics', 'google-analytics-dashboard-for-wp' ), __( 'Settings', 'google-analytics-dashboard-for-wp' ), 'exactmetrics_save_settings', 'exactmetrics_settings' );
|
35 |
} else {
|
36 |
// if dashboards enabled, first dashboard
|
37 |
-
add_menu_page( __( 'General:', 'google-analytics-dashboard-for-wp' ), 'ExactMetrics', 'exactmetrics_view_dashboard', 'exactmetrics_reports', 'exactmetrics_reports_page', $menu_icon_inline, '100.00013467543' );
|
38 |
|
39 |
add_submenu_page( $hook, __( 'General Reports:', 'google-analytics-dashboard-for-wp' ), __( 'Reports', 'google-analytics-dashboard-for-wp' ), 'exactmetrics_view_dashboard', 'exactmetrics_reports', 'exactmetrics_reports_page' );
|
40 |
|
@@ -88,7 +88,7 @@ function exactmetrics_network_admin_menu() {
|
|
88 |
$menu_icon_inline = exactmetrics_get_inline_menu_icon();
|
89 |
$hook = 'exactmetrics_network';
|
90 |
$submenu_base = add_query_arg( 'page', 'exactmetrics_network', network_admin_url( 'admin.php' ) );
|
91 |
-
add_menu_page( __( 'Network Settings:', 'google-analytics-dashboard-for-wp' ), 'ExactMetrics', 'exactmetrics_save_settings', 'exactmetrics_network', 'exactmetrics_network_page', $menu_icon_inline, '100.00013467543' );
|
92 |
|
93 |
add_submenu_page( $hook, __( 'Network Settings:', 'google-analytics-dashboard-for-wp' ), __( 'Network Settings', 'google-analytics-dashboard-for-wp' ), 'exactmetrics_save_settings', 'exactmetrics_network', 'exactmetrics_network_page' );
|
94 |
|
@@ -179,12 +179,18 @@ function exactmetrics_add_action_links( $links ) {
|
|
179 |
array_unshift( $links, $support );
|
180 |
}
|
181 |
|
182 |
-
|
|
|
|
|
|
|
|
|
|
|
183 |
array_unshift( $links, $settings_link );
|
184 |
|
185 |
return $links;
|
186 |
}
|
187 |
add_filter( 'plugin_action_links_' . plugin_basename( EXACTMETRICS_PLUGIN_FILE ), 'exactmetrics_add_action_links' );
|
|
|
188 |
|
189 |
|
190 |
|
@@ -271,7 +277,7 @@ function exactmetrics_admin_setup_notices() {
|
|
271 |
|
272 |
|
273 |
// 1. Google Analytics not authenticated
|
274 |
-
|
275 |
|
276 |
$submenu_base = is_network_admin() ? add_query_arg( 'page', 'exactmetrics_network', network_admin_url( 'admin.php' ) ) : add_query_arg( 'page', 'exactmetrics_settings', admin_url( 'admin.php' ) );
|
277 |
$title = esc_html__( 'Please Setup Website Analytics to See Audience Insights', 'google-analytics-dashboard-for-wp' );
|
@@ -391,6 +397,7 @@ function exactmetrics_admin_setup_notices() {
|
|
391 |
// 6. Authenticate, not manual
|
392 |
$authed = ExactMetrics()->auth->is_authed() || ExactMetrics()->auth->is_network_authed();
|
393 |
$url = is_network_admin() ? network_admin_url( 'admin.php?page=exactmetrics_network' ) : admin_url( 'admin.php?page=exactmetrics_settings' );
|
|
|
394 |
// Translators: Placeholders add links to the settings panel.
|
395 |
$manual_text = sprintf( esc_html__( 'Important: You are currently using manual UA code output. We highly recommend %1$sauthenticating with ExactMetrics%2$s so that you can access our new reporting area and take advantage of new ExactMetrics features.', 'google-analytics-dashboard-for-wp' ), '<a href="' . $url . '">', '</a>' );
|
396 |
$migrated = exactmetrics_get_option( 'gadwp_migrated', 0 );
|
@@ -401,7 +408,7 @@ function exactmetrics_admin_setup_notices() {
|
|
401 |
$manual_text = sprintf( $text, '<a href="' . $url . '">', '</a>', '<a href="' . exactmetrics_get_url( 'notice', 'manual-ua', 'https://www.exactmetrics.com/why-did-we-implement-the-new-google-analytics-authentication-flow-challenges-explained/' ) . '" target="_blank">', '</a>' );
|
402 |
}
|
403 |
|
404 |
-
if ( empty( $authed ) && ! isset( $notices['exactmetrics_auth_not_manual'] ) ) {
|
405 |
echo '<div class="notice notice-info is-dismissible exactmetrics-notice" data-notice="exactmetrics_auth_not_manual">';
|
406 |
echo '<p>';
|
407 |
echo $manual_text;
|
28 |
|
29 |
if ( $hook === 'exactmetrics_settings' ) {
|
30 |
// If dashboards disabled, first settings page
|
31 |
+
add_menu_page( __( 'ExactMetrics', 'google-analytics-dashboard-for-wp' ), 'ExactMetrics' . ExactMetrics()->notifications->get_menu_count(), 'exactmetrics_save_settings', 'exactmetrics_settings', 'exactmetrics_settings_page', $menu_icon_inline, '100.00013467543' );
|
32 |
$hook = 'exactmetrics_settings';
|
33 |
|
34 |
add_submenu_page( $hook, __( 'ExactMetrics', 'google-analytics-dashboard-for-wp' ), __( 'Settings', 'google-analytics-dashboard-for-wp' ), 'exactmetrics_save_settings', 'exactmetrics_settings' );
|
35 |
} else {
|
36 |
// if dashboards enabled, first dashboard
|
37 |
+
add_menu_page( __( 'General:', 'google-analytics-dashboard-for-wp' ), 'ExactMetrics' . ExactMetrics()->notifications->get_menu_count(), 'exactmetrics_view_dashboard', 'exactmetrics_reports', 'exactmetrics_reports_page', $menu_icon_inline, '100.00013467543' );
|
38 |
|
39 |
add_submenu_page( $hook, __( 'General Reports:', 'google-analytics-dashboard-for-wp' ), __( 'Reports', 'google-analytics-dashboard-for-wp' ), 'exactmetrics_view_dashboard', 'exactmetrics_reports', 'exactmetrics_reports_page' );
|
40 |
|
88 |
$menu_icon_inline = exactmetrics_get_inline_menu_icon();
|
89 |
$hook = 'exactmetrics_network';
|
90 |
$submenu_base = add_query_arg( 'page', 'exactmetrics_network', network_admin_url( 'admin.php' ) );
|
91 |
+
add_menu_page( __( 'Network Settings:', 'google-analytics-dashboard-for-wp' ), 'ExactMetrics' . ExactMetrics()->notifications->get_menu_count(), 'exactmetrics_save_settings', 'exactmetrics_network', 'exactmetrics_network_page', $menu_icon_inline, '100.00013467543' );
|
92 |
|
93 |
add_submenu_page( $hook, __( 'Network Settings:', 'google-analytics-dashboard-for-wp' ), __( 'Network Settings', 'google-analytics-dashboard-for-wp' ), 'exactmetrics_save_settings', 'exactmetrics_network', 'exactmetrics_network_page' );
|
94 |
|
179 |
array_unshift( $links, $support );
|
180 |
}
|
181 |
|
182 |
+
if ( is_network_admin() ) {
|
183 |
+
$settings_link = '<a href="' . esc_url( network_admin_url( 'admin.php?page=exactmetrics_network' ) ) . '">' . esc_html__( 'Network Settings', 'google-analytics-dashboard-for-wp' ) . '</a>';
|
184 |
+
} else {
|
185 |
+
$settings_link = '<a href="' . esc_url( admin_url( 'admin.php?page=exactmetrics_settings' ) ) . '">' . esc_html__( 'Settings', 'google-analytics-dashboard-for-wp' ) . '</a>';
|
186 |
+
}
|
187 |
+
|
188 |
array_unshift( $links, $settings_link );
|
189 |
|
190 |
return $links;
|
191 |
}
|
192 |
add_filter( 'plugin_action_links_' . plugin_basename( EXACTMETRICS_PLUGIN_FILE ), 'exactmetrics_add_action_links' );
|
193 |
+
add_filter( 'network_admin_plugin_action_links_' . plugin_basename( EXACTMETRICS_PLUGIN_FILE ), 'exactmetrics_add_action_links' );
|
194 |
|
195 |
|
196 |
|
277 |
|
278 |
|
279 |
// 1. Google Analytics not authenticated
|
280 |
+
if ( ! is_network_admin() && ! exactmetrics_get_ua() && ! defined( 'EXACTMETRICS_DISABLE_TRACKING' ) ) {
|
281 |
|
282 |
$submenu_base = is_network_admin() ? add_query_arg( 'page', 'exactmetrics_network', network_admin_url( 'admin.php' ) ) : add_query_arg( 'page', 'exactmetrics_settings', admin_url( 'admin.php' ) );
|
283 |
$title = esc_html__( 'Please Setup Website Analytics to See Audience Insights', 'google-analytics-dashboard-for-wp' );
|
397 |
// 6. Authenticate, not manual
|
398 |
$authed = ExactMetrics()->auth->is_authed() || ExactMetrics()->auth->is_network_authed();
|
399 |
$url = is_network_admin() ? network_admin_url( 'admin.php?page=exactmetrics_network' ) : admin_url( 'admin.php?page=exactmetrics_settings' );
|
400 |
+
$ua_code = exactmetrics_get_ua_to_output();
|
401 |
// Translators: Placeholders add links to the settings panel.
|
402 |
$manual_text = sprintf( esc_html__( 'Important: You are currently using manual UA code output. We highly recommend %1$sauthenticating with ExactMetrics%2$s so that you can access our new reporting area and take advantage of new ExactMetrics features.', 'google-analytics-dashboard-for-wp' ), '<a href="' . $url . '">', '</a>' );
|
403 |
$migrated = exactmetrics_get_option( 'gadwp_migrated', 0 );
|
408 |
$manual_text = sprintf( $text, '<a href="' . $url . '">', '</a>', '<a href="' . exactmetrics_get_url( 'notice', 'manual-ua', 'https://www.exactmetrics.com/why-did-we-implement-the-new-google-analytics-authentication-flow-challenges-explained/' ) . '" target="_blank">', '</a>' );
|
409 |
}
|
410 |
|
411 |
+
if ( empty( $authed ) && ! isset( $notices['exactmetrics_auth_not_manual'] ) && ! empty( $ua_code ) ) {
|
412 |
echo '<div class="notice notice-info is-dismissible exactmetrics-notice" data-notice="exactmetrics_auth_not_manual">';
|
413 |
echo '<p>';
|
414 |
echo $manual_text;
|
includes/admin/api-auth.php
CHANGED
@@ -266,8 +266,8 @@ final class ExactMetrics_API_Auth {
|
|
266 |
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
267 |
'network' => is_network_admin() ? 'network' : 'site',
|
268 |
'siteurl' => is_network_admin() ? network_admin_url() : site_url(),
|
269 |
-
'key' => ExactMetrics()->auth->get_key(),
|
270 |
-
'token' => ExactMetrics()->auth->get_token(),
|
271 |
'return' => is_network_admin() ? network_admin_url( 'admin.php?page=exactmetrics_network' ) : admin_url( 'admin.php?page=exactmetrics_settings' ),
|
272 |
'testurl' => 'https://' . exactmetrics_get_api_url() . 'test/',
|
273 |
), $this->get_route( 'https://' . exactmetrics_get_api_url() . 'auth/reauth/{type}' ) );
|
266 |
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
267 |
'network' => is_network_admin() ? 'network' : 'site',
|
268 |
'siteurl' => is_network_admin() ? network_admin_url() : site_url(),
|
269 |
+
'key' => is_network_admin() ? ExactMetrics()->auth->get_network_key() : ExactMetrics()->auth->get_key(),
|
270 |
+
'token' => is_network_admin() ? ExactMetrics()->auth->get_network_token() : ExactMetrics()->auth->get_token(),
|
271 |
'return' => is_network_admin() ? network_admin_url( 'admin.php?page=exactmetrics_network' ) : admin_url( 'admin.php?page=exactmetrics_settings' ),
|
272 |
'testurl' => 'https://' . exactmetrics_get_api_url() . 'test/',
|
273 |
), $this->get_route( 'https://' . exactmetrics_get_api_url() . 'auth/reauth/{type}' ) );
|
includes/admin/common.php
CHANGED
@@ -58,24 +58,20 @@ function exactmetrics_is_reports_page() {
|
|
58 |
return false;
|
59 |
}
|
60 |
|
61 |
-
$
|
62 |
if ( ! empty( $admin_page_hooks['exactmetrics_reports'] ) && $current_screen->id === $admin_page_hooks['exactmetrics_reports'] ) {
|
63 |
-
$
|
64 |
}
|
65 |
|
66 |
if ( 'toplevel_page_exactmetrics_reports' === $current_screen->id ) {
|
67 |
-
$
|
68 |
}
|
69 |
|
70 |
if ( strpos( $current_screen->id, 'exactmetrics_reports' ) !== false ) {
|
71 |
-
$
|
72 |
-
}
|
73 |
-
|
74 |
-
if ( ! empty( $current_screen->base ) && strpos( $current_screen->base, 'exactmetrics_network' ) !== false ) {
|
75 |
-
$settings_page = true;
|
76 |
}
|
77 |
|
78 |
-
return $
|
79 |
}
|
80 |
|
81 |
/**
|
@@ -148,6 +144,7 @@ function exactmetrics_admin_scripts() {
|
|
148 |
|
149 |
wp_register_script( 'exactmetrics-admin-common-script', plugins_url( 'assets/js/admin-common' . $suffix . '.js', EXACTMETRICS_PLUGIN_FILE ), array( 'jquery' ), exactmetrics_get_asset_version() );
|
150 |
wp_enqueue_script( 'exactmetrics-admin-common-script' );
|
|
|
151 |
wp_localize_script(
|
152 |
'exactmetrics-admin-common-script',
|
153 |
'exactmetrics_admin_common',
|
@@ -227,10 +224,11 @@ function exactmetrics_admin_scripts() {
|
|
227 |
'shareasale_id' => exactmetrics_get_shareasale_id(),
|
228 |
'shareasale_url' => exactmetrics_get_shareasale_url( exactmetrics_get_shareasale_id(), '' ),
|
229 |
'addons_url' => is_multisite() ? network_admin_url( 'admin.php?page=exactmetrics_network#/addons' ) : admin_url( 'admin.php?page=exactmetrics_settings#/addons' ),
|
|
|
230 |
'install_amp_url' => $install_amp_url,
|
231 |
'install_fbia_url' => $install_fbia_url,
|
232 |
'dimensions' => $prepared_dimensions,
|
233 |
-
'wizard_url' => admin_url( 'index.php?page=exactmetrics-onboarding' ),
|
234 |
'install_plugins' => current_user_can( 'install_plugins' ),
|
235 |
'unfiltered_html' => current_user_can( 'unfiltered_html' ),
|
236 |
'activate_nonce' => wp_create_nonce( 'exactmetrics-activate' ),
|
@@ -249,10 +247,14 @@ function exactmetrics_admin_scripts() {
|
|
249 |
),
|
250 |
'plugin_version' => EXACTMETRICS_VERSION,
|
251 |
'is_admin' => true,
|
|
|
|
|
252 |
'reports_url' => add_query_arg( 'page', 'exactmetrics_reports', admin_url( 'admin.php' ) ),
|
253 |
'first_run_notice' => apply_filters( 'exactmetrics_settings_first_time_notice_hide', exactmetrics_get_option( 'exactmetrics_first_run_notice' ) ),
|
254 |
-
'getting_started_url' =>
|
255 |
'authed' => $is_authed,
|
|
|
|
|
256 |
)
|
257 |
);
|
258 |
|
@@ -281,19 +283,19 @@ function exactmetrics_admin_scripts() {
|
|
281 |
'exactmetrics-vue-reports',
|
282 |
'exactmetrics',
|
283 |
array(
|
284 |
-
'ajax'
|
285 |
-
'nonce'
|
286 |
-
'network'
|
287 |
-
'translations'
|
288 |
-
'assets'
|
289 |
-
'shareasale_id'
|
290 |
-
'shareasale_url'
|
291 |
-
'addons_url'
|
292 |
-
'timezone'
|
293 |
-
'authed'
|
294 |
-
'settings_url'
|
295 |
// Used to add notices for future deprecations.
|
296 |
-
'versions'
|
297 |
'php_version' => phpversion(),
|
298 |
'php_version_below_54' => apply_filters( 'exactmetrics_temporarily_hide_php_52_and_53_upgrade_warnings', version_compare( phpversion(), '5.4', '<' ) ),
|
299 |
'php_version_below_56' => apply_filters( 'exactmetrics_temporarily_hide_php_54_and_55_upgrade_warnings', version_compare( phpversion(), '5.6', '<' ) ),
|
@@ -303,14 +305,16 @@ function exactmetrics_admin_scripts() {
|
|
303 |
'wp_version_below_49' => version_compare( $wp_version, '4.9', '<' ),
|
304 |
'wp_update_link' => exactmetrics_get_url( 'settings-notice', 'settings-page', 'https://www.exactmetrics.com/docs/update-wordpress/' ),
|
305 |
),
|
306 |
-
'plugin_version'
|
307 |
-
'is_admin'
|
308 |
-
'
|
309 |
-
'
|
310 |
-
'
|
311 |
-
'
|
312 |
-
'
|
313 |
-
'
|
|
|
|
|
314 |
)
|
315 |
);
|
316 |
|
58 |
return false;
|
59 |
}
|
60 |
|
61 |
+
$reports_page = false;
|
62 |
if ( ! empty( $admin_page_hooks['exactmetrics_reports'] ) && $current_screen->id === $admin_page_hooks['exactmetrics_reports'] ) {
|
63 |
+
$reports_page = true;
|
64 |
}
|
65 |
|
66 |
if ( 'toplevel_page_exactmetrics_reports' === $current_screen->id ) {
|
67 |
+
$reports_page = true;
|
68 |
}
|
69 |
|
70 |
if ( strpos( $current_screen->id, 'exactmetrics_reports' ) !== false ) {
|
71 |
+
$reports_page = true;
|
|
|
|
|
|
|
|
|
72 |
}
|
73 |
|
74 |
+
return $reports_page;
|
75 |
}
|
76 |
|
77 |
/**
|
144 |
|
145 |
wp_register_script( 'exactmetrics-admin-common-script', plugins_url( 'assets/js/admin-common' . $suffix . '.js', EXACTMETRICS_PLUGIN_FILE ), array( 'jquery' ), exactmetrics_get_asset_version() );
|
146 |
wp_enqueue_script( 'exactmetrics-admin-common-script' );
|
147 |
+
|
148 |
wp_localize_script(
|
149 |
'exactmetrics-admin-common-script',
|
150 |
'exactmetrics_admin_common',
|
224 |
'shareasale_id' => exactmetrics_get_shareasale_id(),
|
225 |
'shareasale_url' => exactmetrics_get_shareasale_url( exactmetrics_get_shareasale_id(), '' ),
|
226 |
'addons_url' => is_multisite() ? network_admin_url( 'admin.php?page=exactmetrics_network#/addons' ) : admin_url( 'admin.php?page=exactmetrics_settings#/addons' ),
|
227 |
+
'email_summary_url' => admin_url( 'admin.php?exactmetrics_email_preview&exactmetrics_email_template=summary' ),
|
228 |
'install_amp_url' => $install_amp_url,
|
229 |
'install_fbia_url' => $install_fbia_url,
|
230 |
'dimensions' => $prepared_dimensions,
|
231 |
+
'wizard_url' => is_network_admin() ? network_admin_url( 'index.php?page=exactmetrics-onboarding' ) : admin_url( 'index.php?page=exactmetrics-onboarding' ),
|
232 |
'install_plugins' => current_user_can( 'install_plugins' ),
|
233 |
'unfiltered_html' => current_user_can( 'unfiltered_html' ),
|
234 |
'activate_nonce' => wp_create_nonce( 'exactmetrics-activate' ),
|
247 |
),
|
248 |
'plugin_version' => EXACTMETRICS_VERSION,
|
249 |
'is_admin' => true,
|
250 |
+
'admin_email' => get_option( 'admin_email' ),
|
251 |
+
'site_url' => get_site_url(),
|
252 |
'reports_url' => add_query_arg( 'page', 'exactmetrics_reports', admin_url( 'admin.php' ) ),
|
253 |
'first_run_notice' => apply_filters( 'exactmetrics_settings_first_time_notice_hide', exactmetrics_get_option( 'exactmetrics_first_run_notice' ) ),
|
254 |
+
'getting_started_url' => is_network_admin() ? network_admin_url( 'admin.php?page=exactmetrics_network#/about' ) : admin_url( 'admin.php?page=exactmetrics_settings#/about/getting-started' ),
|
255 |
'authed' => $is_authed,
|
256 |
+
'new_pretty_link_url' => admin_url( 'post-new.php?post_type=pretty-link' ),
|
257 |
+
'wpmailsmtp_admin_url' => admin_url( 'admin.php?page=wp-mail-smtp' ),
|
258 |
)
|
259 |
);
|
260 |
|
283 |
'exactmetrics-vue-reports',
|
284 |
'exactmetrics',
|
285 |
array(
|
286 |
+
'ajax' => admin_url( 'admin-ajax.php' ),
|
287 |
+
'nonce' => wp_create_nonce( 'mi-admin-nonce' ),
|
288 |
+
'network' => is_network_admin(),
|
289 |
+
'translations' => wp_get_jed_locale_data( exactmetrics_is_pro_version() ? 'exactmetrics-premium' : 'google-analytics-dashboard-for-wp' ),
|
290 |
+
'assets' => plugins_url( $version_path . '/assets/vue', EXACTMETRICS_PLUGIN_FILE ),
|
291 |
+
'shareasale_id' => exactmetrics_get_shareasale_id(),
|
292 |
+
'shareasale_url' => exactmetrics_get_shareasale_url( exactmetrics_get_shareasale_id(), '' ),
|
293 |
+
'addons_url' => is_multisite() ? network_admin_url( 'admin.php?page=exactmetrics_network#/addons' ) : admin_url( 'admin.php?page=exactmetrics_settings#/addons' ),
|
294 |
+
'timezone' => date( 'e' ),
|
295 |
+
'authed' => $site_auth || $ms_auth,
|
296 |
+
'settings_url' => add_query_arg( 'page', 'exactmetrics_settings', admin_url( 'admin.php' ) ),
|
297 |
// Used to add notices for future deprecations.
|
298 |
+
'versions' => array(
|
299 |
'php_version' => phpversion(),
|
300 |
'php_version_below_54' => apply_filters( 'exactmetrics_temporarily_hide_php_52_and_53_upgrade_warnings', version_compare( phpversion(), '5.4', '<' ) ),
|
301 |
'php_version_below_56' => apply_filters( 'exactmetrics_temporarily_hide_php_54_and_55_upgrade_warnings', version_compare( phpversion(), '5.6', '<' ) ),
|
305 |
'wp_version_below_49' => version_compare( $wp_version, '4.9', '<' ),
|
306 |
'wp_update_link' => exactmetrics_get_url( 'settings-notice', 'settings-page', 'https://www.exactmetrics.com/docs/update-wordpress/' ),
|
307 |
),
|
308 |
+
'plugin_version' => EXACTMETRICS_VERSION,
|
309 |
+
'is_admin' => true,
|
310 |
+
'admin_email' => get_option( 'admin_email' ),
|
311 |
+
'site_url' => get_site_url(),
|
312 |
+
'wizard_url' => is_network_admin() ? network_admin_url( 'index.php?page=exactmetrics-onboarding' ) : admin_url( 'index.php?page=exactmetrics-onboarding' ),
|
313 |
+
'install_nonce' => wp_create_nonce( 'exactmetrics-install' ),
|
314 |
+
'activate_nonce' => wp_create_nonce( 'exactmetrics-activate' ),
|
315 |
+
'deactivate_nonce' => wp_create_nonce( 'exactmetrics-deactivate' ),
|
316 |
+
'update_settings' => current_user_can( 'exactmetrics_save_settings' ),
|
317 |
+
'migrated' => exactmetrics_get_option( 'gadwp_migrated', 0 ),
|
318 |
)
|
319 |
);
|
320 |
|
includes/admin/licensing/plugin-upgrader.php
ADDED
@@ -0,0 +1,571 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/** WP_Upgrader class */
|
4 |
+
require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
|
5 |
+
|
6 |
+
/** Plugin_Upgrader class */
|
7 |
+
require_once ABSPATH . 'wp-admin/includes/class-plugin-upgrader.php';
|
8 |
+
|
9 |
+
|
10 |
+
/**
|
11 |
+
* In WP 5.3 a PHP 5.6 splat operator (...$args) was added to WP_Upgrader_Skin::feedback().
|
12 |
+
* We need to remove all calls to *Skin::feedback() method, as we can't override it in own Skins
|
13 |
+
* without breaking support for PHP 5.3-5.5.
|
14 |
+
*
|
15 |
+
* @internal Please do not use this class outside of core ExactMetrics development. May be removed at any time.
|
16 |
+
*
|
17 |
+
* @since 7.10.6
|
18 |
+
*/
|
19 |
+
class ExactMetrics_Plugin_Upgrader extends Plugin_Upgrader {
|
20 |
+
|
21 |
+
/**
|
22 |
+
* Run an upgrade/installation.
|
23 |
+
*
|
24 |
+
* Attempt to download the package (if it is not a local file), unpack it, and
|
25 |
+
* install it in the destination folder.
|
26 |
+
*
|
27 |
+
* @since 1.5.6.1
|
28 |
+
*
|
29 |
+
* @param array $options {
|
30 |
+
* Array or string of arguments for upgrading/installing a package.
|
31 |
+
*
|
32 |
+
* @type string $package The full path or URI of the package to install.
|
33 |
+
* Default empty.
|
34 |
+
* @type string $destination The full path to the destination folder.
|
35 |
+
* Default empty.
|
36 |
+
* @type bool $clear_destination Whether to delete any files already in the
|
37 |
+
* destination folder. Default false.
|
38 |
+
* @type bool $clear_working Whether to delete the files form the working
|
39 |
+
* directory after copying to the destination.
|
40 |
+
* Default false.
|
41 |
+
* @type bool $abort_if_destination_exists Whether to abort the installation if the destination
|
42 |
+
* folder already exists. When true, `$clear_destination`
|
43 |
+
* should be false. Default true.
|
44 |
+
* @type bool $is_multi Whether this run is one of multiple upgrade/installation
|
45 |
+
* actions being performed in bulk. When true, the skin
|
46 |
+
* WP_Upgrader::header() and WP_Upgrader::footer()
|
47 |
+
* aren't called. Default false.
|
48 |
+
* @type array $hook_extra Extra arguments to pass to the filter hooks called by
|
49 |
+
* WP_Upgrader::run().
|
50 |
+
* }
|
51 |
+
* @return array|false|WP_error The result from self::install_package() on success, otherwise a WP_Error,
|
52 |
+
* or false if unable to connect to the filesystem.
|
53 |
+
*/
|
54 |
+
public function run( $options ) {
|
55 |
+
|
56 |
+
$defaults = array(
|
57 |
+
'package' => '', // Please always pass this.
|
58 |
+
'destination' => '', // And this
|
59 |
+
'clear_destination' => false,
|
60 |
+
'abort_if_destination_exists' => true, // Abort if the Destination directory exists, Pass clear_destination as false please
|
61 |
+
'clear_working' => true,
|
62 |
+
'is_multi' => false,
|
63 |
+
'hook_extra' => array(), // Pass any extra $hook_extra args here, this will be passed to any hooked filters.
|
64 |
+
);
|
65 |
+
|
66 |
+
$options = wp_parse_args( $options, $defaults );
|
67 |
+
|
68 |
+
/**
|
69 |
+
* Filter the package options before running an update.
|
70 |
+
*
|
71 |
+
* See also {@see 'upgrader_process_complete'}.
|
72 |
+
*
|
73 |
+
* @since 4.3.0
|
74 |
+
*
|
75 |
+
* @param array $options {
|
76 |
+
* Options used by the upgrader.
|
77 |
+
*
|
78 |
+
* @type string $package Package for update.
|
79 |
+
* @type string $destination Update location.
|
80 |
+
* @type bool $clear_destination Clear the destination resource.
|
81 |
+
* @type bool $clear_working Clear the working resource.
|
82 |
+
* @type bool $abort_if_destination_exists Abort if the Destination directory exists.
|
83 |
+
* @type bool $is_multi Whether the upgrader is running multiple times.
|
84 |
+
* @type array $hook_extra {
|
85 |
+
* Extra hook arguments.
|
86 |
+
*
|
87 |
+
* @type string $action Type of action. Default 'update'.
|
88 |
+
* @type string $type Type of update process. Accepts 'plugin', 'theme', or 'core'.
|
89 |
+
* @type bool $bulk Whether the update process is a bulk update. Default true.
|
90 |
+
* @type string $plugin Path to the plugin file relative to the plugins directory.
|
91 |
+
* @type string $theme The stylesheet or template name of the theme.
|
92 |
+
* @type string $language_update_type The language pack update type. Accepts 'plugin', 'theme',
|
93 |
+
* or 'core'.
|
94 |
+
* @type object $language_update The language pack update offer.
|
95 |
+
* }
|
96 |
+
* }
|
97 |
+
*/
|
98 |
+
$options = apply_filters( 'upgrader_package_options', $options );
|
99 |
+
|
100 |
+
if ( ! $options['is_multi'] ) { // call $this->header separately if running multiple times
|
101 |
+
$this->skin->header();
|
102 |
+
}
|
103 |
+
|
104 |
+
// Connect to the Filesystem first.
|
105 |
+
$res = $this->fs_connect( array( WP_CONTENT_DIR, $options['destination'] ) );
|
106 |
+
// Mainly for non-connected filesystem.
|
107 |
+
if ( ! $res ) {
|
108 |
+
if ( ! $options['is_multi'] ) {
|
109 |
+
$this->skin->footer();
|
110 |
+
}
|
111 |
+
return false;
|
112 |
+
}
|
113 |
+
|
114 |
+
$this->skin->before();
|
115 |
+
|
116 |
+
if ( is_wp_error( $res ) ) {
|
117 |
+
$this->skin->error( $res );
|
118 |
+
$this->skin->after();
|
119 |
+
if ( ! $options['is_multi'] ) {
|
120 |
+
$this->skin->footer();
|
121 |
+
}
|
122 |
+
return $res;
|
123 |
+
}
|
124 |
+
|
125 |
+
/*
|
126 |
+
* Download the package (Note, This just returns the filename
|
127 |
+
* of the file if the package is a local file)
|
128 |
+
*/
|
129 |
+
$download = $this->download_package( $options['package'], true );
|
130 |
+
|
131 |
+
// Allow for signature soft-fail.
|
132 |
+
// WARNING: This may be removed in the future.
|
133 |
+
if ( is_wp_error( $download ) && $download->get_error_data( 'softfail-filename' ) ) {
|
134 |
+
|
135 |
+
// Don't output the 'no signature could be found' failure message for now.
|
136 |
+
if ( 'signature_verification_no_signature' != $download->get_error_code() || WP_DEBUG ) {
|
137 |
+
// Outout the failure error as a normal feedback, and not as an error:
|
138 |
+
//$this->skin->feedback( $download->get_error_message() );
|
139 |
+
|
140 |
+
// Report this failure back to WordPress.org for debugging purposes.
|
141 |
+
wp_version_check(
|
142 |
+
array(
|
143 |
+
'signature_failure_code' => $download->get_error_code(),
|
144 |
+
'signature_failure_data' => $download->get_error_data(),
|
145 |
+
)
|
146 |
+
);
|
147 |
+
}
|
148 |
+
|
149 |
+
// Pretend this error didn't happen.
|
150 |
+
$download = $download->get_error_data( 'softfail-filename' );
|
151 |
+
}
|
152 |
+
|
153 |
+
if ( is_wp_error( $download ) ) {
|
154 |
+
$this->skin->error( $download );
|
155 |
+
$this->skin->after();
|
156 |
+
if ( ! $options['is_multi'] ) {
|
157 |
+
$this->skin->footer();
|
158 |
+
}
|
159 |
+
return $download;
|
160 |
+
}
|
161 |
+
|
162 |
+
$delete_package = ( $download != $options['package'] ); // Do not delete a "local" file
|
163 |
+
|
164 |
+
// Unzips the file into a temporary directory.
|
165 |
+
$working_dir = $this->unpack_package( $download, $delete_package );
|
166 |
+
if ( is_wp_error( $working_dir ) ) {
|
167 |
+
$this->skin->error( $working_dir );
|
168 |
+
$this->skin->after();
|
169 |
+
if ( ! $options['is_multi'] ) {
|
170 |
+
$this->skin->footer();
|
171 |
+
}
|
172 |
+
return $working_dir;
|
173 |
+
}
|
174 |
+
|
175 |
+
// With the given options, this installs it to the destination directory.
|
176 |
+
$result = $this->install_package(
|
177 |
+
array(
|
178 |
+
'source' => $working_dir,
|
179 |
+
'destination' => $options['destination'],
|
180 |
+
'clear_destination' => $options['clear_destination'],
|
181 |
+
'abort_if_destination_exists' => $options['abort_if_destination_exists'],
|
182 |
+
'clear_working' => $options['clear_working'],
|
183 |
+
'hook_extra' => $options['hook_extra'],
|
184 |
+
)
|
185 |
+
);
|
186 |
+
|
187 |
+
$this->skin->set_result( $result );
|
188 |
+
if ( is_wp_error( $result ) ) {
|
189 |
+
$this->skin->error( $result );
|
190 |
+
//$this->skin->feedback( 'process_failed' );
|
191 |
+
} else {
|
192 |
+
// Installation succeeded.
|
193 |
+
//$this->skin->feedback( 'process_success' );
|
194 |
+
}
|
195 |
+
|
196 |
+
$this->skin->after();
|
197 |
+
|
198 |
+
if ( ! $options['is_multi'] ) {
|
199 |
+
|
200 |
+
/**
|
201 |
+
* Fire when the upgrader process is complete.
|
202 |
+
*
|
203 |
+
* See also {@see 'upgrader_package_options'}.
|
204 |
+
*
|
205 |
+
* @since 3.6.0
|
206 |
+
* @since 3.7.0 Added to WP_Upgrader::run().
|
207 |
+
* @since 4.6.0 `$translations` was added as a possible argument to `$hook_extra`.
|
208 |
+
*
|
209 |
+
* @param WP_Upgrader $this WP_Upgrader instance. In other contexts, $this, might be a
|
210 |
+
* Theme_Upgrader, Plugin_Upgrader, Core_Upgrade, or Language_Pack_Upgrader instance.
|
211 |
+
* @param array $hook_extra {
|
212 |
+
* Array of bulk item update data.
|
213 |
+
*
|
214 |
+
* @type string $action Type of action. Default 'update'.
|
215 |
+
* @type string $type Type of update process. Accepts 'plugin', 'theme', 'translation', or 'core'.
|
216 |
+
* @type bool $bulk Whether the update process is a bulk update. Default true.
|
217 |
+
* @type array $plugins Array of the basename paths of the plugins' main files.
|
218 |
+
* @type array $themes The theme slugs.
|
219 |
+
* @type array $translations {
|
220 |
+
* Array of translations update data.
|
221 |
+
*
|
222 |
+
* @type string $language The locale the translation is for.
|
223 |
+
* @type string $type Type of translation. Accepts 'plugin', 'theme', or 'core'.
|
224 |
+
* @type string $slug Text domain the translation is for. The slug of a theme/plugin or
|
225 |
+
* 'default' for core translations.
|
226 |
+
* @type string $version The version of a theme, plugin, or core.
|
227 |
+
* }
|
228 |
+
* }
|
229 |
+
*/
|
230 |
+
do_action( 'upgrader_process_complete', $this, $options['hook_extra'] );
|
231 |
+
|
232 |
+
$this->skin->footer();
|
233 |
+
}
|
234 |
+
|
235 |
+
return $result;
|
236 |
+
}
|
237 |
+
|
238 |
+
/**
|
239 |
+
* Toggle maintenance mode for the site.
|
240 |
+
*
|
241 |
+
* Create/delete the maintenance file to enable/disable maintenance mode.
|
242 |
+
*
|
243 |
+
* @since 2.8.0
|
244 |
+
*
|
245 |
+
* @global WP_Filesystem_Base $wp_filesystem Subclass
|
246 |
+
*
|
247 |
+
* @param bool $enable True to enable maintenance mode, false to disable.
|
248 |
+
*/
|
249 |
+
public function maintenance_mode( $enable = false ) {
|
250 |
+
global $wp_filesystem;
|
251 |
+
$file = $wp_filesystem->abspath() . '.maintenance';
|
252 |
+
if ( $enable ) {
|
253 |
+
//$this->skin->feedback( 'maintenance_start' );
|
254 |
+
// Create maintenance file to signal that we are upgrading
|
255 |
+
$maintenance_string = '<?php $upgrading = ' . time() . '; ?>';
|
256 |
+
$wp_filesystem->delete( $file );
|
257 |
+
$wp_filesystem->put_contents( $file, $maintenance_string, FS_CHMOD_FILE );
|
258 |
+
} elseif ( ! $enable && $wp_filesystem->exists( $file ) ) {
|
259 |
+
//$this->skin->feedback( 'maintenance_end' );
|
260 |
+
$wp_filesystem->delete( $file );
|
261 |
+
}
|
262 |
+
}
|
263 |
+
|
264 |
+
/**
|
265 |
+
* Download a package.
|
266 |
+
*
|
267 |
+
* @since 2.8.0
|
268 |
+
*
|
269 |
+
* @param string $package The URI of the package. If this is the full path to an
|
270 |
+
* existing local file, it will be returned untouched.
|
271 |
+
* @param bool $check_signatures Whether to validate file signatures. Default false.
|
272 |
+
* @return string|WP_Error The full path to the downloaded package file, or a WP_Error object.
|
273 |
+
*/
|
274 |
+
public function download_package( $package, $check_signatures = false ) {
|
275 |
+
|
276 |
+
/**
|
277 |
+
* Filter whether to return the package.
|
278 |
+
*
|
279 |
+
* @since 3.7.0
|
280 |
+
*
|
281 |
+
* @param bool $reply Whether to bail without returning the package.
|
282 |
+
* Default false.
|
283 |
+
* @param string $package The package file name.
|
284 |
+
* @param WP_Upgrader $this The WP_Upgrader instance.
|
285 |
+
*/
|
286 |
+
$reply = apply_filters( 'upgrader_pre_download', false, $package, $this );
|
287 |
+
if ( false !== $reply ) {
|
288 |
+
return $reply;
|
289 |
+
}
|
290 |
+
|
291 |
+
if ( ! preg_match( '!^(http|https|ftp)://!i', $package ) && file_exists( $package ) ) { //Local file or remote?
|
292 |
+
return $package; //must be a local file..
|
293 |
+
}
|
294 |
+
|
295 |
+
if ( empty( $package ) ) {
|
296 |
+
return new WP_Error( 'no_package', $this->strings['no_package'] );
|
297 |
+
}
|
298 |
+
|
299 |
+
//$this->skin->feedback( 'downloading_package', $package );
|
300 |
+
|
301 |
+
$download_file = download_url( $package, 300, $check_signatures );
|
302 |
+
|
303 |
+
if ( is_wp_error( $download_file ) && ! $download_file->get_error_data( 'softfail-filename' ) ) {
|
304 |
+
return new WP_Error( 'download_failed', $this->strings['download_failed'], $download_file->get_error_message() );
|
305 |
+
}
|
306 |
+
|
307 |
+
return $download_file;
|
308 |
+
}
|
309 |
+
|
310 |
+
/**
|
311 |
+
* Unpack a compressed package file.
|
312 |
+
*
|
313 |
+
* @since 2.8.0
|
314 |
+
*
|
315 |
+
* @global WP_Filesystem_Base $wp_filesystem WordPress filesystem subclass.
|
316 |
+
*
|
317 |
+
* @param string $package Full path to the package file.
|
318 |
+
* @param bool $delete_package Optional. Whether to delete the package file after attempting
|
319 |
+
* to unpack it. Default true.
|
320 |
+
* @return string|WP_Error The path to the unpacked contents, or a WP_Error on failure.
|
321 |
+
*/
|
322 |
+
public function unpack_package( $package, $delete_package = true ) {
|
323 |
+
global $wp_filesystem;
|
324 |
+
|
325 |
+
//$this->skin->feedback( 'unpack_package' );
|
326 |
+
|
327 |
+
$upgrade_folder = $wp_filesystem->wp_content_dir() . 'upgrade/';
|
328 |
+
|
329 |
+
//Clean up contents of upgrade directory beforehand.
|
330 |
+
$upgrade_files = $wp_filesystem->dirlist( $upgrade_folder );
|
331 |
+
if ( ! empty( $upgrade_files ) ) {
|
332 |
+
foreach ( $upgrade_files as $file ) {
|
333 |
+
$wp_filesystem->delete( $upgrade_folder . $file['name'], true );
|
334 |
+
}
|
335 |
+
}
|
336 |
+
|
337 |
+
// We need a working directory - Strip off any .tmp or .zip suffixes
|
338 |
+
$working_dir = $upgrade_folder . basename( basename( $package, '.tmp' ), '.zip' );
|
339 |
+
|
340 |
+
// Clean up working directory
|
341 |
+
if ( $wp_filesystem->is_dir( $working_dir ) ) {
|
342 |
+
$wp_filesystem->delete( $working_dir, true );
|
343 |
+
}
|
344 |
+
|
345 |
+
// Unzip package to working directory
|
346 |
+
$result = unzip_file( $package, $working_dir );
|
347 |
+
|
348 |
+
// Once extracted, delete the package if required.
|
349 |
+
if ( $delete_package ) {
|
350 |
+
unlink( $package );
|
351 |
+
}
|
352 |
+
|
353 |
+
if ( is_wp_error( $result ) ) {
|
354 |
+
$wp_filesystem->delete( $working_dir, true );
|
355 |
+
if ( 'incompatible_archive' == $result->get_error_code() ) {
|
356 |
+
return new WP_Error( 'incompatible_archive', $this->strings['incompatible_archive'], $result->get_error_data() );
|
357 |
+
}
|
358 |
+
return $result;
|
359 |
+
}
|
360 |
+
|
361 |
+
return $working_dir;
|
362 |
+
}
|
363 |
+
|
364 |
+
/**
|
365 |
+
* Install a package.
|
366 |
+
*
|
367 |
+
* Copies the contents of a package form a source directory, and installs them in
|
368 |
+
* a destination directory. Optionally removes the source. It can also optionally
|
369 |
+
* clear out the destination folder if it already exists.
|
370 |
+
*
|
371 |
+
* @since 2.8.0
|
372 |
+
*
|
373 |
+
* @global WP_Filesystem_Base $wp_filesystem WordPress filesystem subclass.
|
374 |
+
* @global array $wp_theme_directories
|
375 |
+
*
|
376 |
+
* @param array|string $args {
|
377 |
+
* Optional. Array or string of arguments for installing a package. Default empty array.
|
378 |
+
*
|
379 |
+
* @type string $source Required path to the package source. Default empty.
|
380 |
+
* @type string $destination Required path to a folder to install the package in.
|
381 |
+
* Default empty.
|
382 |
+
* @type bool $clear_destination Whether to delete any files already in the destination
|
383 |
+
* folder. Default false.
|
384 |
+
* @type bool $clear_working Whether to delete the files form the working directory
|
385 |
+
* after copying to the destination. Default false.
|
386 |
+
* @type bool $abort_if_destination_exists Whether to abort the installation if
|
387 |
+
* the destination folder already exists. Default true.
|
388 |
+
* @type array $hook_extra Extra arguments to pass to the filter hooks called by
|
389 |
+
* WP_Upgrader::install_package(). Default empty array.
|
390 |
+
* }
|
391 |
+
*
|
392 |
+
* @return array|WP_Error The result (also stored in `WP_Upgrader::$result`), or a WP_Error on failure.
|
393 |
+
*/
|
394 |
+
public function install_package( $args = array() ) {
|
395 |
+
global $wp_filesystem, $wp_theme_directories;
|
396 |
+
|
397 |
+
$defaults = array(
|
398 |
+
'source' => '', // Please always pass this
|
399 |
+
'destination' => '', // and this
|
400 |
+
'clear_destination' => false,
|
401 |
+
'clear_working' => false,
|
402 |
+
'abort_if_destination_exists' => true,
|
403 |
+
'hook_extra' => array(),
|
404 |
+
);
|
405 |
+
|
406 |
+
$args = wp_parse_args( $args, $defaults );
|
407 |
+
|
408 |
+
// These were previously extract()'d.
|
409 |
+
$source = $args['source'];
|
410 |
+
$destination = $args['destination'];
|
411 |
+
$clear_destination = $args['clear_destination'];
|
412 |
+
|
413 |
+
set_time_limit( 300 );
|
414 |
+
|
415 |
+
if ( empty( $source ) || empty( $destination ) ) {
|
416 |
+
return new WP_Error( 'bad_request', $this->strings['bad_request'] );
|
417 |
+
}
|
418 |
+
//$this->skin->feedback( 'installing_package' );
|
419 |
+
|
420 |
+
/**
|
421 |
+
* Filter the install response before the installation has started.
|
422 |
+
*
|
423 |
+
* Returning a truthy value, or one that could be evaluated as a WP_Error
|
424 |
+
* will effectively short-circuit the installation, returning that value
|
425 |
+
* instead.
|
426 |
+
*
|
427 |
+
* @since 2.8.0
|
428 |
+
*
|
429 |
+
* @param bool|WP_Error $response Response.
|
430 |
+
* @param array $hook_extra Extra arguments passed to hooked filters.
|
431 |
+
*/
|
432 |
+
$res = apply_filters( 'upgrader_pre_install', true, $args['hook_extra'] );
|
433 |
+
|
434 |
+
if ( is_wp_error( $res ) ) {
|
435 |
+
return $res;
|
436 |
+
}
|
437 |
+
|
438 |
+
//Retain the Original source and destinations
|
439 |
+
$remote_source = $args['source'];
|
440 |
+
$local_destination = $destination;
|
441 |
+
|
442 |
+
$source_files = array_keys( $wp_filesystem->dirlist( $remote_source ) );
|
443 |
+
$remote_destination = $wp_filesystem->find_folder( $local_destination );
|
444 |
+
|
445 |
+
//Locate which directory to copy to the new folder, This is based on the actual folder holding the files.
|
446 |
+
if ( 1 == count( $source_files ) && $wp_filesystem->is_dir( trailingslashit( $args['source'] ) . $source_files[0] . '/' ) ) { //Only one folder? Then we want its contents.
|
447 |
+
$source = trailingslashit( $args['source'] ) . trailingslashit( $source_files[0] );
|
448 |
+
} elseif ( count( $source_files ) == 0 ) {
|
449 |
+
return new WP_Error( 'incompatible_archive_empty', $this->strings['incompatible_archive'], $this->strings['no_files'] ); // There are no files?
|
450 |
+
} else { // It's only a single file, the upgrader will use the folder name of this file as the destination folder. Folder name is based on zip filename.
|
451 |
+
$source = trailingslashit( $args['source'] );
|
452 |
+
}
|
453 |
+
|
454 |
+
/**
|
455 |
+
* Filter the source file location for the upgrade package.
|
456 |
+
*
|
457 |
+
* @since 2.8.0
|
458 |
+
* @since 4.4.0 The $hook_extra parameter became available.
|
459 |
+
*
|
460 |
+
* @param string $source File source location.
|
461 |
+
* @param string $remote_source Remote file source location.
|
462 |
+
* @param WP_Upgrader $this WP_Upgrader instance.
|
463 |
+
* @param array $hook_extra Extra arguments passed to hooked filters.
|
464 |
+
*/
|
465 |
+
$source = apply_filters( 'upgrader_source_selection', $source, $remote_source, $this, $args['hook_extra'] );
|
466 |
+
|
467 |
+
if ( is_wp_error( $source ) ) {
|
468 |
+
return $source;
|
469 |
+
}
|
470 |
+
|
471 |
+
// Has the source location changed? If so, we need a new source_files list.
|
472 |
+
if ( $source !== $remote_source ) {
|
473 |
+
$source_files = array_keys( $wp_filesystem->dirlist( $source ) );
|
474 |
+
}
|
475 |
+
|
476 |
+
/*
|
477 |
+
* Protection against deleting files in any important base directories.
|
478 |
+
* Theme_Upgrader & Plugin_Upgrader also trigger this, as they pass the
|
479 |
+
* destination directory (WP_PLUGIN_DIR / wp-content/themes) intending
|
480 |
+
* to copy the directory into the directory, whilst they pass the source
|
481 |
+
* as the actual files to copy.
|
482 |
+
*/
|
483 |
+
$protected_directories = array( ABSPATH, WP_CONTENT_DIR, WP_PLUGIN_DIR, WP_CONTENT_DIR . '/themes' );
|
484 |
+
|
485 |
+
if ( is_array( $wp_theme_directories ) ) {
|
486 |
+
$protected_directories = array_merge( $protected_directories, $wp_theme_directories );
|
487 |
+
}
|
488 |
+
|
489 |
+
if ( in_array( $destination, $protected_directories ) ) {
|
490 |
+
$remote_destination = trailingslashit( $remote_destination ) . trailingslashit( basename( $source ) );
|
491 |
+
$destination = trailingslashit( $destination ) . trailingslashit( basename( $source ) );
|
492 |
+
}
|
493 |
+
|
494 |
+
if ( $clear_destination ) {
|
495 |
+
// We're going to clear the destination if there's something there.
|
496 |
+
//$this->skin->feedback( 'remove_old' );
|
497 |
+
|
498 |
+
$removed = $this->clear_destination( $remote_destination );
|
499 |
+
|
500 |
+
/**
|
501 |
+
* Filter whether the upgrader cleared the destination.
|
502 |
+
*
|
503 |
+
* @since 2.8.0
|
504 |
+
*
|
505 |
+
* @param mixed $removed Whether the destination was cleared. true on success, WP_Error on failure
|
506 |
+
* @param string $local_destination The local package destination.
|
507 |
+
* @param string $remote_destination The remote package destination.
|
508 |
+
* @param array $hook_extra Extra arguments passed to hooked filters.
|
509 |
+
*/
|
510 |
+
$removed = apply_filters( 'upgrader_clear_destination', $removed, $local_destination, $remote_destination, $args['hook_extra'] );
|
511 |
+
|
512 |
+
if ( is_wp_error( $removed ) ) {
|
513 |
+
return $removed;
|
514 |
+
}
|
515 |
+
} elseif ( $args['abort_if_destination_exists'] && $wp_filesystem->exists( $remote_destination ) ) {
|
516 |
+
//If we're not clearing the destination folder and something exists there already, Bail.
|
517 |
+
//But first check to see if there are actually any files in the folder.
|
518 |
+
$_files = $wp_filesystem->dirlist( $remote_destination );
|
519 |
+
if ( ! empty( $_files ) ) {
|
520 |
+
$wp_filesystem->delete( $remote_source, true ); //Clear out the source files.
|
521 |
+
return new WP_Error( 'folder_exists', $this->strings['folder_exists'], $remote_destination );
|
522 |
+
}
|
523 |
+
}
|
524 |
+
|
525 |
+
//Create destination if needed
|
526 |
+
if ( ! $wp_filesystem->exists( $remote_destination ) ) {
|
527 |
+
if ( ! $wp_filesystem->mkdir( $remote_destination, FS_CHMOD_DIR ) ) {
|
528 |
+
return new WP_Error( 'mkdir_failed_destination', $this->strings['mkdir_failed'], $remote_destination );
|
529 |
+
}
|
530 |
+
}
|
531 |
+
// Copy new version of item into place.
|
532 |
+
$result = copy_dir( $source, $remote_destination );
|
533 |
+
if ( is_wp_error( $result ) ) {
|
534 |
+
if ( $args['clear_working'] ) {
|
535 |
+
$wp_filesystem->delete( $remote_source, true );
|
536 |
+
}
|
537 |
+
return $result;
|
538 |
+
}
|
539 |
+
|
540 |
+
//Clear the Working folder?
|
541 |
+
if ( $args['clear_working'] ) {
|
542 |
+
$wp_filesystem->delete( $remote_source, true );
|
543 |
+
}
|
544 |
+
|
545 |
+
$destination_name = basename( str_replace( $local_destination, '', $destination ) );
|
546 |
+
if ( '.' == $destination_name ) {
|
547 |
+
$destination_name = '';
|
548 |
+
}
|
549 |
+
|
550 |
+
$this->result = compact( 'source', 'source_files', 'destination', 'destination_name', 'local_destination', 'remote_destination', 'clear_destination' );
|
551 |
+
|
552 |
+
/**
|
553 |
+
* Filter the installation response after the installation has finished.
|
554 |
+
*
|
555 |
+
* @since 2.8.0
|
556 |
+
*
|
557 |
+
* @param bool $response Installation response.
|
558 |
+
* @param array $hook_extra Extra arguments passed to hooked filters.
|
559 |
+
* @param array $result Installation result data.
|
560 |
+
*/
|
561 |
+
$res = apply_filters( 'upgrader_post_install', true, $args['hook_extra'], $this->result );
|
562 |
+
|
563 |
+
if ( is_wp_error( $res ) ) {
|
564 |
+
$this->result = $res;
|
565 |
+
return $res;
|
566 |
+
}
|
567 |
+
|
568 |
+
//Bombard the calling function will all the info which we've just used.
|
569 |
+
return $this->result;
|
570 |
+
}
|
571 |
+
}
|
includes/admin/notifications.php
ADDED
@@ -0,0 +1,408 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Notifications.
|
5 |
+
*
|
6 |
+
* @since 7.10.5
|
7 |
+
*/
|
8 |
+
class ExactMetrics_Notifications {
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Source of notifications content.
|
12 |
+
*
|
13 |
+
* @since {VERSION}
|
14 |
+
*
|
15 |
+
* @var string
|
16 |
+
*/
|
17 |
+
const SOURCE_URL = 'https://plugin-cdn.exactmetrics.com/notifications.json';
|
18 |
+
|
19 |
+
/**
|
20 |
+
* Option value.
|
21 |
+
*
|
22 |
+
* @since {VERSION}
|
23 |
+
*
|
24 |
+
* @var bool|array
|
25 |
+
*/
|
26 |
+
public $option = false;
|
27 |
+
|
28 |
+
/**
|
29 |
+
* The name of the option used to store the data.
|
30 |
+
*
|
31 |
+
* @var string
|
32 |
+
*/
|
33 |
+
public $option_name = 'exactmetrics_notifications';
|
34 |
+
|
35 |
+
/**
|
36 |
+
* ExactMetrics_Notifications constructor.
|
37 |
+
*/
|
38 |
+
public function __construct() {
|
39 |
+
$this->init();
|
40 |
+
}
|
41 |
+
|
42 |
+
/**
|
43 |
+
* Initialize class.
|
44 |
+
*
|
45 |
+
* @since {VERSION}
|
46 |
+
*/
|
47 |
+
public function init() {
|
48 |
+
|
49 |
+
$this->hooks();
|
50 |
+
}
|
51 |
+
|
52 |
+
/**
|
53 |
+
* Register hooks.
|
54 |
+
*
|
55 |
+
* @since {VERSION}
|
56 |
+
*/
|
57 |
+
public function hooks() {
|
58 |
+
add_action( 'wp_ajax_exactmetrics_notification_dismiss', array( $this, 'dismiss' ) );
|
59 |
+
|
60 |
+
add_action( 'wp_ajax_exactmetrics_vue_get_notifications', array( $this, 'ajax_get_notifications' ) );
|
61 |
+
|
62 |
+
add_action( 'exactmetrics_admin_notifications_update', array( $this, 'update' ) );
|
63 |
+
|
64 |
+
}
|
65 |
+
|
66 |
+
/**
|
67 |
+
* Check if user has access and is enabled.
|
68 |
+
*
|
69 |
+
* @return bool
|
70 |
+
* @since {VERSION}
|
71 |
+
*
|
72 |
+
*/
|
73 |
+
public function has_access() {
|
74 |
+
|
75 |
+
$access = false;
|
76 |
+
|
77 |
+
if ( current_user_can( 'exactmetrics_view_dashboard' ) && ! exactmetrics_get_option( 'hide_am_notices', false ) ) {
|
78 |
+
$access = true;
|
79 |
+
}
|
80 |
+
|
81 |
+
return apply_filters( 'exactmetrics_admin_notifications_has_access', $access );
|
82 |
+
}
|
83 |
+
|
84 |
+
/**
|
85 |
+
* Get option value.
|
86 |
+
*
|
87 |
+
* @param bool $cache Reference property cache if available.
|
88 |
+
*
|
89 |
+
* @return array
|
90 |
+
* @since {VERSION}
|
91 |
+
*
|
92 |
+
*/
|
93 |
+
public function get_option( $cache = true ) {
|
94 |
+
|
95 |
+
if ( $this->option && $cache ) {
|
96 |
+
return $this->option;
|
97 |
+
}
|
98 |
+
|
99 |
+
$option = get_option( $this->option_name, array() );
|
100 |
+
|
101 |
+
$this->option = array(
|
102 |
+
'update' => ! empty( $option['update'] ) ? $option['update'] : 0,
|
103 |
+
'events' => ! empty( $option['events'] ) ? $option['events'] : array(),
|
104 |
+
'feed' => ! empty( $option['feed'] ) ? $option['feed'] : array(),
|
105 |
+
'dismissed' => ! empty( $option['dismissed'] ) ? $option['dismissed'] : array(),
|
106 |
+
);
|
107 |
+
|
108 |
+
return $this->option;
|
109 |
+
}
|
110 |
+
|
111 |
+
/**
|
112 |
+
* Fetch notifications from feed.
|
113 |
+
*
|
114 |
+
* @return array
|
115 |
+
* @since {VERSION}
|
116 |
+
*
|
117 |
+
*/
|
118 |
+
public function fetch_feed() {
|
119 |
+
|
120 |
+
$res = wp_remote_get( self::SOURCE_URL );
|
121 |
+
|
122 |
+
if ( is_wp_error( $res ) ) {
|
123 |
+
return array();
|
124 |
+
}
|
125 |
+
|
126 |
+
$body = wp_remote_retrieve_body( $res );
|
127 |
+
|
128 |
+
if ( empty( $body ) ) {
|
129 |
+
return array();
|
130 |
+
}
|
131 |
+
|
132 |
+
return $this->verify( json_decode( $body, true ) );
|
133 |
+
}
|
134 |
+
|
135 |
+
/**
|
136 |
+
* Verify notification data before it is saved.
|
137 |
+
*
|
138 |
+
* @param array $notifications Array of notifications items to verify.
|
139 |
+
*
|
140 |
+
* @return array
|
141 |
+
* @since {VERSION}
|
142 |
+
*
|
143 |
+
*/
|
144 |
+
public function verify( $notifications ) { // phpcs:ignore Generic.Metrics.CyclomaticComplexity.TooHigh
|
145 |
+
|
146 |
+
$data = array();
|
147 |
+
|
148 |
+
if ( ! is_array( $notifications ) || empty( $notifications ) ) {
|
149 |
+
return $data;
|
150 |
+
}
|
151 |
+
|
152 |
+
$option = $this->get_option();
|
153 |
+
|
154 |
+
foreach ( $notifications as $notification ) {
|
155 |
+
|
156 |
+
// The message and license should never be empty, if they are, ignore.
|
157 |
+
if ( empty( $notification['content'] ) || empty( $notification['type'] ) ) {
|
158 |
+
continue;
|
159 |
+
}
|
160 |
+
|
161 |
+
// Ignore if license type does not match.
|
162 |
+
if ( ! in_array( ExactMetrics()->license->get_license_type(), $notification['type'] ) ) {
|
163 |
+
continue;
|
164 |
+
}
|
165 |
+
|
166 |
+
// Ignore if expired.
|
167 |
+
if ( ! empty( $notification['end'] ) && time() > strtotime( $notification['end'] ) ) {
|
168 |
+
continue;
|
169 |
+
}
|
170 |
+
|
171 |
+
// Ignore if notification has already been dismissed.
|
172 |
+
if ( ! empty( $option['dismissed'] ) && in_array( $notification['id'], $option['dismissed'] ) ) { // phpcs:ignore WordPress.PHP.StrictInArray.MissingTrueStrict
|
173 |
+
continue;
|
174 |
+
}
|
175 |
+
|
176 |
+
// Ignore if notification existed before installing ExactMetrics.
|
177 |
+
// Prevents bombarding the user with notifications after activation.
|
178 |
+
$over_time = get_option( 'exactmetrics_over_time', array() );
|
179 |
+
|
180 |
+
if (
|
181 |
+
! empty( $over_time['installed_date'] ) &&
|
182 |
+
! empty( $notification['start'] ) &&
|
183 |
+
$over_time['installed_date'] > strtotime( $notification['start'] )
|
184 |
+
) {
|
185 |
+
continue;
|
186 |
+
}
|
187 |
+
|
188 |
+
$data[] = $notification;
|
189 |
+
}
|
190 |
+
|
191 |
+
return $data;
|
192 |
+
}
|
193 |
+
|
194 |
+
/**
|
195 |
+
* Verify saved notification data for active notifications.
|
196 |
+
*
|
197 |
+
* @param array $notifications Array of notifications items to verify.
|
198 |
+
*
|
199 |
+
* @return array
|
200 |
+
* @since {VERSION}
|
201 |
+
*
|
202 |
+
*/
|
203 |
+
public function verify_active( $notifications ) {
|
204 |
+
|
205 |
+
if ( ! is_array( $notifications ) || empty( $notifications ) ) {
|
206 |
+
return array();
|
207 |
+
}
|
208 |
+
|
209 |
+
// Remove notifications that are not active.
|
210 |
+
foreach ( $notifications as $key => $notification ) {
|
211 |
+
if (
|
212 |
+
( ! empty( $notification['start'] ) && time() < strtotime( $notification['start'] ) ) ||
|
213 |
+
( ! empty( $notification['end'] ) && time() > strtotime( $notification['end'] ) )
|
214 |
+
) {
|
215 |
+
unset( $notifications[ $key ] );
|
216 |
+
}
|
217 |
+
}
|
218 |
+
|
219 |
+
return $notifications;
|
220 |
+
}
|
221 |
+
|
222 |
+
/**
|
223 |
+
* Get notification data.
|
224 |
+
*
|
225 |
+
* @return array
|
226 |
+
* @since {VERSION}
|
227 |
+
*
|
228 |
+
*/
|
229 |
+
public function get() {
|
230 |
+
|
231 |
+
if ( ! $this->has_access() ) {
|
232 |
+
return array();
|
233 |
+
}
|
234 |
+
|
235 |
+
$option = $this->get_option();
|
236 |
+
|
237 |
+
// Update notifications using async task.
|
238 |
+
if ( empty( $option['update'] ) || time() > $option['update'] + DAY_IN_SECONDS ) {
|
239 |
+
if ( false === wp_next_scheduled( 'exactmetrics_admin_notifications_update' ) ) {
|
240 |
+
wp_schedule_single_event( time(), 'exactmetrics_admin_notifications_update' );
|
241 |
+
}
|
242 |
+
}
|
243 |
+
|
244 |
+
$events = ! empty( $option['events'] ) ? $this->verify_active( $option['events'] ) : array();
|
245 |
+
$feed = ! empty( $option['feed'] ) ? $this->verify_active( $option['feed'] ) : array();
|
246 |
+
|
247 |
+
return array_merge( $events, $feed );
|
248 |
+
}
|
249 |
+
|
250 |
+
/**
|
251 |
+
* Get notification count.
|
252 |
+
*
|
253 |
+
* @return int
|
254 |
+
* @since {VERSION}
|
255 |
+
*
|
256 |
+
*/
|
257 |
+
public function get_count() {
|
258 |
+
|
259 |
+
return count( $this->get() );
|
260 |
+
}
|
261 |
+
|
262 |
+
/**
|
263 |
+
* Add a manual notification event.
|
264 |
+
*
|
265 |
+
* @param array $notification Notification data.
|
266 |
+
*
|
267 |
+
* @since {VERSION}
|
268 |
+
*
|
269 |
+
*/
|
270 |
+
public function add( $notification ) {
|
271 |
+
|
272 |
+
if ( empty( $notification['id'] ) ) {
|
273 |
+
return;
|
274 |
+
}
|
275 |
+
|
276 |
+
$option = $this->get_option();
|
277 |
+
|
278 |
+
if ( in_array( $notification['id'], $option['dismissed'] ) ) { // phpcs:ignore WordPress.PHP.StrictInArray.MissingTrueStrict
|
279 |
+
return;
|
280 |
+
}
|
281 |
+
|
282 |
+
foreach ( $option['events'] as $item ) {
|
283 |
+
if ( $item['id'] === $notification['id'] ) {
|
284 |
+
return;
|
285 |
+
}
|
286 |
+
}
|
287 |
+
|
288 |
+
$notification = $this->verify( array( $notification ) );
|
289 |
+
|
290 |
+
update_option(
|
291 |
+
$this->option_name,
|
292 |
+
array(
|
293 |
+
'update' => $option['update'],
|
294 |
+
'feed' => $option['feed'],
|
295 |
+
'events' => array_merge( $notification, $option['events'] ),
|
296 |
+
'dismissed' => $option['dismissed'],
|
297 |
+
)
|
298 |
+
);
|
299 |
+
}
|
300 |
+
|
301 |
+
/**
|
302 |
+
* Update notification data from feed.
|
303 |
+
*
|
304 |
+
* @since {VERSION}
|
305 |
+
*/
|
306 |
+
public function update() {
|
307 |
+
|
308 |
+
$feed = $this->fetch_feed();
|
309 |
+
$option = $this->get_option();
|
310 |
+
|
311 |
+
update_option(
|
312 |
+
$this->option_name,
|
313 |
+
array(
|
314 |
+
'update' => time(),
|
315 |
+
'feed' => $feed,
|
316 |
+
'events' => $option['events'],
|
317 |
+
'dismissed' => $option['dismissed'],
|
318 |
+
)
|
319 |
+
);
|
320 |
+
}
|
321 |
+
|
322 |
+
/**
|
323 |
+
* Dismiss notification via AJAX.
|
324 |
+
*
|
325 |
+
* @since {VERSION}
|
326 |
+
*/
|
327 |
+
public function dismiss() {
|
328 |
+
|
329 |
+
// Run a security check.
|
330 |
+
check_ajax_referer( 'mi-admin-nonce', 'nonce' );
|
331 |
+
|
332 |
+
// Check for access and required param.
|
333 |
+
if ( ! $this->has_access() || empty( $_POST['id'] ) ) {
|
334 |
+
wp_send_json_error();
|
335 |
+
}
|
336 |
+
|
337 |
+
$id = sanitize_text_field( wp_unslash( $_POST['id'] ) );
|
338 |
+
$option = $this->get_option();
|
339 |
+
$type = is_numeric( $id ) ? 'feed' : 'events';
|
340 |
+
|
341 |
+
$option['dismissed'][] = $id;
|
342 |
+
$option['dismissed'] = array_unique( $option['dismissed'] );
|
343 |
+
|
344 |
+
// Remove notification.
|
345 |
+
if ( is_array( $option[ $type ] ) && ! empty( $option[ $type ] ) ) {
|
346 |
+
foreach ( $option[ $type ] as $key => $notification ) {
|
347 |
+
if ( $notification['id'] == $id ) { // phpcs:ignore WordPress.PHP.StrictComparisons
|
348 |
+
unset( $option[ $type ][ $key ] );
|
349 |
+
break;
|
350 |
+
}
|
351 |
+
}
|
352 |
+
}
|
353 |
+
|
354 |
+
update_option( $this->option_name, $option );
|
355 |
+
|
356 |
+
wp_send_json_success();
|
357 |
+
}
|
358 |
+
|
359 |
+
/**
|
360 |
+
* This generates the markup for the notifications indicator if needed.
|
361 |
+
*
|
362 |
+
* @return string
|
363 |
+
*/
|
364 |
+
public function get_menu_count() {
|
365 |
+
|
366 |
+
if ( $this->get_count() > 0 ) {
|
367 |
+
return '<span class="exactmetrics-menu-notification-indicator"></span>';
|
368 |
+
}
|
369 |
+
|
370 |
+
return '';
|
371 |
+
|
372 |
+
}
|
373 |
+
|
374 |
+
/**
|
375 |
+
* Retrieve the notifications via an ajax call.
|
376 |
+
*/
|
377 |
+
public function ajax_get_notifications() {
|
378 |
+
|
379 |
+
// Run a security check.
|
380 |
+
check_ajax_referer( 'mi-admin-nonce', 'nonce' );
|
381 |
+
|
382 |
+
$notifications_data = array(
|
383 |
+
'notifications' => $this->get(),
|
384 |
+
'view_url' => $this->get_view_url(),
|
385 |
+
);
|
386 |
+
|
387 |
+
wp_send_json_success( $notifications_data );
|
388 |
+
}
|
389 |
+
|
390 |
+
/**
|
391 |
+
* Get the URL for the page where users can see/read notifications.
|
392 |
+
*
|
393 |
+
* @return string
|
394 |
+
*/
|
395 |
+
public function get_view_url() {
|
396 |
+
|
397 |
+
$disabled = exactmetrics_get_option( 'dashboards_disabled', false );
|
398 |
+
|
399 |
+
$url = add_query_arg( 'page', 'exactmetrics_reports', admin_url( 'admin.php' ) );
|
400 |
+
|
401 |
+
if ( false !== $disabled ) {
|
402 |
+
$url = is_multisite() ? network_admin_url( 'admin.php?page=exactmetrics_network' ) : admin_url( 'admin.php?page=exactmetrics_settings' );
|
403 |
+
}
|
404 |
+
|
405 |
+
return $url;
|
406 |
+
|
407 |
+
}
|
408 |
+
}
|
includes/admin/routes.php
CHANGED
@@ -112,6 +112,37 @@ class ExactMetrics_Rest_Routes {
|
|
112 |
$options['custom_code'] = stripslashes( $options['custom_code'] );
|
113 |
}
|
114 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
wp_send_json( $options );
|
116 |
|
117 |
}
|
@@ -132,8 +163,10 @@ class ExactMetrics_Rest_Routes {
|
|
132 |
if ( isset( $_POST['value'] ) ) {
|
133 |
$value = $this->handle_sanitization( $setting, $_POST['value'] );
|
134 |
exactmetrics_update_option( $setting, $value );
|
|
|
135 |
} else {
|
136 |
exactmetrics_update_option( $setting, false );
|
|
|
137 |
}
|
138 |
}
|
139 |
|
@@ -286,7 +319,7 @@ class ExactMetrics_Rest_Routes {
|
|
286 |
'basename' => 'optinmonster/optin-monster-wp-api.php',
|
287 |
'slug' => 'optinmonster',
|
288 |
);
|
289 |
-
//
|
290 |
$parsed_addons['wp-mail-smtp'] = array(
|
291 |
'active' => function_exists( 'wp_mail_smtp' ),
|
292 |
'icon' => plugin_dir_url( EXACTMETRICS_PLUGIN_FILE ) . 'assets/images/plugin-smtp.png',
|
@@ -296,6 +329,16 @@ class ExactMetrics_Rest_Routes {
|
|
296 |
'basename' => 'wp-mail-smtp/wp_mail_smtp.php',
|
297 |
'slug' => 'wp-mail-smtp',
|
298 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
299 |
// SeedProd.
|
300 |
$parsed_addons['coming-soon'] = array(
|
301 |
'active' => function_exists( 'seed_csp4_activation' ),
|
@@ -683,14 +726,14 @@ class ExactMetrics_Rest_Routes {
|
|
683 |
}
|
684 |
|
685 |
// We do not need any extra credentials if we have gotten this far, so let's install the plugin.
|
686 |
-
require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
|
687 |
$base = ExactMetrics();
|
|
|
688 |
require_once plugin_dir_path( $base->file ) . '/includes/admin/licensing/skin.php';
|
689 |
|
690 |
-
// Prevent
|
691 |
remove_action( 'upgrader_process_complete', array( 'Language_Pack_Upgrader', 'async_upgrade' ), 20 );
|
692 |
// Create the plugin upgrader with our custom skin.
|
693 |
-
$installer = new
|
694 |
$installer->install( $download_url );
|
695 |
|
696 |
// Flush the cache and return the newly installed plugin basename.
|
112 |
$options['custom_code'] = stripslashes( $options['custom_code'] );
|
113 |
}
|
114 |
|
115 |
+
//add email summaries options
|
116 |
+
if ( exactmetrics_is_pro_version() ) {
|
117 |
+
$default_email = array(
|
118 |
+
'email' => get_option( 'admin_email' ),
|
119 |
+
);
|
120 |
+
|
121 |
+
if ( ! isset( $options['email_summaries'] ) ) {
|
122 |
+
$options['email_summaries'] = 'on';
|
123 |
+
}
|
124 |
+
|
125 |
+
if ( ! isset( $options['summaries_email_addresses'] ) ) {
|
126 |
+
$options['summaries_email_addresses'] = array(
|
127 |
+
$default_email,
|
128 |
+
);
|
129 |
+
}
|
130 |
+
|
131 |
+
if ( ! isset( $options['summaries_html_template'] ) ) {
|
132 |
+
$options['summaries_html_template'] = 'yes';
|
133 |
+
}
|
134 |
+
|
135 |
+
|
136 |
+
if ( ! isset( $options['summaries_carbon_copy'] ) ) {
|
137 |
+
$options['summaries_carbon_copy'] = 'no';
|
138 |
+
}
|
139 |
+
|
140 |
+
|
141 |
+
if ( ! isset( $options['summaries_header_image'] ) ) {
|
142 |
+
$options['summaries_header_image'] = '';
|
143 |
+
}
|
144 |
+
}
|
145 |
+
|
146 |
wp_send_json( $options );
|
147 |
|
148 |
}
|
163 |
if ( isset( $_POST['value'] ) ) {
|
164 |
$value = $this->handle_sanitization( $setting, $_POST['value'] );
|
165 |
exactmetrics_update_option( $setting, $value );
|
166 |
+
do_action( 'exactmetrics_after_update_settings', $setting, $value );
|
167 |
} else {
|
168 |
exactmetrics_update_option( $setting, false );
|
169 |
+
do_action( 'exactmetrics_after_update_settings', $setting, false );
|
170 |
}
|
171 |
}
|
172 |
|
319 |
'basename' => 'optinmonster/optin-monster-wp-api.php',
|
320 |
'slug' => 'optinmonster',
|
321 |
);
|
322 |
+
// WP Mail Smtp.
|
323 |
$parsed_addons['wp-mail-smtp'] = array(
|
324 |
'active' => function_exists( 'wp_mail_smtp' ),
|
325 |
'icon' => plugin_dir_url( EXACTMETRICS_PLUGIN_FILE ) . 'assets/images/plugin-smtp.png',
|
329 |
'basename' => 'wp-mail-smtp/wp_mail_smtp.php',
|
330 |
'slug' => 'wp-mail-smtp',
|
331 |
);
|
332 |
+
// Pretty Links
|
333 |
+
$parsed_addons['pretty-link'] = array(
|
334 |
+
'active' => class_exists( 'PrliBaseController' ),
|
335 |
+
'icon' => '',
|
336 |
+
'title' => 'Pretty Links',
|
337 |
+
'excerpt' => __( 'Pretty Links helps you shrink, beautify, track, manage and share any URL on or off of your WordPress website. Create links that look how you want using your own domain name!', 'google-analytics-dashboard-for-wp' ),
|
338 |
+
'installed' => array_key_exists( 'pretty-link/pretty-link.php', $installed_plugins ),
|
339 |
+
'basename' => 'pretty-link/pretty-link.php',
|
340 |
+
'slug' => 'pretty-link',
|
341 |
+
);
|
342 |
// SeedProd.
|
343 |
$parsed_addons['coming-soon'] = array(
|
344 |
'active' => function_exists( 'seed_csp4_activation' ),
|
726 |
}
|
727 |
|
728 |
// We do not need any extra credentials if we have gotten this far, so let's install the plugin.
|
|
|
729 |
$base = ExactMetrics();
|
730 |
+
require_once plugin_dir_path( $base->file ) . '/includes/admin/licensing/plugin-upgrader.php';
|
731 |
require_once plugin_dir_path( $base->file ) . '/includes/admin/licensing/skin.php';
|
732 |
|
733 |
+
// Prevent language upgrade in ajax calls.
|
734 |
remove_action( 'upgrader_process_complete', array( 'Language_Pack_Upgrader', 'async_upgrade' ), 20 );
|
735 |
// Create the plugin upgrader with our custom skin.
|
736 |
+
$installer = new ExactMetrics_Plugin_Upgrader( new ExactMetrics_Skin() );
|
737 |
$installer->install( $download_url );
|
738 |
|
739 |
// Flush the cache and return the newly installed plugin basename.
|
includes/em-install.php
CHANGED
@@ -69,6 +69,10 @@ class ExactMetrics_Install {
|
|
69 |
|
70 |
} else { // if existing install
|
71 |
|
|
|
|
|
|
|
|
|
72 |
// Do not use. See exactmetrics_after_install_routine comment below.
|
73 |
do_action( 'exactmetrics_after_existing_upgrade_routine', $version );
|
74 |
$version = get_option( 'exactmetrics_current_version', $version );
|
@@ -399,6 +403,13 @@ class ExactMetrics_Install {
|
|
399 |
}
|
400 |
|
401 |
public function get_exactmetrics_default_values() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
402 |
return array(
|
403 |
'enable_affiliate_links' => true,
|
404 |
'affiliate_links' => array(
|
@@ -426,6 +437,9 @@ class ExactMetrics_Install {
|
|
426 |
'view_reports' => array( 'administrator', 'editor' ),
|
427 |
'events_mode' => 'js',
|
428 |
'tracking_mode' => 'analytics',
|
|
|
|
|
|
|
429 |
);
|
430 |
}
|
431 |
|
@@ -466,4 +480,23 @@ class ExactMetrics_Install {
|
|
466 |
}
|
467 |
}
|
468 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
469 |
}
|
69 |
|
70 |
} else { // if existing install
|
71 |
|
72 |
+
if ( version_compare( $version, '6.1.0', '<' ) ) {
|
73 |
+
$this->v610_upgrades();
|
74 |
+
}
|
75 |
+
|
76 |
// Do not use. See exactmetrics_after_install_routine comment below.
|
77 |
do_action( 'exactmetrics_after_existing_upgrade_routine', $version );
|
78 |
$version = get_option( 'exactmetrics_current_version', $version );
|
403 |
}
|
404 |
|
405 |
public function get_exactmetrics_default_values() {
|
406 |
+
$admin_email = get_option( 'admin_email' );
|
407 |
+
$admin_email_array = array(
|
408 |
+
array(
|
409 |
+
'email' => $admin_email,
|
410 |
+
),
|
411 |
+
);
|
412 |
+
|
413 |
return array(
|
414 |
'enable_affiliate_links' => true,
|
415 |
'affiliate_links' => array(
|
437 |
'view_reports' => array( 'administrator', 'editor' ),
|
438 |
'events_mode' => 'js',
|
439 |
'tracking_mode' => 'analytics',
|
440 |
+
'email_summaries' => 'on',
|
441 |
+
'summaries_html_template' => 'yes',
|
442 |
+
'summaries_email_addresses' => $admin_email_array,
|
443 |
);
|
444 |
}
|
445 |
|
480 |
}
|
481 |
}
|
482 |
}
|
483 |
+
|
484 |
+
/**
|
485 |
+
* Upgrade routine for version 6.1.0
|
486 |
+
*/
|
487 |
+
public function v610_upgrades() {
|
488 |
+
|
489 |
+
if ( empty( $this->new_settings['email_summaries'] ) ) {
|
490 |
+
$admin_email = get_option( 'admin_email' );
|
491 |
+
$admin_email_array = array(
|
492 |
+
array(
|
493 |
+
'email' => $admin_email,
|
494 |
+
),
|
495 |
+
);
|
496 |
+
$this->new_settings['email_summaries'] = 'on';
|
497 |
+
$this->new_settings['summaries_html_template'] = 'yes';
|
498 |
+
$this->new_settings['summaries_email_addresses'] = $admin_email_array; // Not using wp_json_encode for backwards compatibility.
|
499 |
+
}
|
500 |
+
|
501 |
+
}
|
502 |
}
|
includes/emails/class-emails.php
ADDED
@@ -0,0 +1,664 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Emails.
|
5 |
+
*
|
6 |
+
* This class handles all (notification) emails sent by ExactMetrics.
|
7 |
+
*
|
8 |
+
* Heavily influenced by the AffiliateWP plugin by Pippin Williamson.
|
9 |
+
* https://github.com/AffiliateWP/AffiliateWP/blob/master/includes/emails/class-affwp-emails.php
|
10 |
+
*
|
11 |
+
* @since 7.10.5
|
12 |
+
*/
|
13 |
+
class ExactMetrics_WP_Emails {
|
14 |
+
|
15 |
+
/**
|
16 |
+
* Holds the from address.
|
17 |
+
*
|
18 |
+
* @since 7.10.5
|
19 |
+
*
|
20 |
+
* @var string
|
21 |
+
*/
|
22 |
+
private $from_address;
|
23 |
+
|
24 |
+
/**
|
25 |
+
* Holds the from name.
|
26 |
+
*
|
27 |
+
* @since 7.10.5
|
28 |
+
*
|
29 |
+
* @var string
|
30 |
+
*/
|
31 |
+
private $from_name;
|
32 |
+
|
33 |
+
/**
|
34 |
+
* Holds the reply-to address.
|
35 |
+
*
|
36 |
+
* @since 7.10.5
|
37 |
+
*
|
38 |
+
* @var string
|
39 |
+
*/
|
40 |
+
private $reply_to = false;
|
41 |
+
|
42 |
+
/**
|
43 |
+
* Holds the carbon copy addresses.
|
44 |
+
*
|
45 |
+
* @since 7.10.5
|
46 |
+
*
|
47 |
+
* @var string
|
48 |
+
*/
|
49 |
+
private $cc = false;
|
50 |
+
|
51 |
+
/**
|
52 |
+
* Holds the email content type.
|
53 |
+
*
|
54 |
+
* @since 7.10.5
|
55 |
+
*
|
56 |
+
* @var string
|
57 |
+
*/
|
58 |
+
private $content_type;
|
59 |
+
|
60 |
+
/**
|
61 |
+
* Holds the email headers.
|
62 |
+
*
|
63 |
+
* @since 7.10.5
|
64 |
+
*
|
65 |
+
* @var string
|
66 |
+
*/
|
67 |
+
private $headers;
|
68 |
+
|
69 |
+
/**
|
70 |
+
* Whether to send email in HTML.
|
71 |
+
*
|
72 |
+
* @since 7.10.5
|
73 |
+
*
|
74 |
+
* @var bool
|
75 |
+
*/
|
76 |
+
private $html = true;
|
77 |
+
|
78 |
+
/**
|
79 |
+
* The email template to use.
|
80 |
+
*
|
81 |
+
* @since 7.10.5
|
82 |
+
*
|
83 |
+
* @var string
|
84 |
+
*/
|
85 |
+
private $template;
|
86 |
+
|
87 |
+
/**
|
88 |
+
* Header/footer/body arguments.
|
89 |
+
*
|
90 |
+
* @since 7.10.5
|
91 |
+
*
|
92 |
+
* @var array
|
93 |
+
*/
|
94 |
+
protected $args;
|
95 |
+
|
96 |
+
/**
|
97 |
+
* Get things going.
|
98 |
+
*
|
99 |
+
* @since 7.10.5
|
100 |
+
*/
|
101 |
+
public function __construct( $template ) {
|
102 |
+
$this->template = $template;
|
103 |
+
|
104 |
+
$this->set_initial_args();
|
105 |
+
|
106 |
+
add_action( 'exactmetrics_email_send_before', array( $this, 'send_before' ) );
|
107 |
+
add_action( 'exactmetrics_email_send_after', array( $this, 'send_after' ) );
|
108 |
+
}
|
109 |
+
|
110 |
+
/**
|
111 |
+
* Set a property.
|
112 |
+
*
|
113 |
+
* @since 7.10.5
|
114 |
+
*
|
115 |
+
* @param string $key Object property key.
|
116 |
+
* @param mixed $value Object property value.
|
117 |
+
*/
|
118 |
+
public function __set( $key, $value ) {
|
119 |
+
$this->$key = $value;
|
120 |
+
}
|
121 |
+
|
122 |
+
/**
|
123 |
+
* Get the email from name.
|
124 |
+
*
|
125 |
+
* @since 7.10.5
|
126 |
+
*
|
127 |
+
* @return string The email from name
|
128 |
+
*/
|
129 |
+
public function get_from_name() {
|
130 |
+
|
131 |
+
if ( ! empty( $this->from_name ) ) {
|
132 |
+
$this->from_name = $this->process_tag( $this->from_name );
|
133 |
+
} else {
|
134 |
+
$this->from_name = get_bloginfo( 'name' );
|
135 |
+
}
|
136 |
+
|
137 |
+
return apply_filters( 'exactmetrics_email_from_name', exactmetrics_decode_string( $this->from_name ), $this );
|
138 |
+
}
|
139 |
+
|
140 |
+
/**
|
141 |
+
* Get the email from address.
|
142 |
+
*
|
143 |
+
* @since 7.10.5
|
144 |
+
*
|
145 |
+
* @return string The email from address.
|
146 |
+
*/
|
147 |
+
public function get_from_address() {
|
148 |
+
|
149 |
+
if ( ! empty( $this->from_address ) ) {
|
150 |
+
$this->from_address = $this->process_tag( $this->from_address );
|
151 |
+
} else {
|
152 |
+
$this->from_address = get_option( 'admin_email' );
|
153 |
+
}
|
154 |
+
|
155 |
+
return apply_filters( 'exactmetrics_email_from_address', $this->from_address, $this );
|
156 |
+
}
|
157 |
+
|
158 |
+
/**
|
159 |
+
* Get the email reply-to.
|
160 |
+
*
|
161 |
+
* @since 7.10.5
|
162 |
+
*
|
163 |
+
* @return string The email reply-to address.
|
164 |
+
*/
|
165 |
+
public function get_reply_to() {
|
166 |
+
|
167 |
+
if ( ! empty( $this->reply_to ) ) {
|
168 |
+
|
169 |
+
$this->reply_to = $this->process_tag( $this->reply_to );
|
170 |
+
|
171 |
+
if ( ! is_email( $this->reply_to ) ) {
|
172 |
+
$this->reply_to = false;
|
173 |
+
}
|
174 |
+
}
|
175 |
+
|
176 |
+
return apply_filters( 'exactmetrics_email_reply_to', $this->reply_to, $this );
|
177 |
+
}
|
178 |
+
|
179 |
+
/**
|
180 |
+
* Get the email carbon copy addresses.
|
181 |
+
*
|
182 |
+
* @since 7.10.5
|
183 |
+
*
|
184 |
+
* @return string The email reply-to address.
|
185 |
+
*/
|
186 |
+
public function get_cc() {
|
187 |
+
|
188 |
+
if ( ! empty( $this->cc ) ) {
|
189 |
+
|
190 |
+
$this->cc = $this->process_tag( $this->cc );
|
191 |
+
|
192 |
+
$addresses = array_map( 'trim', explode( ',', $this->cc ) );
|
193 |
+
|
194 |
+
foreach ( $addresses as $key => $address ) {
|
195 |
+
if ( ! is_email( $address ) ) {
|
196 |
+
unset( $addresses[ $key ] );
|
197 |
+
}
|
198 |
+
}
|
199 |
+
|
200 |
+
$this->cc = implode( ',', $addresses );
|
201 |
+
}
|
202 |
+
|
203 |
+
return apply_filters( 'exactmetrics_email_cc', $this->cc, $this );
|
204 |
+
}
|
205 |
+
|
206 |
+
/**
|
207 |
+
* Get the email content type.
|
208 |
+
*
|
209 |
+
* @since 7.10.5
|
210 |
+
*
|
211 |
+
* @return string The email content type.
|
212 |
+
*/
|
213 |
+
public function get_content_type() {
|
214 |
+
|
215 |
+
if ( ! $this->content_type && $this->html ) {
|
216 |
+
$this->content_type = apply_filters( 'exactmetrics_email_default_content_type', 'text/html', $this );
|
217 |
+
} elseif ( ! $this->html ) {
|
218 |
+
$this->content_type = 'text/plain';
|
219 |
+
}
|
220 |
+
|
221 |
+
return apply_filters( 'exactmetrics_email_content_type', $this->content_type, $this );
|
222 |
+
}
|
223 |
+
|
224 |
+
/**
|
225 |
+
* Get the email headers.
|
226 |
+
*
|
227 |
+
* @since 7.10.5
|
228 |
+
*
|
229 |
+
* @return string The email headers.
|
230 |
+
*/
|
231 |
+
public function get_headers() {
|
232 |
+
|
233 |
+
if ( ! $this->headers ) {
|
234 |
+
$this->headers = "From: {$this->get_from_name()} <{$this->get_from_address()}>\r\n";
|
235 |
+
if ( $this->get_reply_to() ) {
|
236 |
+
$this->headers .= "Reply-To: {$this->get_reply_to()}\r\n";
|
237 |
+
}
|
238 |
+
if ( $this->get_cc() ) {
|
239 |
+
$this->headers .= "Cc: {$this->get_cc()}\r\n";
|
240 |
+
}
|
241 |
+
$this->headers .= "Content-Type: {$this->get_content_type()}; charset=utf-8\r\n";
|
242 |
+
}
|
243 |
+
|
244 |
+
return apply_filters( 'exactmetrics_email_headers', $this->headers, $this );
|
245 |
+
}
|
246 |
+
|
247 |
+
/**
|
248 |
+
* Set initial arguments to use in a template.
|
249 |
+
*
|
250 |
+
* @since 7.10.5
|
251 |
+
*/
|
252 |
+
public function set_initial_args() {
|
253 |
+
$header_args = array(
|
254 |
+
'title' => esc_html__( 'ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
255 |
+
);
|
256 |
+
|
257 |
+
$args = array(
|
258 |
+
'header' => array(),
|
259 |
+
'body' => array(),
|
260 |
+
'footer' => array(),
|
261 |
+
);
|
262 |
+
|
263 |
+
$from_address = $this->get_from_address();
|
264 |
+
if ( ! empty( $from_address ) ) {
|
265 |
+
$args['footer']['from_address'] = $from_address;
|
266 |
+
}
|
267 |
+
|
268 |
+
$args = apply_filters( 'exactmetrics_emails_templates_set_initial_args', $args, $this );
|
269 |
+
|
270 |
+
$this->set_args( $args );
|
271 |
+
}
|
272 |
+
|
273 |
+
/**
|
274 |
+
* Set header/footer/body/style arguments to use in a template.
|
275 |
+
*
|
276 |
+
* @since 7.10.5
|
277 |
+
*
|
278 |
+
* @param array $args Arguments to set.
|
279 |
+
* @param bool $merge Merge the arguments with existing once or replace.
|
280 |
+
*
|
281 |
+
* @return MI_WP_Emails
|
282 |
+
*/
|
283 |
+
public function set_args( $args, $merge = true ) {
|
284 |
+
|
285 |
+
$args = apply_filters( 'exactmetrics_emails_templates_set_args', $args, $this );
|
286 |
+
|
287 |
+
if ( empty( $args ) || ! is_array( $args ) ) {
|
288 |
+
return $this;
|
289 |
+
}
|
290 |
+
|
291 |
+
foreach ( $args as $type => $value ) {
|
292 |
+
|
293 |
+
if ( ! is_array( $value ) ) {
|
294 |
+
continue;
|
295 |
+
}
|
296 |
+
|
297 |
+
if ( ! isset( $this->args[ $type ] ) || ! is_array( $this->args[ $type ] ) ) {
|
298 |
+
$this->args[ $type ] = array();
|
299 |
+
}
|
300 |
+
|
301 |
+
$this->args[ $type ] = $merge ? array_merge( $this->args[ $type ], $value ) : $value;
|
302 |
+
}
|
303 |
+
|
304 |
+
return $this;
|
305 |
+
}
|
306 |
+
|
307 |
+
/**
|
308 |
+
* Get header/footer/body arguments
|
309 |
+
*
|
310 |
+
* @since 7.10.5
|
311 |
+
*
|
312 |
+
* @param string $type Header/footer/body.
|
313 |
+
*
|
314 |
+
* @return array
|
315 |
+
*/
|
316 |
+
public function get_args( $type ) {
|
317 |
+
if ( ! empty( $type ) ) {
|
318 |
+
return isset( $this->args[ $type ] ) ? apply_filters( 'exactmetrics_emails_templates_get_args_' . $type, $this->args[ $type ], $this ) : array();
|
319 |
+
}
|
320 |
+
|
321 |
+
return apply_filters( 'exactmetrics_emails_templates_get_args', $this->args, $this );
|
322 |
+
}
|
323 |
+
|
324 |
+
/**
|
325 |
+
* Build the email.
|
326 |
+
*
|
327 |
+
* @since 7.10.5
|
328 |
+
*
|
329 |
+
* @param string $message The email message.
|
330 |
+
*
|
331 |
+
* @return string
|
332 |
+
*/
|
333 |
+
public function build_email( $message=null ) {
|
334 |
+
// process plain text email
|
335 |
+
if ( false === $this->html ) {
|
336 |
+
$body = $this->get_template_part( 'body', $this->get_template(), true );
|
337 |
+
$body = wp_strip_all_tags( $body );
|
338 |
+
$message = str_replace( '{email}', $message, $body );
|
339 |
+
|
340 |
+
return apply_filters( 'exactmetrics_email_message', $message, $this );
|
341 |
+
}
|
342 |
+
|
343 |
+
// process html email template
|
344 |
+
$email_parts = array();
|
345 |
+
$email_parts['header'] = $this->get_template_part( 'header', $this->get_template(), true );
|
346 |
+
|
347 |
+
// Hooks into the email header.
|
348 |
+
do_action( 'exactmetrics_email_header', $email_parts['header'] );
|
349 |
+
|
350 |
+
$email_parts['body'] = $this->get_template_part( 'body', $this->get_template(), true );
|
351 |
+
|
352 |
+
// Hooks into the email body.
|
353 |
+
do_action( 'exactmetrics_email_body', $email_parts['body'] );
|
354 |
+
|
355 |
+
$email_parts['footer'] = $this->get_template_part( 'footer', $this->get_template(), true );
|
356 |
+
|
357 |
+
// Hooks into the email footer.
|
358 |
+
do_action( 'exactmetrics_email_footer', $email_parts['footer'] );
|
359 |
+
|
360 |
+
|
361 |
+
$body = implode( $email_parts );
|
362 |
+
$message = $this->process_tag( $message, false );
|
363 |
+
$message = nl2br( $message );
|
364 |
+
$message = str_replace( '{email}', $message, $body );
|
365 |
+
//$message = make_clickable( $message );
|
366 |
+
|
367 |
+
return apply_filters( 'exactmetrics_email_message', $message, $this );
|
368 |
+
}
|
369 |
+
|
370 |
+
/**
|
371 |
+
* Send the email.
|
372 |
+
*
|
373 |
+
* @since 7.10.5
|
374 |
+
*
|
375 |
+
* @param string $to The To address.
|
376 |
+
* @param string $subject The subject line of the email.
|
377 |
+
* @param string $message The body of the email.
|
378 |
+
* @param array $attachments Attachments to the email.
|
379 |
+
*
|
380 |
+
* @return bool
|
381 |
+
*/
|
382 |
+
public function send( $to, $subject, $message=null, $attachments = array() ) {
|
383 |
+
|
384 |
+
if ( ! did_action( 'init' ) && ! did_action( 'admin_init' ) ) {
|
385 |
+
_doing_it_wrong( __FUNCTION__, esc_html__( 'You cannot send emails with MI_WP_Emails() until init/admin_init has been reached.', 'google-analytics-dashboard-for-wp' ), null );
|
386 |
+
|
387 |
+
return false;
|
388 |
+
}
|
389 |
+
|
390 |
+
// Don't send anything if emails have been disabled.
|
391 |
+
if ( $this->is_email_disabled() ) {
|
392 |
+
return false;
|
393 |
+
}
|
394 |
+
|
395 |
+
// Don't send if email address is invalid.
|
396 |
+
if ( ! is_email( $to ) ) {
|
397 |
+
return false;
|
398 |
+
}
|
399 |
+
|
400 |
+
// Hooks before email is sent.
|
401 |
+
do_action( 'exactmetrics_email_send_before', $this );
|
402 |
+
|
403 |
+
/*
|
404 |
+
* Allow to filter data on per-email basis,
|
405 |
+
* useful for localizations based on recipient email address, form settings,
|
406 |
+
* or for specific notifications - whatever available in MI_WP_Emails class.
|
407 |
+
*/
|
408 |
+
$data = apply_filters(
|
409 |
+
'exactmetrics_emails_send_email_data',
|
410 |
+
array(
|
411 |
+
'to' => $to,
|
412 |
+
'subject' => $subject,
|
413 |
+
'message' => $message,
|
414 |
+
'headers' => $this->get_headers(),
|
415 |
+
'attachments' => $attachments,
|
416 |
+
),
|
417 |
+
$this
|
418 |
+
);
|
419 |
+
|
420 |
+
// Let's do this.
|
421 |
+
$sent = wp_mail(
|
422 |
+
$data['to'],
|
423 |
+
exactmetrics_decode_string( $this->process_tag( $data['subject'] ) ),
|
424 |
+
$this->build_email( $data['message'] ),
|
425 |
+
$data['headers'],
|
426 |
+
$data['attachments']
|
427 |
+
);
|
428 |
+
|
429 |
+
// Hooks after the email is sent.
|
430 |
+
do_action( 'exactmetrics_email_send_after', $this );
|
431 |
+
|
432 |
+
return $sent;
|
433 |
+
}
|
434 |
+
|
435 |
+
/**
|
436 |
+
* Add filters/actions before the email is sent.
|
437 |
+
*
|
438 |
+
* @since 7.10.5
|
439 |
+
*/
|
440 |
+
public function send_before() {
|
441 |
+
|
442 |
+
add_filter( 'wp_mail_from', array( $this, 'get_from_address' ) );
|
443 |
+
add_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ) );
|
444 |
+
add_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ) );
|
445 |
+
}
|
446 |
+
|
447 |
+
/**
|
448 |
+
* Remove filters/actions after the email is sent.
|
449 |
+
*
|
450 |
+
* @since 7.10.5
|
451 |
+
*/
|
452 |
+
public function send_after() {
|
453 |
+
|
454 |
+
remove_filter( 'wp_mail_from', array( $this, 'get_from_address' ) );
|
455 |
+
remove_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ) );
|
456 |
+
remove_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ) );
|
457 |
+
}
|
458 |
+
|
459 |
+
/**
|
460 |
+
* Process a smart tag.
|
461 |
+
*
|
462 |
+
* @since 7.10.5
|
463 |
+
*
|
464 |
+
* @param string $string String that may contain tags.
|
465 |
+
* @param bool $sanitize Toggle to maybe sanitize.
|
466 |
+
* @param bool $linebreaks Toggle to process linebreaks.
|
467 |
+
*
|
468 |
+
* @return string
|
469 |
+
*/
|
470 |
+
public function process_tag( $string = '', $sanitize = true, $linebreaks = false ) {
|
471 |
+
|
472 |
+
$tag = apply_filters( 'exactmetrics_process_smart_tags', $string );
|
473 |
+
|
474 |
+
$tag = exactmetrics_decode_string( $tag );
|
475 |
+
|
476 |
+
if ( $sanitize ) {
|
477 |
+
if ( $linebreaks ) {
|
478 |
+
$tag = exactmetrics_sanitize_textarea_field( $tag );
|
479 |
+
} else {
|
480 |
+
$tag = sanitize_text_field( $tag );
|
481 |
+
}
|
482 |
+
}
|
483 |
+
|
484 |
+
return $tag;
|
485 |
+
}
|
486 |
+
|
487 |
+
/**
|
488 |
+
* Email kill switch if needed.
|
489 |
+
*
|
490 |
+
* @since 7.10.5
|
491 |
+
*
|
492 |
+
* @return bool
|
493 |
+
*/
|
494 |
+
public function is_email_disabled() {
|
495 |
+
return (bool) apply_filters( 'exactmetrics_disable_all_emails', false, $this );
|
496 |
+
}
|
497 |
+
|
498 |
+
/**
|
499 |
+
* Get the enabled email template.
|
500 |
+
*
|
501 |
+
* @since 7.10.5
|
502 |
+
*
|
503 |
+
* @return string When filtering return 'default' to switch to text/plain email.
|
504 |
+
*/
|
505 |
+
public function get_template() {
|
506 |
+
|
507 |
+
if ( ! empty( $this->template ) ) {
|
508 |
+
$this->template = $this->process_tag( $this->template );
|
509 |
+
} else {
|
510 |
+
$this->template = 'default';
|
511 |
+
}
|
512 |
+
|
513 |
+
return apply_filters( 'exactmetrics_email_template', $this->template);
|
514 |
+
}
|
515 |
+
|
516 |
+
/**
|
517 |
+
* Retrieves a template content.
|
518 |
+
*
|
519 |
+
* @since 7.10.5
|
520 |
+
*
|
521 |
+
* @param string $slug Template file slug.
|
522 |
+
* @param string $name Optional. Default null.
|
523 |
+
* @param bool $load Maybe load.
|
524 |
+
*
|
525 |
+
* @return string
|
526 |
+
*/
|
527 |
+
public function get_template_part( $slug, $name = null, $load = true ) {
|
528 |
+
|
529 |
+
if ( false === $this->html ) {
|
530 |
+
$name .= '-plain';
|
531 |
+
}
|
532 |
+
|
533 |
+
if ( isset( $name ) ) {
|
534 |
+
$template = $slug . '-' . $name;
|
535 |
+
|
536 |
+
$html = $this->get_html(
|
537 |
+
$template,
|
538 |
+
$this->get_args( $slug ),
|
539 |
+
true
|
540 |
+
);
|
541 |
+
|
542 |
+
return apply_filters( 'exactmetrics_emails_templates_get_content_part', $html, $template, $this );
|
543 |
+
}
|
544 |
+
|
545 |
+
}
|
546 |
+
|
547 |
+
/**
|
548 |
+
* Like $this->include_html, but returns the HTML instead of including.
|
549 |
+
*
|
550 |
+
* @since 7.10.5
|
551 |
+
*
|
552 |
+
* @param string $template_name Template name.
|
553 |
+
* @param array $args Arguments.
|
554 |
+
* @param bool $extract Extract arguments.
|
555 |
+
*
|
556 |
+
* @return string
|
557 |
+
*/
|
558 |
+
public static function get_html( $template_name, $args = array(), $extract = false ) {
|
559 |
+
ob_start();
|
560 |
+
self::include_html( $template_name, $args, $extract );
|
561 |
+
return ob_get_clean();
|
562 |
+
}
|
563 |
+
|
564 |
+
/**
|
565 |
+
* Include a template.
|
566 |
+
* Uses 'require' if $args are passed or 'load_template' if not.
|
567 |
+
*
|
568 |
+
* @since 7.10.5
|
569 |
+
*
|
570 |
+
* @param string $template_name Template name.
|
571 |
+
* @param array $args Arguments.
|
572 |
+
* @param bool $extract Extract arguments.
|
573 |
+
*
|
574 |
+
* @throws \RuntimeException If extract() tries to modify the scope.
|
575 |
+
*/
|
576 |
+
public static function include_html( $template_name, $args = array(), $extract = false ) {
|
577 |
+
|
578 |
+
$template_name .= '.php';
|
579 |
+
|
580 |
+
// Allow 3rd party plugins to filter template file from their plugin.
|
581 |
+
$located = apply_filters( 'exactmetrics_helpers_templates_include_html_located', self::locate_template( $template_name ), $template_name, $args, $extract );
|
582 |
+
$args = apply_filters( 'exactmetrics_helpers_templates_include_html_args', $args, $template_name, $extract );
|
583 |
+
|
584 |
+
if ( empty( $located ) || ! is_readable( $located ) ) {
|
585 |
+
return;
|
586 |
+
}
|
587 |
+
|
588 |
+
// Load template WP way if no arguments were passed.
|
589 |
+
if ( empty( $args ) ) {
|
590 |
+
load_template( $located, false );
|
591 |
+
return;
|
592 |
+
}
|
593 |
+
|
594 |
+
$extract = apply_filters( 'exactmetrics_helpers_templates_include_html_extract_args', $extract, $template_name, $args );
|
595 |
+
|
596 |
+
if ( $extract && is_array( $args ) ) {
|
597 |
+
|
598 |
+
$created_vars_count = extract( $args, EXTR_SKIP ); // phpcs:ignore WordPress.PHP.DontExtract
|
599 |
+
|
600 |
+
// Protecting existing scope from modification.
|
601 |
+
if ( count( $args ) !== $created_vars_count ) {
|
602 |
+
throw new RuntimeException( 'Extraction failed: variable names are clashing with the existing ones.' );
|
603 |
+
}
|
604 |
+
}
|
605 |
+
|
606 |
+
require $located;
|
607 |
+
}
|
608 |
+
|
609 |
+
/**
|
610 |
+
* Locate a template and return the path for inclusion.
|
611 |
+
*
|
612 |
+
* @since 7.10.5
|
613 |
+
*
|
614 |
+
* @param string $template_name Template name.
|
615 |
+
*
|
616 |
+
* @return string
|
617 |
+
*/
|
618 |
+
public static function locate_template( $template_name ) {
|
619 |
+
|
620 |
+
// Trim off any slashes from the template name.
|
621 |
+
$template_name = ltrim( $template_name, '/' );
|
622 |
+
|
623 |
+
if ( empty( $template_name ) ) {
|
624 |
+
return apply_filters( 'exactmetrics_helpers_templates_locate', '', $template_name );
|
625 |
+
}
|
626 |
+
|
627 |
+
$located = '';
|
628 |
+
|
629 |
+
// Try locating this template file by looping through the template paths.
|
630 |
+
foreach ( self::get_theme_template_paths() as $template_path ) {
|
631 |
+
if ( file_exists( $template_path . $template_name ) ) {
|
632 |
+
$located = $template_path . $template_name;
|
633 |
+
break;
|
634 |
+
}
|
635 |
+
}
|
636 |
+
|
637 |
+
return apply_filters( 'exactmetrics_helpers_templates_locate', $located, $template_name );
|
638 |
+
}
|
639 |
+
|
640 |
+
/**
|
641 |
+
* Return a list of paths to check for template locations
|
642 |
+
*
|
643 |
+
* @since 7.10.5
|
644 |
+
*
|
645 |
+
* @return array
|
646 |
+
*/
|
647 |
+
public static function get_theme_template_paths() {
|
648 |
+
|
649 |
+
$template_dir = 'exactmetrics-email';
|
650 |
+
|
651 |
+
$file_paths = array(
|
652 |
+
1 => trailingslashit( get_stylesheet_directory() ) . $template_dir,
|
653 |
+
10 => trailingslashit( get_template_directory() ) . $template_dir,
|
654 |
+
100 => trailingslashit( EXACTMETRICS_PLUGIN_DIR ) . 'includes/emails/templates',
|
655 |
+
);
|
656 |
+
|
657 |
+
$file_paths = apply_filters( 'exactmetrics_email_template_paths', $file_paths );
|
658 |
+
|
659 |
+
// Sort the file paths based on priority.
|
660 |
+
ksort( $file_paths, SORT_NUMERIC );
|
661 |
+
|
662 |
+
return array_map( 'trailingslashit', $file_paths );
|
663 |
+
}
|
664 |
+
}
|
includes/emails/templates/body-default-plain.php
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
1 |
+
<?php
|
2 |
+
echo "{email}";
|
includes/emails/templates/body-default.php
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Email Body
|
4 |
+
*
|
5 |
+
* Heavily influenced by the AffiliateWP plugin by Pippin Williamson.
|
6 |
+
* https://github.com/AffiliateWP/AffiliateWP/tree/master/templates/emails
|
7 |
+
*
|
8 |
+
* @since 7.10.5
|
9 |
+
*/
|
10 |
+
|
11 |
+
// Exit if accessed directly.
|
12 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
13 |
+
exit;
|
14 |
+
}
|
15 |
+
?>
|
16 |
+
{email}
|
includes/emails/templates/footer-default.php
ADDED
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Email Footer.
|
4 |
+
*
|
5 |
+
* @since 7.10.5
|
6 |
+
*/
|
7 |
+
|
8 |
+
// Exit if accessed directly.
|
9 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
10 |
+
exit;
|
11 |
+
}
|
12 |
+
|
13 |
+
$background_color = '#e9eaec';
|
14 |
+
?>
|
15 |
+
</td>
|
16 |
+
</tr>
|
17 |
+
</tbody>
|
18 |
+
</table>
|
19 |
+
</td>
|
20 |
+
</tr>
|
21 |
+
</tbody>
|
22 |
+
</table>
|
23 |
+
</td>
|
24 |
+
</tr>
|
25 |
+
<tr>
|
26 |
+
<td valign="top" id="templateFooter" style="mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;background-color: <?php echo $background_color; ?>;border-top: 0;border-bottom: 0;padding-top: 12px;padding-bottom: 12px;">
|
27 |
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width: 100%;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
|
28 |
+
<tbody class="mcnTextBlockOuter">
|
29 |
+
<tr>
|
30 |
+
<td valign="top" class="mcnTextBlockInner" style="mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
|
31 |
+
<table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width: 100%;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;" class="mcnTextContentContainer">
|
32 |
+
<tbody>
|
33 |
+
<tr>
|
34 |
+
<td valign="top" class="mcnTextContent" style="padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;word-break: break-word;color: #aaa;font-family: Helvetica;font-size: 12px;line-height: 150%;text-align: center;">
|
35 |
+
|
36 |
+
<!-- Footer content -->
|
37 |
+
<?php
|
38 |
+
/* translators: %s - link to a site. */
|
39 |
+
$footer = sprintf( esc_html__( 'Sent from %s', 'google-analytics-dashboard-for-wp' ), '<a href="' . esc_url( home_url() ) . '" style="color:#bbbbbb;">' . wp_specialchars_decode( get_bloginfo( 'name' ) ) . '</a>' );
|
40 |
+
echo apply_filters( 'exactmetrics_email_footer_text', $footer );
|
41 |
+
?>
|
42 |
+
|
43 |
+
</td>
|
44 |
+
</tr>
|
45 |
+
</tbody>
|
46 |
+
</table>
|
47 |
+
</td>
|
48 |
+
</tr>
|
49 |
+
</tbody>
|
50 |
+
</table>
|
51 |
+
</td>
|
52 |
+
</tr>
|
53 |
+
</table>
|
54 |
+
<!--[if gte mso 9]>
|
55 |
+
</td>
|
56 |
+
</tr>
|
57 |
+
</table>
|
58 |
+
<![endif]-->
|
59 |
+
<!-- // END TEMPLATE -->
|
60 |
+
</td>
|
61 |
+
</tr>
|
62 |
+
</table>
|
63 |
+
</center>
|
64 |
+
</body>
|
65 |
+
</html>
|
includes/emails/templates/header-default.php
ADDED
@@ -0,0 +1,273 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Email Header
|
4 |
+
*
|
5 |
+
* @since 7.10.5
|
6 |
+
*/
|
7 |
+
|
8 |
+
// Exit if accessed directly.
|
9 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
10 |
+
exit;
|
11 |
+
}
|
12 |
+
|
13 |
+
$header_image = exactmetrics_get_option( 'email_header_image', false );
|
14 |
+
$background_color = '#e9eaec';
|
15 |
+
$text_direction = is_rtl() ? 'rtl' : 'ltr';
|
16 |
+
?>
|
17 |
+
<!doctype html>
|
18 |
+
<html dir="<?php echo $text_direction; ?>" xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
|
19 |
+
<head>
|
20 |
+
<!--[if gte mso 15]>
|
21 |
+
<xml>
|
22 |
+
<o:OfficeDocumentSettings>
|
23 |
+
<o:AllowPNG/>
|
24 |
+
<o:PixelsPerInch>96</o:PixelsPerInch>
|
25 |
+
</o:OfficeDocumentSettings>
|
26 |
+
</xml>
|
27 |
+
<![endif]-->
|
28 |
+
<meta charset="UTF-8">
|
29 |
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
30 |
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
31 |
+
<title><?php echo get_bloginfo( 'name' ); ?></title>
|
32 |
+
<style type="text/css">
|
33 |
+
p{
|
34 |
+
margin:10px 0;
|
35 |
+
padding:0;
|
36 |
+
}
|
37 |
+
table{
|
38 |
+
border-collapse:collapse;
|
39 |
+
}
|
40 |
+
h1,h2,h3,h4,h5,h6{
|
41 |
+
display:block;
|
42 |
+
margin:0;
|
43 |
+
padding:0;
|
44 |
+
}
|
45 |
+
img,a img{
|
46 |
+
border:0;
|
47 |
+
height:auto;
|
48 |
+
outline:none;
|
49 |
+
text-decoration:none;
|
50 |
+
}
|
51 |
+
body,#bodyTable,#bodyCell{
|
52 |
+
height:100%;
|
53 |
+
margin:0;
|
54 |
+
padding:0;
|
55 |
+
width:100%;
|
56 |
+
}
|
57 |
+
#outlook a{
|
58 |
+
padding:0;
|
59 |
+
}
|
60 |
+
img{
|
61 |
+
-ms-interpolation-mode:bicubic;
|
62 |
+
}
|
63 |
+
table{
|
64 |
+
mso-table-lspace:0pt;
|
65 |
+
mso-table-rspace:0pt;
|
66 |
+
}
|
67 |
+
.ReadMsgBody{
|
68 |
+
width:100%;
|
69 |
+
}
|
70 |
+
.ExternalClass{
|
71 |
+
width:100%;
|
72 |
+
}
|
73 |
+
p,a,li,td,blockquote{
|
74 |
+
mso-line-height-rule:exactly;
|
75 |
+
}
|
76 |
+
a[href^=tel],a[href^=sms]{
|
77 |
+
color:inherit;
|
78 |
+
cursor:default;
|
79 |
+
text-decoration:none;
|
80 |
+
}
|
81 |
+
p,a,li,td,body,table,blockquote{
|
82 |
+
-ms-text-size-adjust:100%;
|
83 |
+
-webkit-text-size-adjust:100%;
|
84 |
+
}
|
85 |
+
.ExternalClass,.ExternalClass p,.ExternalClass td,.ExternalClass div,.ExternalClass span,.ExternalClass font{
|
86 |
+
line-height:100%;
|
87 |
+
}
|
88 |
+
a[x-apple-data-detectors]{
|
89 |
+
color:inherit !important;
|
90 |
+
text-decoration:none !important;
|
91 |
+
font-size:inherit !important;
|
92 |
+
font-family:inherit !important;
|
93 |
+
font-weight:inherit !important;
|
94 |
+
line-height:inherit !important;
|
95 |
+
}
|
96 |
+
#bodyCell{
|
97 |
+
padding:50px 50px;
|
98 |
+
}
|
99 |
+
.templateContainer{
|
100 |
+
max-width:600px !important;
|
101 |
+
border:0;
|
102 |
+
}
|
103 |
+
a.mcnButton{
|
104 |
+
display:block;
|
105 |
+
}
|
106 |
+
.mcnTextContent{
|
107 |
+
word-break:break-word;
|
108 |
+
}
|
109 |
+
.mcnTextContent img{
|
110 |
+
height:auto !important;
|
111 |
+
}
|
112 |
+
.mcnDividerBlock{
|
113 |
+
table-layout:fixed !important;
|
114 |
+
}
|
115 |
+
/***** Make theme edits below if needed *****/
|
116 |
+
/* Page - Background Style */
|
117 |
+
body,#bodyTable{
|
118 |
+
background-color:<?php echo $background_color; ?>;
|
119 |
+
}
|
120 |
+
/* Page - Heading 1 */
|
121 |
+
h1{
|
122 |
+
color:#202020;
|
123 |
+
font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
|
124 |
+
font-size:26px;
|
125 |
+
font-style:normal;
|
126 |
+
font-weight:bold;
|
127 |
+
line-height:125%;
|
128 |
+
letter-spacing:normal;
|
129 |
+
}
|
130 |
+
/* Page - Heading 2 */
|
131 |
+
h2{
|
132 |
+
color:#202020;
|
133 |
+
font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
|
134 |
+
font-size:22px;
|
135 |
+
font-style:normal;
|
136 |
+
font-weight:bold;
|
137 |
+
line-height:125%;
|
138 |
+
letter-spacing:normal;
|
139 |
+
}
|
140 |
+
/* Page - Heading 3 */
|
141 |
+
h3{
|
142 |
+
color:#202020;
|
143 |
+
font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
|
144 |
+
font-size:20px;
|
145 |
+
font-style:normal;
|
146 |
+
font-weight:bold;
|
147 |
+
line-height:125%;
|
148 |
+
letter-spacing:normal;
|
149 |
+
}
|
150 |
+
/* Page - Heading 4 */
|
151 |
+
h4{
|
152 |
+
color:#202020;
|
153 |
+
font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
|
154 |
+
font-size:18px;
|
155 |
+
font-style:normal;
|
156 |
+
font-weight:bold;
|
157 |
+
line-height:125%;
|
158 |
+
letter-spacing:normal;
|
159 |
+
}
|
160 |
+
/* Header - Header Style */
|
161 |
+
#templateHeader{
|
162 |
+
border-top:0;
|
163 |
+
border-bottom:0;
|
164 |
+
padding-top:0;
|
165 |
+
padding-bottom:20px;
|
166 |
+
text-align: center;
|
167 |
+
}
|
168 |
+
/* Body - Body Style */
|
169 |
+
#templateBody{
|
170 |
+
background-color:#FFFFFF;
|
171 |
+
border-top:0;
|
172 |
+
border: 1px solid #c1c1c1;
|
173 |
+
padding-top:0;
|
174 |
+
padding-bottom:0px;
|
175 |
+
}
|
176 |
+
/* Body -Body Text */
|
177 |
+
#templateBody .mcnTextContent,
|
178 |
+
#templateBody .mcnTextContent p{
|
179 |
+
color:#555555;
|
180 |
+
font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
|
181 |
+
font-size:14px;
|
182 |
+
line-height:150%;
|
183 |
+
}
|
184 |
+
/* Body - Body Link */
|
185 |
+
#templateBody .mcnTextContent a,
|
186 |
+
#templateBody .mcnTextContent p a{
|
187 |
+
color:#ff7f50;
|
188 |
+
font-weight:normal;
|
189 |
+
text-decoration:underline;
|
190 |
+
}
|
191 |
+
/* Footer - Footer Style */
|
192 |
+
#templateFooter{
|
193 |
+
background-color:<?php echo $background_color; ?>;
|
194 |
+
border-top:0;
|
195 |
+
border-bottom:0;
|
196 |
+
padding-top:12px;
|
197 |
+
padding-bottom:12px;
|
198 |
+
}
|
199 |
+
/* Footer - Footer Text */
|
200 |
+
#templateFooter .mcnTextContent,
|
201 |
+
#templateFooter .mcnTextContent p{
|
202 |
+
color:#cccccc;
|
203 |
+
font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;
|
204 |
+
font-size:12px;
|
205 |
+
line-height:150%;
|
206 |
+
text-align:center;
|
207 |
+
}
|
208 |
+
/* Footer - Footer Link */
|
209 |
+
#templateFooter .mcnTextContent a,
|
210 |
+
#templateFooter .mcnTextContent p a{
|
211 |
+
color:#cccccc;
|
212 |
+
font-weight:normal;
|
213 |
+
text-decoration:underline;
|
214 |
+
}
|
215 |
+
@media only screen and (min-width:768px){
|
216 |
+
.templateContainer{
|
217 |
+
width:600px !important;
|
218 |
+
}
|
219 |
+
}
|
220 |
+
@media only screen and (max-width: 480px){
|
221 |
+
body,table,td,p,a,li,blockquote{
|
222 |
+
-webkit-text-size-adjust:none !important;
|
223 |
+
}
|
224 |
+
}
|
225 |
+
@media only screen and (max-width: 480px){
|
226 |
+
body{
|
227 |
+
width:100% !important;
|
228 |
+
min-width:100% !important;
|
229 |
+
}
|
230 |
+
}
|
231 |
+
@media only screen and (max-width: 680px){
|
232 |
+
#bodyCell{
|
233 |
+
padding:20px 20px !important;
|
234 |
+
}
|
235 |
+
}
|
236 |
+
@media only screen and (max-width: 480px){
|
237 |
+
.mcnTextContentContainer{
|
238 |
+
max-width:100% !important;
|
239 |
+
width:100% !important;
|
240 |
+
}
|
241 |
+
}
|
242 |
+
</style>
|
243 |
+
</head>
|
244 |
+
<body style="height: 100%;margin: 0;padding: 0;width: 100%;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;background-color: <?php echo $background_color; ?>;">
|
245 |
+
<!-- Don't forget to run final template through http://templates.mailchimp.com/resources/inline-css/ -->
|
246 |
+
<center>
|
247 |
+
<table align="center" border="0" cellpadding="0" cellspacing="0" height="100%" width="100%" id="bodyTable" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;height: 100%;margin: 0;padding: 0;width: 100%;background-color: <?php echo $background_color; ?>;">
|
248 |
+
<tr>
|
249 |
+
<td align="center" valign="top" id="bodyCell" style="mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;height: 100%;margin: 0;padding: 50px 50px;width: 100%;">
|
250 |
+
<!-- BEGIN TEMPLATE // -->
|
251 |
+
<!--[if gte mso 9]>
|
252 |
+
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600" style="width:600px;">
|
253 |
+
<tr>
|
254 |
+
<td align="center" valign="top" width="600" style="width:600px;">
|
255 |
+
<![endif]-->
|
256 |
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="templateContainer" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;border: 0;max-width: 600px !important;">
|
257 |
+
<?php
|
258 |
+
if ( ! empty( $header_image ) ) {
|
259 |
+
echo '<tr><td valign="top" align="center" id="templateHeader" style="padding-bottom:20px;text-align:center;">';
|
260 |
+
echo '<img src="' . esc_url( $header_image ) . '" alt="' . esc_attr( get_bloginfo( 'name' ) ) . '" />';
|
261 |
+
echo '</td></tr>';
|
262 |
+
}
|
263 |
+
?>
|
264 |
+
<tr>
|
265 |
+
<td valign="top" id="templateBody" style="mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;background-color: #FFFFFF;border-top: 0;border: 1px solid #c1c1c1;padding-top: 0;padding-bottom: 0px;">
|
266 |
+
<table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width: 100%;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
|
267 |
+
<tbody class="mcnTextBlockOuter">
|
268 |
+
<tr>
|
269 |
+
<td valign="top" class="mcnTextBlockInner" style="mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
|
270 |
+
<table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width: 100%;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;" class="mcnTextContentContainer">
|
271 |
+
<tbody>
|
272 |
+
<tr>
|
273 |
+
<td valign="top" style="padding-top: 30px;padding-right: 30px;padding-bottom: 30px;padding-left: 30px;" class="mcnTextContent">
|
includes/frontend/frontend.php
CHANGED
@@ -108,7 +108,7 @@ add_filter( 'the_permalink_rss', 'exactmetrics_rss_link_tagger', 99 );
|
|
108 |
* Checks used for loading the frontend scripts/admin bar button.
|
109 |
*/
|
110 |
function exactmetrics_prevent_loading_frontend_reports() {
|
111 |
-
return ! current_user_can( 'exactmetrics_view_dashboard' ) || exactmetrics_get_option( 'hide_admin_bar_reports' ) || function_exists( 'exactmetrics_is_reports_page' ) && exactmetrics_is_reports_page();
|
112 |
}
|
113 |
|
114 |
/**
|
@@ -173,6 +173,7 @@ function exactmetrics_frontend_admin_bar_scripts() {
|
|
173 |
|
174 |
// Check if any of the other admin scripts are enqueued, if so, use their object.
|
175 |
if ( ! wp_script_is( 'exactmetrics-vue-script' ) && ! wp_script_is( 'exactmetrics-vue-reports' ) && ! wp_script_is( 'exactmetrics-vue-widget' ) ) {
|
|
|
176 |
wp_localize_script(
|
177 |
'exactmetrics-vue-frontend',
|
178 |
'exactmetrics',
|
@@ -189,10 +190,10 @@ function exactmetrics_frontend_admin_bar_scripts() {
|
|
189 |
'shareasale_id' => exactmetrics_get_shareasale_id(),
|
190 |
'shareasale_url' => exactmetrics_get_shareasale_url( exactmetrics_get_shareasale_id(), '' ),
|
191 |
'is_admin' => is_admin(),
|
192 |
-
'reports_url' =>
|
193 |
'authed' => $site_auth || $ms_auth,
|
194 |
'getting_started_url' => is_multisite() ? network_admin_url( 'admin.php?page=exactmetrics_network#/about/getting-started' ) : admin_url( 'admin.php?page=exactmetrics_settings#/about/getting-started' ),
|
195 |
-
'wizard_url' => admin_url( 'index.php?page=exactmetrics-onboarding' ),
|
196 |
)
|
197 |
);
|
198 |
}
|
108 |
* Checks used for loading the frontend scripts/admin bar button.
|
109 |
*/
|
110 |
function exactmetrics_prevent_loading_frontend_reports() {
|
111 |
+
return ! current_user_can( 'exactmetrics_view_dashboard' ) || exactmetrics_get_option( 'hide_admin_bar_reports' ) || function_exists( 'exactmetrics_is_reports_page' ) && exactmetrics_is_reports_page() || function_exists( 'exactmetrics_is_settings_page' ) && exactmetrics_is_settings_page();
|
112 |
}
|
113 |
|
114 |
/**
|
173 |
|
174 |
// Check if any of the other admin scripts are enqueued, if so, use their object.
|
175 |
if ( ! wp_script_is( 'exactmetrics-vue-script' ) && ! wp_script_is( 'exactmetrics-vue-reports' ) && ! wp_script_is( 'exactmetrics-vue-widget' ) ) {
|
176 |
+
$reports_url = is_network_admin() ? add_query_arg( 'page', 'exactmetrics_reports', network_admin_url( 'admin.php' ) ) : add_query_arg( 'page', 'exactmetrics_reports', admin_url( 'admin.php' ) );
|
177 |
wp_localize_script(
|
178 |
'exactmetrics-vue-frontend',
|
179 |
'exactmetrics',
|
190 |
'shareasale_id' => exactmetrics_get_shareasale_id(),
|
191 |
'shareasale_url' => exactmetrics_get_shareasale_url( exactmetrics_get_shareasale_id(), '' ),
|
192 |
'is_admin' => is_admin(),
|
193 |
+
'reports_url' => $reports_url,
|
194 |
'authed' => $site_auth || $ms_auth,
|
195 |
'getting_started_url' => is_multisite() ? network_admin_url( 'admin.php?page=exactmetrics_network#/about/getting-started' ) : admin_url( 'admin.php?page=exactmetrics_settings#/about/getting-started' ),
|
196 |
+
'wizard_url' => is_network_admin() ? network_admin_url( 'index.php?page=exactmetrics-onboarding' ) : admin_url( 'index.php?page=exactmetrics-onboarding' ),
|
197 |
)
|
198 |
);
|
199 |
}
|
includes/frontend/tracking/class-tracking-analytics.php
CHANGED
@@ -128,7 +128,7 @@ class ExactMetrics_Tracking_Analytics extends ExactMetrics_Tracking_Abstract {
|
|
128 |
}
|
129 |
|
130 |
// Add Enhanced link attribution.
|
131 |
-
if ( exactmetrics_get_option( '
|
132 |
$options['enhanced_link_attribution'] = "'require', 'linkid', 'linkid.js'";
|
133 |
}
|
134 |
|
128 |
}
|
129 |
|
130 |
// Add Enhanced link attribution.
|
131 |
+
if ( exactmetrics_get_option( 'link_attribution', false ) ) {
|
132 |
$options['enhanced_link_attribution'] = "'require', 'linkid', 'linkid.js'";
|
133 |
}
|
134 |
|
includes/helpers.php
CHANGED
@@ -615,6 +615,7 @@ function exactmetrics_get_country_list( $translated = false ) {
|
|
615 |
'YE' => __( 'Yemen', 'google-analytics-dashboard-for-wp' ),
|
616 |
'ZM' => __( 'Zambia', 'google-analytics-dashboard-for-wp' ),
|
617 |
'ZW' => __( 'Zimbabwe', 'google-analytics-dashboard-for-wp' ),
|
|
|
618 |
);
|
619 |
} else {
|
620 |
$countries = array(
|
@@ -871,6 +872,7 @@ function exactmetrics_get_country_list( $translated = false ) {
|
|
871 |
'YE' => 'Yemen',
|
872 |
'ZM' => 'Zambia',
|
873 |
'ZW' => 'Zimbabwe',
|
|
|
874 |
);
|
875 |
}
|
876 |
return $countries;
|
@@ -1070,9 +1072,9 @@ function exactmetrics_get_inline_menu_icon() {
|
|
1070 |
$scheme = get_user_option( 'admin_color', get_current_user_id() );
|
1071 |
$use_dark_scheme = $scheme === 'light';
|
1072 |
if ( $use_dark_scheme ) {
|
1073 |
-
return 'data:image/png;base64,
|
1074 |
} else {
|
1075 |
-
return 'data:image/png;base64,
|
1076 |
}
|
1077 |
}
|
1078 |
|
@@ -1191,7 +1193,14 @@ function exactmetrics_is_code_installed_frontend() {
|
|
1191 |
) );
|
1192 |
$errors = array();
|
1193 |
|
1194 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1195 |
|
1196 |
$body = wp_remote_retrieve_body( $request );
|
1197 |
$current_ua_code = exactmetrics_get_ua_to_output();
|
@@ -1202,8 +1211,17 @@ function exactmetrics_is_code_installed_frontend() {
|
|
1202 |
}
|
1203 |
// Translators: The placeholders are for making the "We noticed you're using a caching plugin" text bold.
|
1204 |
$cache_error = sprintf( esc_html__( '%1$sWe noticed you\'re using a caching plugin or caching from your hosting provider.%2$s Be sure to clear the cache to ensure the tracking appears on all pages and posts. %3$s(See this guide on how to clear cache)%4$s.', 'google-analytics-dashboard-for-wp' ), '<b>', '</b>', ' <a href="https://www.wpbeginner.com/beginners-guide/how-to-clear-your-cache-in-wordpress/" target="_blank">', '</a>' );
|
|
|
1205 |
// Translators: The placeholders are for making the "We have detected multiple tracking codes" text bold & adding a link to support.
|
1206 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1207 |
|
1208 |
// First, check if the tracking frontend code is present.
|
1209 |
if ( false === strpos( $body, '__gaTracker' ) ) {
|
@@ -1214,6 +1232,14 @@ function exactmetrics_is_code_installed_frontend() {
|
|
1214 |
// We have the tracking code but using another UA, so it's cached.
|
1215 |
$errors[] = $cache_error;
|
1216 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1217 |
// Grab all the UA codes from the page.
|
1218 |
$pattern = '/UA-[0-9]+/m';
|
1219 |
preg_match_all( $pattern, $body, $matches );
|
@@ -1294,4 +1320,181 @@ function exactmetrics_custom_track_pretty_links_redirect( $url ) {
|
|
1294 |
);
|
1295 |
exactmetrics_mp_track_event_call( $track_args );
|
1296 |
}
|
1297 |
-
add_action( 'prli_before_redirect', 'exactmetrics_custom_track_pretty_links_redirect' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
615 |
'YE' => __( 'Yemen', 'google-analytics-dashboard-for-wp' ),
|
616 |
'ZM' => __( 'Zambia', 'google-analytics-dashboard-for-wp' ),
|
617 |
'ZW' => __( 'Zimbabwe', 'google-analytics-dashboard-for-wp' ),
|
618 |
+
'ZZ' => __( 'Unknown Country', 'google-analytics-dashboard-for-wp' ),
|
619 |
);
|
620 |
} else {
|
621 |
$countries = array(
|
872 |
'YE' => 'Yemen',
|
873 |
'ZM' => 'Zambia',
|
874 |
'ZW' => 'Zimbabwe',
|
875 |
+
'ZZ' => 'Unknown Country',
|
876 |
);
|
877 |
}
|
878 |
return $countries;
|
1072 |
$scheme = get_user_option( 'admin_color', get_current_user_id() );
|
1073 |
$use_dark_scheme = $scheme === 'light';
|
1074 |
if ( $use_dark_scheme ) {
|
1075 |
+
return 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACYAAAAlCAMAAAAZd2syAAAAAXNSR0IB2cksfwAAAAlwSFlzAAAWJQAAFiUBSVIk8AAAAapQTFRFAAAA////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////3hTzAgAAAI50Uk5TACVrdjwKgvj/pCBP4Px5AzXA84Fg31oUl/6+HA6D97wiAWTq2kewmB8+yO8HWWFGbV46BnoeTHN7U72OyZqTuvucEWno20DYFm/X3BWU7QlWHdBXiKLlLWK7uFvsC4DdE9lBNGyMwagwEBsZPycMzYT2fUj0zFw5NhhV3ku/qhKzpcNO4+TxDQ+FlqHueGDblssAAAHSSURBVHicY2AYPICRiZmFoCJWNnYODg5OLvyquHk4wICXjx+3IgFBoAohYRFRICUqhkORuIQkUFpKmoFBRlYOyJJXwKJIUUkZKKWiCuFxqYGsVtdAV6WpBRTW5tOBC+iCbdZDVaUvDAQGrChihmCFRri9AgXGJtpAG0AsUy4MYGZuYSkNVchlxcEBpKw5MIGNrZ29g6MTRJ0zWJkLhiJXN5Cshq27B5IyTy9vFCDp6gO1ztceSRka4PIDxqU/d0AgkAwKRlGmiOSLkFBg3HtxcISFMzBERKIoi0J2GTA0o0G0FdB5McjKYiWRlVkyMMSB6HgGhgQHFNPYEkXhQJuJgSEJpAxoeTIPTi+kAC1jSOXgSAP6wTMdXZkizAsZ2qAYzMwCEtmiOejKpBCOc8mFCOXlF6CHmwyyJwqLxBkYdIq9rBnQlaH4QlRU0su9pLSMAVMZKpApr6iEObrKBacyhM/C5YGuqEYWqrGqra2tQ8md9akOHBySDdIoWrl8gTolG+EKneKAKVfSShPDDq4mUDZOBaczxeYWIKdVF6tjINm4jEFRoBbIaItrx+Hojk5QASLYBUwOkulZeHzH1Q1OMZLumI5CBUbVkpI9vToEVJENAOVRStPJFiL7AAAAAElFTkSuQmCC';
|
1076 |
} else {
|
1077 |
+
return 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACYAAAAlCAMAAAAZd2syAAAAAXNSR0IB2cksfwAAAAlwSFlzAAAWJQAAFiUBSVIk8AAAAapQTFRFAAAA////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////3hTzAgAAAI50Uk5TACVrdjwKgvj/pCBP4Px5AzXA84Fg31oUl/6+HA6D97wiAWTq2kewmB8+yO8HWWFGbV46BnoeTHN7U72OyZqTuvucEWno20DYFm/X3BWU7QlWHdBXiKLlLWK7uFvsC4DdE9lBNGyMwagwEBsZPycMzYT2fUj0zFw5NhhV3ku/qhKzpcNO4+TxDQ+FlqHueGDblssAAAHSSURBVHicY2AYPICRiZmFoCJWNnYODg5OLvyquHk4wICXjx+3IgFBoAohYRFRICUqhkORuIQkUFpKmoFBRlYOyJJXwKJIUUkZKKWiCuFxqYGsVtdAV6WpBRTW5tOBC+iCbdZDVaUvDAQGrChihmCFRri9AgXGJtpAG0AsUy4MYGZuYSkNVchlxcEBpKw5MIGNrZ29g6MTRJ0zWJkLhiJXN5Cshq27B5IyTy9vFCDp6gO1ztceSRka4PIDxqU/d0AgkAwKRlGmiOSLkFBg3HtxcISFMzBERKIoi0J2GTA0o0G0FdB5McjKYiWRlVkyMMSB6HgGhgQHFNPYEkXhQJuJgSEJpAxoeTIPTi+kAC1jSOXgSAP6wTMdXZkizAsZ2qAYzMwCEtmiOejKpBCOc8mFCOXlF6CHmwyyJwqLxBkYdIq9rBnQlaH4QlRU0su9pLSMAVMZKpApr6iEObrKBacyhM/C5YGuqEYWqrGqra2tQ8md9akOHBySDdIoWrl8gTolG+EKneKAKVfSShPDDq4mUDZOBaczxeYWIKdVF6tjINm4jEFRoBbIaItrx+Hojk5QASLYBUwOkulZeHzH1Q1OMZLumI5CBUbVkpI9vToEVJENAOVRStPJFiL7AAAAAElFTkSuQmCC';
|
1078 |
}
|
1079 |
}
|
1080 |
|
1193 |
) );
|
1194 |
$errors = array();
|
1195 |
|
1196 |
+
$accepted_http_codes = array(
|
1197 |
+
200,
|
1198 |
+
503
|
1199 |
+
);
|
1200 |
+
|
1201 |
+
$response_code = wp_remote_retrieve_response_code( $request );
|
1202 |
+
|
1203 |
+
if ( in_array( $response_code, $accepted_http_codes, true ) ) {
|
1204 |
|
1205 |
$body = wp_remote_retrieve_body( $request );
|
1206 |
$current_ua_code = exactmetrics_get_ua_to_output();
|
1211 |
}
|
1212 |
// Translators: The placeholders are for making the "We noticed you're using a caching plugin" text bold.
|
1213 |
$cache_error = sprintf( esc_html__( '%1$sWe noticed you\'re using a caching plugin or caching from your hosting provider.%2$s Be sure to clear the cache to ensure the tracking appears on all pages and posts. %3$s(See this guide on how to clear cache)%4$s.', 'google-analytics-dashboard-for-wp' ), '<b>', '</b>', ' <a href="https://www.wpbeginner.com/beginners-guide/how-to-clear-your-cache-in-wordpress/" target="_blank">', '</a>' );
|
1214 |
+
|
1215 |
// Translators: The placeholders are for making the "We have detected multiple tracking codes" text bold & adding a link to support.
|
1216 |
+
$message = esc_html__( '%1$sWe have detected multiple tracking codes%2$s! You should remove non-ExactMetrics ones. If you need help finding them please %3$sread this article%4$s.', 'google-analytics-dashboard-for-wp' );
|
1217 |
+
$url = exactmetrics_get_url( 'site-health', 'comingsoon', 'https://www.exactmetrics.com/docs/how-to-find-duplicate-google-analytics-tracking-codes-in-wordpress/' );
|
1218 |
+
$multiple_ua_error = sprintf(
|
1219 |
+
$message,
|
1220 |
+
'<b>',
|
1221 |
+
'</b>',
|
1222 |
+
'<a href="' . $url . '" target="_blank">',
|
1223 |
+
'</a>'
|
1224 |
+
);
|
1225 |
|
1226 |
// First, check if the tracking frontend code is present.
|
1227 |
if ( false === strpos( $body, '__gaTracker' ) ) {
|
1232 |
// We have the tracking code but using another UA, so it's cached.
|
1233 |
$errors[] = $cache_error;
|
1234 |
}
|
1235 |
+
|
1236 |
+
// Grab all potential google site verification tags
|
1237 |
+
$pattern = '/content="UA-[0-9-]+"/';
|
1238 |
+
if ( preg_match_all( $pattern, $body, $matches ) ) {
|
1239 |
+
// Raise the number of UA limits
|
1240 |
+
$ua_limit += count( $matches[0] );
|
1241 |
+
}
|
1242 |
+
|
1243 |
// Grab all the UA codes from the page.
|
1244 |
$pattern = '/UA-[0-9]+/m';
|
1245 |
preg_match_all( $pattern, $body, $matches );
|
1320 |
);
|
1321 |
exactmetrics_mp_track_event_call( $track_args );
|
1322 |
}
|
1323 |
+
add_action( 'prli_before_redirect', 'exactmetrics_custom_track_pretty_links_redirect' );
|
1324 |
+
|
1325 |
+
/**
|
1326 |
+
* Decode special characters, both alpha- (<) and numeric-based (').
|
1327 |
+
*
|
1328 |
+
* @since 7.10.5
|
1329 |
+
*
|
1330 |
+
* @param string $string Raw string to decode.
|
1331 |
+
*
|
1332 |
+
* @return string
|
1333 |
+
*/
|
1334 |
+
function exactmetrics_decode_string( $string ) {
|
1335 |
+
|
1336 |
+
if ( ! is_string( $string ) ) {
|
1337 |
+
return $string;
|
1338 |
+
}
|
1339 |
+
|
1340 |
+
return wp_kses_decode_entities( html_entity_decode( $string, ENT_QUOTES ) );
|
1341 |
+
}
|
1342 |
+
|
1343 |
+
add_filter( 'exactmetrics_email_message', 'exactmetrics_decode_string' );
|
1344 |
+
|
1345 |
+
/**
|
1346 |
+
* Sanitize a string, that can be a multiline.
|
1347 |
+
* If WP core `sanitize_textarea_field()` exists (after 4.7.0) - use it.
|
1348 |
+
* Otherwise - split onto separate lines, sanitize each one, merge again.
|
1349 |
+
*
|
1350 |
+
* @since 7.10.5
|
1351 |
+
*
|
1352 |
+
* @param string $string
|
1353 |
+
*
|
1354 |
+
* @return string If empty var is passed, or not a string - return unmodified. Otherwise - sanitize.
|
1355 |
+
*/
|
1356 |
+
function exactmetrics_sanitize_textarea_field( $string ) {
|
1357 |
+
|
1358 |
+
if ( empty( $string ) || ! is_string( $string ) ) {
|
1359 |
+
return $string;
|
1360 |
+
}
|
1361 |
+
|
1362 |
+
if ( function_exists( 'sanitize_textarea_field' ) ) {
|
1363 |
+
$string = sanitize_textarea_field( $string );
|
1364 |
+
} else {
|
1365 |
+
$string = implode( "\n", array_map( 'sanitize_text_field', explode( "\n", $string ) ) );
|
1366 |
+
}
|
1367 |
+
|
1368 |
+
return $string;
|
1369 |
+
}
|
1370 |
+
|
1371 |
+
/**
|
1372 |
+
* Trim a sentence
|
1373 |
+
*
|
1374 |
+
* @since 7.10.5
|
1375 |
+
*
|
1376 |
+
* @param string $string
|
1377 |
+
* @param int $count
|
1378 |
+
*
|
1379 |
+
* @return trimed sentence
|
1380 |
+
*/
|
1381 |
+
function exactmetrics_trim_text( $text, $count ){
|
1382 |
+
$text = str_replace(" ", " ", $text);
|
1383 |
+
$string = explode(" ", $text);
|
1384 |
+
$trimed = "";
|
1385 |
+
|
1386 |
+
for ( $wordCounter = 0; $wordCounter <= $count; $wordCounter++ ) {
|
1387 |
+
$trimed .= $string[$wordCounter];
|
1388 |
+
|
1389 |
+
if ( $wordCounter < $count ){
|
1390 |
+
$trimed .= " ";
|
1391 |
+
} else {
|
1392 |
+
$trimed .= "...";
|
1393 |
+
}
|
1394 |
+
}
|
1395 |
+
|
1396 |
+
$trimed = trim($trimed);
|
1397 |
+
|
1398 |
+
return $trimed;
|
1399 |
+
}
|
1400 |
+
|
1401 |
+
/**
|
1402 |
+
* Add newly generated builder URL to PrettyLinks &
|
1403 |
+
* Clear localStorage key(ExactMetricsURL) after saving PrettyLink
|
1404 |
+
*/
|
1405 |
+
function exactmetrics_tools_copy_url_to_prettylinks() {
|
1406 |
+
global $pagenow;
|
1407 |
+
|
1408 |
+
$post_type = isset( $_GET['post_type'] ) ? $_GET['post_type'] : '';
|
1409 |
+
$exactmetrics_reference = isset( $_GET['exactmetrics_reference'] ) ? $_GET['exactmetrics_reference'] : '';
|
1410 |
+
|
1411 |
+
if ( 'post-new.php' === $pagenow && 'pretty-link' === $post_type && 'url_builder' === $exactmetrics_reference ) { ?>
|
1412 |
+
<script>
|
1413 |
+
let targetTitleField = document.querySelector("input[name='post_title']");
|
1414 |
+
let targetUrlField = document.querySelector("textarea[name='prli_url']");
|
1415 |
+
let monsterInsightsUrl = JSON.parse(localStorage.getItem('ExactMetricsURL'));
|
1416 |
+
if ( 'undefined' !== typeof targetUrlField && 'undefined' !== typeof monsterInsightsUrl ) {
|
1417 |
+
let url = monsterInsightsUrl.value;
|
1418 |
+
let postTitle = '';
|
1419 |
+
let pathArray = url.split('?');
|
1420 |
+
if ( pathArray.length <= 1 ) {
|
1421 |
+
pathArray = url.split('#');
|
1422 |
+
}
|
1423 |
+
let urlParams = new URLSearchParams(pathArray[1]);
|
1424 |
+
if (urlParams.has('utm_campaign')) {
|
1425 |
+
let campaign_name = urlParams.get('utm_campaign');
|
1426 |
+
postTitle += campaign_name;
|
1427 |
+
}
|
1428 |
+
if (urlParams.has('utm_medium')) {
|
1429 |
+
let campaign_medium = urlParams.get('utm_medium');
|
1430 |
+
postTitle += ` ${campaign_medium}`;
|
1431 |
+
}
|
1432 |
+
if (urlParams.has('utm_source')) {
|
1433 |
+
let campaign_source = urlParams.get('utm_source');
|
1434 |
+
postTitle += ` on ${campaign_source}`;
|
1435 |
+
}
|
1436 |
+
if (urlParams.has('utm_term')) {
|
1437 |
+
let campaign_term = urlParams.get('utm_term');
|
1438 |
+
postTitle += ` for ${campaign_term}`;
|
1439 |
+
}
|
1440 |
+
if (urlParams.has('utm_content')) {
|
1441 |
+
let campaign_content = urlParams.get('utm_content');
|
1442 |
+
postTitle += ` - ${campaign_content}`;
|
1443 |
+
}
|
1444 |
+
if ( 'undefined' !== typeof targetTitleField && postTitle ) {
|
1445 |
+
targetTitleField.value = postTitle;
|
1446 |
+
}
|
1447 |
+
if( url ) {
|
1448 |
+
targetUrlField.value = url;
|
1449 |
+
}
|
1450 |
+
}
|
1451 |
+
let form = document.getElementById('post');
|
1452 |
+
form.addEventListener('submit', function(){
|
1453 |
+
localStorage.removeItem('ExactMetricsURL');
|
1454 |
+
});
|
1455 |
+
</script>
|
1456 |
+
<?php }
|
1457 |
+
}
|
1458 |
+
add_action( 'admin_footer', 'exactmetrics_tools_copy_url_to_prettylinks' );
|
1459 |
+
|
1460 |
+
/**
|
1461 |
+
* When click on 'Create New Pretty Link" button(on tools/prettylinks-flow page) after installing & activating prettylinks plugin
|
1462 |
+
* it redirects to PrettyLinks welcome scree page instead of prettylinks add new page.
|
1463 |
+
* This function will skip that welcome screen
|
1464 |
+
*/
|
1465 |
+
function exactmetrics_skip_prettylinks_welcome_screen() {
|
1466 |
+
global $pagenow;
|
1467 |
+
|
1468 |
+
$post_type = isset( $_GET['post_type'] ) ? $_GET['post_type'] : '';
|
1469 |
+
$exactmetrics_reference = isset( $_GET['exactmetrics_reference'] ) ? $_GET['exactmetrics_reference'] : '';
|
1470 |
+
|
1471 |
+
if ( 'post-new.php' === $pagenow && 'pretty-link' === $post_type && 'url_builder' === $exactmetrics_reference ) {
|
1472 |
+
$onboard = get_option( 'prli_onboard' );
|
1473 |
+
|
1474 |
+
if ( $onboard == 'welcome' || $onboard == 'update' ) {
|
1475 |
+
update_option( 'exactmetrics_backup_prli_onboard_value', $onboard );
|
1476 |
+
delete_option( 'prli_onboard' );
|
1477 |
+
}
|
1478 |
+
}
|
1479 |
+
}
|
1480 |
+
add_action( 'wp_loaded', 'exactmetrics_skip_prettylinks_welcome_screen', 9 );
|
1481 |
+
|
1482 |
+
/**
|
1483 |
+
* Restore the `prli_onboard` value after creating a prettylinks with exactmetrics prettylinks flow
|
1484 |
+
* users will see the prettylinks welcome screen after fresh installation & creating prettylinks with exactmetrics prettylinks flow
|
1485 |
+
*/
|
1486 |
+
function exactmetrics_restore_prettylinks_onboard_value() {
|
1487 |
+
global $pagenow;
|
1488 |
+
|
1489 |
+
$post_type = isset( $_GET['post_type'] ) ? $_GET['post_type'] : '';
|
1490 |
+
|
1491 |
+
if ( 'edit.php' === $pagenow && 'pretty-link' === $post_type ) {
|
1492 |
+
$onboard = get_option( 'exactmetrics_backup_prli_onboard_value' );
|
1493 |
+
|
1494 |
+
if ( class_exists( 'PrliBaseController' ) && ( $onboard == 'welcome' || $onboard == 'update' ) ) {
|
1495 |
+
update_option( 'prli_onboard', $onboard );
|
1496 |
+
delete_option( 'exactmetrics_backup_prli_onboard_value' );
|
1497 |
+
}
|
1498 |
+
}
|
1499 |
+
}
|
1500 |
+
add_action( 'wp_loaded', 'exactmetrics_restore_prettylinks_onboard_value', 15 );
|
languages/google-analytics-dashboard-for-wp.pot
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the same license as the ExactMetrics Pro plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: ExactMetrics Pro 6.0
|
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: 2020-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.2.0\n"
|
15 |
"X-Domain: google-analytics-dashboard-for-wp\n"
|
@@ -28,15 +28,16 @@ msgid "Displays Google Analytics Reports and Real-Time Statistics in your Dashbo
|
|
28 |
msgstr ""
|
29 |
|
30 |
#. Author of the plugin
|
31 |
-
#: lite/includes/admin/wp-site-health.php:
|
32 |
-
#: lite/includes/admin/wp-site-health.php:
|
33 |
-
#: lite/includes/admin/wp-site-health.php:
|
34 |
-
#: lite/includes/admin/wp-site-health.php:
|
35 |
-
#: lite/includes/admin/wp-site-health.php:
|
36 |
-
#: lite/includes/admin/wp-site-health.php:
|
37 |
-
#: lite/includes/admin/wp-site-health.php:
|
38 |
-
#: lite/includes/admin/wp-site-health.php:
|
39 |
#: lite/includes/admin/dashboard-widget.php:97
|
|
|
40 |
#: includes/admin/admin.php:31
|
41 |
#: includes/admin/admin.php:34
|
42 |
#: includes/admin/admin.php:42
|
@@ -67,141 +68,141 @@ msgstr ""
|
|
67 |
msgid "ExactMetrics Connection"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: lite/includes/admin/wp-site-health.php:
|
71 |
msgid "Your website is authenticated with ExactMetrics"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: lite/includes/admin/wp-site-health.php:
|
75 |
msgid "ExactMetrics integrates your WordPress website with Google Analytics."
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: lite/includes/admin/wp-site-health.php:
|
79 |
msgid "View Reports"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: lite/includes/admin/wp-site-health.php:
|
83 |
msgid "You are using Manual UA code output"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: lite/includes/admin/wp-site-health.php:
|
87 |
msgid "We highly recommend authenticating with ExactMetrics so that you can access our new reporting area and take advantage of new ExactMetrics features."
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: lite/includes/admin/wp-site-health.php:
|
91 |
-
#: lite/includes/admin/wp-site-health.php:
|
92 |
msgid "Authenticate now"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: lite/includes/admin/wp-site-health.php:
|
96 |
msgid "Please configure your Google Analytics settings"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: lite/includes/admin/wp-site-health.php:
|
100 |
msgid "Your traffic is not being tracked by ExactMetrics at the moment and you are losing data. Authenticate and get access to the reporting area and advanced tracking features."
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: lite/includes/admin/wp-site-health.php:
|
104 |
msgid "ExactMetrics Upgrade not applied"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: lite/includes/admin/wp-site-health.php:
|
108 |
msgid "A valid license has been added to ExactMetrics but you are still using the Lite version."
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: lite/includes/admin/wp-site-health.php:
|
112 |
msgid "Go to License Settings"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: lite/includes/admin/wp-site-health.php:
|
116 |
msgid "Your website is receiving automatic updates"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: lite/includes/admin/wp-site-health.php:
|
120 |
msgid "ExactMetrics automatic updates are enabled and you are getting the latest features, bugfixes, and security updates as they are released."
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: lite/includes/admin/wp-site-health.php:
|
124 |
msgid "Your website is receiving minor updates"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: lite/includes/admin/wp-site-health.php:
|
128 |
msgid "ExactMetrics minor updates are enabled and you are getting the latest bugfixes and security updates, but not major features."
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: lite/includes/admin/wp-site-health.php:
|
132 |
msgid "Automatic updates are disabled"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: lite/includes/admin/wp-site-health.php:
|
136 |
msgid "ExactMetrics automatic updates are disabled. We recommend enabling automatic updates so you can get access to the latest features, bugfixes, and security updates as they are released."
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: lite/includes/admin/wp-site-health.php:
|
140 |
msgid "Update Settings"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: lite/includes/admin/wp-site-health.php:
|
144 |
msgid "eCommerce data is not being tracked"
|
145 |
msgstr ""
|
146 |
|
147 |
#. Translators: The eCommerce store currently active.
|
148 |
-
#: lite/includes/admin/wp-site-health.php:
|
149 |
msgid "You are using %s but the ExactMetrics eCommerce addon is not active, please Install & Activate it to start tracking eCommerce data."
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: lite/includes/admin/wp-site-health.php:
|
153 |
-
#: lite/includes/admin/wp-site-health.php:
|
154 |
-
#: lite/includes/admin/wp-site-health.php:
|
155 |
-
#: languages/vue.php:
|
156 |
msgid "View Addons"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: lite/includes/admin/wp-site-health.php:
|
160 |
msgid "AMP pages are not being tracked"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: lite/includes/admin/wp-site-health.php:
|
164 |
msgid "Your website has Google AMP-enabled pages set up but they are not tracked by Google Analytics at the moment. You need to Install & Activate the ExactMetrics AMP Addon."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: lite/includes/admin/wp-site-health.php:
|
168 |
msgid "Facebook Instant Articles pages are not being tracked"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: lite/includes/admin/wp-site-health.php:
|
172 |
msgid "Your website has Facebook Instant Articles pages set up but they are not tracked by Google Analytics at the moment. You need to Install & Activate the ExactMetrics Facebook Instant Articles Addon."
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: lite/includes/admin/wp-site-health.php:
|
176 |
msgid "Can connect to ExactMetrics.com correctly"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: lite/includes/admin/wp-site-health.php:
|
180 |
msgid "The ExactMetrics API is reachable and no connection issues have been detected."
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: lite/includes/admin/wp-site-health.php:
|
184 |
msgid "The ExactMetrics server is not reachable."
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: lite/includes/admin/wp-site-health.php:
|
188 |
msgid "Your server is blocking external requests to exactmetrics.com, please check your firewall settings or contact your host for more details."
|
189 |
msgstr ""
|
190 |
|
191 |
#. Translators: The error message received.
|
192 |
-
#: lite/includes/admin/wp-site-health.php:
|
193 |
msgid "Error message: %s"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: lite/includes/admin/wp-site-health.php:
|
197 |
msgid "Tracking code is properly being output."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: lite/includes/admin/wp-site-health.php:
|
201 |
msgid "The Google Analytics tracking code is being output correctly, and no duplicate Google Analytics scripts have been detected."
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: lite/includes/admin/wp-site-health.php:
|
205 |
msgid "ExactMetrics has automatically detected an issue with your tracking setup"
|
206 |
msgstr ""
|
207 |
|
@@ -229,21 +230,21 @@ msgstr ""
|
|
229 |
msgid "Pro version is already installed."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: lite/includes/admin/connect.php:
|
233 |
msgid "Could not install upgrade. Please download from exactmetrics.com and install manually."
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: lite/includes/admin/connect.php:135
|
237 |
#: lite/includes/admin/connect.php:141
|
238 |
-
#: lite/includes/admin/connect.php:
|
|
|
239 |
msgid "Plugin installed & activated."
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: lite/includes/admin/connect.php:
|
243 |
msgid "You are not licensed."
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: lite/includes/admin/connect.php:
|
247 |
msgid "Pro version installed but needs to be activated from the Plugins page inside your WordPress admin."
|
248 |
msgstr ""
|
249 |
|
@@ -288,25 +289,25 @@ msgstr ""
|
|
288 |
msgid "Upgrade to ExactMetrics Pro"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: lite/includes/admin/onboarding-wizard.php:
|
292 |
msgid "ExactMetrics › Onboarding Wizard"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: lite/includes/admin/onboarding-wizard.php:
|
296 |
msgid "Return to Dashboard"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: lite/includes/admin/onboarding-wizard.php:
|
300 |
msgid "You are not allowed to install plugins"
|
301 |
msgstr ""
|
302 |
|
303 |
#: lite/includes/admin/reports/report-queries.php:22
|
304 |
-
#: languages/vue.php:
|
305 |
msgid "Search Console"
|
306 |
msgstr ""
|
307 |
|
308 |
#: lite/includes/admin/reports/report-ecommerce.php:22
|
309 |
-
#: languages/vue.php:
|
310 |
msgid "eCommerce"
|
311 |
msgstr ""
|
312 |
|
@@ -319,22 +320,22 @@ msgid "Real Time"
|
|
319 |
msgstr ""
|
320 |
|
321 |
#: lite/includes/admin/reports/report-publisher.php:22
|
322 |
-
#: languages/vue.php:
|
323 |
msgid "Publishers"
|
324 |
msgstr ""
|
325 |
|
326 |
#: lite/includes/admin/reports/report-dimensions.php:22
|
327 |
-
#: languages/vue.php:
|
328 |
msgid "Dimensions"
|
329 |
msgstr ""
|
330 |
|
331 |
#: lite/includes/admin/reports/report-forms.php:22
|
332 |
-
#: languages/vue.php:
|
333 |
msgid "Forms"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: lite/includes/admin/welcome.php:
|
337 |
-
#: lite/includes/admin/welcome.php:
|
338 |
msgid "Welcome to ExactMetrics"
|
339 |
msgstr ""
|
340 |
|
@@ -362,6 +363,15 @@ msgstr ""
|
|
362 |
msgid "because you are not being tracked."
|
363 |
msgstr ""
|
364 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
365 |
#: includes/admin/review.php:118
|
366 |
msgid "Are you enjoying ExactMetrics?"
|
367 |
msgstr ""
|
@@ -410,67 +420,71 @@ msgstr ""
|
|
410 |
msgid "Once Weekly"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: includes/admin/routes.php:
|
414 |
msgid "The most beginner friendly drag & drop WordPress forms plugin allowing you to create beautiful contact forms, subscription forms, payment forms, and more in minutes, not hours!"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: includes/admin/routes.php:
|
418 |
msgid "Our high-converting optin forms like Exit-Intent® popups, Fullscreen Welcome Mats, and Scroll boxes help you dramatically boost conversions and get more email subscribers."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: includes/admin/routes.php:
|
422 |
msgid "SMTP (Simple Mail Transfer Protocol) is an industry standard for sending emails. SMTP helps increase email deliverability by using proper authentication."
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: includes/admin/routes.php:
|
|
|
|
|
|
|
|
|
426 |
msgid "Better Coming Soon & Maintenance Mode Pages"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: includes/admin/routes.php:
|
430 |
msgid "Get More Traffic with Viral Giveaways"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: includes/admin/routes.php:
|
434 |
msgid "Social Proof Notifications that Boost Sales"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: includes/admin/routes.php:
|
438 |
msgid "Invalid UA code"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: includes/admin/routes.php:
|
442 |
msgid "Please upload a valid .json file"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: includes/admin/routes.php:
|
446 |
msgid "Please upload a file to import"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: includes/admin/routes.php:
|
450 |
msgid "You don't have permission to view ExactMetrics reports."
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: includes/admin/routes.php:
|
454 |
msgid "You can't view ExactMetrics reports because you are not licensed."
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: includes/admin/routes.php:
|
458 |
msgid "Add your license"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: includes/admin/routes.php:
|
462 |
msgid "You can't view ExactMetrics reports due to license key errors."
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: includes/admin/routes.php:
|
466 |
msgid "You must authenticate with ExactMetrics before you can view reports."
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: includes/admin/routes.php:
|
470 |
msgid "Unknown report. Try refreshing and retrying. Contact support if this issue persists."
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: includes/admin/routes.php:
|
474 |
msgid "We encountered an error when fetching the report data."
|
475 |
msgstr ""
|
476 |
|
@@ -566,25 +580,25 @@ msgid "There was an error installing the addon: %s"
|
|
566 |
msgstr ""
|
567 |
|
568 |
#. Translators: Placeholders are for links to fix the issue.
|
569 |
-
#: includes/admin/common.php:
|
570 |
msgid "ExactMetrics has detected that it's files are being blocked. This is usually caused by a adblock browser plugin (particularly uBlock Origin), or a conflicting WordPress theme or plugin. This issue only affects the admin side of ExactMetrics. To solve this, ensure ExactMetrics is whitelisted for your website URL in any adblock browser plugin you use. For step by step directions on how to do this, %1$sclick here%2$s. If this doesn't solve the issue (rare), send us a ticket %3$shere%2$s and we'll be happy to help diagnose the issue."
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: includes/admin/common.php:
|
574 |
msgid "Your 2019 Analytics Report"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: includes/admin/common.php:
|
578 |
msgid "See how your website performed this year and find tips along the way to help grow even more in 2020!"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: includes/admin/common.php:
|
582 |
msgid "View 2019 Year in Review report!"
|
583 |
msgstr ""
|
584 |
|
585 |
#: includes/admin/admin.php:34
|
586 |
#: includes/admin/admin.php:42
|
587 |
-
#: includes/admin/admin.php:
|
588 |
msgid "Settings"
|
589 |
msgstr ""
|
590 |
|
@@ -600,7 +614,7 @@ msgstr ""
|
|
600 |
|
601 |
#: includes/admin/admin.php:39
|
602 |
#: includes/admin/admin.php:95
|
603 |
-
#: languages/vue.php:
|
604 |
msgid "Reports"
|
605 |
msgstr ""
|
606 |
|
@@ -629,7 +643,7 @@ msgstr ""
|
|
629 |
|
630 |
#: includes/admin/admin.php:60
|
631 |
#: includes/admin/admin.php:103
|
632 |
-
#: languages/vue.php:
|
633 |
msgid "About Us"
|
634 |
msgstr ""
|
635 |
|
@@ -639,6 +653,7 @@ msgid "Network Settings:"
|
|
639 |
msgstr ""
|
640 |
|
641 |
#: includes/admin/admin.php:93
|
|
|
642 |
msgid "Network Settings"
|
643 |
msgstr ""
|
644 |
|
@@ -657,97 +672,97 @@ msgstr ""
|
|
657 |
|
658 |
#: includes/admin/admin.php:175
|
659 |
#: includes/admin/admin.php:178
|
660 |
-
#: languages/vue.php:
|
661 |
msgid "Support"
|
662 |
msgstr ""
|
663 |
|
664 |
#. Translators: Placeholders add a link to the wordpress.org repository.
|
665 |
-
#: includes/admin/admin.php:
|
666 |
msgid "Please rate %1$sExactMetrics%2$s on %3$s %4$sWordPress.org%5$s to help us spread the word. Thank you from the ExactMetrics team!"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: includes/admin/admin.php:
|
670 |
-
#: languages/vue.php:
|
671 |
msgid "Please Setup Website Analytics to See Audience Insights"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: includes/admin/admin.php:
|
675 |
-
#: languages/vue.php:
|
676 |
msgid "Connect ExactMetrics and Setup Website Analytics"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: includes/admin/admin.php:
|
680 |
-
#: languages/vue.php:
|
681 |
msgid "Learn More"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: includes/admin/admin.php:
|
685 |
-
#: languages/vue.php:
|
686 |
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 1 million website owners use ExactMetrics to see the stats that matter and grow their business."
|
687 |
msgstr ""
|
688 |
|
689 |
#. Translators: Adds a link to retrieve the license.
|
690 |
-
#: includes/admin/admin.php:
|
691 |
msgid "Warning: No valid license key has been entered for ExactMetrics. You are currently not getting updates, and are not able to view reports. %1$sPlease click here to enter your license key and begin receiving updates and reports.%2$s"
|
692 |
msgstr ""
|
693 |
|
694 |
#. Translators: Adds a link to the license renewal.
|
695 |
-
#: includes/admin/admin.php:
|
696 |
-
#: languages/vue.php:
|
697 |
msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: includes/admin/admin.php:
|
701 |
-
#: languages/vue.php:
|
702 |
msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: includes/admin/admin.php:
|
706 |
-
#: languages/vue.php:
|
707 |
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."
|
708 |
msgstr ""
|
709 |
|
710 |
#. Translators: Adds a link to renew license.
|
711 |
-
#: includes/admin/admin.php:
|
712 |
msgid "Your network license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: includes/admin/admin.php:
|
716 |
msgid "Your network license key for ExactMetrics has been disabled. Please use a different key."
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: includes/admin/admin.php:
|
720 |
msgid "Your network 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."
|
721 |
msgstr ""
|
722 |
|
723 |
#. Translators: Placeholders add the PHP version, a link to the ExactMetrics blog and a line break.
|
724 |
-
#: includes/admin/admin.php:
|
725 |
msgid "Your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked.%4$sWordPress will stop supporting your PHP version in April, 2019.%4$sUpdating PHP only takes a few minutes and will make your website significantly faster and more secure.%4$s%2$sLearn more about updating PHP%3$s"
|
726 |
msgstr ""
|
727 |
|
728 |
#. Translators: Placeholders add the current WordPress version and links to the ExactMetrics blog
|
729 |
-
#: includes/admin/admin.php:
|
730 |
msgid "Your site is running an outdated version of WordPress (%1$s).%4$sExactMetrics will stop supporting WordPress versions lower than 4.6 in April, 2019.%4$sUpdating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.%4$s%2$sLearn more about updating WordPress%3$s"
|
731 |
msgstr ""
|
732 |
|
733 |
#. Translators: Placeholders add links to the settings panel.
|
734 |
-
#: includes/admin/admin.php:
|
735 |
msgid "Important: You are currently using manual UA code output. We highly recommend %1$sauthenticating with ExactMetrics%2$s so that you can access our new reporting area and take advantage of new ExactMetrics features."
|
736 |
msgstr ""
|
737 |
|
738 |
#. Translators: Placeholders add links to the settings panel.
|
739 |
-
#: includes/admin/admin.php:
|
740 |
msgid "Click %1$shere%2$s to reauthenticate to be able to access reports. For more information why this is required, see our %3$sblog post%4$s."
|
741 |
msgstr ""
|
742 |
|
743 |
#. Translators: Placeholders add a link to the ExactMetrics website.
|
744 |
-
#: includes/admin/admin.php:
|
745 |
-
#: includes/admin/admin.php:
|
746 |
msgid "%1$sGet ExactMetrics Pro%2$s"
|
747 |
msgstr ""
|
748 |
|
749 |
#. Translators: Adds a link to the settings panel.
|
750 |
-
#: includes/admin/admin.php:
|
751 |
msgid "Warning: ExactMetrics found cross-domain settings in the custom code field and converted them to the new settings structure. %1$sPlease click here to review and remove the code no longer needed.%2$s"
|
752 |
msgstr ""
|
753 |
|
@@ -789,7 +804,7 @@ msgid "View supported browsers"
|
|
789 |
msgstr ""
|
790 |
|
791 |
#: includes/admin/reports/overview.php:34
|
792 |
-
#: languages/vue.php:
|
793 |
msgid "Overview"
|
794 |
msgstr ""
|
795 |
|
@@ -881,7 +896,7 @@ msgid "Upgrading is easy! To upgrade, navigate to %1$ssour pricing page%2$s, pur
|
|
881 |
msgstr ""
|
882 |
|
883 |
#: includes/admin/reports/abstract-report.php:375
|
884 |
-
#: languages/vue.php:
|
885 |
msgid "Upgrade Now"
|
886 |
msgstr ""
|
887 |
|
@@ -1942,13 +1957,17 @@ msgstr ""
|
|
1942 |
msgid "Zimbabwe"
|
1943 |
msgstr ""
|
1944 |
|
|
|
|
|
|
|
|
|
1945 |
#. Translators: The placeholders are for making the "We noticed you're using a caching plugin" text bold.
|
1946 |
-
#: includes/helpers.php:
|
1947 |
msgid "%1$sWe noticed you're using a caching plugin or caching from your hosting provider.%2$s Be sure to clear the cache to ensure the tracking appears on all pages and posts. %3$s(See this guide on how to clear cache)%4$s."
|
1948 |
msgstr ""
|
1949 |
|
1950 |
#. Translators: The placeholders are for making the "We have detected multiple tracking codes" text bold & adding a link to support.
|
1951 |
-
#: includes/helpers.php:
|
1952 |
msgid "%1$sWe have detected multiple tracking codes%2$s! You should remove non-ExactMetrics ones. If you need help finding them please %3$sread this article%4$s."
|
1953 |
msgstr ""
|
1954 |
|
@@ -1962,940 +1981,954 @@ msgstr ""
|
|
1962 |
msgid "%1$s is %3$sdeprecated%4$s since ExactMetrics version %2$s."
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: languages/vue.php:
|
1966 |
-
msgid "
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#: languages/vue.php:
|
1970 |
-
msgid "
|
1971 |
msgstr ""
|
1972 |
|
1973 |
-
#: languages/vue.php:
|
1974 |
-
msgid "
|
1975 |
msgstr ""
|
1976 |
|
1977 |
-
#: languages/vue.php:
|
1978 |
-
msgid "Please
|
|
|
|
|
|
|
|
|
1979 |
msgstr ""
|
1980 |
|
|
|
1981 |
#: languages/vue.php:21
|
1982 |
-
msgid "
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
|
1986 |
-
|
|
|
1987 |
msgstr ""
|
1988 |
|
1989 |
-
#. Translators: Add a link to the onboarding wizard.
|
1990 |
#: languages/vue.php:28
|
1991 |
-
msgid "
|
1992 |
msgstr ""
|
1993 |
|
1994 |
#: languages/vue.php:31
|
1995 |
-
msgid "
|
1996 |
msgstr ""
|
1997 |
|
1998 |
-
|
1999 |
-
|
|
|
2000 |
msgstr ""
|
2001 |
|
2002 |
-
|
2003 |
-
|
2004 |
-
msgid "Continue %s"
|
2005 |
msgstr ""
|
2006 |
|
|
|
2007 |
#: languages/vue.php:42
|
2008 |
-
msgid "
|
2009 |
msgstr ""
|
2010 |
|
2011 |
#: languages/vue.php:45
|
2012 |
-
msgid "
|
2013 |
msgstr ""
|
2014 |
|
2015 |
#: languages/vue.php:48
|
2016 |
-
msgid "
|
2017 |
msgstr ""
|
2018 |
|
2019 |
-
|
2020 |
-
|
|
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: languages/vue.php:
|
2024 |
-
msgid "
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: languages/vue.php:
|
2028 |
-
msgid "
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: languages/vue.php:
|
2032 |
-
msgid "
|
2033 |
msgstr ""
|
2034 |
|
2035 |
-
|
2036 |
-
|
|
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: languages/vue.php:
|
2040 |
-
msgid "
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: languages/vue.php:
|
2044 |
-
msgid "
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
|
2048 |
-
|
|
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: languages/vue.php:
|
2052 |
-
msgid "
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: languages/vue.php:
|
2056 |
-
msgid "
|
2057 |
msgstr ""
|
2058 |
|
2059 |
-
#: languages/vue.php:
|
2060 |
-
msgid "
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#: languages/vue.php:
|
2064 |
-
msgid "
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: languages/vue.php:
|
2068 |
-
msgid "
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
|
2072 |
-
|
2073 |
-
msgid "Get Started %s"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
-
#: languages/vue.php:
|
2077 |
-
msgid "
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
|
2081 |
-
|
2082 |
-
msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: languages/vue.php:
|
2086 |
-
msgid "
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
|
2090 |
-
|
2091 |
-
msgid "ExactMetrics has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
|
2092 |
msgstr ""
|
2093 |
|
2094 |
-
#: languages/vue.php:
|
2095 |
-
msgid "
|
2096 |
msgstr ""
|
2097 |
|
2098 |
-
#: languages/vue.php:
|
2099 |
-
msgid "
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
|
2103 |
-
#: languages/vue.php:
|
2104 |
-
msgid "
|
2105 |
msgstr ""
|
2106 |
|
2107 |
-
#: languages/vue.php:
|
2108 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2109 |
msgstr ""
|
2110 |
|
2111 |
#. Translators: Makes text bold.
|
2112 |
-
#: languages/vue.php:
|
2113 |
msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
|
2114 |
msgstr ""
|
2115 |
|
2116 |
#. Translators: Makes text bold.
|
2117 |
-
#: languages/vue.php:
|
2118 |
msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
|
2119 |
msgstr ""
|
2120 |
|
2121 |
#. Translators: Makes text bold.
|
2122 |
-
#: languages/vue.php:
|
2123 |
msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
|
2124 |
msgstr ""
|
2125 |
|
2126 |
#. Translators: Makes text bold.
|
2127 |
-
#: languages/vue.php:
|
2128 |
msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
|
2129 |
msgstr ""
|
2130 |
|
2131 |
#. Translators: Makes text bold.
|
2132 |
-
#: languages/vue.php:
|
2133 |
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."
|
2134 |
msgstr ""
|
2135 |
|
2136 |
#. Translators: Makes text bold.
|
2137 |
-
#: languages/vue.php:
|
2138 |
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."
|
2139 |
msgstr ""
|
2140 |
|
2141 |
#. Translators: Makes text bold.
|
2142 |
-
#: languages/vue.php:
|
2143 |
msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
#. Translators: Makes text bold.
|
2147 |
-
#: languages/vue.php:
|
2148 |
msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
|
2149 |
msgstr ""
|
2150 |
|
2151 |
#. Translators: Adds link to the features page.
|
2152 |
-
#: languages/vue.php:
|
2153 |
msgid "%1$sSee All Features%2$s"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#: languages/vue.php:
|
2157 |
msgid "Pro Plan"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
-
#: languages/vue.php:
|
2161 |
msgid "per year"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#: languages/vue.php:
|
2165 |
msgid "Upgrade to ExactMetrics Pro Now"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: languages/vue.php:
|
2169 |
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!"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
-
#: languages/vue.php:
|
2173 |
msgid "Daniel Monaghan - Experienced"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#: languages/vue.php:
|
2177 |
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."
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#: languages/vue.php:
|
2181 |
msgid "Naomi Spirit - From This Day"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
-
#: languages/vue.php:
|
2185 |
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!"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
-
#: languages/vue.php:
|
2189 |
msgid "Julie Dupuis - Faraway Land Travel"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
-
#: languages/vue.php:
|
2193 |
msgid "Guides and Documentation:"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
-
#: languages/vue.php:
|
2197 |
msgid "Upgrade to PRO"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
-
#: languages/vue.php:
|
2201 |
msgid "eCommerce Tracking"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
-
#: languages/vue.php:
|
2205 |
msgid "Custom Dimensions"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#: languages/vue.php:
|
2209 |
msgid "Form Tracking"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
-
#: languages/vue.php:
|
2213 |
msgid "AMP Support"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#: languages/vue.php:
|
2217 |
msgid "Author Tracking"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: languages/vue.php:
|
2221 |
msgid "EU Compliance Addon"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: languages/vue.php:
|
2225 |
msgid "Real Time Report"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
#: languages/vue.php:
|
2229 |
msgid "Google Optimize"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#: languages/vue.php:
|
2233 |
msgid "Custom Date Ranges"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: languages/vue.php:
|
2237 |
msgid "Getting Started with ExactMetrics"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
#: languages/vue.php:
|
2241 |
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."
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: languages/vue.php:
|
2245 |
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."
|
2246 |
msgstr ""
|
2247 |
|
2248 |
-
#: languages/vue.php:
|
2249 |
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!."
|
2250 |
msgstr ""
|
2251 |
|
2252 |
-
#: languages/vue.php:
|
2253 |
msgid "Launch the wizard!"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
-
#: languages/vue.php:
|
2257 |
msgid "Welcome to"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
#. Translators: Adds a line break.
|
2261 |
-
#: languages/vue.php:
|
2262 |
msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
#. Translators: Makes text bold.
|
2266 |
-
#: languages/vue.php:
|
2267 |
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."
|
2268 |
msgstr ""
|
2269 |
|
2270 |
-
#: languages/vue.php:
|
2271 |
msgid "ExactMetrics Features & Addons"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
#: languages/vue.php:
|
2275 |
msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
|
2279 |
-
|
2280 |
-
msgid "See how %s visitors found your site!"
|
2281 |
msgstr ""
|
2282 |
|
2283 |
-
|
2284 |
-
|
2285 |
-
msgid "Your website was visited by %s users in the last 30 days."
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
|
2289 |
-
|
|
|
2290 |
msgstr ""
|
2291 |
|
2292 |
-
|
2293 |
-
|
2294 |
-
msgid "Can't load report data. Error: %1$s, %2$s"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#: languages/vue.php:
|
2298 |
-
msgid "
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
|
2302 |
-
|
2303 |
-
msgid "Recommended Plugin: %s"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: languages/vue.php:
|
2307 |
-
msgid "
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
#: languages/vue.php:
|
2311 |
-
msgid "
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
|
2315 |
-
|
2316 |
-
msgid "Last %s days"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: languages/vue.php:
|
2320 |
-
msgid "
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: languages/vue.php:
|
2324 |
-
msgid "
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: languages/vue.php:
|
2328 |
-
|
2329 |
-
msgid "Reconnect ExactMetrics"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
-
#: languages/vue.php:
|
2333 |
-
msgid "
|
2334 |
msgstr ""
|
2335 |
|
2336 |
-
#: languages/vue.php:
|
2337 |
-
msgid "
|
2338 |
msgstr ""
|
2339 |
|
2340 |
-
#: languages/vue.php:
|
2341 |
-
msgid "
|
2342 |
msgstr ""
|
2343 |
|
2344 |
-
|
2345 |
-
|
2346 |
-
msgid "View All Reports %s"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
-
#: languages/vue.php:
|
2350 |
-
msgid "
|
2351 |
-
msgstr ""
|
2352 |
-
|
2353 |
-
#: languages/vue.php:331
|
2354 |
-
msgid "Lite vs Pro"
|
2355 |
-
msgstr ""
|
2356 |
-
|
2357 |
-
#: languages/vue.php:335
|
2358 |
-
msgid "General"
|
2359 |
-
msgstr ""
|
2360 |
-
|
2361 |
-
#: languages/vue.php:339
|
2362 |
-
msgid "Engagement"
|
2363 |
-
msgstr ""
|
2364 |
-
|
2365 |
-
#: languages/vue.php:349
|
2366 |
-
msgid "Publisher"
|
2367 |
-
msgstr ""
|
2368 |
-
|
2369 |
-
#: languages/vue.php:354
|
2370 |
-
msgid "Conversions"
|
2371 |
-
msgstr ""
|
2372 |
-
|
2373 |
-
#: languages/vue.php:358
|
2374 |
-
msgid "Advanced"
|
2375 |
-
msgstr ""
|
2376 |
-
|
2377 |
-
#: languages/vue.php:361
|
2378 |
-
msgid "URL Builder"
|
2379 |
-
msgstr ""
|
2380 |
-
|
2381 |
-
#: languages/vue.php:364
|
2382 |
-
msgid "Import Export"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
-
#: languages/vue.php:
|
2386 |
msgid "Go back"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
-
#. Translators:
|
2390 |
-
#: languages/vue.php:
|
2391 |
-
msgid "
|
2392 |
-
msgstr ""
|
2393 |
-
|
2394 |
-
#: languages/vue.php:374
|
2395 |
-
msgid "Exit Setup"
|
2396 |
-
msgstr ""
|
2397 |
-
|
2398 |
-
#: languages/vue.php:385
|
2399 |
-
msgid "Dimensions Report"
|
2400 |
-
msgstr ""
|
2401 |
-
|
2402 |
-
#: languages/vue.php:393
|
2403 |
-
msgid "Real-Time"
|
2404 |
-
msgstr ""
|
2405 |
-
|
2406 |
-
#: languages/vue.php:396
|
2407 |
-
msgid "See Quick Links"
|
2408 |
-
msgstr ""
|
2409 |
-
|
2410 |
-
#: languages/vue.php:399
|
2411 |
-
msgid "Suggest a Feature"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
|
2415 |
-
|
|
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
|
2419 |
-
|
|
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
|
2423 |
-
|
|
|
2424 |
msgstr ""
|
2425 |
|
2426 |
-
#: languages/vue.php:
|
2427 |
msgid "Time to Purchase"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
-
#: languages/vue.php:
|
2431 |
msgid "This list shows how many days from first visit it took users to purchase products from your site."
|
2432 |
msgstr ""
|
2433 |
|
2434 |
-
#: languages/vue.php:
|
2435 |
msgid "Sessions to Purchase"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
-
#: languages/vue.php:
|
2439 |
msgid "This list shows the number of sessions it took users before they purchased a product from your website."
|
2440 |
msgstr ""
|
2441 |
|
2442 |
-
#: languages/vue.php:
|
2443 |
msgid "Top Posts/Pages"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
-
#: languages/vue.php:
|
2447 |
msgid "This list shows the most viewed posts and pages on your website."
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
#: languages/vue.php:
|
2451 |
msgid "New vs. Returning Visitors"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
-
#: languages/vue.php:
|
2455 |
msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
|
2456 |
msgstr ""
|
2457 |
|
2458 |
-
#: languages/vue.php:
|
2459 |
msgid "Device Breakdown"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
-
#: languages/vue.php:
|
2463 |
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."
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#: languages/vue.php:
|
2467 |
msgid "Top Landing Pages"
|
2468 |
msgstr ""
|
2469 |
|
2470 |
-
#: languages/vue.php:
|
2471 |
msgid "This list shows the top pages users first land on when visiting your website."
|
2472 |
msgstr ""
|
2473 |
|
2474 |
-
#: languages/vue.php:
|
2475 |
msgid "Top Exit Pages"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
-
#: languages/vue.php:
|
2479 |
msgid "This list shows the top pages users exit your website from."
|
2480 |
msgstr ""
|
2481 |
|
2482 |
-
#: languages/vue.php:
|
2483 |
msgid "Top Outbound Links"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
-
#: languages/vue.php:
|
2487 |
msgid "This list shows the top links clicked on your website that go to another website."
|
2488 |
msgstr ""
|
2489 |
|
2490 |
-
#: languages/vue.php:
|
2491 |
msgid "Top Affiliate Links"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
-
#: languages/vue.php:
|
2495 |
msgid "This list shows the top affiliate links your visitors clicked on."
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: languages/vue.php:
|
2499 |
msgid "Top Download Links"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
-
#: languages/vue.php:
|
2503 |
msgid "This list shows the download links your visitors clicked the most."
|
2504 |
msgstr ""
|
2505 |
|
2506 |
-
#: languages/vue.php:
|
2507 |
msgid "Top Products"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
-
#: languages/vue.php:
|
2511 |
msgid "This list shows the top selling products on your website."
|
2512 |
msgstr ""
|
2513 |
|
2514 |
-
#: languages/vue.php:
|
2515 |
msgid "Top Conversion Sources"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
-
#: languages/vue.php:
|
2519 |
msgid "This list shows the top referral websites in terms of product revenue."
|
2520 |
msgstr ""
|
2521 |
|
2522 |
-
#: languages/vue.php:
|
2523 |
msgid "Total Add/Remove"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
-
#: languages/vue.php:
|
2527 |
-
msgid "
|
2528 |
-
msgstr ""
|
2529 |
-
|
2530 |
-
#: languages/vue.php:505
|
2531 |
-
msgid "You must connect with ExactMetrics before you can view reports."
|
2532 |
-
msgstr ""
|
2533 |
-
|
2534 |
-
#: languages/vue.php:508
|
2535 |
-
msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
|
2536 |
-
msgstr ""
|
2537 |
-
|
2538 |
-
#: languages/vue.php:511
|
2539 |
-
msgid "Launch Setup Wizard"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
-
#: languages/vue.php:
|
2543 |
-
msgid "
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
|
2547 |
-
|
2548 |
-
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"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
|
2552 |
-
|
2553 |
-
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"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
-
|
2557 |
-
|
2558 |
-
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"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
|
2562 |
-
|
2563 |
-
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"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
|
2567 |
-
|
2568 |
-
msgid "%1$sNeed%2$s to Grow FASTER??"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
-
#: languages/vue.php:
|
2572 |
-
msgid "
|
2573 |
msgstr ""
|
2574 |
|
2575 |
-
#: languages/vue.php:
|
2576 |
-
msgid "
|
2577 |
msgstr ""
|
2578 |
|
2579 |
-
#: languages/vue.php:
|
2580 |
-
msgid "
|
2581 |
msgstr ""
|
2582 |
|
2583 |
-
#: languages/vue.php:
|
2584 |
-
msgid "
|
2585 |
msgstr ""
|
2586 |
|
2587 |
-
#: languages/vue.php:
|
2588 |
-
msgid "
|
2589 |
msgstr ""
|
2590 |
|
2591 |
-
#: languages/vue.php:
|
2592 |
-
msgid "
|
2593 |
msgstr ""
|
2594 |
|
2595 |
-
#: languages/vue.php:
|
2596 |
-
msgid "
|
2597 |
msgstr ""
|
2598 |
|
2599 |
-
#: languages/vue.php:
|
2600 |
-
msgid "
|
2601 |
msgstr ""
|
2602 |
|
2603 |
-
#: languages/vue.php:
|
2604 |
-
msgid "
|
2605 |
msgstr ""
|
2606 |
|
2607 |
-
#: languages/vue.php:
|
2608 |
-
msgid "
|
2609 |
msgstr ""
|
2610 |
|
2611 |
-
#: languages/vue.php:
|
2612 |
-
msgid "
|
2613 |
msgstr ""
|
2614 |
|
2615 |
-
#: languages/vue.php:
|
2616 |
-
msgid "
|
2617 |
msgstr ""
|
2618 |
|
2619 |
-
#: languages/vue.php:
|
2620 |
-
msgid "
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#: languages/vue.php:
|
2624 |
-
msgid "
|
2625 |
msgstr ""
|
2626 |
|
2627 |
-
#: languages/vue.php:
|
2628 |
-
msgid "
|
2629 |
msgstr ""
|
2630 |
|
2631 |
-
#: languages/vue.php:
|
2632 |
-
msgid "
|
2633 |
msgstr ""
|
2634 |
|
2635 |
-
#: languages/vue.php:
|
2636 |
-
msgid "
|
2637 |
msgstr ""
|
2638 |
|
2639 |
-
#: languages/vue.php:
|
2640 |
-
msgid "
|
2641 |
msgstr ""
|
2642 |
|
2643 |
-
|
2644 |
-
|
|
|
2645 |
msgstr ""
|
2646 |
|
2647 |
-
#: languages/vue.php:
|
2648 |
-
msgid "
|
2649 |
msgstr ""
|
2650 |
|
2651 |
-
#: languages/vue.php:
|
2652 |
-
msgid "
|
2653 |
msgstr ""
|
2654 |
|
2655 |
-
#: languages/vue.php:
|
2656 |
-
msgid "
|
2657 |
msgstr ""
|
2658 |
|
2659 |
-
#: languages/vue.php:
|
2660 |
-
msgid "
|
2661 |
msgstr ""
|
2662 |
|
2663 |
-
#: languages/vue.php:
|
2664 |
-
msgid "
|
2665 |
msgstr ""
|
2666 |
|
2667 |
-
#: languages/vue.php:
|
2668 |
-
msgid "
|
2669 |
msgstr ""
|
2670 |
|
2671 |
-
#: languages/vue.php:
|
2672 |
-
msgid "
|
2673 |
msgstr ""
|
2674 |
|
2675 |
-
#: languages/vue.php:
|
2676 |
-
msgid "
|
2677 |
msgstr ""
|
2678 |
|
|
|
2679 |
#: languages/vue.php:630
|
2680 |
-
msgid "
|
2681 |
msgstr ""
|
2682 |
|
2683 |
#: languages/vue.php:633
|
2684 |
-
msgid "
|
2685 |
msgstr ""
|
2686 |
|
2687 |
#: languages/vue.php:636
|
2688 |
-
msgid "Enhanced
|
2689 |
msgstr ""
|
2690 |
|
2691 |
#: languages/vue.php:639
|
2692 |
-
msgid "
|
2693 |
msgstr ""
|
2694 |
|
2695 |
#: languages/vue.php:642
|
2696 |
-
msgid "
|
2697 |
msgstr ""
|
2698 |
|
2699 |
#: languages/vue.php:645
|
2700 |
-
msgid "
|
2701 |
msgstr ""
|
2702 |
|
2703 |
-
|
2704 |
-
|
|
|
2705 |
msgstr ""
|
2706 |
|
2707 |
-
#: languages/vue.php:
|
2708 |
-
msgid "
|
2709 |
msgstr ""
|
2710 |
|
2711 |
-
|
2712 |
-
|
|
|
2713 |
msgstr ""
|
2714 |
|
2715 |
-
#: languages/vue.php:
|
2716 |
-
msgid "
|
2717 |
msgstr ""
|
2718 |
|
2719 |
-
|
2720 |
-
|
|
|
2721 |
msgstr ""
|
2722 |
|
2723 |
-
#. Translators:
|
2724 |
-
#: languages/vue.php:
|
2725 |
-
msgid "
|
2726 |
msgstr ""
|
2727 |
|
2728 |
-
|
2729 |
-
|
|
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
|
2733 |
-
|
2734 |
-
msgid "Label (example: %s)"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
#: languages/vue.php:678
|
2738 |
-
msgid "
|
2739 |
msgstr ""
|
2740 |
|
2741 |
#: languages/vue.php:681
|
2742 |
-
msgid "
|
2743 |
msgstr ""
|
2744 |
|
2745 |
#: languages/vue.php:684
|
2746 |
-
msgid "
|
2747 |
msgstr ""
|
2748 |
|
2749 |
#: languages/vue.php:687
|
2750 |
-
msgid "
|
2751 |
msgstr ""
|
2752 |
|
2753 |
#: languages/vue.php:690
|
2754 |
-
msgid "
|
2755 |
msgstr ""
|
2756 |
|
2757 |
#: languages/vue.php:693
|
2758 |
-
msgid "
|
2759 |
msgstr ""
|
2760 |
|
2761 |
-
|
2762 |
-
|
|
|
2763 |
msgstr ""
|
2764 |
|
2765 |
-
|
2766 |
-
|
|
|
2767 |
msgstr ""
|
2768 |
|
2769 |
-
#: languages/vue.php:
|
2770 |
-
msgid "
|
2771 |
msgstr ""
|
2772 |
|
2773 |
-
#: languages/vue.php:
|
2774 |
-
msgid "
|
2775 |
msgstr ""
|
2776 |
|
2777 |
-
#: languages/vue.php:
|
2778 |
-
msgid "
|
2779 |
msgstr ""
|
2780 |
|
2781 |
-
#: languages/vue.php:
|
2782 |
-
msgid "
|
2783 |
msgstr ""
|
2784 |
|
2785 |
-
#: languages/vue.php:
|
2786 |
-
msgid "
|
2787 |
msgstr ""
|
2788 |
|
2789 |
-
|
2790 |
-
|
2791 |
-
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."
|
2792 |
msgstr ""
|
2793 |
|
2794 |
-
#. Translators: Add link to blog.
|
2795 |
#: languages/vue.php:722
|
2796 |
-
msgid "
|
2797 |
msgstr ""
|
2798 |
|
2799 |
#: languages/vue.php:725
|
2800 |
-
msgid "
|
2801 |
msgstr ""
|
2802 |
|
2803 |
#: languages/vue.php:728
|
2804 |
-
msgid "
|
2805 |
msgstr ""
|
2806 |
|
2807 |
#: languages/vue.php:731
|
2808 |
-
msgid "
|
2809 |
msgstr ""
|
2810 |
|
2811 |
#: languages/vue.php:734
|
2812 |
-
msgid "
|
2813 |
msgstr ""
|
2814 |
|
2815 |
#: languages/vue.php:737
|
2816 |
-
msgid "
|
2817 |
msgstr ""
|
2818 |
|
2819 |
#: languages/vue.php:740
|
2820 |
-
msgid "
|
2821 |
msgstr ""
|
2822 |
|
2823 |
#: languages/vue.php:743
|
2824 |
-
msgid "
|
2825 |
msgstr ""
|
2826 |
|
2827 |
#: languages/vue.php:746
|
2828 |
-
msgid "
|
2829 |
msgstr ""
|
2830 |
|
2831 |
#: languages/vue.php:749
|
2832 |
-
msgid "
|
2833 |
msgstr ""
|
2834 |
|
2835 |
#: languages/vue.php:752
|
2836 |
-
msgid "
|
2837 |
msgstr ""
|
2838 |
|
2839 |
-
|
2840 |
-
|
2841 |
-
msgid "You can customize your %sdate range only in the PRO version."
|
2842 |
msgstr ""
|
2843 |
|
|
|
2844 |
#: languages/vue.php:759
|
2845 |
-
msgid "
|
2846 |
msgstr ""
|
2847 |
|
2848 |
#: languages/vue.php:762
|
2849 |
-
msgid "
|
2850 |
msgstr ""
|
2851 |
|
2852 |
-
|
2853 |
-
|
|
|
2854 |
msgstr ""
|
2855 |
|
2856 |
-
#. Translators: Add line break.
|
2857 |
#: languages/vue.php:769
|
2858 |
-
msgid "
|
2859 |
msgstr ""
|
2860 |
|
2861 |
#: languages/vue.php:772
|
2862 |
-
msgid "
|
2863 |
msgstr ""
|
2864 |
|
2865 |
#: languages/vue.php:775
|
2866 |
-
msgid "
|
2867 |
msgstr ""
|
2868 |
|
2869 |
#: languages/vue.php:778
|
2870 |
-
msgid "
|
2871 |
msgstr ""
|
2872 |
|
2873 |
#: languages/vue.php:781
|
2874 |
-
msgid "
|
2875 |
msgstr ""
|
2876 |
|
2877 |
#: languages/vue.php:784
|
2878 |
-
msgid "
|
2879 |
msgstr ""
|
2880 |
|
2881 |
#: languages/vue.php:787
|
2882 |
-
msgid "
|
2883 |
msgstr ""
|
2884 |
|
2885 |
#: languages/vue.php:790
|
2886 |
-
msgid "
|
2887 |
msgstr ""
|
2888 |
|
2889 |
#: languages/vue.php:793
|
2890 |
-
msgid "
|
2891 |
msgstr ""
|
2892 |
|
2893 |
#: languages/vue.php:796
|
2894 |
-
msgid "
|
2895 |
msgstr ""
|
2896 |
|
2897 |
#: languages/vue.php:799
|
2898 |
-
msgid "
|
2899 |
msgstr ""
|
2900 |
|
2901 |
#: languages/vue.php:802
|
@@ -2912,1187 +2945,1187 @@ msgid "Our affiliate link tracking works by setting path for internal links to t
|
|
2912 |
msgstr ""
|
2913 |
|
2914 |
#: languages/vue.php:812
|
2915 |
-
msgid "
|
2916 |
-
msgstr ""
|
2917 |
-
|
2918 |
-
#. Translators: Add links to documentation.
|
2919 |
-
#: languages/vue.php:816
|
2920 |
-
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."
|
2921 |
-
msgstr ""
|
2922 |
-
|
2923 |
-
#: languages/vue.php:819
|
2924 |
-
msgid "Demographics"
|
2925 |
-
msgstr ""
|
2926 |
-
|
2927 |
-
#: languages/vue.php:822
|
2928 |
-
msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
|
2929 |
-
msgstr ""
|
2930 |
-
|
2931 |
-
#: languages/vue.php:825
|
2932 |
-
msgid "Anonymize IP Addresses"
|
2933 |
-
msgstr ""
|
2934 |
-
|
2935 |
-
#: languages/vue.php:828
|
2936 |
-
msgid "Link Attribution"
|
2937 |
-
msgstr ""
|
2938 |
-
|
2939 |
-
#: languages/vue.php:831
|
2940 |
-
msgid "Enable Enhanced Link Attribution"
|
2941 |
-
msgstr ""
|
2942 |
-
|
2943 |
-
#: languages/vue.php:834
|
2944 |
-
msgid "Enable Anchor Tracking"
|
2945 |
-
msgstr ""
|
2946 |
-
|
2947 |
-
#: languages/vue.php:837
|
2948 |
-
msgid "Enable allowAnchor"
|
2949 |
-
msgstr ""
|
2950 |
-
|
2951 |
-
#: languages/vue.php:840
|
2952 |
-
msgid "Enable allowLinker"
|
2953 |
-
msgstr ""
|
2954 |
-
|
2955 |
-
#: languages/vue.php:843
|
2956 |
-
msgid "Enable Tag Links in RSS"
|
2957 |
-
msgstr ""
|
2958 |
-
|
2959 |
-
#: languages/vue.php:846
|
2960 |
-
msgid "File Downloads"
|
2961 |
-
msgstr ""
|
2962 |
-
|
2963 |
-
#: languages/vue.php:849
|
2964 |
-
msgid "Extensions of Files to Track as Downloads"
|
2965 |
-
msgstr ""
|
2966 |
-
|
2967 |
-
#: languages/vue.php:852
|
2968 |
-
msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
|
2969 |
-
msgstr ""
|
2970 |
-
|
2971 |
-
#. Translators: Add links to documentation.
|
2972 |
-
#: languages/vue.php:856
|
2973 |
-
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."
|
2974 |
-
msgstr ""
|
2975 |
-
|
2976 |
-
#. Translators: Add links to documentation.
|
2977 |
-
#: languages/vue.php:860
|
2978 |
-
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."
|
2979 |
-
msgstr ""
|
2980 |
-
|
2981 |
-
#. Translators: Add links to documentation.
|
2982 |
-
#: languages/vue.php:864
|
2983 |
-
msgid "Add %1$sEnhanced Link Attribution%2$s to your tracking code."
|
2984 |
-
msgstr ""
|
2985 |
-
|
2986 |
-
#: languages/vue.php:867
|
2987 |
-
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."
|
2988 |
-
msgstr ""
|
2989 |
-
|
2990 |
-
#. Translators: Add links to documentation.
|
2991 |
-
#: languages/vue.php:871
|
2992 |
-
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."
|
2993 |
-
msgstr ""
|
2994 |
-
|
2995 |
-
#. Translators: Add links to documentation.
|
2996 |
-
#: languages/vue.php:875
|
2997 |
-
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."
|
2998 |
-
msgstr ""
|
2999 |
-
|
3000 |
-
#. Translators: Add links to documentation.
|
3001 |
-
#: languages/vue.php:879
|
3002 |
-
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."
|
3003 |
-
msgstr ""
|
3004 |
-
|
3005 |
-
#: languages/vue.php:882
|
3006 |
-
msgid "Add domain"
|
3007 |
msgstr ""
|
3008 |
|
3009 |
-
|
3010 |
-
|
3011 |
-
msgid "Domain (example: %s)"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
-
|
3015 |
-
|
3016 |
-
msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
|
3017 |
msgstr ""
|
3018 |
|
3019 |
-
#: languages/vue.php:
|
3020 |
-
msgid "
|
3021 |
msgstr ""
|
3022 |
|
3023 |
-
#: languages/vue.php:
|
3024 |
-
msgid "
|
3025 |
msgstr ""
|
3026 |
|
3027 |
-
#: languages/vue.php:
|
3028 |
-
msgid "
|
3029 |
msgstr ""
|
3030 |
|
3031 |
-
#: languages/vue.php:
|
3032 |
-
|
3033 |
-
msgid "ExactMetrics Addons"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
-
|
3037 |
-
|
3038 |
-
msgid "Upgrade to Pro to unlock addons and other great features."
|
3039 |
msgstr ""
|
3040 |
|
3041 |
-
#: languages/vue.php:
|
3042 |
-
msgid "
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
#: languages/vue.php:
|
3046 |
-
msgid "
|
3047 |
msgstr ""
|
3048 |
|
3049 |
#. Translators: placeholders make text small.
|
3050 |
-
#: languages/vue.php:
|
3051 |
msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
#. Translators: placeholders make text small.
|
3055 |
-
#: languages/vue.php:
|
3056 |
msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
|
3057 |
msgstr ""
|
3058 |
|
3059 |
#. Translators: placeholders make text small.
|
3060 |
-
#: languages/vue.php:
|
3061 |
msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
#. Translators: placeholders make text small.
|
3065 |
-
#: languages/vue.php:
|
3066 |
msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
|
3067 |
msgstr ""
|
3068 |
|
3069 |
#. Translators: placeholders make text small.
|
3070 |
-
#: languages/vue.php:
|
3071 |
msgid "None %1$s- Manually update everything.%2$s"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
#. Translators: Adds a link to the general settings tab.
|
3075 |
-
#: languages/vue.php:
|
3076 |
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."
|
3077 |
msgstr ""
|
3078 |
|
3079 |
-
#: languages/vue.php:
|
3080 |
msgid "Permissions"
|
3081 |
msgstr ""
|
3082 |
|
3083 |
-
#: languages/vue.php:
|
3084 |
msgid "Allow These User Roles to See Reports"
|
3085 |
msgstr ""
|
3086 |
|
3087 |
-
#: languages/vue.php:
|
3088 |
msgid "Users that have at least one of these roles will be able to view the reports."
|
3089 |
msgstr ""
|
3090 |
|
3091 |
-
#: languages/vue.php:
|
3092 |
msgid "Allow These User Roles to Save Settings"
|
3093 |
msgstr ""
|
3094 |
|
3095 |
-
#: languages/vue.php:
|
3096 |
msgid "Users that have at least one of these roles will be able to view and save the settings panel."
|
3097 |
msgstr ""
|
3098 |
|
3099 |
-
#: languages/vue.php:
|
3100 |
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."
|
3101 |
msgstr ""
|
3102 |
|
3103 |
-
#: languages/vue.php:
|
3104 |
msgid "Exclude These User Roles From Tracking"
|
3105 |
msgstr ""
|
3106 |
|
3107 |
-
#: languages/vue.php:
|
3108 |
msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
|
3109 |
msgstr ""
|
3110 |
|
3111 |
-
#: languages/vue.php:
|
3112 |
msgid "Custom code"
|
3113 |
msgstr ""
|
3114 |
|
3115 |
#. Translators: Adds a link to the Google reference.
|
3116 |
-
#: languages/vue.php:
|
3117 |
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."
|
3118 |
msgstr ""
|
3119 |
|
3120 |
-
#: languages/vue.php:
|
3121 |
msgid "Automatic Updates"
|
3122 |
msgstr ""
|
3123 |
|
3124 |
-
#: languages/vue.php:
|
3125 |
msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
|
3126 |
msgstr ""
|
3127 |
|
3128 |
-
#: languages/vue.php:
|
3129 |
msgid "Hide Admin Bar Reports"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
#. Translators: placeholders make text small.
|
3133 |
-
#: languages/vue.php:
|
3134 |
msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
-
#: languages/vue.php:
|
3138 |
-
msgid "
|
3139 |
msgstr ""
|
3140 |
|
3141 |
-
#: languages/vue.php:
|
3142 |
-
msgid "
|
3143 |
msgstr ""
|
3144 |
|
3145 |
-
#: languages/vue.php:
|
3146 |
-
msgid "
|
3147 |
msgstr ""
|
3148 |
|
3149 |
-
#: languages/vue.php:
|
3150 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3151 |
msgstr ""
|
3152 |
|
3153 |
-
#: languages/vue.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3154 |
msgid "One-click Complete eCommerce tracking"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
-
#: languages/vue.php:
|
3158 |
msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
|
3159 |
msgstr ""
|
3160 |
|
3161 |
-
#: languages/vue.php:
|
3162 |
msgid "Forms Tracking"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
-
#: languages/vue.php:
|
3166 |
msgid "One-click Form Events Tracking"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
-
#: languages/vue.php:
|
3170 |
msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
-
#: languages/vue.php:
|
3174 |
msgid "WordPress Admin Area Reports"
|
3175 |
msgstr ""
|
3176 |
|
3177 |
-
#: languages/vue.php:
|
3178 |
msgid "Standard Reports"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
-
#: languages/vue.php:
|
3182 |
msgid "Overview Reports for the last 30 days."
|
3183 |
msgstr ""
|
3184 |
|
3185 |
-
#: languages/vue.php:
|
3186 |
msgid "Advanced Reports"
|
3187 |
msgstr ""
|
3188 |
|
3189 |
-
#: languages/vue.php:
|
3190 |
msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
|
3191 |
msgstr ""
|
3192 |
|
3193 |
-
#: languages/vue.php:
|
3194 |
msgid "Dashboard Widget"
|
3195 |
msgstr ""
|
3196 |
|
3197 |
-
#: languages/vue.php:
|
3198 |
msgid "Basic Widget"
|
3199 |
msgstr ""
|
3200 |
|
3201 |
-
#: languages/vue.php:
|
3202 |
msgid "Overview Report Synopsis"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
-
#: languages/vue.php:
|
3206 |
msgid "Advanced Dashboard Widget"
|
3207 |
msgstr ""
|
3208 |
|
3209 |
-
#: languages/vue.php:
|
3210 |
msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
|
3211 |
msgstr ""
|
3212 |
|
3213 |
-
#: languages/vue.php:
|
3214 |
msgid "Publisher Reports"
|
3215 |
msgstr ""
|
3216 |
|
3217 |
-
#: languages/vue.php:
|
3218 |
msgid "Advanced Publisher Reports & Tracking"
|
3219 |
msgstr ""
|
3220 |
|
3221 |
-
#: languages/vue.php:
|
3222 |
msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
|
3223 |
msgstr ""
|
3224 |
|
3225 |
-
#: languages/vue.php:
|
3226 |
msgid "Not Available"
|
3227 |
msgstr ""
|
3228 |
|
3229 |
-
#: languages/vue.php:
|
3230 |
msgid "Complete Custom Dimensions Tracking"
|
3231 |
msgstr ""
|
3232 |
|
3233 |
-
#: languages/vue.php:
|
3234 |
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"
|
3235 |
msgstr ""
|
3236 |
|
3237 |
-
#: languages/vue.php:
|
3238 |
msgid "Limited Support"
|
3239 |
msgstr ""
|
3240 |
|
3241 |
-
#: languages/vue.php:
|
3242 |
msgid "Priority Support"
|
3243 |
msgstr ""
|
3244 |
|
3245 |
-
#: languages/vue.php:
|
3246 |
msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
|
3247 |
msgstr ""
|
3248 |
|
3249 |
-
#: languages/vue.php:
|
3250 |
msgid "Feature"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#: languages/vue.php:
|
3254 |
msgid "Lite"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
-
#: languages/vue.php:
|
3258 |
msgid "Pro"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
-
#: languages/vue.php:
|
3262 |
msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
-
#: languages/vue.php:
|
3266 |
msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
|
3267 |
msgstr ""
|
3268 |
|
3269 |
-
#: languages/vue.php:
|
3270 |
msgid "Upgrade to Pro"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
-
#: languages/vue.php:
|
3274 |
msgid "Universal Tracking"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
-
#: languages/vue.php:
|
3278 |
msgid "Included"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
-
#: languages/vue.php:
|
3282 |
msgid "Custom Google Analytics Link Tracking"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
-
#: languages/vue.php:
|
3286 |
msgid "Standard Tracking"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
-
#: languages/vue.php:
|
3290 |
msgid "Advanced Tracking"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
-
#: languages/vue.php:
|
3294 |
msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
-
#: languages/vue.php:
|
3298 |
msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
-
#: languages/vue.php:
|
3302 |
msgid "No-Code-Needed Tracking Features"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
-
#: languages/vue.php:
|
3306 |
msgid "Basic Tracking Options"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
-
#: languages/vue.php:
|
3310 |
msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
-
#: languages/vue.php:
|
3314 |
msgid "Advanced Tracking Options"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
-
#: languages/vue.php:
|
3318 |
msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
-
#: languages/vue.php:
|
3322 |
-
msgid "
|
3323 |
msgstr ""
|
3324 |
|
3325 |
-
|
3326 |
-
|
3327 |
-
msgid "Unique %s Sessions"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
-
#: languages/vue.php:
|
3331 |
-
msgid "
|
3332 |
msgstr ""
|
3333 |
|
3334 |
-
|
3335 |
-
|
3336 |
-
msgid "Unique %s Pageviews"
|
3337 |
msgstr ""
|
3338 |
|
3339 |
-
#: languages/vue.php:
|
3340 |
-
msgid "
|
3341 |
msgstr ""
|
3342 |
|
3343 |
-
#: languages/vue.php:
|
3344 |
-
msgid "
|
3345 |
msgstr ""
|
3346 |
|
3347 |
-
#: languages/vue.php:
|
3348 |
-
msgid "
|
3349 |
msgstr ""
|
3350 |
|
3351 |
-
#: languages/vue.php:
|
3352 |
-
msgid "
|
3353 |
msgstr ""
|
3354 |
|
3355 |
-
#: languages/vue.php:
|
3356 |
-
msgid "
|
3357 |
msgstr ""
|
3358 |
|
3359 |
-
#: languages/vue.php:
|
3360 |
-
msgid "
|
3361 |
msgstr ""
|
3362 |
|
3363 |
-
#: languages/vue.php:
|
3364 |
msgid "ExactMetrics Recommends WPForms"
|
3365 |
msgstr ""
|
3366 |
|
3367 |
-
#: languages/vue.php:
|
3368 |
msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
|
3369 |
msgstr ""
|
3370 |
|
3371 |
-
#: languages/vue.php:
|
3372 |
msgid "Used on over 3,000,000 websites!"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: languages/vue.php:
|
3376 |
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!"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
-
#: languages/vue.php:
|
3380 |
msgid "Skip this Step"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
-
#: languages/vue.php:
|
3384 |
msgid "Continue & Install WPForms"
|
3385 |
msgstr ""
|
3386 |
|
3387 |
-
#: languages/vue.php:
|
3388 |
msgid "Installing..."
|
3389 |
msgstr ""
|
3390 |
|
3391 |
-
#: languages/vue.php:
|
3392 |
-
msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
|
3393 |
-
msgstr ""
|
3394 |
-
|
3395 |
-
#: languages/vue.php:1183
|
3396 |
-
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."
|
3397 |
-
msgstr ""
|
3398 |
-
|
3399 |
-
#: languages/vue.php:1186
|
3400 |
-
msgid "The ExactMetrics Team"
|
3401 |
-
msgstr ""
|
3402 |
-
|
3403 |
-
#: languages/vue.php:1189
|
3404 |
msgid "Welcome to ExactMetrics!"
|
3405 |
msgstr ""
|
3406 |
|
3407 |
-
#: languages/vue.php:
|
3408 |
msgid "Let's get you set up."
|
3409 |
msgstr ""
|
3410 |
|
3411 |
-
#: languages/vue.php:
|
3412 |
msgid "Which category best describes your website?"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
-
#: languages/vue.php:
|
3416 |
msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
|
3417 |
msgstr ""
|
3418 |
|
3419 |
-
#: languages/vue.php:
|
3420 |
msgid "Business Website"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
#. Translators: Make text bold.
|
3424 |
-
#: languages/vue.php:
|
3425 |
msgid "Publisher %1$s(Blog)%2$s"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
-
|
3429 |
-
|
3430 |
-
msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
|
3431 |
msgstr ""
|
3432 |
|
3433 |
-
#: languages/vue.php:
|
3434 |
-
msgid "
|
3435 |
msgstr ""
|
3436 |
|
3437 |
-
#: languages/vue.php:
|
3438 |
-
msgid "
|
3439 |
msgstr ""
|
3440 |
|
3441 |
-
#: languages/vue.php:
|
3442 |
-
msgid "
|
3443 |
msgstr ""
|
3444 |
|
3445 |
-
#: languages/vue.php:
|
3446 |
-
msgid "
|
3447 |
msgstr ""
|
3448 |
|
3449 |
-
#: languages/vue.php:
|
3450 |
-
msgid "
|
3451 |
msgstr ""
|
3452 |
|
3453 |
-
#: languages/vue.php:
|
3454 |
-
msgid "
|
3455 |
msgstr ""
|
3456 |
|
3457 |
-
#: languages/vue.php:
|
3458 |
-
msgid "
|
3459 |
msgstr ""
|
3460 |
|
3461 |
-
#: languages/vue.php:
|
3462 |
-
msgid "
|
3463 |
msgstr ""
|
3464 |
|
3465 |
-
#: languages/vue.php:
|
3466 |
-
msgid "
|
3467 |
msgstr ""
|
3468 |
|
3469 |
-
#: languages/vue.php:
|
3470 |
-
msgid "
|
3471 |
msgstr ""
|
3472 |
|
3473 |
-
#: languages/vue.php:
|
3474 |
-
msgid "
|
3475 |
msgstr ""
|
3476 |
|
3477 |
-
|
3478 |
-
|
3479 |
-
msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
|
3480 |
msgstr ""
|
3481 |
|
3482 |
-
|
3483 |
-
|
3484 |
-
msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
|
3485 |
msgstr ""
|
3486 |
|
3487 |
-
#: languages/vue.php:
|
3488 |
-
msgid "
|
3489 |
msgstr ""
|
3490 |
|
3491 |
-
#: languages/vue.php:
|
3492 |
-
msgid "
|
3493 |
msgstr ""
|
3494 |
|
3495 |
-
#: languages/vue.php:
|
3496 |
-
msgid "
|
3497 |
msgstr ""
|
3498 |
|
3499 |
-
#: languages/vue.php:
|
3500 |
-
msgid "
|
3501 |
msgstr ""
|
3502 |
|
3503 |
-
#: languages/vue.php:
|
3504 |
-
msgid "
|
3505 |
msgstr ""
|
3506 |
|
3507 |
-
|
3508 |
-
|
|
|
3509 |
msgstr ""
|
3510 |
|
3511 |
-
#: languages/vue.php:
|
3512 |
-
msgid "
|
3513 |
msgstr ""
|
3514 |
|
3515 |
-
#: languages/vue.php:
|
3516 |
-
msgid "
|
3517 |
msgstr ""
|
3518 |
|
3519 |
-
#: languages/vue.php:
|
3520 |
-
msgid "
|
3521 |
msgstr ""
|
3522 |
|
3523 |
-
#: languages/vue.php:
|
3524 |
-
msgid "
|
3525 |
msgstr ""
|
3526 |
|
3527 |
-
#: languages/vue.php:
|
3528 |
-
msgid "
|
3529 |
msgstr ""
|
3530 |
|
3531 |
-
#: languages/vue.php:
|
3532 |
-
msgid "
|
3533 |
msgstr ""
|
3534 |
|
3535 |
-
#: languages/vue.php:
|
3536 |
-
msgid "
|
3537 |
msgstr ""
|
3538 |
|
3539 |
-
#: languages/vue.php:
|
3540 |
-
msgid "
|
3541 |
msgstr ""
|
3542 |
|
3543 |
-
#: languages/vue.php:
|
3544 |
-
msgid "
|
3545 |
msgstr ""
|
3546 |
|
3547 |
-
#: languages/vue.php:
|
3548 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3549 |
msgstr ""
|
3550 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3551 |
#: languages/vue.php:1301
|
3552 |
-
msgid "
|
3553 |
msgstr ""
|
3554 |
|
3555 |
#: languages/vue.php:1304
|
3556 |
-
msgid "
|
3557 |
msgstr ""
|
3558 |
|
3559 |
#: languages/vue.php:1307
|
3560 |
-
msgid "
|
3561 |
msgstr ""
|
3562 |
|
3563 |
#: languages/vue.php:1310
|
3564 |
-
msgid "
|
3565 |
-
msgstr ""
|
3566 |
-
|
3567 |
-
#: languages/vue.php:1313
|
3568 |
-
msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
|
3569 |
msgstr ""
|
3570 |
|
3571 |
-
|
3572 |
-
|
|
|
3573 |
msgstr ""
|
3574 |
|
3575 |
-
#: languages/vue.php:
|
3576 |
-
msgid "
|
3577 |
msgstr ""
|
3578 |
|
3579 |
-
#: languages/vue.php:
|
3580 |
-
msgid "
|
3581 |
msgstr ""
|
3582 |
|
3583 |
-
#: languages/vue.php:
|
3584 |
-
msgid "
|
3585 |
msgstr ""
|
3586 |
|
3587 |
-
#: languages/vue.php:
|
3588 |
-
msgid "
|
3589 |
msgstr ""
|
3590 |
|
3591 |
-
#: languages/vue.php:
|
3592 |
-
msgid "
|
3593 |
msgstr ""
|
3594 |
|
3595 |
-
#: languages/vue.php:
|
3596 |
-
msgid "
|
3597 |
msgstr ""
|
3598 |
|
3599 |
-
#: languages/vue.php:
|
3600 |
-
msgid "
|
3601 |
msgstr ""
|
3602 |
|
3603 |
-
#: languages/vue.php:
|
3604 |
-
msgid "
|
3605 |
msgstr ""
|
3606 |
|
3607 |
-
#: languages/vue.php:
|
3608 |
-
msgid "
|
3609 |
msgstr ""
|
3610 |
|
3611 |
-
#: languages/vue.php:
|
3612 |
-
msgid "
|
3613 |
msgstr ""
|
3614 |
|
3615 |
-
#: languages/vue.php:
|
3616 |
-
msgid "
|
3617 |
msgstr ""
|
3618 |
|
3619 |
-
#: languages/vue.php:
|
3620 |
-
msgid "
|
3621 |
msgstr ""
|
3622 |
|
3623 |
-
#: languages/vue.php:
|
3624 |
-
msgid "
|
3625 |
msgstr ""
|
3626 |
|
3627 |
-
#: languages/vue.php:
|
3628 |
-
msgid "
|
3629 |
msgstr ""
|
3630 |
|
3631 |
-
#: languages/vue.php:
|
3632 |
-
msgid "
|
3633 |
msgstr ""
|
3634 |
|
3635 |
-
|
3636 |
-
|
|
|
3637 |
msgstr ""
|
3638 |
|
|
|
3639 |
#: languages/vue.php:1367
|
3640 |
-
msgid "
|
3641 |
msgstr ""
|
3642 |
|
3643 |
#: languages/vue.php:1370
|
3644 |
-
msgid "
|
3645 |
msgstr ""
|
3646 |
|
3647 |
#: languages/vue.php:1373
|
3648 |
-
msgid "
|
3649 |
msgstr ""
|
3650 |
|
3651 |
#: languages/vue.php:1376
|
3652 |
-
msgid "
|
3653 |
msgstr ""
|
3654 |
|
3655 |
#: languages/vue.php:1379
|
3656 |
-
msgid "
|
3657 |
msgstr ""
|
3658 |
|
3659 |
#: languages/vue.php:1382
|
3660 |
-
msgid "
|
3661 |
msgstr ""
|
3662 |
|
3663 |
#: languages/vue.php:1385
|
3664 |
-
msgid "
|
3665 |
msgstr ""
|
3666 |
|
3667 |
#: languages/vue.php:1388
|
3668 |
-
msgid "
|
3669 |
msgstr ""
|
3670 |
|
3671 |
#: languages/vue.php:1391
|
3672 |
-
msgid "
|
3673 |
msgstr ""
|
3674 |
|
3675 |
#: languages/vue.php:1394
|
3676 |
-
msgid "
|
3677 |
msgstr ""
|
3678 |
|
3679 |
-
#: languages/vue.php:
|
3680 |
-
msgid "
|
3681 |
msgstr ""
|
3682 |
|
3683 |
-
#: languages/vue.php:
|
3684 |
-
msgid "
|
3685 |
msgstr ""
|
3686 |
|
3687 |
-
#: languages/vue.php:
|
3688 |
-
msgid "
|
3689 |
msgstr ""
|
3690 |
|
3691 |
-
#. Translators: Marks the field as required.
|
3692 |
#: languages/vue.php:1407
|
3693 |
-
msgid "
|
3694 |
msgstr ""
|
3695 |
|
3696 |
-
|
3697 |
-
|
3698 |
-
msgid "The full website URL (e.g. %1$s %2$s%3$s)"
|
3699 |
msgstr ""
|
3700 |
|
3701 |
-
|
3702 |
-
|
3703 |
-
|
|
|
|
|
|
|
3704 |
msgstr ""
|
3705 |
|
3706 |
-
#. Translators: Make the text italic.
|
3707 |
#: languages/vue.php:1419
|
3708 |
-
msgid "
|
3709 |
msgstr ""
|
3710 |
|
3711 |
-
|
3712 |
-
|
3713 |
-
msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
-
|
3717 |
-
|
3718 |
-
msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
|
3719 |
msgstr ""
|
3720 |
|
3721 |
-
#: languages/vue.php:
|
3722 |
-
msgid "
|
3723 |
msgstr ""
|
3724 |
|
3725 |
-
#: languages/vue.php:
|
3726 |
-
msgid "
|
3727 |
msgstr ""
|
3728 |
|
3729 |
-
#: languages/vue.php:
|
3730 |
-
msgid "
|
|
|
|
|
|
|
|
|
3731 |
msgstr ""
|
3732 |
|
3733 |
-
#. Translators: Make the text bold.
|
3734 |
#: languages/vue.php:1440
|
3735 |
-
msgid "
|
3736 |
msgstr ""
|
3737 |
|
3738 |
#: languages/vue.php:1443
|
3739 |
-
msgid "
|
3740 |
msgstr ""
|
3741 |
|
3742 |
#: languages/vue.php:1446
|
3743 |
-
msgid "
|
3744 |
msgstr ""
|
3745 |
|
3746 |
#: languages/vue.php:1449
|
3747 |
-
msgid "
|
3748 |
msgstr ""
|
3749 |
|
3750 |
#: languages/vue.php:1452
|
3751 |
-
msgid "
|
3752 |
msgstr ""
|
3753 |
|
3754 |
#: languages/vue.php:1455
|
3755 |
-
msgid "
|
3756 |
msgstr ""
|
3757 |
|
3758 |
#: languages/vue.php:1458
|
3759 |
-
msgid "
|
3760 |
msgstr ""
|
3761 |
|
3762 |
-
|
3763 |
-
|
|
|
3764 |
msgstr ""
|
3765 |
|
3766 |
-
#: languages/vue.php:
|
3767 |
-
msgid "
|
3768 |
msgstr ""
|
3769 |
|
3770 |
-
#: languages/vue.php:
|
3771 |
-
msgid "
|
3772 |
msgstr ""
|
3773 |
|
3774 |
-
#: languages/vue.php:
|
3775 |
-
msgid "
|
3776 |
msgstr ""
|
3777 |
|
3778 |
-
#: languages/vue.php:
|
3779 |
-
msgid "
|
3780 |
msgstr ""
|
3781 |
|
3782 |
-
|
3783 |
-
|
|
|
3784 |
msgstr ""
|
3785 |
|
3786 |
-
#: languages/vue.php:
|
3787 |
-
msgid "
|
3788 |
msgstr ""
|
3789 |
|
3790 |
-
#: languages/vue.php:
|
3791 |
-
msgid "
|
3792 |
msgstr ""
|
3793 |
|
3794 |
-
#: languages/vue.php:
|
3795 |
-
msgid "
|
3796 |
msgstr ""
|
3797 |
|
3798 |
-
|
3799 |
-
|
3800 |
-
msgid "Example: %s"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
-
#. Translators: Examples.
|
3804 |
#: languages/vue.php:1493
|
3805 |
-
msgid "
|
3806 |
msgstr ""
|
3807 |
|
3808 |
#: languages/vue.php:1496
|
3809 |
-
msgid "
|
3810 |
msgstr ""
|
3811 |
|
3812 |
#: languages/vue.php:1499
|
3813 |
-
msgid "
|
3814 |
msgstr ""
|
3815 |
|
3816 |
#: languages/vue.php:1502
|
3817 |
-
msgid "
|
3818 |
msgstr ""
|
3819 |
|
3820 |
#: languages/vue.php:1505
|
3821 |
-
msgid "
|
3822 |
msgstr ""
|
3823 |
|
3824 |
#: languages/vue.php:1508
|
3825 |
-
msgid "
|
3826 |
msgstr ""
|
3827 |
|
3828 |
#: languages/vue.php:1511
|
3829 |
-
msgid "
|
3830 |
msgstr ""
|
3831 |
|
3832 |
-
|
3833 |
-
|
|
|
3834 |
msgstr ""
|
3835 |
|
3836 |
-
|
3837 |
-
|
|
|
3838 |
msgstr ""
|
3839 |
|
3840 |
-
#: languages/vue.php:
|
3841 |
-
msgid "
|
3842 |
msgstr ""
|
3843 |
|
3844 |
-
#: languages/vue.php:
|
3845 |
-
msgid "See
|
3846 |
msgstr ""
|
3847 |
|
3848 |
-
#: languages/vue.php:
|
3849 |
-
msgid "
|
3850 |
msgstr ""
|
3851 |
|
3852 |
-
#: languages/vue.php:
|
3853 |
-
msgid "
|
3854 |
msgstr ""
|
3855 |
|
3856 |
-
#: languages/vue.php:
|
3857 |
-
msgid "
|
3858 |
msgstr ""
|
3859 |
|
3860 |
-
#: languages/vue.php:
|
3861 |
-
msgid "
|
3862 |
msgstr ""
|
3863 |
|
3864 |
-
|
3865 |
-
|
3866 |
-
|
|
|
|
|
|
|
|
|
3867 |
msgstr ""
|
3868 |
|
3869 |
-
#: languages/vue.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3870 |
msgid "Recommended Addons"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
#. Translators: Add a link to upgrade and make the text green.
|
3874 |
-
#: languages/vue.php:
|
3875 |
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!"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
-
#: languages/vue.php:
|
3879 |
msgid "Upgrade to PRO Now"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
-
#: languages/vue.php:
|
3883 |
-
msgid "See who’s viewing and submitting your forms, so you can increase your
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#: languages/vue.php:
|
3887 |
-
msgid "See All Your Important Store Metrics in One Place.
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: languages/vue.php:
|
3891 |
msgid "... and more:"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
-
#: languages/vue.php:
|
3895 |
msgid "Dimensions- Track authors, categories, trags, searches, users and more."
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: languages/vue.php:
|
3899 |
msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
|
3900 |
msgstr ""
|
3901 |
|
3902 |
-
#: languages/vue.php:
|
3903 |
msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
|
3904 |
msgstr ""
|
3905 |
|
3906 |
-
#: languages/vue.php:
|
3907 |
msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
|
3908 |
msgstr ""
|
3909 |
|
3910 |
-
#: languages/vue.php:
|
3911 |
msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
|
3912 |
msgstr ""
|
3913 |
|
3914 |
-
#: languages/vue.php:
|
3915 |
msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
|
3916 |
msgstr ""
|
3917 |
|
3918 |
-
#: languages/vue.php:
|
3919 |
msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: languages/vue.php:
|
3923 |
msgid "Ads- See who’s clicking on your Google Adsense banner ads."
|
3924 |
msgstr ""
|
3925 |
|
3926 |
-
#: languages/vue.php:1588
|
3927 |
-
msgid "Search Addons"
|
3928 |
-
msgstr ""
|
3929 |
-
|
3930 |
-
#. Translators: Error status and error text.
|
3931 |
-
#: languages/vue.php:1592
|
3932 |
-
msgid "Can't deactivate the license. Error: %1$s, %2$s"
|
3933 |
-
msgstr ""
|
3934 |
-
|
3935 |
#. Translators: Error status and error text.
|
3936 |
-
#: languages/vue.php:
|
3937 |
-
msgid "Can't
|
3938 |
msgstr ""
|
3939 |
|
3940 |
-
#: languages/vue.php:
|
3941 |
msgid "You appear to be offline."
|
3942 |
msgstr ""
|
3943 |
|
3944 |
#. Translators: Error status and error text.
|
3945 |
-
#: languages/vue.php:
|
3946 |
-
msgid "Can't
|
3947 |
-
msgstr ""
|
3948 |
-
|
3949 |
-
#: languages/vue.php:1606
|
3950 |
-
msgid "Error loading license details"
|
3951 |
msgstr ""
|
3952 |
|
3953 |
-
#. Translators: Error status and error text.
|
3954 |
#: languages/vue.php:1610
|
3955 |
-
msgid "
|
3956 |
msgstr ""
|
3957 |
|
3958 |
#. Translators: Error status and error text.
|
3959 |
#: languages/vue.php:1614
|
3960 |
-
msgid "Can't
|
3961 |
msgstr ""
|
3962 |
|
3963 |
-
|
3964 |
-
|
|
|
3965 |
msgstr ""
|
3966 |
|
3967 |
-
|
3968 |
-
|
|
|
3969 |
msgstr ""
|
3970 |
|
3971 |
-
|
3972 |
-
|
|
|
3973 |
msgstr ""
|
3974 |
|
3975 |
-
|
3976 |
-
|
|
|
3977 |
msgstr ""
|
3978 |
|
3979 |
-
#: languages/vue.php:
|
3980 |
-
msgid "
|
3981 |
msgstr ""
|
3982 |
|
3983 |
-
#: languages/vue.php:
|
3984 |
msgid "You appear to be offline. WPForms not installed."
|
3985 |
msgstr ""
|
3986 |
|
3987 |
#. Translators: Error status and error text.
|
3988 |
-
#: languages/vue.php:
|
3989 |
msgid "Can't activate addon. Error: %1$s, %2$s"
|
3990 |
msgstr ""
|
3991 |
|
3992 |
-
#: languages/vue.php:
|
3993 |
msgid "You appear to be offline. Addon not activated."
|
3994 |
msgstr ""
|
3995 |
|
3996 |
#. Translators: Error status and error text.
|
3997 |
-
#: languages/vue.php:
|
3998 |
msgid "Can't deactivate addon. Error: %1$s, %2$s"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
-
#: languages/vue.php:
|
4002 |
msgid "You appear to be offline. Addon not deactivated."
|
4003 |
msgstr ""
|
4004 |
|
4005 |
#. Translators: Error status and error text.
|
4006 |
-
#: languages/vue.php:
|
4007 |
msgid "Can't install plugin. Error: %1$s, %2$s"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
-
#: languages/vue.php:
|
4011 |
msgid "You appear to be offline. Plugin not installed."
|
4012 |
msgstr ""
|
4013 |
|
4014 |
#. Translators: Error status and error text.
|
4015 |
-
#: languages/vue.php:
|
4016 |
msgid "Can't install addon. Error: %1$s, %2$s"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
-
#: languages/vue.php:
|
4020 |
msgid "You appear to be offline. Addon not installed."
|
4021 |
msgstr ""
|
4022 |
|
4023 |
#. Translators: Error status and error text.
|
4024 |
-
#: languages/vue.php:
|
4025 |
msgid "Can't install WPForms. Error: %1$s, %2$s"
|
4026 |
msgstr ""
|
4027 |
|
4028 |
-
|
4029 |
-
|
4030 |
-
|
4031 |
-
|
4032 |
-
#: languages/vue.php:1670
|
4033 |
-
msgid "Activating Addon"
|
4034 |
-
msgstr ""
|
4035 |
-
|
4036 |
-
#: languages/vue.php:1673
|
4037 |
-
msgid "Addon Activated"
|
4038 |
msgstr ""
|
4039 |
|
|
|
4040 |
#: languages/vue.php:1676
|
4041 |
-
msgid "
|
4042 |
msgstr ""
|
4043 |
|
4044 |
-
|
4045 |
-
|
|
|
4046 |
msgstr ""
|
4047 |
|
4048 |
-
#. Translators: Adds the error status and status text.
|
4049 |
#: languages/vue.php:1683
|
4050 |
-
msgid "Error
|
4051 |
msgstr ""
|
4052 |
|
4053 |
-
|
4054 |
-
|
|
|
4055 |
msgstr ""
|
4056 |
|
4057 |
-
|
4058 |
-
|
|
|
4059 |
msgstr ""
|
4060 |
|
|
|
4061 |
#: languages/vue.php:1695
|
4062 |
-
msgid "
|
4063 |
msgstr ""
|
4064 |
|
4065 |
#: languages/vue.php:1698
|
4066 |
-
msgid "
|
4067 |
msgstr ""
|
4068 |
|
4069 |
#: languages/vue.php:1701
|
4070 |
-
msgid "
|
4071 |
msgstr ""
|
4072 |
|
4073 |
#: languages/vue.php:1704
|
4074 |
-
msgid "
|
4075 |
msgstr ""
|
4076 |
|
4077 |
-
|
4078 |
-
|
|
|
4079 |
msgstr ""
|
4080 |
|
4081 |
-
#: languages/vue.php:
|
4082 |
-
msgid "
|
4083 |
msgstr ""
|
4084 |
|
4085 |
-
#. Translators: Install/Activate the addon.
|
4086 |
#: languages/vue.php:1714
|
4087 |
-
msgid "
|
4088 |
msgstr ""
|
4089 |
|
4090 |
#: languages/vue.php:1717
|
4091 |
-
msgid "
|
4092 |
msgstr ""
|
4093 |
|
4094 |
#: languages/vue.php:1720
|
4095 |
-
msgid "
|
4096 |
msgstr ""
|
4097 |
|
4098 |
#: languages/vue.php:1723
|
@@ -4108,643 +4141,754 @@ msgstr ""
|
|
4108 |
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"
|
4109 |
msgstr ""
|
4110 |
|
4111 |
-
|
4112 |
-
|
|
|
4113 |
msgstr ""
|
4114 |
|
4115 |
-
#. Translators: Makes text bold and adds smiley.
|
4116 |
#: languages/vue.php:1737
|
4117 |
-
msgid "
|
4118 |
msgstr ""
|
4119 |
|
4120 |
-
|
4121 |
-
|
4122 |
-
msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
|
4123 |
msgstr ""
|
4124 |
|
4125 |
-
#: languages/vue.php:
|
4126 |
-
msgid "
|
4127 |
msgstr ""
|
4128 |
|
4129 |
-
#: languages/vue.php:
|
4130 |
-
|
4131 |
-
msgid "Connect ExactMetrics"
|
4132 |
msgstr ""
|
4133 |
|
4134 |
-
#: languages/vue.php:
|
4135 |
-
msgid "
|
4136 |
msgstr ""
|
4137 |
|
4138 |
-
#: languages/vue.php:
|
4139 |
-
msgid "
|
4140 |
msgstr ""
|
4141 |
|
4142 |
-
#: languages/vue.php:
|
4143 |
-
msgid "
|
4144 |
msgstr ""
|
4145 |
|
4146 |
-
#: languages/vue.php:
|
4147 |
-
msgid "
|
4148 |
msgstr ""
|
4149 |
|
4150 |
-
#: languages/vue.php:
|
4151 |
-
msgid "
|
4152 |
msgstr ""
|
4153 |
|
4154 |
-
#: languages/vue.php:
|
4155 |
-
msgid "
|
4156 |
msgstr ""
|
4157 |
|
4158 |
-
#: languages/vue.php:
|
4159 |
-
msgid "
|
4160 |
msgstr ""
|
4161 |
|
4162 |
-
#: languages/vue.php:
|
4163 |
-
msgid "
|
4164 |
msgstr ""
|
4165 |
|
4166 |
-
#: languages/vue.php:
|
4167 |
-
msgid "
|
4168 |
msgstr ""
|
4169 |
|
4170 |
-
#: languages/vue.php:
|
4171 |
-
msgid "
|
4172 |
msgstr ""
|
4173 |
|
4174 |
-
#: languages/vue.php:
|
4175 |
-
msgid "
|
4176 |
msgstr ""
|
4177 |
|
|
|
4178 |
#: languages/vue.php:1783
|
4179 |
-
msgid "
|
4180 |
msgstr ""
|
4181 |
|
4182 |
#: languages/vue.php:1786
|
4183 |
-
msgid "
|
4184 |
msgstr ""
|
4185 |
|
4186 |
#: languages/vue.php:1789
|
4187 |
-
msgid "Top
|
4188 |
msgstr ""
|
4189 |
|
4190 |
#: languages/vue.php:1792
|
4191 |
-
msgid "
|
4192 |
msgstr ""
|
4193 |
|
4194 |
#: languages/vue.php:1795
|
4195 |
-
msgid "
|
4196 |
msgstr ""
|
4197 |
|
4198 |
#: languages/vue.php:1798
|
4199 |
-
msgid "
|
4200 |
msgstr ""
|
4201 |
|
4202 |
#: languages/vue.php:1801
|
4203 |
-
msgid "
|
4204 |
msgstr ""
|
4205 |
|
4206 |
#: languages/vue.php:1804
|
4207 |
-
msgid "
|
4208 |
msgstr ""
|
4209 |
|
4210 |
#: languages/vue.php:1807
|
4211 |
-
msgid "
|
4212 |
msgstr ""
|
4213 |
|
4214 |
#: languages/vue.php:1810
|
4215 |
-
msgid "
|
4216 |
msgstr ""
|
4217 |
|
4218 |
#: languages/vue.php:1813
|
4219 |
-
msgid "
|
4220 |
msgstr ""
|
4221 |
|
4222 |
#: languages/vue.php:1816
|
4223 |
-
msgid "
|
4224 |
msgstr ""
|
4225 |
|
4226 |
-
|
4227 |
-
|
4228 |
-
msgid "Status: %s"
|
4229 |
msgstr ""
|
4230 |
|
4231 |
-
#: languages/vue.php:
|
4232 |
-
msgid "
|
4233 |
msgstr ""
|
4234 |
|
4235 |
-
|
4236 |
-
|
4237 |
-
msgid "%s can't be empty."
|
4238 |
msgstr ""
|
4239 |
|
4240 |
-
#: languages/vue.php:
|
4241 |
-
msgid "
|
4242 |
msgstr ""
|
4243 |
|
4244 |
-
#: languages/vue.php:
|
4245 |
-
msgid "
|
4246 |
msgstr ""
|
4247 |
|
4248 |
-
#: languages/vue.php:
|
4249 |
-
msgid "
|
4250 |
msgstr ""
|
4251 |
|
4252 |
-
|
4253 |
-
|
|
|
4254 |
msgstr ""
|
4255 |
|
|
|
4256 |
#: languages/vue.php:1842
|
4257 |
-
msgid "
|
4258 |
msgstr ""
|
4259 |
|
4260 |
#: languages/vue.php:1845
|
4261 |
-
msgid "
|
4262 |
-
msgstr ""
|
4263 |
-
|
4264 |
-
#: languages/vue.php:1848
|
4265 |
-
msgid "Hostname"
|
4266 |
msgstr ""
|
4267 |
|
4268 |
-
|
4269 |
-
|
|
|
4270 |
msgstr ""
|
4271 |
|
4272 |
-
#: languages/vue.php:
|
4273 |
-
msgid "
|
4274 |
msgstr ""
|
4275 |
|
4276 |
-
#: languages/vue.php:
|
4277 |
-
msgid "
|
4278 |
msgstr ""
|
4279 |
|
4280 |
-
#: languages/vue.php:
|
4281 |
-
msgid "
|
4282 |
msgstr ""
|
4283 |
|
4284 |
-
#: languages/vue.php:
|
4285 |
-
msgid "
|
4286 |
msgstr ""
|
4287 |
|
4288 |
-
#: languages/vue.php:
|
4289 |
-
msgid "
|
4290 |
msgstr ""
|
4291 |
|
4292 |
-
#: languages/vue.php:
|
4293 |
-
msgid "
|
4294 |
msgstr ""
|
4295 |
|
4296 |
-
#: languages/vue.php:
|
4297 |
-
msgid "
|
4298 |
msgstr ""
|
4299 |
|
4300 |
-
#: languages/vue.php:
|
4301 |
-
msgid "
|
4302 |
msgstr ""
|
4303 |
|
4304 |
-
#: languages/vue.php:
|
4305 |
-
msgid "
|
4306 |
msgstr ""
|
4307 |
|
|
|
4308 |
#: languages/vue.php:1881
|
4309 |
-
msgid "
|
4310 |
msgstr ""
|
4311 |
|
4312 |
#: languages/vue.php:1884
|
4313 |
-
msgid "
|
4314 |
msgstr ""
|
4315 |
|
4316 |
#: languages/vue.php:1887
|
4317 |
-
msgid "
|
4318 |
msgstr ""
|
4319 |
|
4320 |
#: languages/vue.php:1890
|
4321 |
-
msgid "
|
4322 |
msgstr ""
|
4323 |
|
4324 |
#: languages/vue.php:1893
|
4325 |
-
msgid "
|
4326 |
msgstr ""
|
4327 |
|
4328 |
#: languages/vue.php:1896
|
4329 |
-
msgid "
|
4330 |
msgstr ""
|
4331 |
|
4332 |
#: languages/vue.php:1899
|
4333 |
-
msgid "
|
4334 |
msgstr ""
|
4335 |
|
4336 |
#: languages/vue.php:1902
|
4337 |
-
msgid "
|
4338 |
msgstr ""
|
4339 |
|
4340 |
#: languages/vue.php:1905
|
4341 |
-
msgid "
|
4342 |
msgstr ""
|
4343 |
|
4344 |
#: languages/vue.php:1908
|
4345 |
-
msgid "
|
4346 |
msgstr ""
|
4347 |
|
4348 |
#: languages/vue.php:1911
|
4349 |
-
msgid "
|
4350 |
msgstr ""
|
4351 |
|
4352 |
#: languages/vue.php:1914
|
4353 |
-
msgid "
|
4354 |
msgstr ""
|
4355 |
|
4356 |
#: languages/vue.php:1917
|
4357 |
-
msgid "
|
4358 |
msgstr ""
|
4359 |
|
4360 |
-
|
4361 |
-
|
4362 |
-
msgid "vs. Previous Day"
|
4363 |
msgstr ""
|
4364 |
|
4365 |
-
#: languages/vue.php:
|
4366 |
-
msgid "
|
|
|
|
|
|
|
|
|
4367 |
msgstr ""
|
4368 |
|
4369 |
-
#: languages/vue.php:
|
4370 |
msgid "Ads Tracking"
|
4371 |
msgstr ""
|
4372 |
|
4373 |
-
#: languages/vue.php:
|
4374 |
msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
|
4375 |
msgstr ""
|
4376 |
|
4377 |
-
|
4378 |
-
|
4379 |
-
"
|
4380 |
-
" and other privacy regulations."
|
4381 |
msgstr ""
|
4382 |
|
4383 |
-
#: languages/vue.php:
|
4384 |
-
msgid "
|
4385 |
msgstr ""
|
4386 |
|
4387 |
-
|
4388 |
-
|
4389 |
-
msgid "Can't load errors. Error: %1$s, %2$s"
|
4390 |
msgstr ""
|
4391 |
|
4392 |
-
#. Translators: Error status and error text.
|
4393 |
#: languages/vue.php:1945
|
4394 |
-
msgid "
|
4395 |
msgstr ""
|
4396 |
|
4397 |
-
|
4398 |
-
|
4399 |
-
msgid "Can't save settings. Error: %1$s, %2$s"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
-
#: languages/vue.php:
|
4403 |
-
msgid "
|
4404 |
msgstr ""
|
4405 |
|
4406 |
-
#: languages/vue.php:
|
4407 |
-
msgid "
|
4408 |
msgstr ""
|
4409 |
|
4410 |
-
#: languages/vue.php:
|
4411 |
-
msgid "
|
4412 |
msgstr ""
|
4413 |
|
|
|
4414 |
#: languages/vue.php:1961
|
4415 |
-
msgid "
|
4416 |
msgstr ""
|
4417 |
|
4418 |
#: languages/vue.php:1964
|
4419 |
-
msgid "
|
4420 |
msgstr ""
|
4421 |
|
4422 |
#: languages/vue.php:1967
|
4423 |
-
msgid "
|
4424 |
msgstr ""
|
4425 |
|
4426 |
-
|
4427 |
-
|
|
|
4428 |
msgstr ""
|
4429 |
|
4430 |
-
#: languages/vue.php:
|
4431 |
-
msgid "
|
4432 |
msgstr ""
|
4433 |
|
4434 |
-
#: languages/vue.php:
|
4435 |
-
msgid "
|
4436 |
msgstr ""
|
4437 |
|
4438 |
-
|
4439 |
-
|
|
|
4440 |
msgstr ""
|
4441 |
|
4442 |
-
#: languages/vue.php:
|
4443 |
-
|
|
|
4444 |
msgstr ""
|
4445 |
|
4446 |
-
|
4447 |
-
|
4448 |
-
msgid "Complete documentation on usage tracking is available %1$shere%2$s."
|
4449 |
msgstr ""
|
4450 |
|
4451 |
-
#: languages/vue.php:
|
4452 |
-
msgid "
|
4453 |
msgstr ""
|
4454 |
|
4455 |
-
#: languages/vue.php:
|
4456 |
-
msgid "
|
4457 |
msgstr ""
|
4458 |
|
4459 |
-
#: languages/vue.php:
|
4460 |
-
msgid "
|
4461 |
msgstr ""
|
4462 |
|
4463 |
-
#: languages/vue.php:
|
4464 |
-
msgid "
|
4465 |
msgstr ""
|
4466 |
|
4467 |
-
#: languages/vue.php:
|
4468 |
-
msgid "
|
4469 |
msgstr ""
|
4470 |
|
4471 |
-
#: languages/vue.php:
|
4472 |
-
msgid "
|
4473 |
msgstr ""
|
4474 |
|
4475 |
-
#. Translators: Adds link to the account area to retreive license key.
|
4476 |
#: languages/vue.php:2008
|
4477 |
-
msgid "
|
4478 |
msgstr ""
|
4479 |
|
4480 |
#: languages/vue.php:2011
|
4481 |
-
msgid "
|
4482 |
msgstr ""
|
4483 |
|
4484 |
#: languages/vue.php:2014
|
4485 |
-
msgid "
|
4486 |
msgstr ""
|
4487 |
|
4488 |
#: languages/vue.php:2017
|
4489 |
-
msgid "
|
4490 |
msgstr ""
|
4491 |
|
4492 |
#: languages/vue.php:2020
|
4493 |
-
msgid "
|
|
|
|
|
4494 |
msgstr ""
|
4495 |
|
4496 |
-
#: languages/vue.php:
|
4497 |
-
msgid "
|
4498 |
msgstr ""
|
4499 |
|
4500 |
-
#: languages/vue.php:
|
4501 |
-
msgid "
|
4502 |
msgstr ""
|
4503 |
|
4504 |
-
#: languages/vue.php:
|
4505 |
-
msgid "
|
4506 |
msgstr ""
|
4507 |
|
4508 |
-
#: languages/vue.php:
|
4509 |
-
msgid "
|
4510 |
msgstr ""
|
4511 |
|
4512 |
-
#. Translators: Make text bold.
|
4513 |
#: languages/vue.php:2036
|
4514 |
-
msgid "
|
4515 |
msgstr ""
|
4516 |
|
4517 |
#: languages/vue.php:2039
|
4518 |
-
msgid "
|
4519 |
msgstr ""
|
4520 |
|
4521 |
#: languages/vue.php:2042
|
4522 |
-
msgid "
|
4523 |
msgstr ""
|
4524 |
|
4525 |
#: languages/vue.php:2045
|
4526 |
-
msgid "
|
4527 |
msgstr ""
|
4528 |
|
4529 |
-
|
4530 |
-
|
|
|
4531 |
msgstr ""
|
4532 |
|
4533 |
-
#. Translators: Make text bold.
|
4534 |
#: languages/vue.php:2052
|
4535 |
-
msgid "
|
4536 |
msgstr ""
|
4537 |
|
4538 |
#: languages/vue.php:2055
|
4539 |
-
msgid "
|
4540 |
msgstr ""
|
4541 |
|
4542 |
#: languages/vue.php:2058
|
4543 |
-
msgid "
|
4544 |
msgstr ""
|
4545 |
|
4546 |
#: languages/vue.php:2061
|
4547 |
-
msgid "
|
4548 |
-
msgstr ""
|
4549 |
-
|
4550 |
-
#: languages/vue.php:2064
|
4551 |
-
msgid "Deactivate"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
#: languages/vue.php:2067
|
4555 |
-
msgid "
|
4556 |
msgstr ""
|
4557 |
|
4558 |
-
|
4559 |
-
|
4560 |
-
msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
|
4561 |
msgstr ""
|
4562 |
|
4563 |
-
#: languages/vue.php:
|
4564 |
-
msgid "
|
4565 |
msgstr ""
|
4566 |
|
4567 |
-
#: languages/vue.php:
|
4568 |
-
msgid "
|
4569 |
msgstr ""
|
4570 |
|
4571 |
-
#: languages/vue.php:
|
4572 |
-
msgid "
|
4573 |
msgstr ""
|
4574 |
|
4575 |
-
#: languages/vue.php:
|
4576 |
-
msgid "
|
4577 |
msgstr ""
|
4578 |
|
4579 |
-
|
4580 |
-
|
4581 |
-
msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
|
4582 |
msgstr ""
|
4583 |
|
4584 |
-
#. Translators: Error status and error text.
|
4585 |
#: languages/vue.php:2091
|
4586 |
-
msgid "
|
4587 |
msgstr ""
|
4588 |
|
4589 |
#: languages/vue.php:2094
|
4590 |
-
msgid "
|
4591 |
msgstr ""
|
4592 |
|
4593 |
-
|
4594 |
-
|
4595 |
-
msgid "Can't load authentication details. Error: %1$s, %2$s"
|
4596 |
msgstr ""
|
4597 |
|
4598 |
-
#. Translators:
|
4599 |
-
#: languages/vue.php:
|
4600 |
-
msgid "
|
4601 |
msgstr ""
|
4602 |
|
4603 |
-
#. Translators:
|
4604 |
-
#: languages/vue.php:
|
4605 |
-
msgid "
|
4606 |
msgstr ""
|
4607 |
|
4608 |
-
#. Translators:
|
4609 |
-
#: languages/vue.php:
|
4610 |
-
msgid "
|
4611 |
msgstr ""
|
4612 |
|
4613 |
-
#: languages/vue.php:
|
4614 |
-
msgid "
|
4615 |
msgstr ""
|
4616 |
|
4617 |
-
|
4618 |
-
|
4619 |
-
msgid "%s results"
|
4620 |
msgstr ""
|
4621 |
|
4622 |
-
|
4623 |
-
|
|
|
4624 |
msgstr ""
|
4625 |
|
|
|
4626 |
#: languages/vue.php:2123
|
4627 |
-
msgid "
|
4628 |
msgstr ""
|
4629 |
|
4630 |
#: languages/vue.php:2126
|
4631 |
-
msgid "
|
4632 |
msgstr ""
|
4633 |
|
4634 |
#: languages/vue.php:2129
|
4635 |
-
msgid "
|
|
|
|
|
|
|
|
|
4636 |
msgstr ""
|
4637 |
|
4638 |
#: languages/vue.php:2135
|
4639 |
-
msgid "
|
|
|
|
|
|
|
|
|
4640 |
msgstr ""
|
4641 |
|
4642 |
#: languages/vue.php:2141
|
4643 |
-
msgid "
|
4644 |
msgstr ""
|
4645 |
|
4646 |
#: languages/vue.php:2144
|
4647 |
-
msgid "
|
4648 |
msgstr ""
|
4649 |
|
4650 |
#: languages/vue.php:2147
|
4651 |
-
msgid "
|
4652 |
msgstr ""
|
4653 |
|
4654 |
#: languages/vue.php:2150
|
4655 |
-
msgid "
|
4656 |
msgstr ""
|
4657 |
|
4658 |
-
|
4659 |
-
|
4660 |
-
msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy!"
|
4661 |
msgstr ""
|
4662 |
|
4663 |
-
#: languages/vue.php:
|
4664 |
-
msgid "
|
4665 |
msgstr ""
|
4666 |
|
4667 |
-
#: languages/vue.php:
|
4668 |
-
msgid "
|
4669 |
msgstr ""
|
4670 |
|
4671 |
-
#: languages/vue.php:
|
4672 |
-
msgid "
|
4673 |
msgstr ""
|
4674 |
|
4675 |
-
#: languages/vue.php:
|
4676 |
-
msgid "
|
4677 |
msgstr ""
|
4678 |
|
4679 |
-
#: languages/vue.php:
|
4680 |
-
msgid "
|
4681 |
msgstr ""
|
4682 |
|
4683 |
-
#: languages/vue.php:
|
4684 |
-
msgid "
|
4685 |
msgstr ""
|
4686 |
|
4687 |
-
#: languages/vue.php:
|
4688 |
-
msgid "
|
4689 |
msgstr ""
|
4690 |
|
4691 |
-
#: languages/vue.php:
|
4692 |
-
msgid "
|
4693 |
msgstr ""
|
4694 |
|
4695 |
-
#: languages/vue.php:
|
4696 |
-
msgid "
|
4697 |
msgstr ""
|
4698 |
|
4699 |
-
#: languages/vue.php:
|
4700 |
-
msgid "
|
4701 |
msgstr ""
|
4702 |
|
4703 |
-
#: languages/vue.php:
|
4704 |
-
msgid "
|
4705 |
msgstr ""
|
4706 |
|
4707 |
-
|
4708 |
-
|
4709 |
-
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."
|
4710 |
msgstr ""
|
4711 |
|
4712 |
-
#: languages/vue.php:
|
4713 |
-
msgid "
|
4714 |
msgstr ""
|
4715 |
|
4716 |
-
#: languages/vue.php:
|
4717 |
-
msgid "
|
4718 |
msgstr ""
|
4719 |
|
4720 |
-
#: languages/vue.php:
|
4721 |
-
msgid "
|
4722 |
msgstr ""
|
4723 |
|
4724 |
-
#: languages/vue.php:
|
4725 |
-
msgid "
|
4726 |
msgstr ""
|
4727 |
|
4728 |
-
#: languages/vue.php:
|
4729 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4730 |
msgstr ""
|
4731 |
|
4732 |
-
#: exactmetrics.php:
|
4733 |
-
#: exactmetrics.php:
|
4734 |
-
#: googleanalytics.php:
|
4735 |
-
#: googleanalytics.php:
|
4736 |
msgid "Cheatin’ huh?"
|
4737 |
msgstr ""
|
4738 |
|
4739 |
#. Translators: Make version number bold and add a link to return to the plugins page.
|
4740 |
-
#: exactmetrics.php:
|
4741 |
-
#: googleanalytics.php:
|
4742 |
msgid "Sorry, but your version of WordPress does not meet ExactMetrics's required version of %1$s3.8%2$s to run properly. The plugin not been activated. %3$sClick here to return to the Dashboard%4$s."
|
4743 |
msgstr ""
|
4744 |
|
4745 |
#. Translators: Adds a link to the plugins page.
|
4746 |
-
#: exactmetrics.php:
|
4747 |
-
#: googleanalytics.php:
|
4748 |
msgid "Please %1$suninstall%2$s the ExactMetrics Lite Plugin. Your Pro version of ExactMetrics may not work as expected until the Lite version is uninstalled."
|
4749 |
msgstr ""
|
4750 |
|
2 |
# This file is distributed under the same license as the ExactMetrics Pro plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: ExactMetrics Pro 6.1.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: 2020-06-24T13:11:21+00:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.2.0\n"
|
15 |
"X-Domain: google-analytics-dashboard-for-wp\n"
|
28 |
msgstr ""
|
29 |
|
30 |
#. Author of the plugin
|
31 |
+
#: lite/includes/admin/wp-site-health.php:246
|
32 |
+
#: lite/includes/admin/wp-site-health.php:298
|
33 |
+
#: lite/includes/admin/wp-site-health.php:325
|
34 |
+
#: lite/includes/admin/wp-site-health.php:363
|
35 |
+
#: lite/includes/admin/wp-site-health.php:390
|
36 |
+
#: lite/includes/admin/wp-site-health.php:417
|
37 |
+
#: lite/includes/admin/wp-site-health.php:442
|
38 |
+
#: lite/includes/admin/wp-site-health.php:481
|
39 |
#: lite/includes/admin/dashboard-widget.php:97
|
40 |
+
#: includes/emails/class-emails.php:254
|
41 |
#: includes/admin/admin.php:31
|
42 |
#: includes/admin/admin.php:34
|
43 |
#: includes/admin/admin.php:42
|
68 |
msgid "ExactMetrics Connection"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: lite/includes/admin/wp-site-health.php:243
|
72 |
msgid "Your website is authenticated with ExactMetrics"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: lite/includes/admin/wp-site-health.php:249
|
76 |
msgid "ExactMetrics integrates your WordPress website with Google Analytics."
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: lite/includes/admin/wp-site-health.php:253
|
80 |
msgid "View Reports"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: lite/includes/admin/wp-site-health.php:264
|
84 |
msgid "You are using Manual UA code output"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: lite/includes/admin/wp-site-health.php:265
|
88 |
msgid "We highly recommend authenticating with ExactMetrics so that you can access our new reporting area and take advantage of new ExactMetrics features."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: lite/includes/admin/wp-site-health.php:269
|
92 |
+
#: lite/includes/admin/wp-site-health.php:280
|
93 |
msgid "Authenticate now"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: lite/includes/admin/wp-site-health.php:275
|
97 |
msgid "Please configure your Google Analytics settings"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: lite/includes/admin/wp-site-health.php:276
|
101 |
msgid "Your traffic is not being tracked by ExactMetrics at the moment and you are losing data. Authenticate and get access to the reporting area and advanced tracking features."
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: lite/includes/admin/wp-site-health.php:302
|
105 |
msgid "ExactMetrics Upgrade not applied"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: lite/includes/admin/wp-site-health.php:303
|
109 |
msgid "A valid license has been added to ExactMetrics but you are still using the Lite version."
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: lite/includes/admin/wp-site-health.php:307
|
113 |
msgid "Go to License Settings"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: lite/includes/admin/wp-site-health.php:322
|
117 |
msgid "Your website is receiving automatic updates"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: lite/includes/admin/wp-site-health.php:328
|
121 |
msgid "ExactMetrics automatic updates are enabled and you are getting the latest features, bugfixes, and security updates as they are released."
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: lite/includes/admin/wp-site-health.php:335
|
125 |
msgid "Your website is receiving minor updates"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: lite/includes/admin/wp-site-health.php:336
|
129 |
msgid "ExactMetrics minor updates are enabled and you are getting the latest bugfixes and security updates, but not major features."
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: lite/includes/admin/wp-site-health.php:340
|
133 |
msgid "Automatic updates are disabled"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: lite/includes/admin/wp-site-health.php:341
|
137 |
msgid "ExactMetrics automatic updates are disabled. We recommend enabling automatic updates so you can get access to the latest features, bugfixes, and security updates as they are released."
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: lite/includes/admin/wp-site-health.php:345
|
141 |
msgid "Update Settings"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: lite/includes/admin/wp-site-health.php:360
|
145 |
msgid "eCommerce data is not being tracked"
|
146 |
msgstr ""
|
147 |
|
148 |
#. Translators: The eCommerce store currently active.
|
149 |
+
#: lite/includes/admin/wp-site-health.php:367
|
150 |
msgid "You are using %s but the ExactMetrics eCommerce addon is not active, please Install & Activate it to start tracking eCommerce data."
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: lite/includes/admin/wp-site-health.php:372
|
154 |
+
#: lite/includes/admin/wp-site-health.php:398
|
155 |
+
#: lite/includes/admin/wp-site-health.php:425
|
156 |
+
#: languages/vue.php:605
|
157 |
msgid "View Addons"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: lite/includes/admin/wp-site-health.php:387
|
161 |
msgid "AMP pages are not being tracked"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: lite/includes/admin/wp-site-health.php:393
|
165 |
msgid "Your website has Google AMP-enabled pages set up but they are not tracked by Google Analytics at the moment. You need to Install & Activate the ExactMetrics AMP Addon."
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: lite/includes/admin/wp-site-health.php:414
|
169 |
msgid "Facebook Instant Articles pages are not being tracked"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: lite/includes/admin/wp-site-health.php:420
|
173 |
msgid "Your website has Facebook Instant Articles pages set up but they are not tracked by Google Analytics at the moment. You need to Install & Activate the ExactMetrics Facebook Instant Articles Addon."
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: lite/includes/admin/wp-site-health.php:439
|
177 |
msgid "Can connect to ExactMetrics.com correctly"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: lite/includes/admin/wp-site-health.php:445
|
181 |
msgid "The ExactMetrics API is reachable and no connection issues have been detected."
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: lite/includes/admin/wp-site-health.php:460
|
185 |
msgid "The ExactMetrics server is not reachable."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: lite/includes/admin/wp-site-health.php:461
|
189 |
msgid "Your server is blocking external requests to exactmetrics.com, please check your firewall settings or contact your host for more details."
|
190 |
msgstr ""
|
191 |
|
192 |
#. Translators: The error message received.
|
193 |
+
#: lite/includes/admin/wp-site-health.php:465
|
194 |
msgid "Error message: %s"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: lite/includes/admin/wp-site-health.php:478
|
198 |
msgid "Tracking code is properly being output."
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: lite/includes/admin/wp-site-health.php:484
|
202 |
msgid "The Google Analytics tracking code is being output correctly, and no duplicate Google Analytics scripts have been detected."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: lite/includes/admin/wp-site-health.php:497
|
206 |
msgid "ExactMetrics has automatically detected an issue with your tracking setup"
|
207 |
msgstr ""
|
208 |
|
230 |
msgid "Pro version is already installed."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: lite/includes/admin/connect.php:108
|
234 |
msgid "Could not install upgrade. Please download from exactmetrics.com and install manually."
|
235 |
msgstr ""
|
236 |
|
|
|
237 |
#: lite/includes/admin/connect.php:141
|
238 |
+
#: lite/includes/admin/connect.php:147
|
239 |
+
#: lite/includes/admin/connect.php:187
|
240 |
msgid "Plugin installed & activated."
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: lite/includes/admin/connect.php:171
|
244 |
msgid "You are not licensed."
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: lite/includes/admin/connect.php:191
|
248 |
msgid "Pro version installed but needs to be activated from the Plugins page inside your WordPress admin."
|
249 |
msgstr ""
|
250 |
|
289 |
msgid "Upgrade to ExactMetrics Pro"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: lite/includes/admin/onboarding-wizard.php:172
|
293 |
msgid "ExactMetrics › Onboarding Wizard"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: lite/includes/admin/onboarding-wizard.php:187
|
297 |
msgid "Return to Dashboard"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: lite/includes/admin/onboarding-wizard.php:253
|
301 |
msgid "You are not allowed to install plugins"
|
302 |
msgstr ""
|
303 |
|
304 |
#: lite/includes/admin/reports/report-queries.php:22
|
305 |
+
#: languages/vue.php:79
|
306 |
msgid "Search Console"
|
307 |
msgstr ""
|
308 |
|
309 |
#: lite/includes/admin/reports/report-ecommerce.php:22
|
310 |
+
#: languages/vue.php:74
|
311 |
msgid "eCommerce"
|
312 |
msgstr ""
|
313 |
|
320 |
msgstr ""
|
321 |
|
322 |
#: lite/includes/admin/reports/report-publisher.php:22
|
323 |
+
#: languages/vue.php:71
|
324 |
msgid "Publishers"
|
325 |
msgstr ""
|
326 |
|
327 |
#: lite/includes/admin/reports/report-dimensions.php:22
|
328 |
+
#: languages/vue.php:181
|
329 |
msgid "Dimensions"
|
330 |
msgstr ""
|
331 |
|
332 |
#: lite/includes/admin/reports/report-forms.php:22
|
333 |
+
#: languages/vue.php:85
|
334 |
msgid "Forms"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: lite/includes/admin/welcome.php:56
|
338 |
+
#: lite/includes/admin/welcome.php:57
|
339 |
msgid "Welcome to ExactMetrics"
|
340 |
msgstr ""
|
341 |
|
363 |
msgid "because you are not being tracked."
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: includes/emails/class-emails.php:385
|
367 |
+
msgid "You cannot send emails with MI_WP_Emails() until init/admin_init has been reached."
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#. translators: %s - link to a site.
|
371 |
+
#: includes/emails/templates/footer-default.php:39
|
372 |
+
msgid "Sent from %s"
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
#: includes/admin/review.php:118
|
376 |
msgid "Are you enjoying ExactMetrics?"
|
377 |
msgstr ""
|
420 |
msgid "Once Weekly"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: includes/admin/routes.php:307
|
424 |
msgid "The most beginner friendly drag & drop WordPress forms plugin allowing you to create beautiful contact forms, subscription forms, payment forms, and more in minutes, not hours!"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: includes/admin/routes.php:317
|
428 |
msgid "Our high-converting optin forms like Exit-Intent® popups, Fullscreen Welcome Mats, and Scroll boxes help you dramatically boost conversions and get more email subscribers."
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: includes/admin/routes.php:327
|
432 |
msgid "SMTP (Simple Mail Transfer Protocol) is an industry standard for sending emails. SMTP helps increase email deliverability by using proper authentication."
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: includes/admin/routes.php:337
|
436 |
+
msgid "Pretty Links helps you shrink, beautify, track, manage and share any URL on or off of your WordPress website. Create links that look how you want using your own domain name!"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: includes/admin/routes.php:347
|
440 |
msgid "Better Coming Soon & Maintenance Mode Pages"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: includes/admin/routes.php:356
|
444 |
msgid "Get More Traffic with Viral Giveaways"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: includes/admin/routes.php:365
|
448 |
msgid "Social Proof Notifications that Boost Sales"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: includes/admin/routes.php:483
|
452 |
msgid "Invalid UA code"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: includes/admin/routes.php:510
|
456 |
msgid "Please upload a valid .json file"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: includes/admin/routes.php:519
|
460 |
msgid "Please upload a file to import"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: includes/admin/routes.php:570
|
464 |
msgid "You don't have permission to view ExactMetrics reports."
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: includes/admin/routes.php:582
|
468 |
msgid "You can't view ExactMetrics reports because you are not licensed."
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: includes/admin/routes.php:583
|
472 |
msgid "Add your license"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: includes/admin/routes.php:590
|
476 |
msgid "You can't view ExactMetrics reports due to license key errors."
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: includes/admin/routes.php:598
|
480 |
msgid "You must authenticate with ExactMetrics before you can view reports."
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: includes/admin/routes.php:604
|
484 |
msgid "Unknown report. Try refreshing and retrying. Contact support if this issue persists."
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: includes/admin/routes.php:652
|
488 |
msgid "We encountered an error when fetching the report data."
|
489 |
msgstr ""
|
490 |
|
580 |
msgstr ""
|
581 |
|
582 |
#. Translators: Placeholders are for links to fix the issue.
|
583 |
+
#: includes/admin/common.php:756
|
584 |
msgid "ExactMetrics has detected that it's files are being blocked. This is usually caused by a adblock browser plugin (particularly uBlock Origin), or a conflicting WordPress theme or plugin. This issue only affects the admin side of ExactMetrics. To solve this, ensure ExactMetrics is whitelisted for your website URL in any adblock browser plugin you use. For step by step directions on how to do this, %1$sclick here%2$s. If this doesn't solve the issue (rare), send us a ticket %3$shere%2$s and we'll be happy to help diagnose the issue."
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: includes/admin/common.php:876
|
588 |
msgid "Your 2019 Analytics Report"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: includes/admin/common.php:882
|
592 |
msgid "See how your website performed this year and find tips along the way to help grow even more in 2020!"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: includes/admin/common.php:884
|
596 |
msgid "View 2019 Year in Review report!"
|
597 |
msgstr ""
|
598 |
|
599 |
#: includes/admin/admin.php:34
|
600 |
#: includes/admin/admin.php:42
|
601 |
+
#: includes/admin/admin.php:185
|
602 |
msgid "Settings"
|
603 |
msgstr ""
|
604 |
|
614 |
|
615 |
#: includes/admin/admin.php:39
|
616 |
#: includes/admin/admin.php:95
|
617 |
+
#: languages/vue.php:897
|
618 |
msgid "Reports"
|
619 |
msgstr ""
|
620 |
|
643 |
|
644 |
#: includes/admin/admin.php:60
|
645 |
#: includes/admin/admin.php:103
|
646 |
+
#: languages/vue.php:98
|
647 |
msgid "About Us"
|
648 |
msgstr ""
|
649 |
|
653 |
msgstr ""
|
654 |
|
655 |
#: includes/admin/admin.php:93
|
656 |
+
#: includes/admin/admin.php:183
|
657 |
msgid "Network Settings"
|
658 |
msgstr ""
|
659 |
|
672 |
|
673 |
#: includes/admin/admin.php:175
|
674 |
#: includes/admin/admin.php:178
|
675 |
+
#: languages/vue.php:1000
|
676 |
msgid "Support"
|
677 |
msgstr ""
|
678 |
|
679 |
#. Translators: Placeholders add a link to the wordpress.org repository.
|
680 |
+
#: includes/admin/admin.php:248
|
681 |
msgid "Please rate %1$sExactMetrics%2$s on %3$s %4$sWordPress.org%5$s to help us spread the word. Thank you from the ExactMetrics team!"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: includes/admin/admin.php:283
|
685 |
+
#: languages/vue.php:130
|
686 |
msgid "Please Setup Website Analytics to See Audience Insights"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: includes/admin/admin.php:284
|
690 |
+
#: languages/vue.php:136
|
691 |
msgid "Connect ExactMetrics and Setup Website Analytics"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: includes/admin/admin.php:286
|
695 |
+
#: languages/vue.php:139
|
696 |
msgid "Learn More"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: includes/admin/admin.php:288
|
700 |
+
#: languages/vue.php:133
|
701 |
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 1 million website owners use ExactMetrics to see the stats that matter and grow their business."
|
702 |
msgstr ""
|
703 |
|
704 |
#. Translators: Adds a link to retrieve the license.
|
705 |
+
#: includes/admin/admin.php:298
|
706 |
msgid "Warning: No valid license key has been entered for ExactMetrics. You are currently not getting updates, and are not able to view reports. %1$sPlease click here to enter your license key and begin receiving updates and reports.%2$s"
|
707 |
msgstr ""
|
708 |
|
709 |
#. Translators: Adds a link to the license renewal.
|
710 |
+
#: includes/admin/admin.php:309
|
711 |
+
#: languages/vue.php:439
|
712 |
msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: includes/admin/admin.php:311
|
716 |
+
#: languages/vue.php:442
|
717 |
msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: includes/admin/admin.php:313
|
721 |
+
#: languages/vue.php:445
|
722 |
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."
|
723 |
msgstr ""
|
724 |
|
725 |
#. Translators: Adds a link to renew license.
|
726 |
+
#: includes/admin/admin.php:318
|
727 |
msgid "Your network license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: includes/admin/admin.php:320
|
731 |
msgid "Your network license key for ExactMetrics has been disabled. Please use a different key."
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: includes/admin/admin.php:322
|
735 |
msgid "Your network 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."
|
736 |
msgstr ""
|
737 |
|
738 |
#. Translators: Placeholders add the PHP version, a link to the ExactMetrics blog and a line break.
|
739 |
+
#: includes/admin/admin.php:339
|
740 |
msgid "Your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked.%4$sWordPress will stop supporting your PHP version in April, 2019.%4$sUpdating PHP only takes a few minutes and will make your website significantly faster and more secure.%4$s%2$sLearn more about updating PHP%3$s"
|
741 |
msgstr ""
|
742 |
|
743 |
#. Translators: Placeholders add the current WordPress version and links to the ExactMetrics blog
|
744 |
+
#: includes/admin/admin.php:347
|
745 |
msgid "Your site is running an outdated version of WordPress (%1$s).%4$sExactMetrics will stop supporting WordPress versions lower than 4.6 in April, 2019.%4$sUpdating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.%4$s%2$sLearn more about updating WordPress%3$s"
|
746 |
msgstr ""
|
747 |
|
748 |
#. Translators: Placeholders add links to the settings panel.
|
749 |
+
#: includes/admin/admin.php:402
|
750 |
msgid "Important: You are currently using manual UA code output. We highly recommend %1$sauthenticating with ExactMetrics%2$s so that you can access our new reporting area and take advantage of new ExactMetrics features."
|
751 |
msgstr ""
|
752 |
|
753 |
#. Translators: Placeholders add links to the settings panel.
|
754 |
+
#: includes/admin/admin.php:407
|
755 |
msgid "Click %1$shere%2$s to reauthenticate to be able to access reports. For more information why this is required, see our %3$sblog post%4$s."
|
756 |
msgstr ""
|
757 |
|
758 |
#. Translators: Placeholders add a link to the ExactMetrics website.
|
759 |
+
#: includes/admin/admin.php:458
|
760 |
+
#: includes/admin/admin.php:489
|
761 |
msgid "%1$sGet ExactMetrics Pro%2$s"
|
762 |
msgstr ""
|
763 |
|
764 |
#. Translators: Adds a link to the settings panel.
|
765 |
+
#: includes/admin/admin.php:503
|
766 |
msgid "Warning: ExactMetrics found cross-domain settings in the custom code field and converted them to the new settings structure. %1$sPlease click here to review and remove the code no longer needed.%2$s"
|
767 |
msgstr ""
|
768 |
|
804 |
msgstr ""
|
805 |
|
806 |
#: includes/admin/reports/overview.php:34
|
807 |
+
#: languages/vue.php:68
|
808 |
msgid "Overview"
|
809 |
msgstr ""
|
810 |
|
896 |
msgstr ""
|
897 |
|
898 |
#: includes/admin/reports/abstract-report.php:375
|
899 |
+
#: languages/vue.php:260
|
900 |
msgid "Upgrade Now"
|
901 |
msgstr ""
|
902 |
|
1957 |
msgid "Zimbabwe"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
+
#: includes/helpers.php:618
|
1961 |
+
msgid "Unknown Country"
|
1962 |
+
msgstr ""
|
1963 |
+
|
1964 |
#. Translators: The placeholders are for making the "We noticed you're using a caching plugin" text bold.
|
1965 |
+
#: includes/helpers.php:1213
|
1966 |
msgid "%1$sWe noticed you're using a caching plugin or caching from your hosting provider.%2$s Be sure to clear the cache to ensure the tracking appears on all pages and posts. %3$s(See this guide on how to clear cache)%4$s."
|
1967 |
msgstr ""
|
1968 |
|
1969 |
#. Translators: The placeholders are for making the "We have detected multiple tracking codes" text bold & adding a link to support.
|
1970 |
+
#: includes/helpers.php:1216
|
1971 |
msgid "%1$sWe have detected multiple tracking codes%2$s! You should remove non-ExactMetrics ones. If you need help finding them please %3$sread this article%4$s."
|
1972 |
msgstr ""
|
1973 |
|
1981 |
msgid "%1$s is %3$sdeprecated%4$s since ExactMetrics version %2$s."
|
1982 |
msgstr ""
|
1983 |
|
1984 |
+
#: languages/vue.php:5
|
1985 |
+
msgid "1"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
+
#: languages/vue.php:8
|
1989 |
+
msgid "2"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: languages/vue.php:11
|
1993 |
+
msgid "Error"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
+
#: languages/vue.php:14
|
1997 |
+
msgid "Please try again."
|
1998 |
+
msgstr ""
|
1999 |
+
|
2000 |
+
#: languages/vue.php:17
|
2001 |
+
msgid "Loading settings"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#. Translators: Number of visitors.
|
2005 |
#: languages/vue.php:21
|
2006 |
+
msgid "See how %s visitors found your site!"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
+
#. Translators: Number of visitors.
|
2010 |
+
#: languages/vue.php:25
|
2011 |
+
msgid "Your website was visited by %s users in the last 30 days."
|
2012 |
msgstr ""
|
2013 |
|
|
|
2014 |
#: languages/vue.php:28
|
2015 |
+
msgid "See the full analytics report!"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
#: languages/vue.php:31
|
2019 |
+
msgid "Overview Report"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
+
#. Translators: Current WordPress version.
|
2023 |
+
#: languages/vue.php:35
|
2024 |
+
msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
2025 |
msgstr ""
|
2026 |
|
2027 |
+
#: languages/vue.php:38
|
2028 |
+
msgid "Yikes! PHP Update Required"
|
|
|
2029 |
msgstr ""
|
2030 |
|
2031 |
+
#. Translators: Current PHP version and recommended PHP version.
|
2032 |
#: languages/vue.php:42
|
2033 |
+
msgid "ExactMetrics has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
|
2034 |
msgstr ""
|
2035 |
|
2036 |
#: languages/vue.php:45
|
2037 |
+
msgid "Learn more about updating PHP"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
#: languages/vue.php:48
|
2041 |
+
msgid "Yikes! WordPress Update Required"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#. Translators: Current WordPress version.
|
2045 |
+
#: languages/vue.php:52
|
2046 |
+
msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.9 in October, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
2047 |
msgstr ""
|
2048 |
|
2049 |
+
#: languages/vue.php:55
|
2050 |
+
msgid "Learn more about updating WordPress"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
+
#: languages/vue.php:58
|
2054 |
+
msgid "Success! "
|
2055 |
msgstr ""
|
2056 |
|
2057 |
+
#: languages/vue.php:61
|
2058 |
+
msgid "You're now using ExactMetrics Pro with all the features."
|
2059 |
msgstr ""
|
2060 |
|
2061 |
+
#. Translators: Placeholder gets replaced with an arrow icon.
|
2062 |
+
#: languages/vue.php:65
|
2063 |
+
msgid "Get Started %s"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: languages/vue.php:82
|
2067 |
+
msgid "Dimensions Report"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: languages/vue.php:88
|
2071 |
+
msgid "Real-Time"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#. Translators: Error status and error text.
|
2075 |
+
#: languages/vue.php:92
|
2076 |
+
msgid "Can't load report data. Error: %1$s, %2$s"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: languages/vue.php:95
|
2080 |
+
msgid "Error loading report data"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: languages/vue.php:101
|
2084 |
+
msgid "Getting Started"
|
2085 |
msgstr ""
|
2086 |
|
2087 |
+
#: languages/vue.php:105
|
2088 |
+
msgid "Lite vs Pro"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
+
#: languages/vue.php:108
|
2092 |
+
msgid "General"
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: languages/vue.php:111
|
2096 |
+
msgid "Engagement"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
+
#: languages/vue.php:114
|
2100 |
+
msgid "Publisher"
|
|
|
2101 |
msgstr ""
|
2102 |
|
2103 |
+
#: languages/vue.php:118
|
2104 |
+
msgid "Conversions"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: languages/vue.php:121
|
2108 |
+
msgid "Advanced"
|
|
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: languages/vue.php:124
|
2112 |
+
msgid "URL Builder"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: languages/vue.php:127
|
2116 |
+
msgid "Import Export"
|
|
|
2117 |
msgstr ""
|
2118 |
|
2119 |
+
#: languages/vue.php:142
|
2120 |
+
msgid "ExactMetrics encountered an error loading your report data"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
+
#: languages/vue.php:145
|
2124 |
+
msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
|
2125 |
msgstr ""
|
2126 |
|
2127 |
+
#: languages/vue.php:148
|
2128 |
+
#: languages/vue.php:2070
|
2129 |
+
msgid "Reconnect ExactMetrics"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: languages/vue.php:151
|
2133 |
+
msgid "Re-Authenticating"
|
2134 |
+
msgstr ""
|
2135 |
+
|
2136 |
+
#: languages/vue.php:154
|
2137 |
+
msgid "Ok"
|
2138 |
+
msgstr ""
|
2139 |
+
|
2140 |
+
#: languages/vue.php:157
|
2141 |
+
msgid "You must connect with ExactMetrics before you can view reports."
|
2142 |
+
msgstr ""
|
2143 |
+
|
2144 |
+
#: languages/vue.php:160
|
2145 |
+
msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
|
2146 |
+
msgstr ""
|
2147 |
+
|
2148 |
+
#: languages/vue.php:163
|
2149 |
+
msgid "Launch Setup Wizard"
|
2150 |
+
msgstr ""
|
2151 |
+
|
2152 |
+
#: languages/vue.php:166
|
2153 |
+
msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
|
2154 |
+
msgstr ""
|
2155 |
+
|
2156 |
+
#. Translators: Placeholder is replaced with WPForms.
|
2157 |
+
#: languages/vue.php:170
|
2158 |
+
msgid "Recommended Plugin: %s"
|
2159 |
+
msgstr ""
|
2160 |
+
|
2161 |
+
#: languages/vue.php:174
|
2162 |
+
msgid "Install"
|
2163 |
+
msgstr ""
|
2164 |
+
|
2165 |
+
#: languages/vue.php:178
|
2166 |
+
msgid "Activate"
|
2167 |
+
msgstr ""
|
2168 |
+
|
2169 |
+
#: languages/vue.php:184
|
2170 |
+
msgid "See Quick Links"
|
2171 |
+
msgstr ""
|
2172 |
+
|
2173 |
+
#: languages/vue.php:187
|
2174 |
+
msgid "Suggest a Feature"
|
2175 |
+
msgstr ""
|
2176 |
+
|
2177 |
+
#: languages/vue.php:190
|
2178 |
+
msgid "Join Our Community"
|
2179 |
+
msgstr ""
|
2180 |
+
|
2181 |
+
#: languages/vue.php:193
|
2182 |
+
msgid "Support & Docs"
|
2183 |
+
msgstr ""
|
2184 |
+
|
2185 |
+
#: languages/vue.php:196
|
2186 |
+
msgid "Upgrade to Pro »"
|
2187 |
+
msgstr ""
|
2188 |
+
|
2189 |
+
#: languages/vue.php:199
|
2190 |
+
msgid "Save Changes"
|
2191 |
+
msgstr ""
|
2192 |
+
|
2193 |
+
#: languages/vue.php:202
|
2194 |
+
msgid "Exit Setup"
|
2195 |
+
msgstr ""
|
2196 |
+
|
2197 |
+
#: languages/vue.php:205
|
2198 |
+
#: languages/vue.php:1543
|
2199 |
+
msgid "ExactMetrics Addons"
|
2200 |
+
msgstr ""
|
2201 |
+
|
2202 |
+
#: languages/vue.php:208
|
2203 |
+
msgid "Search Addons"
|
2204 |
+
msgstr ""
|
2205 |
+
|
2206 |
+
#. Translators: Placeholders are replaced with the current step number out of the total number of steps.
|
2207 |
+
#: languages/vue.php:212
|
2208 |
+
msgid "Step %1$s of %2$s"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
#. Translators: Makes text bold.
|
2212 |
+
#: languages/vue.php:216
|
2213 |
msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
|
2214 |
msgstr ""
|
2215 |
|
2216 |
#. Translators: Makes text bold.
|
2217 |
+
#: languages/vue.php:220
|
2218 |
msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
|
2219 |
msgstr ""
|
2220 |
|
2221 |
#. Translators: Makes text bold.
|
2222 |
+
#: languages/vue.php:224
|
2223 |
msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
|
2224 |
msgstr ""
|
2225 |
|
2226 |
#. Translators: Makes text bold.
|
2227 |
+
#: languages/vue.php:228
|
2228 |
msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
|
2229 |
msgstr ""
|
2230 |
|
2231 |
#. Translators: Makes text bold.
|
2232 |
+
#: languages/vue.php:232
|
2233 |
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."
|
2234 |
msgstr ""
|
2235 |
|
2236 |
#. Translators: Makes text bold.
|
2237 |
+
#: languages/vue.php:236
|
2238 |
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."
|
2239 |
msgstr ""
|
2240 |
|
2241 |
#. Translators: Makes text bold.
|
2242 |
+
#: languages/vue.php:240
|
2243 |
msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
|
2244 |
msgstr ""
|
2245 |
|
2246 |
#. Translators: Makes text bold.
|
2247 |
+
#: languages/vue.php:244
|
2248 |
msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
|
2249 |
msgstr ""
|
2250 |
|
2251 |
#. Translators: Adds link to the features page.
|
2252 |
+
#: languages/vue.php:248
|
2253 |
msgid "%1$sSee All Features%2$s"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: languages/vue.php:252
|
2257 |
msgid "Pro Plan"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: languages/vue.php:256
|
2261 |
msgid "per year"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: languages/vue.php:263
|
2265 |
msgid "Upgrade to ExactMetrics Pro Now"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
+
#: languages/vue.php:267
|
2269 |
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!"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: languages/vue.php:271
|
2273 |
msgid "Daniel Monaghan - Experienced"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
+
#: languages/vue.php:275
|
2277 |
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."
|
2278 |
msgstr ""
|
2279 |
|
2280 |
+
#: languages/vue.php:279
|
2281 |
msgid "Naomi Spirit - From This Day"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
+
#: languages/vue.php:283
|
2285 |
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!"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: languages/vue.php:287
|
2289 |
msgid "Julie Dupuis - Faraway Land Travel"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: languages/vue.php:290
|
2293 |
msgid "Guides and Documentation:"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: languages/vue.php:296
|
2297 |
msgid "Upgrade to PRO"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: languages/vue.php:299
|
2301 |
msgid "eCommerce Tracking"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: languages/vue.php:303
|
2305 |
msgid "Custom Dimensions"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: languages/vue.php:307
|
2309 |
msgid "Form Tracking"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: languages/vue.php:311
|
2313 |
msgid "AMP Support"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: languages/vue.php:315
|
2317 |
msgid "Author Tracking"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
+
#: languages/vue.php:319
|
2321 |
msgid "EU Compliance Addon"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: languages/vue.php:323
|
2325 |
msgid "Real Time Report"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: languages/vue.php:326
|
2329 |
msgid "Google Optimize"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: languages/vue.php:330
|
2333 |
msgid "Custom Date Ranges"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: languages/vue.php:333
|
2337 |
msgid "Getting Started with ExactMetrics"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
+
#: languages/vue.php:336
|
2341 |
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."
|
2342 |
msgstr ""
|
2343 |
|
2344 |
+
#: languages/vue.php:339
|
2345 |
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."
|
2346 |
msgstr ""
|
2347 |
|
2348 |
+
#: languages/vue.php:342
|
2349 |
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!."
|
2350 |
msgstr ""
|
2351 |
|
2352 |
+
#: languages/vue.php:345
|
2353 |
msgid "Launch the wizard!"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#: languages/vue.php:349
|
2357 |
msgid "Welcome to"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
#. Translators: Adds a line break.
|
2361 |
+
#: languages/vue.php:353
|
2362 |
msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
#. Translators: Makes text bold.
|
2366 |
+
#: languages/vue.php:357
|
2367 |
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."
|
2368 |
msgstr ""
|
2369 |
|
2370 |
+
#: languages/vue.php:360
|
2371 |
msgid "ExactMetrics Features & Addons"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
+
#: languages/vue.php:363
|
2375 |
msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
|
2376 |
msgstr ""
|
2377 |
|
2378 |
+
#: languages/vue.php:366
|
2379 |
+
msgid "Loading new report data"
|
|
|
2380 |
msgstr ""
|
2381 |
|
2382 |
+
#: languages/vue.php:369
|
2383 |
+
msgid "Please wait..."
|
|
|
2384 |
msgstr ""
|
2385 |
|
2386 |
+
#. Translators: Placeholder gets replaced with an arrow icon.
|
2387 |
+
#: languages/vue.php:373
|
2388 |
+
msgid "Continue %s"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
+
#: languages/vue.php:376
|
2392 |
+
msgid "Unlock the Publishers Report and Focus on the Content that Matters"
|
|
|
2393 |
msgstr ""
|
2394 |
|
2395 |
+
#: languages/vue.php:379
|
2396 |
+
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."
|
2397 |
msgstr ""
|
2398 |
|
2399 |
+
#: languages/vue.php:382
|
2400 |
+
msgid "Unlock the Publishers Report and Focus on the Content That Matters"
|
|
|
2401 |
msgstr ""
|
2402 |
|
2403 |
+
#: languages/vue.php:385
|
2404 |
+
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."
|
2405 |
msgstr ""
|
2406 |
|
2407 |
+
#: languages/vue.php:389
|
2408 |
+
msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
+
#: languages/vue.php:392
|
2412 |
+
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."
|
|
|
2413 |
msgstr ""
|
2414 |
|
2415 |
+
#: languages/vue.php:395
|
2416 |
+
msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
+
#: languages/vue.php:398
|
2420 |
+
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."
|
2421 |
msgstr ""
|
2422 |
|
2423 |
+
#: languages/vue.php:401
|
2424 |
+
msgid "Unlock the Forms Report and Improve Conversions"
|
|
|
2425 |
msgstr ""
|
2426 |
|
2427 |
+
#: languages/vue.php:404
|
2428 |
+
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."
|
2429 |
msgstr ""
|
2430 |
|
2431 |
+
#: languages/vue.php:407
|
2432 |
+
msgid "Unlock the Search Console Report and See How People Find Your Website"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
+
#: languages/vue.php:410
|
2436 |
+
msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
|
2437 |
msgstr ""
|
2438 |
|
2439 |
+
#: languages/vue.php:413
|
2440 |
+
msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
|
|
|
2441 |
msgstr ""
|
2442 |
|
2443 |
+
#: languages/vue.php:416
|
2444 |
+
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."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: languages/vue.php:419
|
2448 |
msgid "Go back"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
+
#. Translators: Adds a link to documentation.
|
2452 |
+
#: languages/vue.php:423
|
2453 |
+
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"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#. Translators: Adds link to activate/install plugin and documentation.
|
2457 |
+
#: languages/vue.php:427
|
2458 |
+
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"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
+
#. Translators: Adds a link to documentation.
|
2462 |
+
#: languages/vue.php:431
|
2463 |
+
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"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
+
#. Translators: Adds link to activate/install plugin and documentation.
|
2467 |
+
#: languages/vue.php:435
|
2468 |
+
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"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
+
#: languages/vue.php:448
|
2472 |
msgid "Time to Purchase"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
+
#: languages/vue.php:451
|
2476 |
msgid "This list shows how many days from first visit it took users to purchase products from your site."
|
2477 |
msgstr ""
|
2478 |
|
2479 |
+
#: languages/vue.php:454
|
2480 |
msgid "Sessions to Purchase"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
+
#: languages/vue.php:457
|
2484 |
msgid "This list shows the number of sessions it took users before they purchased a product from your website."
|
2485 |
msgstr ""
|
2486 |
|
2487 |
+
#: languages/vue.php:460
|
2488 |
msgid "Top Posts/Pages"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
+
#: languages/vue.php:463
|
2492 |
msgid "This list shows the most viewed posts and pages on your website."
|
2493 |
msgstr ""
|
2494 |
|
2495 |
+
#: languages/vue.php:466
|
2496 |
msgid "New vs. Returning Visitors"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
+
#: languages/vue.php:469
|
2500 |
msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: languages/vue.php:472
|
2504 |
msgid "Device Breakdown"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: languages/vue.php:475
|
2508 |
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."
|
2509 |
msgstr ""
|
2510 |
|
2511 |
+
#: languages/vue.php:478
|
2512 |
msgid "Top Landing Pages"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: languages/vue.php:481
|
2516 |
msgid "This list shows the top pages users first land on when visiting your website."
|
2517 |
msgstr ""
|
2518 |
|
2519 |
+
#: languages/vue.php:484
|
2520 |
msgid "Top Exit Pages"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
+
#: languages/vue.php:487
|
2524 |
msgid "This list shows the top pages users exit your website from."
|
2525 |
msgstr ""
|
2526 |
|
2527 |
+
#: languages/vue.php:490
|
2528 |
msgid "Top Outbound Links"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
+
#: languages/vue.php:493
|
2532 |
msgid "This list shows the top links clicked on your website that go to another website."
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: languages/vue.php:496
|
2536 |
msgid "Top Affiliate Links"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: languages/vue.php:499
|
2540 |
msgid "This list shows the top affiliate links your visitors clicked on."
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: languages/vue.php:502
|
2544 |
msgid "Top Download Links"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
+
#: languages/vue.php:505
|
2548 |
msgid "This list shows the download links your visitors clicked the most."
|
2549 |
msgstr ""
|
2550 |
|
2551 |
+
#: languages/vue.php:508
|
2552 |
msgid "Top Products"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
+
#: languages/vue.php:511
|
2556 |
msgid "This list shows the top selling products on your website."
|
2557 |
msgstr ""
|
2558 |
|
2559 |
+
#: languages/vue.php:514
|
2560 |
msgid "Top Conversion Sources"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
+
#: languages/vue.php:517
|
2564 |
msgid "This list shows the top referral websites in terms of product revenue."
|
2565 |
msgstr ""
|
2566 |
|
2567 |
+
#: languages/vue.php:520
|
2568 |
msgid "Total Add/Remove"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
+
#: languages/vue.php:523
|
2572 |
+
msgid "New"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2573 |
msgstr ""
|
2574 |
|
2575 |
+
#: languages/vue.php:526
|
2576 |
+
msgid "Returning"
|
2577 |
msgstr ""
|
2578 |
|
2579 |
+
#: languages/vue.php:529
|
2580 |
+
msgid "Desktop"
|
|
|
2581 |
msgstr ""
|
2582 |
|
2583 |
+
#: languages/vue.php:532
|
2584 |
+
msgid "Tablet"
|
|
|
2585 |
msgstr ""
|
2586 |
|
2587 |
+
#: languages/vue.php:535
|
2588 |
+
msgid "Mobile"
|
|
|
2589 |
msgstr ""
|
2590 |
|
2591 |
+
#: languages/vue.php:538
|
2592 |
+
msgid "Sessions"
|
|
|
2593 |
msgstr ""
|
2594 |
|
2595 |
+
#: languages/vue.php:541
|
2596 |
+
msgid "Pageviews"
|
|
|
2597 |
msgstr ""
|
2598 |
|
2599 |
+
#: languages/vue.php:544
|
2600 |
+
msgid "Avg. Session Duration"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
+
#: languages/vue.php:547
|
2604 |
+
msgid "Bounce Rate"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
+
#: languages/vue.php:550
|
2608 |
+
msgid "Top 10 Countries"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
+
#: languages/vue.php:553
|
2612 |
+
msgid "View Countries Report"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
+
#: languages/vue.php:556
|
2616 |
+
msgid "Top 10 Referrals"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
+
#: languages/vue.php:559
|
2620 |
+
msgid "View All Referral Sources"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
+
#: languages/vue.php:562
|
2624 |
+
msgid "View Full Posts/Pages Report"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
+
#: languages/vue.php:565
|
2628 |
+
msgid "A session is the browsing session of a single user to your site."
|
2629 |
msgstr ""
|
2630 |
|
2631 |
+
#: languages/vue.php:568
|
2632 |
+
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."
|
2633 |
msgstr ""
|
2634 |
|
2635 |
+
#: languages/vue.php:571
|
2636 |
+
msgid "Total duration of all sessions (in seconds) / number of sessions."
|
2637 |
msgstr ""
|
2638 |
|
2639 |
+
#: languages/vue.php:574
|
2640 |
+
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."
|
2641 |
msgstr ""
|
2642 |
|
2643 |
+
#: languages/vue.php:577
|
2644 |
+
msgid "This list shows the top countries your website visitors are from."
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: languages/vue.php:580
|
2648 |
+
msgid "This list shows the top websites that send your website traffic, known as referral traffic."
|
2649 |
msgstr ""
|
2650 |
|
2651 |
+
#: languages/vue.php:583
|
2652 |
+
msgid "Installing Addon"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
+
#: languages/vue.php:586
|
2656 |
+
msgid "Activating Addon"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
+
#: languages/vue.php:589
|
2660 |
+
msgid "Addon Activated"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
+
#: languages/vue.php:592
|
2664 |
+
msgid "Loading report data"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
+
#: languages/vue.php:595
|
2668 |
+
msgid "Please activate manually"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
+
#. Translators: Adds the error status and status text.
|
2672 |
+
#: languages/vue.php:599
|
2673 |
+
msgid "Error: %1$s, %2$s"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
+
#: languages/vue.php:602
|
2677 |
+
msgid "Error Activating Addon"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: languages/vue.php:608
|
2681 |
+
msgid "Dismiss"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
+
#: languages/vue.php:611
|
2685 |
+
msgid "Redirecting"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
+
#: languages/vue.php:614
|
2689 |
+
msgid "Please wait"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
+
#: languages/vue.php:617
|
2693 |
+
msgid "activate"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
+
#: languages/vue.php:620
|
2697 |
+
msgid "install"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: languages/vue.php:623
|
2701 |
+
msgid "Visit addons page"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: languages/vue.php:626
|
2705 |
+
msgid "Report Unavailable"
|
2706 |
msgstr ""
|
2707 |
|
2708 |
+
#. Translators: Install/Activate the addon.
|
2709 |
#: languages/vue.php:630
|
2710 |
+
msgid "%s Addon"
|
2711 |
msgstr ""
|
2712 |
|
2713 |
#: languages/vue.php:633
|
2714 |
+
msgid "Go Back To Reports"
|
2715 |
msgstr ""
|
2716 |
|
2717 |
#: languages/vue.php:636
|
2718 |
+
msgid "Enable Enhanced eCommerce"
|
2719 |
msgstr ""
|
2720 |
|
2721 |
#: languages/vue.php:639
|
2722 |
+
msgid "Loading Settings"
|
2723 |
msgstr ""
|
2724 |
|
2725 |
#: languages/vue.php:642
|
2726 |
+
msgid "Saving Changes..."
|
2727 |
msgstr ""
|
2728 |
|
2729 |
#: languages/vue.php:645
|
2730 |
+
msgid "Settings Updated"
|
2731 |
msgstr ""
|
2732 |
|
2733 |
+
#. Translators: Add a link to the onboarding wizard.
|
2734 |
+
#: languages/vue.php:649
|
2735 |
+
msgid "You need to %1$sconnect ExactMetrics%2$s first"
|
2736 |
msgstr ""
|
2737 |
|
2738 |
+
#: languages/vue.php:652
|
2739 |
+
msgid "Could Not Save Changes"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
+
#. Translators: Number of days.
|
2743 |
+
#: languages/vue.php:656
|
2744 |
+
msgid "Last %s days"
|
2745 |
msgstr ""
|
2746 |
|
2747 |
+
#: languages/vue.php:659
|
2748 |
+
msgid "Analytics"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
+
#. Translators: Adds an arrow icon.
|
2752 |
+
#: languages/vue.php:664
|
2753 |
+
msgid "View All Reports %s"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
+
#. Translators: Placeholders are used for making text bold and adding a link.
|
2757 |
+
#: languages/vue.php:668
|
2758 |
+
msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
|
2759 |
msgstr ""
|
2760 |
|
2761 |
+
#. Translators: Placeholders make the text highlighted.
|
2762 |
+
#: languages/vue.php:672
|
2763 |
+
msgid "%1$sNeed%2$s to Grow FASTER??"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
+
#: languages/vue.php:675
|
2767 |
+
msgid "Get additional, actionable insights by going Pro."
|
|
|
2768 |
msgstr ""
|
2769 |
|
2770 |
#: languages/vue.php:678
|
2771 |
+
msgid "Skip"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
#: languages/vue.php:681
|
2775 |
+
msgid "See All Features"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
#: languages/vue.php:684
|
2779 |
+
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."
|
2780 |
msgstr ""
|
2781 |
|
2782 |
#: languages/vue.php:687
|
2783 |
+
msgid "Our Pro plan includes:"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
#: languages/vue.php:690
|
2787 |
+
msgid "Awesome, You're All Set!"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
#: languages/vue.php:693
|
2791 |
+
msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
|
2792 |
msgstr ""
|
2793 |
|
2794 |
+
#. Translators: Make the text bold.
|
2795 |
+
#: languages/vue.php:697
|
2796 |
+
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."
|
2797 |
msgstr ""
|
2798 |
|
2799 |
+
#. Translators: Add link to blog.
|
2800 |
+
#: languages/vue.php:701
|
2801 |
+
msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
|
2802 |
msgstr ""
|
2803 |
|
2804 |
+
#: languages/vue.php:704
|
2805 |
+
msgid "Finish Setup & Exit Wizard"
|
2806 |
msgstr ""
|
2807 |
|
2808 |
+
#: languages/vue.php:707
|
2809 |
+
msgid "Google Analytics"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
+
#: languages/vue.php:710
|
2813 |
+
msgid "Subscribe"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
+
#: languages/vue.php:713
|
2817 |
+
msgid "Checking your website..."
|
2818 |
msgstr ""
|
2819 |
|
2820 |
+
#: languages/vue.php:716
|
2821 |
+
msgid "Recommended Settings"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
+
#: languages/vue.php:719
|
2825 |
+
msgid "ExactMetrics recommends the following settings based on your configuration."
|
|
|
2826 |
msgstr ""
|
2827 |
|
|
|
2828 |
#: languages/vue.php:722
|
2829 |
+
msgid "Events Tracking"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
#: languages/vue.php:725
|
2833 |
+
msgid "Must have for all click tracking on site."
|
2834 |
msgstr ""
|
2835 |
|
2836 |
#: languages/vue.php:728
|
2837 |
+
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."
|
2838 |
msgstr ""
|
2839 |
|
2840 |
#: languages/vue.php:731
|
2841 |
+
msgid "Enhanced Link Attribution"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
#: languages/vue.php:734
|
2845 |
+
msgid "Improves the accuracy of your In-Page Analytics."
|
2846 |
msgstr ""
|
2847 |
|
2848 |
#: languages/vue.php:737
|
2849 |
+
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."
|
2850 |
msgstr ""
|
2851 |
|
2852 |
#: languages/vue.php:740
|
2853 |
+
msgid "Install Updates Automatically"
|
2854 |
msgstr ""
|
2855 |
|
2856 |
#: languages/vue.php:743
|
2857 |
+
msgid "Get the latest features, bug fixes, and security updates as they are released."
|
2858 |
msgstr ""
|
2859 |
|
2860 |
#: languages/vue.php:746
|
2861 |
+
msgid "To ensure you get the latest bugfixes 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."
|
2862 |
msgstr ""
|
2863 |
|
2864 |
#: languages/vue.php:749
|
2865 |
+
msgid "File Download Tracking"
|
2866 |
msgstr ""
|
2867 |
|
2868 |
#: languages/vue.php:752
|
2869 |
+
msgid "Helps you see file downloads data."
|
2870 |
msgstr ""
|
2871 |
|
2872 |
+
#: languages/vue.php:755
|
2873 |
+
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."
|
|
|
2874 |
msgstr ""
|
2875 |
|
2876 |
+
#. Translators: Example path (/go/).
|
2877 |
#: languages/vue.php:759
|
2878 |
+
msgid "Path (example: %s)"
|
2879 |
msgstr ""
|
2880 |
|
2881 |
#: languages/vue.php:762
|
2882 |
+
msgid "Path has to start with a / and have no spaces"
|
2883 |
msgstr ""
|
2884 |
|
2885 |
+
#. Translators: Example label (aff).
|
2886 |
+
#: languages/vue.php:766
|
2887 |
+
msgid "Label (example: %s)"
|
2888 |
msgstr ""
|
2889 |
|
|
|
2890 |
#: languages/vue.php:769
|
2891 |
+
msgid "Label can't contain any spaces"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
#: languages/vue.php:772
|
2895 |
+
msgid "Helps you increase affiliate revenue."
|
2896 |
msgstr ""
|
2897 |
|
2898 |
#: languages/vue.php:775
|
2899 |
+
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."
|
2900 |
msgstr ""
|
2901 |
|
2902 |
#: languages/vue.php:778
|
2903 |
+
msgid "Affiliate Link Tracking"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
#: languages/vue.php:781
|
2907 |
+
msgid "Who Can See Reports"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
#: languages/vue.php:784
|
2911 |
+
msgid "These user roles will be able to access ExactMetrics's reports in the WordPress admin area."
|
2912 |
msgstr ""
|
2913 |
|
2914 |
#: languages/vue.php:787
|
2915 |
+
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."
|
2916 |
msgstr ""
|
2917 |
|
2918 |
#: languages/vue.php:790
|
2919 |
+
msgid "Save and continue"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
#: languages/vue.php:793
|
2923 |
+
msgid "Events Tracking is enabled the moment you set up ExactMetrics"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
#: languages/vue.php:796
|
2927 |
+
msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
#: languages/vue.php:799
|
2931 |
+
msgid "+ Add Role"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
#: languages/vue.php:802
|
2945 |
msgstr ""
|
2946 |
|
2947 |
#: languages/vue.php:812
|
2948 |
+
msgid "Connect ExactMetrics to Your Website"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2949 |
msgstr ""
|
2950 |
|
2951 |
+
#: languages/vue.php:815
|
2952 |
+
msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
|
|
|
2953 |
msgstr ""
|
2954 |
|
2955 |
+
#: languages/vue.php:818
|
2956 |
+
msgid "Connect Google Analytics + WordPress"
|
|
|
2957 |
msgstr ""
|
2958 |
|
2959 |
+
#: languages/vue.php:821
|
2960 |
+
msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
|
2961 |
msgstr ""
|
2962 |
|
2963 |
+
#: languages/vue.php:824
|
2964 |
+
msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
|
2965 |
msgstr ""
|
2966 |
|
2967 |
+
#: languages/vue.php:827
|
2968 |
+
msgid "Manually enter your UA code"
|
2969 |
msgstr ""
|
2970 |
|
2971 |
+
#: languages/vue.php:830
|
2972 |
+
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."
|
|
|
2973 |
msgstr ""
|
2974 |
|
2975 |
+
#: languages/vue.php:833
|
2976 |
+
msgid "Save and Continue"
|
|
|
2977 |
msgstr ""
|
2978 |
|
2979 |
+
#: languages/vue.php:836
|
2980 |
+
msgid "UA code can't be empty"
|
2981 |
msgstr ""
|
2982 |
|
2983 |
+
#: languages/vue.php:839
|
2984 |
+
msgid "Saving UA code..."
|
2985 |
msgstr ""
|
2986 |
|
2987 |
#. Translators: placeholders make text small.
|
2988 |
+
#: languages/vue.php:843
|
2989 |
msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
#. Translators: placeholders make text small.
|
2993 |
+
#: languages/vue.php:847
|
2994 |
msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
|
2995 |
msgstr ""
|
2996 |
|
2997 |
#. Translators: placeholders make text small.
|
2998 |
+
#: languages/vue.php:851
|
2999 |
msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
#. Translators: placeholders make text small.
|
3003 |
+
#: languages/vue.php:855
|
3004 |
msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
|
3005 |
msgstr ""
|
3006 |
|
3007 |
#. Translators: placeholders make text small.
|
3008 |
+
#: languages/vue.php:859
|
3009 |
msgid "None %1$s- Manually update everything.%2$s"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
#. Translators: Adds a link to the general settings tab.
|
3013 |
+
#: languages/vue.php:863
|
3014 |
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."
|
3015 |
msgstr ""
|
3016 |
|
3017 |
+
#: languages/vue.php:866
|
3018 |
msgid "Permissions"
|
3019 |
msgstr ""
|
3020 |
|
3021 |
+
#: languages/vue.php:869
|
3022 |
msgid "Allow These User Roles to See Reports"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
+
#: languages/vue.php:872
|
3026 |
msgid "Users that have at least one of these roles will be able to view the reports."
|
3027 |
msgstr ""
|
3028 |
|
3029 |
+
#: languages/vue.php:875
|
3030 |
msgid "Allow These User Roles to Save Settings"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
+
#: languages/vue.php:878
|
3034 |
msgid "Users that have at least one of these roles will be able to view and save the settings panel."
|
3035 |
msgstr ""
|
3036 |
|
3037 |
+
#: languages/vue.php:881
|
3038 |
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."
|
3039 |
msgstr ""
|
3040 |
|
3041 |
+
#: languages/vue.php:884
|
3042 |
msgid "Exclude These User Roles From Tracking"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
+
#: languages/vue.php:887
|
3046 |
msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
|
3047 |
msgstr ""
|
3048 |
|
3049 |
+
#: languages/vue.php:890
|
3050 |
msgid "Custom code"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
#. Translators: Adds a link to the Google reference.
|
3054 |
+
#: languages/vue.php:894
|
3055 |
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."
|
3056 |
msgstr ""
|
3057 |
|
3058 |
+
#: languages/vue.php:900
|
3059 |
msgid "Automatic Updates"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
+
#: languages/vue.php:903
|
3063 |
msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
|
3064 |
msgstr ""
|
3065 |
|
3066 |
+
#: languages/vue.php:906
|
3067 |
msgid "Hide Admin Bar Reports"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
#. Translators: placeholders make text small.
|
3071 |
+
#: languages/vue.php:910
|
3072 |
msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
|
3073 |
msgstr ""
|
3074 |
|
3075 |
+
#: languages/vue.php:913
|
3076 |
+
msgid "Last 30 Days Analytics for "
|
3077 |
msgstr ""
|
3078 |
|
3079 |
+
#: languages/vue.php:916
|
3080 |
+
msgid "Your Website"
|
3081 |
msgstr ""
|
3082 |
|
3083 |
+
#: languages/vue.php:919
|
3084 |
+
msgid "Avg. Duration"
|
3085 |
msgstr ""
|
3086 |
|
3087 |
+
#: languages/vue.php:922
|
3088 |
+
msgid "More data is available"
|
3089 |
+
msgstr ""
|
3090 |
+
|
3091 |
+
#: languages/vue.php:925
|
3092 |
+
msgid "Want to see page-specific stats?"
|
3093 |
+
msgstr ""
|
3094 |
+
|
3095 |
+
#: languages/vue.php:928
|
3096 |
+
msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
|
3097 |
msgstr ""
|
3098 |
|
3099 |
+
#: languages/vue.php:931
|
3100 |
+
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."
|
3101 |
+
msgstr ""
|
3102 |
+
|
3103 |
+
#: languages/vue.php:934
|
3104 |
+
msgid "The ExactMetrics Team"
|
3105 |
+
msgstr ""
|
3106 |
+
|
3107 |
+
#: languages/vue.php:937
|
3108 |
msgid "One-click Complete eCommerce tracking"
|
3109 |
msgstr ""
|
3110 |
|
3111 |
+
#: languages/vue.php:940
|
3112 |
msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
|
3113 |
msgstr ""
|
3114 |
|
3115 |
+
#: languages/vue.php:943
|
3116 |
msgid "Forms Tracking"
|
3117 |
msgstr ""
|
3118 |
|
3119 |
+
#: languages/vue.php:946
|
3120 |
msgid "One-click Form Events Tracking"
|
3121 |
msgstr ""
|
3122 |
|
3123 |
+
#: languages/vue.php:949
|
3124 |
msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
|
3125 |
msgstr ""
|
3126 |
|
3127 |
+
#: languages/vue.php:952
|
3128 |
msgid "WordPress Admin Area Reports"
|
3129 |
msgstr ""
|
3130 |
|
3131 |
+
#: languages/vue.php:955
|
3132 |
msgid "Standard Reports"
|
3133 |
msgstr ""
|
3134 |
|
3135 |
+
#: languages/vue.php:958
|
3136 |
msgid "Overview Reports for the last 30 days."
|
3137 |
msgstr ""
|
3138 |
|
3139 |
+
#: languages/vue.php:961
|
3140 |
msgid "Advanced Reports"
|
3141 |
msgstr ""
|
3142 |
|
3143 |
+
#: languages/vue.php:964
|
3144 |
msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
|
3145 |
msgstr ""
|
3146 |
|
3147 |
+
#: languages/vue.php:967
|
3148 |
msgid "Dashboard Widget"
|
3149 |
msgstr ""
|
3150 |
|
3151 |
+
#: languages/vue.php:970
|
3152 |
msgid "Basic Widget"
|
3153 |
msgstr ""
|
3154 |
|
3155 |
+
#: languages/vue.php:973
|
3156 |
msgid "Overview Report Synopsis"
|
3157 |
msgstr ""
|
3158 |
|
3159 |
+
#: languages/vue.php:976
|
3160 |
msgid "Advanced Dashboard Widget"
|
3161 |
msgstr ""
|
3162 |
|
3163 |
+
#: languages/vue.php:979
|
3164 |
msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
|
3165 |
msgstr ""
|
3166 |
|
3167 |
+
#: languages/vue.php:982
|
3168 |
msgid "Publisher Reports"
|
3169 |
msgstr ""
|
3170 |
|
3171 |
+
#: languages/vue.php:985
|
3172 |
msgid "Advanced Publisher Reports & Tracking"
|
3173 |
msgstr ""
|
3174 |
|
3175 |
+
#: languages/vue.php:988
|
3176 |
msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
+
#: languages/vue.php:991
|
3180 |
msgid "Not Available"
|
3181 |
msgstr ""
|
3182 |
|
3183 |
+
#: languages/vue.php:994
|
3184 |
msgid "Complete Custom Dimensions Tracking"
|
3185 |
msgstr ""
|
3186 |
|
3187 |
+
#: languages/vue.php:997
|
3188 |
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"
|
3189 |
msgstr ""
|
3190 |
|
3191 |
+
#: languages/vue.php:1003
|
3192 |
msgid "Limited Support"
|
3193 |
msgstr ""
|
3194 |
|
3195 |
+
#: languages/vue.php:1006
|
3196 |
msgid "Priority Support"
|
3197 |
msgstr ""
|
3198 |
|
3199 |
+
#: languages/vue.php:1009
|
3200 |
msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
|
3201 |
msgstr ""
|
3202 |
|
3203 |
+
#: languages/vue.php:1012
|
3204 |
msgid "Feature"
|
3205 |
msgstr ""
|
3206 |
|
3207 |
+
#: languages/vue.php:1015
|
3208 |
msgid "Lite"
|
3209 |
msgstr ""
|
3210 |
|
3211 |
+
#: languages/vue.php:1018
|
3212 |
msgid "Pro"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
+
#: languages/vue.php:1021
|
3216 |
msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
|
3217 |
msgstr ""
|
3218 |
|
3219 |
+
#: languages/vue.php:1024
|
3220 |
msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
|
3221 |
msgstr ""
|
3222 |
|
3223 |
+
#: languages/vue.php:1027
|
3224 |
msgid "Upgrade to Pro"
|
3225 |
msgstr ""
|
3226 |
|
3227 |
+
#: languages/vue.php:1030
|
3228 |
msgid "Universal Tracking"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
+
#: languages/vue.php:1033
|
3232 |
msgid "Included"
|
3233 |
msgstr ""
|
3234 |
|
3235 |
+
#: languages/vue.php:1036
|
3236 |
msgid "Custom Google Analytics Link Tracking"
|
3237 |
msgstr ""
|
3238 |
|
3239 |
+
#: languages/vue.php:1039
|
3240 |
msgid "Standard Tracking"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
+
#: languages/vue.php:1042
|
3244 |
msgid "Advanced Tracking"
|
3245 |
msgstr ""
|
3246 |
|
3247 |
+
#: languages/vue.php:1045
|
3248 |
msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
|
3249 |
msgstr ""
|
3250 |
|
3251 |
+
#: languages/vue.php:1048
|
3252 |
msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
|
3253 |
msgstr ""
|
3254 |
|
3255 |
+
#: languages/vue.php:1051
|
3256 |
msgid "No-Code-Needed Tracking Features"
|
3257 |
msgstr ""
|
3258 |
|
3259 |
+
#: languages/vue.php:1054
|
3260 |
msgid "Basic Tracking Options"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
+
#: languages/vue.php:1057
|
3264 |
msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
|
3265 |
msgstr ""
|
3266 |
|
3267 |
+
#: languages/vue.php:1060
|
3268 |
msgid "Advanced Tracking Options"
|
3269 |
msgstr ""
|
3270 |
|
3271 |
+
#: languages/vue.php:1063
|
3272 |
msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
|
3273 |
msgstr ""
|
3274 |
|
3275 |
+
#: languages/vue.php:1066
|
3276 |
+
msgid "Welcome to the all-new ExactMetrics"
|
3277 |
msgstr ""
|
3278 |
|
3279 |
+
#: languages/vue.php:1069
|
3280 |
+
msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
|
|
|
3281 |
msgstr ""
|
3282 |
|
3283 |
+
#: languages/vue.php:1072
|
3284 |
+
msgid "The New & Improved ExactMetrics includes:"
|
3285 |
msgstr ""
|
3286 |
|
3287 |
+
#: languages/vue.php:1075
|
3288 |
+
msgid "All-New Design"
|
|
|
3289 |
msgstr ""
|
3290 |
|
3291 |
+
#: languages/vue.php:1078
|
3292 |
+
msgid "Better Reporting"
|
3293 |
msgstr ""
|
3294 |
|
3295 |
+
#: languages/vue.php:1081
|
3296 |
+
msgid "Better Tracking"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
+
#: languages/vue.php:1084
|
3300 |
+
msgid "Better Support"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
+
#: languages/vue.php:1087
|
3304 |
+
msgid "Continue"
|
3305 |
msgstr ""
|
3306 |
|
3307 |
+
#: languages/vue.php:1090
|
3308 |
+
msgid "Your settings have been automatically transferred."
|
3309 |
msgstr ""
|
3310 |
|
3311 |
+
#: languages/vue.php:1093
|
3312 |
+
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."
|
3313 |
msgstr ""
|
3314 |
|
3315 |
+
#: languages/vue.php:1096
|
3316 |
msgid "ExactMetrics Recommends WPForms"
|
3317 |
msgstr ""
|
3318 |
|
3319 |
+
#: languages/vue.php:1099
|
3320 |
msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
|
3321 |
msgstr ""
|
3322 |
|
3323 |
+
#: languages/vue.php:1102
|
3324 |
msgid "Used on over 3,000,000 websites!"
|
3325 |
msgstr ""
|
3326 |
|
3327 |
+
#: languages/vue.php:1105
|
3328 |
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!"
|
3329 |
msgstr ""
|
3330 |
|
3331 |
+
#: languages/vue.php:1108
|
3332 |
msgid "Skip this Step"
|
3333 |
msgstr ""
|
3334 |
|
3335 |
+
#: languages/vue.php:1111
|
3336 |
msgid "Continue & Install WPForms"
|
3337 |
msgstr ""
|
3338 |
|
3339 |
+
#: languages/vue.php:1114
|
3340 |
msgid "Installing..."
|
3341 |
msgstr ""
|
3342 |
|
3343 |
+
#: languages/vue.php:1117
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3344 |
msgid "Welcome to ExactMetrics!"
|
3345 |
msgstr ""
|
3346 |
|
3347 |
+
#: languages/vue.php:1120
|
3348 |
msgid "Let's get you set up."
|
3349 |
msgstr ""
|
3350 |
|
3351 |
+
#: languages/vue.php:1123
|
3352 |
msgid "Which category best describes your website?"
|
3353 |
msgstr ""
|
3354 |
|
3355 |
+
#: languages/vue.php:1126
|
3356 |
msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
|
3357 |
msgstr ""
|
3358 |
|
3359 |
+
#: languages/vue.php:1129
|
3360 |
msgid "Business Website"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
#. Translators: Make text bold.
|
3364 |
+
#: languages/vue.php:1133
|
3365 |
msgid "Publisher %1$s(Blog)%2$s"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
+
#: languages/vue.php:1136
|
3369 |
+
msgid "Ecommerce"
|
|
|
3370 |
msgstr ""
|
3371 |
|
3372 |
+
#: languages/vue.php:1139
|
3373 |
+
msgid "File imported"
|
3374 |
msgstr ""
|
3375 |
|
3376 |
+
#: languages/vue.php:1142
|
3377 |
+
msgid "Settings successfully updated!"
|
3378 |
msgstr ""
|
3379 |
|
3380 |
+
#: languages/vue.php:1145
|
3381 |
+
msgid "Error importing settings"
|
3382 |
msgstr ""
|
3383 |
|
3384 |
+
#: languages/vue.php:1148
|
3385 |
+
msgid "Please choose a .json file generated by a ExactMetrics settings export."
|
3386 |
msgstr ""
|
3387 |
|
3388 |
+
#: languages/vue.php:1151
|
3389 |
+
msgid "Import/Export"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
+
#: languages/vue.php:1154
|
3393 |
+
msgid "Import"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
+
#: languages/vue.php:1157
|
3397 |
+
msgid "Import settings from another ExactMetrics website."
|
3398 |
msgstr ""
|
3399 |
|
3400 |
+
#: languages/vue.php:1160
|
3401 |
+
msgid "Export"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
+
#: languages/vue.php:1163
|
3405 |
+
msgid "Export settings to import into another ExactMetrics install."
|
3406 |
msgstr ""
|
3407 |
|
3408 |
+
#: languages/vue.php:1166
|
3409 |
+
msgid "Import Settings"
|
3410 |
msgstr ""
|
3411 |
|
3412 |
+
#: languages/vue.php:1169
|
3413 |
+
msgid "Export Settings"
|
3414 |
msgstr ""
|
3415 |
|
3416 |
+
#: languages/vue.php:1172
|
3417 |
+
msgid "Please choose a file to import"
|
|
|
3418 |
msgstr ""
|
3419 |
|
3420 |
+
#: languages/vue.php:1175
|
3421 |
+
msgid "Use the filepicker below to select the settings export file from another site."
|
|
|
3422 |
msgstr ""
|
3423 |
|
3424 |
+
#: languages/vue.php:1178
|
3425 |
+
msgid "Use the button below to export a file with your ExactMetrics settings."
|
3426 |
msgstr ""
|
3427 |
|
3428 |
+
#: languages/vue.php:1181
|
3429 |
+
msgid "Choose file"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
+
#: languages/vue.php:1184
|
3433 |
+
msgid "No file chosen"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
+
#: languages/vue.php:1187
|
3437 |
+
msgid "Uploading file..."
|
3438 |
msgstr ""
|
3439 |
|
3440 |
+
#: languages/vue.php:1190
|
3441 |
+
msgid "Cross Domain Tracking"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
+
#. Translators: Add links to documentation.
|
3445 |
+
#: languages/vue.php:1194
|
3446 |
+
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."
|
3447 |
msgstr ""
|
3448 |
|
3449 |
+
#: languages/vue.php:1197
|
3450 |
+
msgid "Demographics"
|
3451 |
msgstr ""
|
3452 |
|
3453 |
+
#: languages/vue.php:1200
|
3454 |
+
msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
|
3455 |
msgstr ""
|
3456 |
|
3457 |
+
#: languages/vue.php:1203
|
3458 |
+
msgid "Anonymize IP Addresses"
|
3459 |
msgstr ""
|
3460 |
|
3461 |
+
#: languages/vue.php:1206
|
3462 |
+
msgid "Link Attribution"
|
3463 |
msgstr ""
|
3464 |
|
3465 |
+
#: languages/vue.php:1209
|
3466 |
+
msgid "Enable Enhanced Link Attribution"
|
3467 |
msgstr ""
|
3468 |
|
3469 |
+
#: languages/vue.php:1212
|
3470 |
+
msgid "Enable Anchor Tracking"
|
3471 |
msgstr ""
|
3472 |
|
3473 |
+
#: languages/vue.php:1215
|
3474 |
+
msgid "Enable allowAnchor"
|
3475 |
msgstr ""
|
3476 |
|
3477 |
+
#: languages/vue.php:1218
|
3478 |
+
msgid "Enable allowLinker"
|
3479 |
msgstr ""
|
3480 |
|
3481 |
+
#: languages/vue.php:1221
|
3482 |
+
msgid "Enable Tag Links in RSS"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
+
#: languages/vue.php:1224
|
3486 |
+
msgid "File Downloads"
|
3487 |
+
msgstr ""
|
3488 |
+
|
3489 |
+
#: languages/vue.php:1227
|
3490 |
+
msgid "Extensions of Files to Track as Downloads"
|
3491 |
+
msgstr ""
|
3492 |
+
|
3493 |
+
#: languages/vue.php:1230
|
3494 |
+
msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
|
3495 |
+
msgstr ""
|
3496 |
+
|
3497 |
+
#. Translators: Add links to documentation.
|
3498 |
+
#: languages/vue.php:1234
|
3499 |
+
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."
|
3500 |
+
msgstr ""
|
3501 |
+
|
3502 |
+
#. Translators: Add links to documentation.
|
3503 |
+
#: languages/vue.php:1238
|
3504 |
+
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."
|
3505 |
msgstr ""
|
3506 |
|
3507 |
+
#. Translators: Add links to documentation.
|
3508 |
+
#: languages/vue.php:1242
|
3509 |
+
msgid "Add %1$sEnhanced Link Attribution%2$s to your tracking code."
|
3510 |
+
msgstr ""
|
3511 |
+
|
3512 |
+
#: languages/vue.php:1245
|
3513 |
+
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."
|
3514 |
+
msgstr ""
|
3515 |
+
|
3516 |
+
#. Translators: Add links to documentation.
|
3517 |
+
#: languages/vue.php:1249
|
3518 |
+
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."
|
3519 |
+
msgstr ""
|
3520 |
+
|
3521 |
+
#. Translators: Add links to documentation.
|
3522 |
+
#: languages/vue.php:1253
|
3523 |
+
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."
|
3524 |
+
msgstr ""
|
3525 |
+
|
3526 |
+
#. Translators: Add links to documentation.
|
3527 |
+
#: languages/vue.php:1257
|
3528 |
+
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."
|
3529 |
+
msgstr ""
|
3530 |
+
|
3531 |
+
#: languages/vue.php:1260
|
3532 |
+
msgid "Add domain"
|
3533 |
+
msgstr ""
|
3534 |
+
|
3535 |
+
#. Translators: Domain name example.
|
3536 |
+
#: languages/vue.php:1264
|
3537 |
+
msgid "Domain (example: %s)"
|
3538 |
+
msgstr ""
|
3539 |
+
|
3540 |
+
#. Translators: Current domain name that should not be used.
|
3541 |
+
#: languages/vue.php:1268
|
3542 |
+
msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
|
3543 |
+
msgstr ""
|
3544 |
+
|
3545 |
+
#: languages/vue.php:1271
|
3546 |
+
msgid "Custom Campaign Parameters"
|
3547 |
+
msgstr ""
|
3548 |
+
|
3549 |
+
#: languages/vue.php:1274
|
3550 |
+
msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
|
3551 |
+
msgstr ""
|
3552 |
+
|
3553 |
+
#: languages/vue.php:1277
|
3554 |
+
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."
|
3555 |
+
msgstr ""
|
3556 |
+
|
3557 |
+
#. Translators: Marks the field as required.
|
3558 |
+
#: languages/vue.php:1281
|
3559 |
+
msgid "Website URL %s"
|
3560 |
+
msgstr ""
|
3561 |
+
|
3562 |
+
#. Translators: Display the current website url in italic.
|
3563 |
+
#: languages/vue.php:1285
|
3564 |
+
msgid "The full website URL (e.g. %1$s %2$s%3$s)"
|
3565 |
+
msgstr ""
|
3566 |
+
|
3567 |
+
#. Translators: Marks the field as required.
|
3568 |
+
#: languages/vue.php:1289
|
3569 |
+
msgid "Campaign Source %s"
|
3570 |
+
msgstr ""
|
3571 |
+
|
3572 |
+
#. Translators: Make the text italic.
|
3573 |
+
#: languages/vue.php:1293
|
3574 |
+
msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
|
3575 |
+
msgstr ""
|
3576 |
+
|
3577 |
+
#. Translators: Make the text italic.
|
3578 |
+
#: languages/vue.php:1297
|
3579 |
+
msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
|
3580 |
+
msgstr ""
|
3581 |
+
|
3582 |
+
#. Translators: Make the text italic.
|
3583 |
#: languages/vue.php:1301
|
3584 |
+
msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
|
3585 |
msgstr ""
|
3586 |
|
3587 |
#: languages/vue.php:1304
|
3588 |
+
msgid "Enter the paid keyword"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
#: languages/vue.php:1307
|
3592 |
+
msgid "Enter something to differentiate ads"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
#: languages/vue.php:1310
|
3596 |
+
msgid "Use Fragment"
|
|
|
|
|
|
|
|
|
3597 |
msgstr ""
|
3598 |
|
3599 |
+
#. Translators: Make the text bold.
|
3600 |
+
#: languages/vue.php:1314
|
3601 |
+
msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
+
#: languages/vue.php:1317
|
3605 |
+
msgid "URL to use"
|
3606 |
msgstr ""
|
3607 |
|
3608 |
+
#: languages/vue.php:1320
|
3609 |
+
msgid "(Updates automatically)"
|
3610 |
msgstr ""
|
3611 |
|
3612 |
+
#: languages/vue.php:1323
|
3613 |
+
msgid "Copy to Clipboard"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
+
#: languages/vue.php:1326
|
3617 |
+
msgid "More Information & Examples"
|
3618 |
msgstr ""
|
3619 |
|
3620 |
+
#: languages/vue.php:1329
|
3621 |
+
msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
|
3622 |
msgstr ""
|
3623 |
|
3624 |
+
#: languages/vue.php:1332
|
3625 |
+
msgid "Campaign Source"
|
3626 |
msgstr ""
|
3627 |
|
3628 |
+
#: languages/vue.php:1335
|
3629 |
+
msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
|
3630 |
msgstr ""
|
3631 |
|
3632 |
+
#: languages/vue.php:1338
|
3633 |
+
msgid "Campaign Medium"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
+
#: languages/vue.php:1341
|
3637 |
+
msgid "Use utm_medium to identify a medium such as email or cost-per-click."
|
3638 |
msgstr ""
|
3639 |
|
3640 |
+
#: languages/vue.php:1344
|
3641 |
+
msgid "Campaign Name"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
+
#: languages/vue.php:1347
|
3645 |
+
msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
|
3646 |
msgstr ""
|
3647 |
|
3648 |
+
#: languages/vue.php:1350
|
3649 |
+
msgid "Campaign Term"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
+
#: languages/vue.php:1353
|
3653 |
+
msgid "Used for paid search. Use utm_term to note the keywords for this ad."
|
3654 |
msgstr ""
|
3655 |
|
3656 |
+
#: languages/vue.php:1356
|
3657 |
+
msgid "Campaign Content"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
+
#: languages/vue.php:1359
|
3661 |
+
msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
|
3662 |
msgstr ""
|
3663 |
|
3664 |
+
#. Translators: Example.
|
3665 |
+
#: languages/vue.php:1363
|
3666 |
+
msgid "Example: %s"
|
3667 |
msgstr ""
|
3668 |
|
3669 |
+
#. Translators: Examples.
|
3670 |
#: languages/vue.php:1367
|
3671 |
+
msgid "Examples: %s"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
#: languages/vue.php:1370
|
3675 |
+
msgid "About Campaigns"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
#: languages/vue.php:1373
|
3679 |
+
msgid "About Custom Campaigns"
|
3680 |
msgstr ""
|
3681 |
|
3682 |
#: languages/vue.php:1376
|
3683 |
+
msgid "Best Practices for Creating Custom Campaigns"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
#: languages/vue.php:1379
|
3687 |
+
msgid "About the Referral Traffic Report"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
#: languages/vue.php:1382
|
3691 |
+
msgid "About Traffic Source Dimensions"
|
3692 |
msgstr ""
|
3693 |
|
3694 |
#: languages/vue.php:1385
|
3695 |
+
msgid "AdWords Auto-Tagging"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
#: languages/vue.php:1388
|
3699 |
+
msgid "Additional Information"
|
3700 |
msgstr ""
|
3701 |
|
3702 |
#: languages/vue.php:1391
|
3703 |
+
msgid "Ecommerce Report"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
#: languages/vue.php:1394
|
3707 |
+
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."
|
3708 |
msgstr ""
|
3709 |
|
3710 |
+
#: languages/vue.php:1398
|
3711 |
+
msgid "Here's what you get:"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
+
#: languages/vue.php:1401
|
3715 |
+
msgid "See Your Conversion Rate to Improve Funnel"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
+
#: languages/vue.php:1404
|
3719 |
+
msgid "See The Number of Transactions and Make Data-Driven Decisions"
|
3720 |
msgstr ""
|
3721 |
|
|
|
3722 |
#: languages/vue.php:1407
|
3723 |
+
msgid "See The Total Revenue to Track Growth"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
+
#: languages/vue.php:1410
|
3727 |
+
msgid "See Average Order Value to Find Offer Opportunities"
|
|
|
3728 |
msgstr ""
|
3729 |
|
3730 |
+
#: languages/vue.php:1413
|
3731 |
+
msgid "See Your Top Products to See Individual Performance"
|
3732 |
+
msgstr ""
|
3733 |
+
|
3734 |
+
#: languages/vue.php:1416
|
3735 |
+
msgid "See Your Top Conversion Sources and Focus on what's Working"
|
3736 |
msgstr ""
|
3737 |
|
|
|
3738 |
#: languages/vue.php:1419
|
3739 |
+
msgid "See The Time it Takes for Customers to Purchase"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
+
#: languages/vue.php:1422
|
3743 |
+
msgid "See How Many Sessions are Needed for a Purchase"
|
|
|
3744 |
msgstr ""
|
3745 |
|
3746 |
+
#: languages/vue.php:1425
|
3747 |
+
msgid "Unlock the Publisher Report and Focus on the Content That Matters"
|
|
|
3748 |
msgstr ""
|
3749 |
|
3750 |
+
#: languages/vue.php:1428
|
3751 |
+
msgid "See Your Top Landing Pages to Improve Engagement"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
+
#: languages/vue.php:1431
|
3755 |
+
msgid "See Your Top Exit Pages to Reduce Abandonment"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
+
#: languages/vue.php:1434
|
3759 |
+
msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
|
3760 |
+
msgstr ""
|
3761 |
+
|
3762 |
+
#: languages/vue.php:1437
|
3763 |
+
msgid "See Your Top Affiliate Links and Focus on what’s working"
|
3764 |
msgstr ""
|
3765 |
|
|
|
3766 |
#: languages/vue.php:1440
|
3767 |
+
msgid "See Your Top Downloads and Improve Conversions"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
#: languages/vue.php:1443
|
3771 |
+
msgid "See Audience Demographic Report (Age / Gender / Interests)"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
#: languages/vue.php:1446
|
3775 |
+
msgid "Forms Report"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
#: languages/vue.php:1449
|
3779 |
+
msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
#: languages/vue.php:1452
|
3783 |
+
msgid "See Your Top Converting Forms and Optimize"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
#: languages/vue.php:1455
|
3787 |
+
msgid "See Your Forms Impressions Count to Find the Best Placement"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
#: languages/vue.php:1458
|
3791 |
+
msgid "License Key"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
+
#. Translators: Add link to retrieve license key from account.
|
3795 |
+
#: languages/vue.php:1462
|
3796 |
+
msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
|
3797 |
msgstr ""
|
3798 |
|
3799 |
+
#: languages/vue.php:1465
|
3800 |
+
msgid "Google Authentication"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
+
#: languages/vue.php:1468
|
3804 |
+
msgid "Miscellaneous"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
+
#: languages/vue.php:1471
|
3808 |
+
msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
|
3809 |
msgstr ""
|
3810 |
|
3811 |
+
#: languages/vue.php:1474
|
3812 |
+
msgid "Hide Announcements"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
+
#. Translators: Placeholders make the text green.
|
3816 |
+
#: languages/vue.php:1478
|
3817 |
+
msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
#: languages/vue.php:1481
|
3821 |
+
msgid "How to Connect to Google Analytics"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
+
#: languages/vue.php:1484
|
3825 |
+
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."
|
3826 |
msgstr ""
|
3827 |
|
3828 |
+
#: languages/vue.php:1487
|
3829 |
+
msgid "Guide and Checklist for Advanced Insights"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
+
#: languages/vue.php:1490
|
3833 |
+
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."
|
|
|
3834 |
msgstr ""
|
3835 |
|
|
|
3836 |
#: languages/vue.php:1493
|
3837 |
+
msgid "GDPR Guide"
|
3838 |
msgstr ""
|
3839 |
|
3840 |
#: languages/vue.php:1496
|
3841 |
+
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. "
|
3842 |
msgstr ""
|
3843 |
|
3844 |
#: languages/vue.php:1499
|
3845 |
+
msgid "How to Install and Activate ExactMetrics Addons"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
#: languages/vue.php:1502
|
3849 |
+
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."
|
3850 |
msgstr ""
|
3851 |
|
3852 |
#: languages/vue.php:1505
|
3853 |
+
msgid "Enabling eCommerce Tracking and Reports"
|
3854 |
msgstr ""
|
3855 |
|
3856 |
#: languages/vue.php:1508
|
3857 |
+
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."
|
3858 |
msgstr ""
|
3859 |
|
3860 |
#: languages/vue.php:1511
|
3861 |
+
msgid "Read Documentation"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
+
#. Translators: Makes the text bold.
|
3865 |
+
#: languages/vue.php:1515
|
3866 |
+
msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
|
3867 |
msgstr ""
|
3868 |
|
3869 |
+
#. Translators: Makes the text bold.
|
3870 |
+
#: languages/vue.php:1519
|
3871 |
+
msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
|
3872 |
msgstr ""
|
3873 |
|
3874 |
+
#: languages/vue.php:1522
|
3875 |
+
msgid "Unlock Form Tracking"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
+
#: languages/vue.php:1525
|
3879 |
+
msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
|
3880 |
msgstr ""
|
3881 |
|
3882 |
+
#: languages/vue.php:1528
|
3883 |
+
msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
|
3884 |
msgstr ""
|
3885 |
|
3886 |
+
#: languages/vue.php:1531
|
3887 |
+
msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
+
#: languages/vue.php:1534
|
3891 |
+
msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
|
3892 |
msgstr ""
|
3893 |
|
3894 |
+
#: languages/vue.php:1537
|
3895 |
+
msgid "No addons found."
|
3896 |
msgstr ""
|
3897 |
|
3898 |
+
#: languages/vue.php:1540
|
3899 |
+
msgid "Refresh Addons"
|
3900 |
+
msgstr ""
|
3901 |
+
|
3902 |
+
#. Translators: Adds a line break.
|
3903 |
+
#: languages/vue.php:1547
|
3904 |
+
msgid "Upgrade to Pro to unlock addons and other great features."
|
3905 |
msgstr ""
|
3906 |
|
3907 |
+
#: languages/vue.php:1550
|
3908 |
+
msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
|
3909 |
+
msgstr ""
|
3910 |
+
|
3911 |
+
#: languages/vue.php:1553
|
3912 |
+
msgid "Refreshing Addons"
|
3913 |
+
msgstr ""
|
3914 |
+
|
3915 |
+
#: languages/vue.php:1556
|
3916 |
msgid "Recommended Addons"
|
3917 |
msgstr ""
|
3918 |
|
3919 |
#. Translators: Add a link to upgrade and make the text green.
|
3920 |
+
#: languages/vue.php:1560
|
3921 |
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!"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
+
#: languages/vue.php:1563
|
3925 |
msgid "Upgrade to PRO Now"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
+
#: languages/vue.php:1566
|
3929 |
+
msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
|
3930 |
msgstr ""
|
3931 |
|
3932 |
+
#: languages/vue.php:1569
|
3933 |
+
msgid "See All Your Important Store Metrics in One Place."
|
3934 |
msgstr ""
|
3935 |
|
3936 |
+
#: languages/vue.php:1572
|
3937 |
msgid "... and more:"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
+
#: languages/vue.php:1575
|
3941 |
msgid "Dimensions- Track authors, categories, trags, searches, users and more."
|
3942 |
msgstr ""
|
3943 |
|
3944 |
+
#: languages/vue.php:1578
|
3945 |
msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
|
3946 |
msgstr ""
|
3947 |
|
3948 |
+
#: languages/vue.php:1581
|
3949 |
msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
|
3950 |
msgstr ""
|
3951 |
|
3952 |
+
#: languages/vue.php:1584
|
3953 |
msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
|
3954 |
msgstr ""
|
3955 |
|
3956 |
+
#: languages/vue.php:1587
|
3957 |
msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
|
3958 |
msgstr ""
|
3959 |
|
3960 |
+
#: languages/vue.php:1590
|
3961 |
msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
|
3962 |
msgstr ""
|
3963 |
|
3964 |
+
#: languages/vue.php:1593
|
3965 |
msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
|
3966 |
msgstr ""
|
3967 |
|
3968 |
+
#: languages/vue.php:1596
|
3969 |
msgid "Ads- See who’s clicking on your Google Adsense banner ads."
|
3970 |
msgstr ""
|
3971 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3972 |
#. Translators: Error status and error text.
|
3973 |
+
#: languages/vue.php:1600
|
3974 |
+
msgid "Can't deauthenticate. Error: %1$s, %2$s"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
+
#: languages/vue.php:1603
|
3978 |
msgid "You appear to be offline."
|
3979 |
msgstr ""
|
3980 |
|
3981 |
#. Translators: Error status and error text.
|
3982 |
+
#: languages/vue.php:1607
|
3983 |
+
msgid "Can't save settings. Error: %1$s, %2$s"
|
|
|
|
|
|
|
|
|
3984 |
msgstr ""
|
3985 |
|
|
|
3986 |
#: languages/vue.php:1610
|
3987 |
+
msgid "You appear to be offline. Settings not saved."
|
3988 |
msgstr ""
|
3989 |
|
3990 |
#. Translators: Error status and error text.
|
3991 |
#: languages/vue.php:1614
|
3992 |
+
msgid "Can't load authentication details. Error: %1$s, %2$s"
|
3993 |
msgstr ""
|
3994 |
|
3995 |
+
#. Translators: Error status and error text.
|
3996 |
+
#: languages/vue.php:1618
|
3997 |
+
msgid "Can't authenticate. Error: %1$s, %2$s"
|
3998 |
msgstr ""
|
3999 |
|
4000 |
+
#. Translators: Error status and error text.
|
4001 |
+
#: languages/vue.php:1622
|
4002 |
+
msgid "Can't reauthenticate. Error: %1$s, %2$s"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
+
#. Translators: Error status and error text.
|
4006 |
+
#: languages/vue.php:1626
|
4007 |
+
msgid "Can't verify credentials. Error: %1$s, %2$s"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
+
#. Translators: Replaced with the number of days
|
4011 |
+
#: languages/vue.php:1630
|
4012 |
+
msgid "vs. Previous Day"
|
4013 |
msgstr ""
|
4014 |
|
4015 |
+
#: languages/vue.php:1633
|
4016 |
+
msgid "No change"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
+
#: languages/vue.php:1636
|
4020 |
msgid "You appear to be offline. WPForms not installed."
|
4021 |
msgstr ""
|
4022 |
|
4023 |
#. Translators: Error status and error text.
|
4024 |
+
#: languages/vue.php:1640
|
4025 |
msgid "Can't activate addon. Error: %1$s, %2$s"
|
4026 |
msgstr ""
|
4027 |
|
4028 |
+
#: languages/vue.php:1643
|
4029 |
msgid "You appear to be offline. Addon not activated."
|
4030 |
msgstr ""
|
4031 |
|
4032 |
#. Translators: Error status and error text.
|
4033 |
+
#: languages/vue.php:1647
|
4034 |
msgid "Can't deactivate addon. Error: %1$s, %2$s"
|
4035 |
msgstr ""
|
4036 |
|
4037 |
+
#: languages/vue.php:1650
|
4038 |
msgid "You appear to be offline. Addon not deactivated."
|
4039 |
msgstr ""
|
4040 |
|
4041 |
#. Translators: Error status and error text.
|
4042 |
+
#: languages/vue.php:1654
|
4043 |
msgid "Can't install plugin. Error: %1$s, %2$s"
|
4044 |
msgstr ""
|
4045 |
|
4046 |
+
#: languages/vue.php:1657
|
4047 |
msgid "You appear to be offline. Plugin not installed."
|
4048 |
msgstr ""
|
4049 |
|
4050 |
#. Translators: Error status and error text.
|
4051 |
+
#: languages/vue.php:1661
|
4052 |
msgid "Can't install addon. Error: %1$s, %2$s"
|
4053 |
msgstr ""
|
4054 |
|
4055 |
+
#: languages/vue.php:1664
|
4056 |
msgid "You appear to be offline. Addon not installed."
|
4057 |
msgstr ""
|
4058 |
|
4059 |
#. Translators: Error status and error text.
|
4060 |
+
#: languages/vue.php:1668
|
4061 |
msgid "Can't install WPForms. Error: %1$s, %2$s"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
+
#. Translators: Error status and error text.
|
4065 |
+
#: languages/vue.php:1672
|
4066 |
+
msgid "Can't deactivate the license. Error: %1$s, %2$s"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4067 |
msgstr ""
|
4068 |
|
4069 |
+
#. Translators: Error status and error text.
|
4070 |
#: languages/vue.php:1676
|
4071 |
+
msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
|
4072 |
msgstr ""
|
4073 |
|
4074 |
+
#. Translators: Error status and error text.
|
4075 |
+
#: languages/vue.php:1680
|
4076 |
+
msgid "Can't load license details. Error: %1$s, %2$s"
|
4077 |
msgstr ""
|
4078 |
|
|
|
4079 |
#: languages/vue.php:1683
|
4080 |
+
msgid "Error loading license details"
|
4081 |
msgstr ""
|
4082 |
|
4083 |
+
#. Translators: Error status and error text.
|
4084 |
+
#: languages/vue.php:1687
|
4085 |
+
msgid "Can't verify the license. Error: %1$s, %2$s"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
+
#. Translators: Error status and error text.
|
4089 |
+
#: languages/vue.php:1691
|
4090 |
+
msgid "Can't validate the license. Error: %1$s, %2$s"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
+
#. Translators: Make text green.
|
4094 |
#: languages/vue.php:1695
|
4095 |
+
msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
#: languages/vue.php:1698
|
4099 |
+
msgid "Network Active"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
#: languages/vue.php:1701
|
4103 |
+
msgid "Active"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
#: languages/vue.php:1704
|
4107 |
+
msgid "Inactive"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
+
#. Translators: Placeholder for the addon status (installed, active, etc).
|
4111 |
+
#: languages/vue.php:1708
|
4112 |
+
msgid "Status: %s"
|
4113 |
msgstr ""
|
4114 |
|
4115 |
+
#: languages/vue.php:1711
|
4116 |
+
msgid "Not Installed"
|
4117 |
msgstr ""
|
4118 |
|
|
|
4119 |
#: languages/vue.php:1714
|
4120 |
+
msgid "No options available"
|
4121 |
msgstr ""
|
4122 |
|
4123 |
#: languages/vue.php:1717
|
4124 |
+
msgid "Reset to default"
|
4125 |
msgstr ""
|
4126 |
|
4127 |
#: languages/vue.php:1720
|
4128 |
+
msgid "The value entered does not match the required format"
|
4129 |
msgstr ""
|
4130 |
|
4131 |
#: languages/vue.php:1723
|
4141 |
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"
|
4142 |
msgstr ""
|
4143 |
|
4144 |
+
#. Translators: The name of the field that is throwing a validation error.
|
4145 |
+
#: languages/vue.php:1734
|
4146 |
+
msgid "%s can't be empty."
|
4147 |
msgstr ""
|
4148 |
|
|
|
4149 |
#: languages/vue.php:1737
|
4150 |
+
msgid "Duplicate values are not allowed."
|
4151 |
msgstr ""
|
4152 |
|
4153 |
+
#: languages/vue.php:1740
|
4154 |
+
msgid "Add Another Link Path"
|
|
|
4155 |
msgstr ""
|
4156 |
|
4157 |
+
#: languages/vue.php:1743
|
4158 |
+
msgid "Remove row"
|
4159 |
msgstr ""
|
4160 |
|
4161 |
+
#: languages/vue.php:1746
|
4162 |
+
msgid "Search Console Report"
|
|
|
4163 |
msgstr ""
|
4164 |
|
4165 |
+
#: languages/vue.php:1749
|
4166 |
+
msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
|
4167 |
msgstr ""
|
4168 |
|
4169 |
+
#: languages/vue.php:1752
|
4170 |
+
msgid "See Your Top Google Search Terms and Optimize Content"
|
4171 |
msgstr ""
|
4172 |
|
4173 |
+
#: languages/vue.php:1755
|
4174 |
+
msgid "See The Number of Clicks and Track Interests"
|
4175 |
msgstr ""
|
4176 |
|
4177 |
+
#: languages/vue.php:1758
|
4178 |
+
msgid "See The Click-Through-Ratio and Improve SEO"
|
4179 |
msgstr ""
|
4180 |
|
4181 |
+
#: languages/vue.php:1761
|
4182 |
+
msgid "See The Average Results Position and Focus on what works."
|
4183 |
msgstr ""
|
4184 |
|
4185 |
+
#: languages/vue.php:1764
|
4186 |
+
msgid "Show Overview Reports"
|
4187 |
msgstr ""
|
4188 |
|
4189 |
+
#: languages/vue.php:1767
|
4190 |
+
msgid "Show Publishers Reports"
|
4191 |
msgstr ""
|
4192 |
|
4193 |
+
#: languages/vue.php:1770
|
4194 |
+
msgid "Show eCommerce Reports"
|
4195 |
msgstr ""
|
4196 |
|
4197 |
+
#: languages/vue.php:1773
|
4198 |
+
msgid "Available in PRO version"
|
4199 |
msgstr ""
|
4200 |
|
4201 |
+
#: languages/vue.php:1776
|
4202 |
+
msgid "Real-Time Report"
|
4203 |
msgstr ""
|
4204 |
|
4205 |
+
#: languages/vue.php:1779
|
4206 |
+
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."
|
4207 |
msgstr ""
|
4208 |
|
4209 |
+
#. Translators: add link to blog.
|
4210 |
#: languages/vue.php:1783
|
4211 |
+
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."
|
4212 |
msgstr ""
|
4213 |
|
4214 |
#: languages/vue.php:1786
|
4215 |
+
msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
|
4216 |
msgstr ""
|
4217 |
|
4218 |
#: languages/vue.php:1789
|
4219 |
+
msgid "See Your Top Pages Immediately After Making Changes"
|
4220 |
msgstr ""
|
4221 |
|
4222 |
#: languages/vue.php:1792
|
4223 |
+
msgid "See Your Top Referral Sources and Adapt Faster"
|
4224 |
msgstr ""
|
4225 |
|
4226 |
#: languages/vue.php:1795
|
4227 |
+
msgid "See Your Traffic Demographics"
|
4228 |
msgstr ""
|
4229 |
|
4230 |
#: languages/vue.php:1798
|
4231 |
+
msgid "Get Fresh Reports Data Every 60 Seconds"
|
4232 |
msgstr ""
|
4233 |
|
4234 |
#: languages/vue.php:1801
|
4235 |
+
msgid "See Where Your Visitors are Connecting From (country & city)"
|
4236 |
msgstr ""
|
4237 |
|
4238 |
#: languages/vue.php:1804
|
4239 |
+
msgid "Show in widget mode"
|
4240 |
msgstr ""
|
4241 |
|
4242 |
#: languages/vue.php:1807
|
4243 |
+
msgid "Show in full-width mode"
|
4244 |
msgstr ""
|
4245 |
|
4246 |
#: languages/vue.php:1810
|
4247 |
+
msgid "Custom Dimensions Report"
|
4248 |
msgstr ""
|
4249 |
|
4250 |
#: languages/vue.php:1813
|
4251 |
+
msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
|
4252 |
msgstr ""
|
4253 |
|
4254 |
#: languages/vue.php:1816
|
4255 |
+
msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
|
4256 |
msgstr ""
|
4257 |
|
4258 |
+
#: languages/vue.php:1819
|
4259 |
+
msgid "Author tracking to see which author’s posts generate the most traffic"
|
|
|
4260 |
msgstr ""
|
4261 |
|
4262 |
+
#: languages/vue.php:1822
|
4263 |
+
msgid "Post Type tracking to see which WordPress post types perform better"
|
4264 |
msgstr ""
|
4265 |
|
4266 |
+
#: languages/vue.php:1825
|
4267 |
+
msgid "Category tracking to see which sections of your sites are the most popular"
|
|
|
4268 |
msgstr ""
|
4269 |
|
4270 |
+
#: languages/vue.php:1828
|
4271 |
+
msgid "SEO score tracking to see which blog SEO scores are the most popular"
|
4272 |
msgstr ""
|
4273 |
|
4274 |
+
#: languages/vue.php:1831
|
4275 |
+
msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
|
4276 |
msgstr ""
|
4277 |
|
4278 |
+
#: languages/vue.php:1834
|
4279 |
+
msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
|
4280 |
msgstr ""
|
4281 |
|
4282 |
+
#. Translators: Error status and error text.
|
4283 |
+
#: languages/vue.php:1838
|
4284 |
+
msgid "Can't load errors. Error: %1$s, %2$s"
|
4285 |
msgstr ""
|
4286 |
|
4287 |
+
#. Translators: Error status and error text.
|
4288 |
#: languages/vue.php:1842
|
4289 |
+
msgid "Can't load settings. Error: %1$s, %2$s"
|
4290 |
msgstr ""
|
4291 |
|
4292 |
#: languages/vue.php:1845
|
4293 |
+
msgid "Network error encountered. Settings not saved."
|
|
|
|
|
|
|
|
|
4294 |
msgstr ""
|
4295 |
|
4296 |
+
#. Translators: Placeholder adds a line break.
|
4297 |
+
#: languages/vue.php:1850
|
4298 |
+
msgid "You can customize your %sdate range only in the PRO version."
|
4299 |
msgstr ""
|
4300 |
|
4301 |
+
#: languages/vue.php:1853
|
4302 |
+
msgid "Check out the newly added classic mode"
|
4303 |
msgstr ""
|
4304 |
|
4305 |
+
#: languages/vue.php:1856
|
4306 |
+
msgid "It's easy to double your traffic and sales when you know exactly how people find and use your website. ExactMetrics Pro shows you the stats that matter!"
|
4307 |
msgstr ""
|
4308 |
|
4309 |
+
#: languages/vue.php:1859
|
4310 |
+
msgid "To unlock more features consider upgrading to PRO."
|
4311 |
msgstr ""
|
4312 |
|
4313 |
+
#: languages/vue.php:1862
|
4314 |
+
msgid "Receive 50% off automatically applied at the checkout!"
|
4315 |
msgstr ""
|
4316 |
|
4317 |
+
#: languages/vue.php:1865
|
4318 |
+
msgid "See all features"
|
4319 |
msgstr ""
|
4320 |
|
4321 |
+
#: languages/vue.php:1868
|
4322 |
+
msgid "Upgrade to"
|
4323 |
msgstr ""
|
4324 |
|
4325 |
+
#: languages/vue.php:1871
|
4326 |
+
msgid "Last 30 days"
|
4327 |
msgstr ""
|
4328 |
|
4329 |
+
#: languages/vue.php:1874
|
4330 |
+
msgid "See All Reports"
|
4331 |
msgstr ""
|
4332 |
|
4333 |
+
#: languages/vue.php:1877
|
4334 |
+
msgid "Go to the Analytics Dashboard"
|
4335 |
msgstr ""
|
4336 |
|
4337 |
+
#. Translators: Add line break.
|
4338 |
#: languages/vue.php:1881
|
4339 |
+
msgid "See All Your Important Store%s Metrics in One Place"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
#: languages/vue.php:1884
|
4343 |
+
msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
|
4344 |
msgstr ""
|
4345 |
|
4346 |
#: languages/vue.php:1887
|
4347 |
+
msgid "See your Top Conversion Sources and Focus on what's Working"
|
4348 |
msgstr ""
|
4349 |
|
4350 |
#: languages/vue.php:1890
|
4351 |
+
msgid "Proceed"
|
4352 |
msgstr ""
|
4353 |
|
4354 |
#: languages/vue.php:1893
|
4355 |
+
msgid "Connection Information"
|
4356 |
msgstr ""
|
4357 |
|
4358 |
#: languages/vue.php:1896
|
4359 |
+
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."
|
4360 |
msgstr ""
|
4361 |
|
4362 |
#: languages/vue.php:1899
|
4363 |
+
msgid "Hostname"
|
4364 |
msgstr ""
|
4365 |
|
4366 |
#: languages/vue.php:1902
|
4367 |
+
msgid "FTP Username"
|
4368 |
msgstr ""
|
4369 |
|
4370 |
#: languages/vue.php:1905
|
4371 |
+
msgid "FTP Password"
|
4372 |
msgstr ""
|
4373 |
|
4374 |
#: languages/vue.php:1908
|
4375 |
+
msgid "This password will not be stored on the server."
|
4376 |
msgstr ""
|
4377 |
|
4378 |
#: languages/vue.php:1911
|
4379 |
+
msgid "Connection Type"
|
4380 |
msgstr ""
|
4381 |
|
4382 |
#: languages/vue.php:1914
|
4383 |
+
msgid "Cancel"
|
4384 |
msgstr ""
|
4385 |
|
4386 |
#: languages/vue.php:1917
|
4387 |
+
msgid "Facebook Instant Articles"
|
4388 |
msgstr ""
|
4389 |
|
4390 |
+
#: languages/vue.php:1920
|
4391 |
+
msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
|
|
|
4392 |
msgstr ""
|
4393 |
|
4394 |
+
#: languages/vue.php:1923
|
4395 |
+
msgid "Google AMP"
|
4396 |
+
msgstr ""
|
4397 |
+
|
4398 |
+
#: languages/vue.php:1926
|
4399 |
+
msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
|
4400 |
msgstr ""
|
4401 |
|
4402 |
+
#: languages/vue.php:1929
|
4403 |
msgid "Ads Tracking"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
+
#: languages/vue.php:1932
|
4407 |
msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
|
4408 |
msgstr ""
|
4409 |
|
4410 |
+
#. Translators: Adds link to the account area to retreive license key.
|
4411 |
+
#: languages/vue.php:1936
|
4412 |
+
msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
|
|
|
4413 |
msgstr ""
|
4414 |
|
4415 |
+
#: languages/vue.php:1939
|
4416 |
+
msgid "Paste your license key here"
|
4417 |
msgstr ""
|
4418 |
|
4419 |
+
#: languages/vue.php:1942
|
4420 |
+
msgid "Verify"
|
|
|
4421 |
msgstr ""
|
4422 |
|
|
|
4423 |
#: languages/vue.php:1945
|
4424 |
+
msgid "Setup Wizard"
|
4425 |
msgstr ""
|
4426 |
|
4427 |
+
#: languages/vue.php:1948
|
4428 |
+
msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
|
|
|
4429 |
msgstr ""
|
4430 |
|
4431 |
+
#: languages/vue.php:1951
|
4432 |
+
msgid "Relaunch Setup Wizard"
|
4433 |
msgstr ""
|
4434 |
|
4435 |
+
#: languages/vue.php:1954
|
4436 |
+
msgid "Connect ExactMetrics to Start Tracking Your Data"
|
4437 |
msgstr ""
|
4438 |
|
4439 |
+
#: languages/vue.php:1957
|
4440 |
+
msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
|
4441 |
msgstr ""
|
4442 |
|
4443 |
+
#. Translators: Adds link to upgrade.
|
4444 |
#: languages/vue.php:1961
|
4445 |
+
msgid "To unlock more features consider %1$supgrading to PRO%2$s."
|
4446 |
msgstr ""
|
4447 |
|
4448 |
#: languages/vue.php:1964
|
4449 |
+
msgid "Complete Upgrade"
|
4450 |
msgstr ""
|
4451 |
|
4452 |
#: languages/vue.php:1967
|
4453 |
+
msgid "Upgrade to Pro Version!"
|
4454 |
msgstr ""
|
4455 |
|
4456 |
+
#. Translators: Make text bold.
|
4457 |
+
#: languages/vue.php:1971
|
4458 |
+
msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
|
4459 |
msgstr ""
|
4460 |
|
4461 |
+
#: languages/vue.php:1974
|
4462 |
+
msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
|
4463 |
msgstr ""
|
4464 |
|
4465 |
+
#: languages/vue.php:1977
|
4466 |
+
msgid "Show"
|
4467 |
msgstr ""
|
4468 |
|
4469 |
+
#. Translators: The number of results.
|
4470 |
+
#: languages/vue.php:1981
|
4471 |
+
msgid "%s results"
|
4472 |
msgstr ""
|
4473 |
|
4474 |
+
#: languages/vue.php:1984
|
4475 |
+
#: languages/vue.php:2064
|
4476 |
+
msgid "Connect ExactMetrics"
|
4477 |
msgstr ""
|
4478 |
|
4479 |
+
#: languages/vue.php:1987
|
4480 |
+
msgid "Website profile"
|
|
|
4481 |
msgstr ""
|
4482 |
|
4483 |
+
#: languages/vue.php:1990
|
4484 |
+
msgid "Active profile"
|
4485 |
msgstr ""
|
4486 |
|
4487 |
+
#: languages/vue.php:1993
|
4488 |
+
msgid "Your website profile has been set at the network level of your WordPress Multisite."
|
4489 |
msgstr ""
|
4490 |
|
4491 |
+
#: languages/vue.php:1996
|
4492 |
+
msgid "If you would like to use a different profile for this subsite, you can authenticate below."
|
4493 |
msgstr ""
|
4494 |
|
4495 |
+
#: languages/vue.php:1999
|
4496 |
+
msgid "Skip and Keep Connection"
|
4497 |
msgstr ""
|
4498 |
|
4499 |
+
#: languages/vue.php:2002
|
4500 |
+
msgid "Authenticating"
|
4501 |
msgstr ""
|
4502 |
|
4503 |
+
#: languages/vue.php:2005
|
4504 |
+
msgid "Activating..."
|
4505 |
msgstr ""
|
4506 |
|
|
|
4507 |
#: languages/vue.php:2008
|
4508 |
+
msgid "Deactivating..."
|
4509 |
msgstr ""
|
4510 |
|
4511 |
#: languages/vue.php:2011
|
4512 |
+
msgid "Deactivate"
|
4513 |
msgstr ""
|
4514 |
|
4515 |
#: languages/vue.php:2014
|
4516 |
+
msgid "Scroll Tracking"
|
4517 |
msgstr ""
|
4518 |
|
4519 |
#: languages/vue.php:2017
|
4520 |
+
msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
|
4521 |
msgstr ""
|
4522 |
|
4523 |
#: languages/vue.php:2020
|
4524 |
+
msgid ""
|
4525 |
+
"The EU Compliance addon allows you to improve compliance with GDPR\n"
|
4526 |
+
" and other privacy regulations."
|
4527 |
msgstr ""
|
4528 |
|
4529 |
+
#: languages/vue.php:2024
|
4530 |
+
msgid "EU Compliance"
|
4531 |
msgstr ""
|
4532 |
|
4533 |
+
#: languages/vue.php:2027
|
4534 |
+
msgid "Classic mode"
|
4535 |
msgstr ""
|
4536 |
|
4537 |
+
#: languages/vue.php:2030
|
4538 |
+
msgid "Hide dashboard widget"
|
4539 |
msgstr ""
|
4540 |
|
4541 |
+
#: languages/vue.php:2033
|
4542 |
+
msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
|
4543 |
msgstr ""
|
4544 |
|
|
|
4545 |
#: languages/vue.php:2036
|
4546 |
+
msgid "Yes, hide it!"
|
4547 |
msgstr ""
|
4548 |
|
4549 |
#: languages/vue.php:2039
|
4550 |
+
msgid "No, cancel!"
|
4551 |
msgstr ""
|
4552 |
|
4553 |
#: languages/vue.php:2042
|
4554 |
+
msgid "ExactMetrics Widget Hidden"
|
4555 |
msgstr ""
|
4556 |
|
4557 |
#: languages/vue.php:2045
|
4558 |
+
msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
|
4559 |
msgstr ""
|
4560 |
|
4561 |
+
#. Translators: Make text bold.
|
4562 |
+
#: languages/vue.php:2049
|
4563 |
+
msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy!"
|
4564 |
msgstr ""
|
4565 |
|
|
|
4566 |
#: languages/vue.php:2052
|
4567 |
+
msgid "Verifying Credentials"
|
4568 |
msgstr ""
|
4569 |
|
4570 |
#: languages/vue.php:2055
|
4571 |
+
msgid "Your site is connected to ExactMetrics!"
|
4572 |
msgstr ""
|
4573 |
|
4574 |
#: languages/vue.php:2058
|
4575 |
+
msgid "Deauthenticating"
|
4576 |
msgstr ""
|
4577 |
|
4578 |
#: languages/vue.php:2061
|
4579 |
+
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."
|
|
|
|
|
|
|
|
|
4580 |
msgstr ""
|
4581 |
|
4582 |
#: languages/vue.php:2067
|
4583 |
+
msgid "Verify Credentials"
|
4584 |
msgstr ""
|
4585 |
|
4586 |
+
#: languages/vue.php:2073
|
4587 |
+
msgid "Website Profile"
|
|
|
4588 |
msgstr ""
|
4589 |
|
4590 |
+
#: languages/vue.php:2076
|
4591 |
+
msgid "Active Profile"
|
4592 |
msgstr ""
|
4593 |
|
4594 |
+
#: languages/vue.php:2079
|
4595 |
+
msgid "Force Deauthenticate"
|
4596 |
msgstr ""
|
4597 |
|
4598 |
+
#: languages/vue.php:2082
|
4599 |
+
msgid "Disconnect ExactMetrics"
|
4600 |
msgstr ""
|
4601 |
|
4602 |
+
#: languages/vue.php:2085
|
4603 |
+
msgid "Performance"
|
4604 |
msgstr ""
|
4605 |
|
4606 |
+
#: languages/vue.php:2088
|
4607 |
+
msgid "Adjust the sample rate so you don't exceed Google Analytics' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization."
|
|
|
4608 |
msgstr ""
|
4609 |
|
|
|
4610 |
#: languages/vue.php:2091
|
4611 |
+
msgid "Usage Tracking"
|
4612 |
msgstr ""
|
4613 |
|
4614 |
#: languages/vue.php:2094
|
4615 |
+
msgid "By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test."
|
4616 |
msgstr ""
|
4617 |
|
4618 |
+
#: languages/vue.php:2097
|
4619 |
+
msgid "Allow usage tracking"
|
|
|
4620 |
msgstr ""
|
4621 |
|
4622 |
+
#. Translators: Adds a link to the documentation.
|
4623 |
+
#: languages/vue.php:2101
|
4624 |
+
msgid "Complete documentation on usage tracking is available %1$shere%2$s."
|
4625 |
msgstr ""
|
4626 |
|
4627 |
+
#. Translators: Makes text bold and adds smiley.
|
4628 |
+
#: languages/vue.php:2105
|
4629 |
+
msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
|
4630 |
msgstr ""
|
4631 |
|
4632 |
+
#. Translators: Makes text green.
|
4633 |
+
#: languages/vue.php:2109
|
4634 |
+
msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
|
4635 |
msgstr ""
|
4636 |
|
4637 |
+
#: languages/vue.php:2112
|
4638 |
+
msgid "Unlock All Features and Upgrade to Pro"
|
4639 |
msgstr ""
|
4640 |
|
4641 |
+
#: languages/vue.php:2115
|
4642 |
+
msgid "Upgrade"
|
|
|
4643 |
msgstr ""
|
4644 |
|
4645 |
+
#. Translators: Line break.
|
4646 |
+
#: languages/vue.php:2119
|
4647 |
+
msgid "Unique %s Sessions"
|
4648 |
msgstr ""
|
4649 |
|
4650 |
+
#. Translators: Line break.
|
4651 |
#: languages/vue.php:2123
|
4652 |
+
msgid "Unique %s Pageviews"
|
4653 |
msgstr ""
|
4654 |
|
4655 |
#: languages/vue.php:2126
|
4656 |
+
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."
|
4657 |
msgstr ""
|
4658 |
|
4659 |
#: languages/vue.php:2129
|
4660 |
+
msgid "Email Summaries"
|
4661 |
+
msgstr ""
|
4662 |
+
|
4663 |
+
#: languages/vue.php:2132
|
4664 |
+
msgid "Export PDF Reports"
|
4665 |
msgstr ""
|
4666 |
|
4667 |
#: languages/vue.php:2135
|
4668 |
+
msgid "You can add maximum 5 items."
|
4669 |
+
msgstr ""
|
4670 |
+
|
4671 |
+
#: languages/vue.php:2138
|
4672 |
+
msgid "At least 0 item required."
|
4673 |
msgstr ""
|
4674 |
|
4675 |
#: languages/vue.php:2141
|
4676 |
+
msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
|
4677 |
msgstr ""
|
4678 |
|
4679 |
#: languages/vue.php:2144
|
4680 |
+
msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
|
4681 |
msgstr ""
|
4682 |
|
4683 |
#: languages/vue.php:2147
|
4684 |
+
msgid "Today"
|
4685 |
msgstr ""
|
4686 |
|
4687 |
#: languages/vue.php:2150
|
4688 |
+
msgid "Yesterday"
|
4689 |
msgstr ""
|
4690 |
|
4691 |
+
#: languages/vue.php:2153
|
4692 |
+
msgid "Last Week"
|
|
|
4693 |
msgstr ""
|
4694 |
|
4695 |
+
#: languages/vue.php:2156
|
4696 |
+
msgid "Last Month"
|
4697 |
msgstr ""
|
4698 |
|
4699 |
+
#: languages/vue.php:2159
|
4700 |
+
msgid "Last 7 days"
|
4701 |
msgstr ""
|
4702 |
|
4703 |
+
#: languages/vue.php:2162
|
4704 |
+
msgid "PrettyLinks Integration"
|
4705 |
msgstr ""
|
4706 |
|
4707 |
+
#: languages/vue.php:2165
|
4708 |
+
msgid "Make your ExactMetrics campaign links prettier with Pretty Links!"
|
4709 |
msgstr ""
|
4710 |
|
4711 |
+
#: languages/vue.php:2168
|
4712 |
+
msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
|
4713 |
msgstr ""
|
4714 |
|
4715 |
+
#: languages/vue.php:2171
|
4716 |
+
msgid "Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!"
|
4717 |
msgstr ""
|
4718 |
|
4719 |
+
#: languages/vue.php:2174
|
4720 |
+
msgid "Over 200,000 websites use Pretty Links!"
|
4721 |
msgstr ""
|
4722 |
|
4723 |
+
#: languages/vue.php:2177
|
4724 |
+
msgid "Install Pretty Links"
|
4725 |
msgstr ""
|
4726 |
|
4727 |
+
#: languages/vue.php:2180
|
4728 |
+
msgid "Pretty Links Installed & Activated"
|
4729 |
msgstr ""
|
4730 |
|
4731 |
+
#: languages/vue.php:2183
|
4732 |
+
msgid "Download Pretty Links"
|
4733 |
msgstr ""
|
4734 |
|
4735 |
+
#: languages/vue.php:2186
|
4736 |
+
msgid "Install Pretty Links from the WordPress.org plugin repository."
|
4737 |
msgstr ""
|
4738 |
|
4739 |
+
#: languages/vue.php:2189
|
4740 |
+
msgid "Activate Pretty Links"
|
|
|
4741 |
msgstr ""
|
4742 |
|
4743 |
+
#: languages/vue.php:2192
|
4744 |
+
msgid "Activating Pretty Links"
|
4745 |
msgstr ""
|
4746 |
|
4747 |
+
#: languages/vue.php:2195
|
4748 |
+
msgid "Create New Pretty Link"
|
4749 |
msgstr ""
|
4750 |
|
4751 |
+
#: languages/vue.php:2198
|
4752 |
+
msgid "Create a New Pretty Link"
|
4753 |
msgstr ""
|
4754 |
|
4755 |
+
#: languages/vue.php:2201
|
4756 |
+
msgid "Grab your campaign link and paste it into the Target URL field."
|
4757 |
msgstr ""
|
4758 |
|
4759 |
+
#: languages/vue.php:2204
|
4760 |
+
msgid "Copy to Pretty Links"
|
4761 |
+
msgstr ""
|
4762 |
+
|
4763 |
+
#: languages/vue.php:2207
|
4764 |
+
msgid "Make your campaign links prettier!"
|
4765 |
+
msgstr ""
|
4766 |
+
|
4767 |
+
#: languages/vue.php:2210
|
4768 |
+
msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
|
4769 |
+
msgstr ""
|
4770 |
+
|
4771 |
+
#. Translators: Add links to documentation.
|
4772 |
+
#: languages/vue.php:2214
|
4773 |
+
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."
|
4774 |
+
msgstr ""
|
4775 |
+
|
4776 |
+
#: languages/vue.php:2217
|
4777 |
+
msgid "View notifications"
|
4778 |
+
msgstr ""
|
4779 |
+
|
4780 |
+
#: languages/vue.php:2220
|
4781 |
+
msgid "Verifying License"
|
4782 |
+
msgstr ""
|
4783 |
+
|
4784 |
+
#: languages/vue.php:2223
|
4785 |
+
msgid "There was an error verifying your license"
|
4786 |
+
msgstr ""
|
4787 |
+
|
4788 |
+
#: languages/vue.php:2226
|
4789 |
+
msgid "Refreshing License"
|
4790 |
+
msgstr ""
|
4791 |
+
|
4792 |
+
#: languages/vue.php:2229
|
4793 |
+
msgid "There was an error refreshing your license"
|
4794 |
+
msgstr ""
|
4795 |
+
|
4796 |
+
#: languages/vue.php:2232
|
4797 |
+
msgid "Deactivating License"
|
4798 |
+
msgstr ""
|
4799 |
+
|
4800 |
+
#: languages/vue.php:2235
|
4801 |
+
msgid "Success"
|
4802 |
+
msgstr ""
|
4803 |
+
|
4804 |
+
#: languages/vue.php:2238
|
4805 |
+
msgid "There was an error deactivating your license"
|
4806 |
+
msgstr ""
|
4807 |
+
|
4808 |
+
#: languages/vue.php:2241
|
4809 |
+
msgid "Your license key has been set at the network level of your WordPress Multisite."
|
4810 |
+
msgstr ""
|
4811 |
+
|
4812 |
+
#: languages/vue.php:2244
|
4813 |
+
msgid "If you would like to use a different license for this subsite, you can enter it below."
|
4814 |
+
msgstr ""
|
4815 |
+
|
4816 |
+
#: languages/vue.php:2247
|
4817 |
+
msgid "No license key activated on this subsite"
|
4818 |
+
msgstr ""
|
4819 |
+
|
4820 |
+
#. Translators: License key type.
|
4821 |
+
#: languages/vue.php:2251
|
4822 |
+
msgid "Your license key type for this site is %s. "
|
4823 |
+
msgstr ""
|
4824 |
+
|
4825 |
+
#: languages/vue.php:2254
|
4826 |
+
msgid "Refresh Key"
|
4827 |
+
msgstr ""
|
4828 |
+
|
4829 |
+
#: languages/vue.php:2257
|
4830 |
+
msgid "Click refresh if your license has been upgraded or the type is incorrect."
|
4831 |
+
msgstr ""
|
4832 |
+
|
4833 |
+
#: languages/vue.php:2260
|
4834 |
+
msgid "Change Key"
|
4835 |
+
msgstr ""
|
4836 |
+
|
4837 |
+
#: languages/vue.php:2263
|
4838 |
+
msgid "Deactivate this license key"
|
4839 |
+
msgstr ""
|
4840 |
+
|
4841 |
+
#: languages/vue.php:2266
|
4842 |
+
msgid "The license key is used to enable updates for ExactMetrics Pro and addons, as well enable the ability to view reports. Deactivate your license if you want to use it on another WordPress site."
|
4843 |
+
msgstr ""
|
4844 |
+
|
4845 |
+
#. Translators: Make text green and add smiley face.
|
4846 |
+
#: languages/vue.php:2270
|
4847 |
+
msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
|
4848 |
+
msgstr ""
|
4849 |
+
|
4850 |
+
#. Translators: Make text green.
|
4851 |
+
#: languages/vue.php:2274
|
4852 |
+
msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
|
4853 |
+
msgstr ""
|
4854 |
+
|
4855 |
+
#: languages/vue.php:2277
|
4856 |
+
msgid "Unlock PRO Features Now"
|
4857 |
+
msgstr ""
|
4858 |
+
|
4859 |
+
#. Translators: Add link to retrieve license from account area.
|
4860 |
+
#: languages/vue.php:2281
|
4861 |
+
msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
|
4862 |
+
msgstr ""
|
4863 |
+
|
4864 |
+
#: languages/vue.php:2284
|
4865 |
+
msgid "Activating Pretty Links..."
|
4866 |
+
msgstr ""
|
4867 |
+
|
4868 |
+
#: languages/vue.php:2287
|
4869 |
+
msgid "Export PDF Report"
|
4870 |
+
msgstr ""
|
4871 |
+
|
4872 |
+
#: languages/vue.php:2290
|
4873 |
+
msgid "You can export PDF reports only in the PRO version."
|
4874 |
msgstr ""
|
4875 |
|
4876 |
+
#: exactmetrics.php:238
|
4877 |
+
#: exactmetrics.php:252
|
4878 |
+
#: googleanalytics.php:264
|
4879 |
+
#: googleanalytics.php:278
|
4880 |
msgid "Cheatin’ huh?"
|
4881 |
msgstr ""
|
4882 |
|
4883 |
#. Translators: Make version number bold and add a link to return to the plugins page.
|
4884 |
+
#: exactmetrics.php:384
|
4885 |
+
#: googleanalytics.php:407
|
4886 |
msgid "Sorry, but your version of WordPress does not meet ExactMetrics's required version of %1$s3.8%2$s to run properly. The plugin not been activated. %3$sClick here to return to the Dashboard%4$s."
|
4887 |
msgstr ""
|
4888 |
|
4889 |
#. Translators: Adds a link to the plugins page.
|
4890 |
+
#: exactmetrics.php:410
|
4891 |
+
#: googleanalytics.php:428
|
4892 |
msgid "Please %1$suninstall%2$s the ExactMetrics Lite Plugin. Your Pro version of ExactMetrics may not work as expected until the Lite version is uninstalled."
|
4893 |
msgstr ""
|
4894 |
|
languages/vue.php
CHANGED
@@ -1,124 +1,215 @@
|
|
1 |
<?php
|
2 |
/* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
|
3 |
$generated_i18n_strings = array(
|
4 |
-
// Reference: src/modules/
|
5 |
-
|
6 |
-
|
|
|
|
|
|
|
|
|
7 |
__( 'Error', 'google-analytics-dashboard-for-wp' ),
|
8 |
|
9 |
-
// Reference: src/plugins/exactmetrics-
|
10 |
__( 'Please try again.', 'google-analytics-dashboard-for-wp' ),
|
11 |
|
12 |
-
// Reference: src/plugins/exactmetrics-
|
13 |
-
__( 'Loading
|
14 |
|
15 |
-
// Reference: src/components/
|
16 |
-
|
17 |
-
|
18 |
-
__( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
|
19 |
|
20 |
-
// Reference: src/
|
21 |
-
|
|
|
22 |
|
23 |
-
// Reference: src/
|
24 |
-
__( '
|
25 |
|
26 |
-
// Reference: src/
|
27 |
-
|
28 |
-
__( 'You need to %1$sconnect ExactMetrics%2$s first', 'google-analytics-dashboard-for-wp' ),
|
29 |
|
30 |
-
// Reference: src/plugins/exactmetrics-
|
31 |
-
|
|
|
32 |
|
33 |
-
// Reference: src/plugins/exactmetrics-
|
34 |
-
__( '
|
35 |
|
36 |
-
// Reference: src/
|
37 |
-
|
38 |
-
|
39 |
-
__( 'Continue %s', 'google-analytics-dashboard-for-wp' ),
|
40 |
|
41 |
-
// Reference: src/plugins/exactmetrics-
|
42 |
-
__( '
|
43 |
|
44 |
-
// Reference: src/plugins/exactmetrics-
|
45 |
-
__( '
|
46 |
|
47 |
-
// Reference: src/plugins/exactmetrics-
|
48 |
-
|
|
|
49 |
|
50 |
-
// Reference: src/plugins/exactmetrics-
|
51 |
-
__( '
|
52 |
|
53 |
-
// Reference: src/
|
54 |
-
__( '
|
55 |
|
56 |
-
// Reference: src/
|
57 |
-
__( '
|
58 |
|
59 |
-
// Reference: src/
|
60 |
-
|
|
|
61 |
|
62 |
-
// Reference: src/
|
63 |
-
__( '
|
64 |
|
65 |
-
// Reference: src/modules/reports/
|
66 |
-
|
67 |
-
__( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-dashboard-for-wp' ),
|
68 |
|
69 |
-
// Reference: src/modules/
|
70 |
-
|
71 |
-
__( 'Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data.', 'google-analytics-dashboard-for-wp' ),
|
72 |
|
73 |
-
// Reference: src/
|
74 |
-
|
|
|
|
|
75 |
|
76 |
-
// Reference: src/
|
77 |
-
__( '
|
78 |
|
79 |
-
// Reference: src/
|
80 |
-
__( '
|
81 |
|
82 |
-
// Reference: src/
|
83 |
-
__( '
|
84 |
|
85 |
-
// Reference: src/modules/
|
86 |
-
|
|
|
87 |
|
88 |
-
// Reference: src/modules/
|
89 |
-
__( '
|
90 |
|
91 |
-
// Reference: src/modules/settings/
|
92 |
-
|
93 |
-
__( 'Get Started %s', 'google-analytics-dashboard-for-wp' ),
|
94 |
|
95 |
-
// Reference: src/modules/
|
96 |
-
|
97 |
-
__( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
|
98 |
|
99 |
-
// Reference: src/
|
100 |
-
|
101 |
-
__( '
|
102 |
|
103 |
-
// Reference: src/
|
104 |
-
__( '
|
105 |
|
106 |
-
// Reference: src/
|
107 |
-
|
108 |
-
__( 'ExactMetrics has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure.', 'google-analytics-dashboard-for-wp' ),
|
109 |
|
110 |
-
// Reference: src/
|
111 |
-
__( '
|
112 |
|
113 |
-
// Reference: src/
|
114 |
-
|
|
|
115 |
|
116 |
-
// Reference: src/
|
117 |
-
|
118 |
-
__( 'ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.9 in October, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.', 'google-analytics-dashboard-for-wp' ),
|
119 |
|
120 |
-
// Reference: src/
|
121 |
-
__( '
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
|
123 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:102
|
124 |
/* Translators: Makes text bold. */
|
@@ -157,70 +248,85 @@ $generated_i18n_strings = array(
|
|
157 |
__( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
|
158 |
|
159 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:41
|
|
|
160 |
__( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
|
161 |
|
162 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:42
|
|
|
163 |
__( 'per year', 'google-analytics-dashboard-for-wp' ),
|
164 |
|
165 |
-
// Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:22
|
166 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:43
|
|
|
167 |
__( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
|
168 |
|
169 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:148
|
170 |
__( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
|
171 |
|
172 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:63
|
|
|
173 |
__( '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' ),
|
174 |
|
175 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:64
|
|
|
176 |
__( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
|
177 |
|
178 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:68
|
|
|
179 |
__( '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' ),
|
180 |
|
181 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:69
|
|
|
182 |
__( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
|
183 |
|
184 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:73
|
|
|
185 |
__( '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' ),
|
186 |
|
187 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:74
|
|
|
188 |
__( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
|
189 |
|
190 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:167
|
191 |
__( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
|
192 |
|
193 |
-
// Reference: src/modules/
|
|
|
|
|
|
|
194 |
__( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
|
195 |
|
196 |
-
// Reference: src/modules/
|
197 |
__( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
|
198 |
|
199 |
-
// Reference: src/modules/
|
|
|
200 |
__( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
|
201 |
|
202 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:49
|
|
|
203 |
__( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
|
204 |
|
205 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:50
|
|
|
206 |
__( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
|
207 |
|
208 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:51
|
|
|
209 |
__( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
|
210 |
|
211 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:54
|
|
|
212 |
__( 'EU Compliance Addon', 'google-analytics-dashboard-for-wp' ),
|
213 |
|
214 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:55
|
|
|
215 |
__( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
|
216 |
|
217 |
-
// Reference: src/modules/
|
218 |
__( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
|
219 |
|
220 |
-
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:57
|
221 |
-
__( 'Search Console', 'google-analytics-dashboard-for-wp' ),
|
222 |
-
|
223 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:58
|
|
|
224 |
__( 'Custom Date Ranges', 'google-analytics-dashboard-for-wp' ),
|
225 |
|
226 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:84
|
@@ -238,6 +344,7 @@ $generated_i18n_strings = array(
|
|
238 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:88
|
239 |
__( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
|
240 |
|
|
|
241 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:90
|
242 |
__( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
|
243 |
|
@@ -255,157 +362,87 @@ $generated_i18n_strings = array(
|
|
255 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:97
|
256 |
__( 'Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market.', 'google-analytics-dashboard-for-wp' ),
|
257 |
|
258 |
-
// Reference: src/
|
259 |
-
|
260 |
-
__( 'See how %s visitors found your site!', 'google-analytics-dashboard-for-wp' ),
|
261 |
|
262 |
-
// Reference: src/
|
263 |
-
|
264 |
-
__( 'Your website was visited by %s users in the last 30 days.', 'google-analytics-dashboard-for-wp' ),
|
265 |
|
266 |
-
// Reference: src/modules/
|
267 |
-
|
|
|
268 |
|
269 |
-
// Reference: src/
|
270 |
-
|
271 |
-
__( 'Can\'t load report data. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
272 |
|
273 |
-
// Reference: src/
|
274 |
-
__( '
|
275 |
|
276 |
-
// Reference: src/
|
277 |
-
|
278 |
-
__( 'Recommended Plugin: %s', 'google-analytics-dashboard-for-wp' ),
|
279 |
|
280 |
-
// Reference: src/
|
281 |
-
__( '
|
282 |
|
283 |
-
// Reference: src/modules/
|
284 |
-
|
|
|
285 |
|
286 |
-
// Reference: src/
|
287 |
-
__( '
|
288 |
|
289 |
-
// Reference: src/
|
290 |
-
|
291 |
-
/* Translators: Gets replaced with the number of days. */
|
292 |
-
__( 'Last %s days', 'google-analytics-dashboard-for-wp' ),
|
293 |
|
294 |
-
// Reference: src/
|
295 |
-
__( '
|
296 |
|
297 |
-
// Reference: src/modules/reports/components/
|
298 |
-
__( '
|
299 |
-
|
300 |
-
// Reference: src/modules/reports/components/ReportReAuth.vue:21
|
301 |
-
__( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
302 |
-
|
303 |
-
// Reference: src/modules/reports/components/ReportReAuth.vue:30
|
304 |
-
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:127
|
305 |
-
__( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
|
306 |
-
|
307 |
-
// Reference: src/modules/reports/components/ReportReAuth.vue:47
|
308 |
-
__( 'Ok', 'google-analytics-dashboard-for-wp' ),
|
309 |
-
|
310 |
-
// Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:210
|
311 |
-
__( 'Analytics', 'google-analytics-dashboard-for-wp' ),
|
312 |
-
|
313 |
-
// Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:65
|
314 |
-
// Reference: src/modules/widget/components/settings/exactmetrics-WidgetFullReportButton.vue:16
|
315 |
-
/* Translators: Adds an arrow icon. */
|
316 |
-
__( 'View All Reports %s', 'google-analytics-dashboard-for-wp' ),
|
317 |
-
|
318 |
-
// Reference: src/modules/about/components/AboutNavigation-Lite.vue:15
|
319 |
-
// Reference: src/modules/settings/routes/network.js:35
|
320 |
-
// Reference: src/modules/settings/routes/site.js:109
|
321 |
-
__( 'About Us', 'google-analytics-dashboard-for-wp' ),
|
322 |
-
|
323 |
-
// Reference: src/modules/about/components/AboutNavigation-Lite.vue:16
|
324 |
-
// Reference: src/modules/settings/routes/network.js:43
|
325 |
-
// Reference: src/modules/settings/routes/site.js:117
|
326 |
-
__( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
|
327 |
-
|
328 |
-
// Reference: src/modules/about/components/AboutNavigation-Lite.vue:17
|
329 |
-
// Reference: src/modules/settings/routes/network.js:52
|
330 |
-
// Reference: src/modules/settings/routes/site.js:126
|
331 |
-
__( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
|
332 |
-
|
333 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:56
|
334 |
-
// Reference: src/modules/settings/routes/site.js:29
|
335 |
-
__( 'General', 'google-analytics-dashboard-for-wp' ),
|
336 |
-
|
337 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:57
|
338 |
-
// Reference: src/modules/settings/routes/site.js:37
|
339 |
-
__( 'Engagement', 'google-analytics-dashboard-for-wp' ),
|
340 |
-
|
341 |
-
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:37
|
342 |
-
// Reference: src/modules/reports/routes/exactmetrics-routes.js:38
|
343 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:58
|
344 |
-
// Reference: src/modules/settings/routes/site.js:45
|
345 |
-
__( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
|
346 |
|
347 |
-
// Reference: src/modules/
|
348 |
-
|
349 |
-
__( 'Publisher', 'google-analytics-dashboard-for-wp' ),
|
350 |
|
351 |
-
// Reference: src/modules/
|
352 |
-
|
353 |
-
// Reference: src/modules/settings/routes/site.js:61
|
354 |
-
__( 'Conversions', 'google-analytics-dashboard-for-wp' ),
|
355 |
|
356 |
-
// Reference: src/
|
357 |
-
|
358 |
-
__( 'Advanced', 'google-analytics-dashboard-for-wp' ),
|
359 |
|
360 |
-
// Reference: src/modules/
|
361 |
-
__( '
|
362 |
|
363 |
-
// Reference: src/
|
364 |
-
__( '
|
365 |
|
366 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBelowContent.vue:17
|
367 |
__( 'Go back', 'google-analytics-dashboard-for-wp' ),
|
368 |
|
369 |
-
// Reference: src/modules/
|
370 |
-
/* Translators:
|
371 |
-
__( '
|
372 |
-
|
373 |
-
// Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24
|
374 |
-
__( 'Exit Setup', 'google-analytics-dashboard-for-wp' ),
|
375 |
-
|
376 |
-
// Reference: src/modules/widget/store/index.js:76
|
377 |
-
__( 'Overview', 'google-analytics-dashboard-for-wp' ),
|
378 |
-
|
379 |
-
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:36
|
380 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:30
|
381 |
-
// Reference: src/modules/reports/routes/exactmetrics-routes.js:30
|
382 |
-
__( 'Publishers', 'google-analytics-dashboard-for-wp' ),
|
383 |
-
|
384 |
-
// Reference: src/modules/reports/routes/exactmetrics-routes.js:54
|
385 |
-
__( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
|
386 |
-
|
387 |
-
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:40
|
388 |
-
// Reference: src/modules/reports/routes/exactmetrics-routes.js:62
|
389 |
-
__( 'Forms', 'google-analytics-dashboard-for-wp' ),
|
390 |
|
391 |
-
// Reference: src/modules/
|
392 |
-
|
393 |
-
__( '
|
394 |
|
395 |
-
// Reference: src/
|
396 |
-
|
|
|
397 |
|
398 |
-
// Reference: src/
|
399 |
-
|
|
|
400 |
|
401 |
-
// Reference: src/
|
402 |
-
|
|
|
403 |
|
404 |
-
// Reference: src/
|
405 |
-
__( '
|
406 |
|
407 |
-
// Reference: src/
|
408 |
-
__( '
|
409 |
|
410 |
// Reference: src/modules/widget/store/index.js:102
|
411 |
__( 'Time to Purchase', 'google-analytics-dashboard-for-wp' ),
|
@@ -419,28 +456,22 @@ $generated_i18n_strings = array(
|
|
419 |
// Reference: src/modules/widget/store/index.js:110
|
420 |
__( 'This list shows the number of sessions it took users before they purchased a product from your website.', 'google-analytics-dashboard-for-wp' ),
|
421 |
|
422 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:
|
423 |
-
// Reference: src/modules/widget/store/index.js:20
|
424 |
__( 'Top Posts/Pages', 'google-analytics-dashboard-for-wp' ),
|
425 |
|
426 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:
|
427 |
-
// Reference: src/modules/widget/store/index.js:21
|
428 |
__( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-dashboard-for-wp' ),
|
429 |
|
430 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:
|
431 |
-
// Reference: src/modules/widget/store/index.js:27
|
432 |
__( 'New vs. Returning Visitors', 'google-analytics-dashboard-for-wp' ),
|
433 |
|
434 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:
|
435 |
-
// Reference: src/modules/widget/store/index.js:28
|
436 |
__( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-dashboard-for-wp' ),
|
437 |
|
438 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:
|
439 |
-
// Reference: src/modules/widget/store/index.js:34
|
440 |
__( 'Device Breakdown', 'google-analytics-dashboard-for-wp' ),
|
441 |
|
442 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:
|
443 |
-
// Reference: src/modules/widget/store/index.js:35
|
444 |
__( 'This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site.', 'google-analytics-dashboard-for-wp' ),
|
445 |
|
446 |
// Reference: src/modules/widget/store/index.js:41
|
@@ -488,137 +519,201 @@ $generated_i18n_strings = array(
|
|
488 |
// Reference: src/modules/widget/store/index.js:96
|
489 |
__( 'Total Add/Remove', 'google-analytics-dashboard-for-wp' ),
|
490 |
|
491 |
-
// Reference: src/modules/
|
492 |
-
__( '
|
493 |
|
494 |
-
// Reference: src/modules/
|
495 |
-
|
496 |
-
__( 'Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s', 'google-analytics-dashboard-for-wp' ),
|
497 |
|
498 |
-
// Reference: src/modules/
|
499 |
-
__( '
|
500 |
|
501 |
-
// Reference: src/modules/
|
502 |
-
__( '
|
503 |
|
504 |
-
// Reference: src/modules/reports/components/
|
505 |
-
__( '
|
506 |
|
507 |
-
// Reference: src/modules/
|
508 |
-
__( '
|
509 |
|
510 |
-
// Reference: src/modules/
|
511 |
-
__( '
|
512 |
|
513 |
-
// Reference: src/modules/reports/components/
|
514 |
-
__( '
|
515 |
|
516 |
-
// Reference: src/modules/
|
517 |
-
__( '
|
518 |
|
519 |
-
// Reference: src/modules/
|
520 |
-
|
521 |
-
__( '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', 'google-analytics-dashboard-for-wp' ),
|
522 |
|
523 |
-
// Reference: src/modules/
|
524 |
-
|
525 |
-
__( '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', 'google-analytics-dashboard-for-wp' ),
|
526 |
|
527 |
-
// Reference: src/modules/
|
528 |
-
|
529 |
-
__( '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', 'google-analytics-dashboard-for-wp' ),
|
530 |
|
531 |
-
// Reference: src/modules/
|
532 |
-
|
533 |
-
__( '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', 'google-analytics-dashboard-for-wp' ),
|
534 |
|
535 |
-
// Reference: src/modules/
|
536 |
-
__( '
|
537 |
|
538 |
-
// Reference: src/modules/
|
539 |
-
__( '
|
540 |
|
541 |
-
// Reference: src/modules/
|
542 |
-
__( '
|
543 |
|
544 |
-
// Reference: src/modules/
|
545 |
-
|
546 |
-
__( '%1$sNeed%2$s to Grow FASTER??', 'google-analytics-dashboard-for-wp' ),
|
547 |
|
548 |
-
// Reference: src/modules/
|
549 |
-
__( '
|
550 |
|
551 |
-
// Reference: src/modules/
|
552 |
-
__( '
|
553 |
|
554 |
-
// Reference: src/modules/
|
555 |
-
__( '
|
556 |
|
557 |
-
// Reference: src/modules/
|
558 |
-
__( '
|
559 |
|
560 |
-
// Reference: src/modules/
|
561 |
-
__( '
|
562 |
|
563 |
-
// Reference: src/modules/
|
564 |
-
__( '
|
565 |
|
566 |
-
// Reference: src/modules/
|
567 |
-
__( '
|
568 |
|
569 |
-
// Reference: src/modules/
|
570 |
-
__( '
|
571 |
|
572 |
-
// Reference: src/modules/
|
573 |
-
|
|
|
574 |
|
575 |
-
// Reference: src/modules/
|
576 |
-
__( '
|
577 |
|
578 |
-
// Reference: src/modules/
|
579 |
-
__( '
|
580 |
|
581 |
-
// Reference: src/modules/
|
582 |
-
__( '
|
583 |
|
584 |
-
// Reference: src/modules/
|
585 |
-
__( '
|
586 |
|
587 |
-
// Reference: src/modules/
|
588 |
-
__( '
|
589 |
|
590 |
-
// Reference: src/modules/
|
591 |
-
__( '
|
592 |
|
593 |
-
// Reference: src/modules/
|
594 |
-
__( '
|
595 |
|
596 |
-
// Reference: src/modules/
|
597 |
-
__( '
|
598 |
|
599 |
-
// Reference: src/modules/
|
600 |
-
__( '
|
601 |
|
602 |
-
// Reference: src/modules/
|
603 |
-
|
|
|
604 |
|
605 |
-
// Reference: src/modules/
|
606 |
-
__( '
|
607 |
|
608 |
-
// Reference: src/modules/
|
609 |
-
__( '
|
610 |
|
611 |
-
// Reference: src/
|
612 |
-
__( '
|
613 |
|
614 |
-
// Reference: src/
|
615 |
-
__( '
|
616 |
|
617 |
-
// Reference: src/
|
618 |
-
__( '
|
619 |
|
620 |
-
// Reference: src/
|
621 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
622 |
|
623 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:54
|
624 |
__( 'ExactMetrics recommends the following settings based on your configuration.', 'google-analytics-dashboard-for-wp' ),
|
@@ -659,21 +754,17 @@ $generated_i18n_strings = array(
|
|
659 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:66
|
660 |
__( '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' ),
|
661 |
|
662 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:44
|
663 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:71
|
664 |
/* Translators: Example path (/go/). */
|
665 |
__( 'Path (example: %s)', 'google-analytics-dashboard-for-wp' ),
|
666 |
|
667 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:46
|
668 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:73
|
669 |
__( 'Path has to start with a / and have no spaces', 'google-analytics-dashboard-for-wp' ),
|
670 |
|
671 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:51
|
672 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:78
|
673 |
/* Translators: Example label (aff). */
|
674 |
__( 'Label (example: %s)', 'google-analytics-dashboard-for-wp' ),
|
675 |
|
676 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:53
|
677 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:80
|
678 |
__( 'Label can\'t contain any spaces', 'google-analytics-dashboard-for-wp' ),
|
679 |
|
@@ -692,7 +783,7 @@ $generated_i18n_strings = array(
|
|
692 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:87
|
693 |
__( 'These user roles will be able to access ExactMetrics\'s reports in the WordPress admin area.', 'google-analytics-dashboard-for-wp' ),
|
694 |
|
695 |
-
// Reference: src/modules/
|
696 |
__( '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' ),
|
697 |
|
698 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:89
|
@@ -704,313 +795,161 @@ $generated_i18n_strings = array(
|
|
704 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:92
|
705 |
__( 'Enhanced Link Attribution is enabled the moment you set up ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
706 |
|
707 |
-
// Reference: src/modules/
|
708 |
__( '+ Add Role', 'google-analytics-dashboard-for-wp' ),
|
709 |
|
710 |
-
// Reference: src/modules/
|
711 |
-
__( '
|
712 |
|
713 |
-
// Reference: src/modules/
|
714 |
-
|
|
|
715 |
|
716 |
-
// Reference: src/modules/
|
717 |
-
|
718 |
-
__( '%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' ),
|
719 |
|
720 |
-
// Reference: src/modules/wizard-onboarding/components/steps/
|
721 |
-
|
722 |
-
__( '%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' ),
|
723 |
|
724 |
-
// Reference: src/modules/wizard-onboarding/components/steps/
|
725 |
-
__( '
|
726 |
|
727 |
-
// Reference: src/modules/
|
728 |
-
__( 'Google Analytics', 'google-analytics-dashboard-for-wp' ),
|
729 |
|
730 |
-
// Reference: src/modules/
|
731 |
-
__( '
|
732 |
|
733 |
-
// Reference: src/modules/wizard-onboarding/components/steps/
|
734 |
-
__( '
|
735 |
|
736 |
-
// Reference: src/modules/
|
737 |
-
__( '
|
738 |
|
739 |
-
// Reference: src/modules/
|
740 |
-
__( '
|
741 |
|
742 |
-
// Reference: src/modules/
|
743 |
-
__( '
|
744 |
|
745 |
-
// Reference: src/modules/
|
746 |
-
__( '
|
747 |
|
748 |
-
// Reference: src/modules/
|
749 |
-
__( '
|
750 |
|
751 |
-
// Reference: src/modules/
|
752 |
-
|
|
|
753 |
|
754 |
-
// Reference: src/modules/
|
755 |
-
/* Translators:
|
756 |
-
__( '
|
757 |
|
758 |
-
// Reference: src/modules/
|
759 |
-
|
|
|
760 |
|
761 |
-
// Reference: src/modules/
|
762 |
-
|
|
|
763 |
|
764 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-
|
765 |
-
|
|
|
766 |
|
767 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-
|
768 |
-
/* Translators:
|
769 |
-
__( '
|
770 |
|
771 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-
|
772 |
-
__( '
|
773 |
|
774 |
-
// Reference: src/modules/
|
775 |
-
__( '
|
776 |
|
777 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-
|
778 |
-
__( '
|
779 |
|
780 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-
|
781 |
-
__( '
|
782 |
|
783 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-
|
784 |
-
__( '
|
785 |
|
786 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-
|
787 |
-
__( '
|
788 |
|
789 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-
|
790 |
-
__( '
|
791 |
|
792 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-
|
793 |
-
__( '
|
794 |
|
795 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-
|
796 |
-
__( '
|
797 |
|
798 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-
|
799 |
-
|
|
|
800 |
|
801 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-
|
802 |
-
__( '
|
803 |
|
804 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-
|
805 |
-
|
806 |
-
__( 'This allows you to track custom affiliate links. A path of /go/ would match urls that start with that. The label is appended onto the end of the string "outbound-link-", to provide unique labels for these links in Google Analytics. Complete documentation on affiliate links is available %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ),
|
807 |
|
808 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-
|
809 |
-
__( '
|
810 |
|
811 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-
|
812 |
-
__( '
|
813 |
|
814 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-
|
815 |
-
/* Translators:
|
816 |
-
__( '
|
817 |
|
818 |
-
// Reference: src/modules/
|
819 |
-
__( '
|
820 |
|
821 |
-
// Reference: src/modules/
|
822 |
-
__( '
|
823 |
|
824 |
-
// Reference: src/modules/
|
825 |
-
__( '
|
826 |
|
827 |
-
// Reference: src/modules/
|
828 |
-
__( '
|
829 |
|
830 |
-
// Reference: src/modules/
|
831 |
-
__( '
|
832 |
|
833 |
-
// Reference: src/modules/
|
834 |
-
__( '
|
835 |
|
836 |
-
// Reference: src/modules/
|
837 |
-
__( '
|
838 |
|
839 |
-
// Reference: src/modules/
|
840 |
-
__( '
|
841 |
|
842 |
-
// Reference: src/modules/
|
843 |
-
__( '
|
844 |
|
845 |
-
// Reference: src/modules/
|
846 |
-
__( '
|
847 |
|
848 |
-
// Reference: src/modules/
|
849 |
-
__( '
|
850 |
|
851 |
-
// Reference: src/modules/
|
852 |
-
__( '
|
853 |
|
854 |
-
// Reference: src/modules/
|
855 |
-
|
856 |
-
__( 'Enable this setting to add the Demographics and Remarketing features to your Google Analytics tracking code. Make sure to enable Demographics and Remarketing in your Google Analytics account. We have a guide for how to do that in our %1$sknowledge base%2$s. For more information about Remarketing, we refer you to %3$sGoogle\'s documentation%4$s. Note that usage of this function is affected by privacy and cookie laws around the world. Be sure to follow the laws that affect your target audience.', 'google-analytics-dashboard-for-wp' ),
|
857 |
|
858 |
-
// Reference: src/modules/
|
859 |
-
|
860 |
-
__( 'This adds %1$sanonymizeIp%2$s, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage.', 'google-analytics-dashboard-for-wp' ),
|
861 |
-
|
862 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:82
|
863 |
-
/* Translators: Add links to documentation. */
|
864 |
-
__( 'Add %1$sEnhanced Link Attribution%2$s to your tracking code.', 'google-analytics-dashboard-for-wp' ),
|
865 |
-
|
866 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:83
|
867 |
-
__( 'Many WordPress "1-page" style themes rely on anchor tags for navigation to show virtual pages. The problem is that to Google Analytics, these are all just a single page, and it makes it hard to get meaningful statistics about pages viewed. This feature allows proper tracking in those themes.', 'google-analytics-dashboard-for-wp' ),
|
868 |
-
|
869 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:85
|
870 |
-
/* Translators: Add links to documentation. */
|
871 |
-
__( 'This adds %1$sallowAnchor%2$s to the create command of the pageview hit tracking code, and makes RSS link tagging use a # as well.', 'google-analytics-dashboard-for-wp' ),
|
872 |
-
|
873 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:87
|
874 |
-
/* Translators: Add links to documentation. */
|
875 |
-
__( 'Enabling %1$scross-domain tracking (additional setup required)%2$s allows you to track users across multiple properties you own (such as example-1.com and example-2.com as a single session. It also allows you fix an issue so that when a user has to go to an off-site hosted payment gateway to finish a purchase it doesn\'t count it as referral traffic from that gateway but maintains the visit as part of the same session.) It is required that the other site includes a Google Analytics tracker with the same UA Code.', 'google-analytics-dashboard-for-wp' ),
|
876 |
-
|
877 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:89
|
878 |
-
/* Translators: Add links to documentation. */
|
879 |
-
__( 'Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check this %1$shelp page%2$s for info on how to enable this feature in FeedBurner.', 'google-analytics-dashboard-for-wp' ),
|
880 |
-
|
881 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:90
|
882 |
-
__( 'Add domain', 'google-analytics-dashboard-for-wp' ),
|
883 |
-
|
884 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:95
|
885 |
-
/* Translators: Domain name example. */
|
886 |
-
__( 'Domain (example: %s)', 'google-analytics-dashboard-for-wp' ),
|
887 |
-
|
888 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:98
|
889 |
-
/* Translators: Current domain name that should not be used. */
|
890 |
-
__( 'Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s ).', 'google-analytics-dashboard-for-wp' ),
|
891 |
-
|
892 |
-
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:54
|
893 |
-
__( 'There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data.', 'google-analytics-dashboard-for-wp' ),
|
894 |
-
|
895 |
-
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:55
|
896 |
-
__( 'No addons found.', 'google-analytics-dashboard-for-wp' ),
|
897 |
-
|
898 |
-
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:56
|
899 |
-
__( 'Refresh Addons', 'google-analytics-dashboard-for-wp' ),
|
900 |
-
|
901 |
-
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:57
|
902 |
-
__( 'ExactMetrics Addons', 'google-analytics-dashboard-for-wp' ),
|
903 |
-
|
904 |
-
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:59
|
905 |
-
/* Translators: Adds a line break. */
|
906 |
-
__( 'Upgrade to Pro to unlock addons and other great features.', 'google-analytics-dashboard-for-wp' ),
|
907 |
-
|
908 |
-
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:60
|
909 |
-
__( 'As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!', 'google-analytics-dashboard-for-wp' ),
|
910 |
-
|
911 |
-
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:85
|
912 |
-
__( 'Refreshing Addons', 'google-analytics-dashboard-for-wp' ),
|
913 |
-
|
914 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:101
|
915 |
-
/* Translators: placeholders make text small. */
|
916 |
-
__( 'Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s', 'google-analytics-dashboard-for-wp' ),
|
917 |
-
|
918 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:106
|
919 |
-
/* Translators: placeholders make text small. */
|
920 |
-
__( 'Disabled %1$s- Hide reports and dashboard widget.%2$s', 'google-analytics-dashboard-for-wp' ),
|
921 |
-
|
922 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:113
|
923 |
-
/* Translators: placeholders make text small. */
|
924 |
-
__( 'Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s', 'google-analytics-dashboard-for-wp' ),
|
925 |
-
|
926 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:118
|
927 |
-
/* Translators: placeholders make text small. */
|
928 |
-
__( 'Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s', 'google-analytics-dashboard-for-wp' ),
|
929 |
-
|
930 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:123
|
931 |
-
/* Translators: placeholders make text small. */
|
932 |
-
__( 'None %1$s- Manually update everything.%2$s', 'google-analytics-dashboard-for-wp' ),
|
933 |
-
|
934 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:171
|
935 |
-
/* Translators: Adds a link to the general settings tab. */
|
936 |
-
__( 'It looks like you added a Google Analytics tracking code in the custom code area, this can potentially prevent proper tracking. If you want to use a manual UA please use the setting in the %1$sGeneral%2$s tab.', 'google-analytics-dashboard-for-wp' ),
|
937 |
-
|
938 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:75
|
939 |
-
__( 'Permissions', 'google-analytics-dashboard-for-wp' ),
|
940 |
-
|
941 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:76
|
942 |
-
__( 'Allow These User Roles to See Reports', 'google-analytics-dashboard-for-wp' ),
|
943 |
-
|
944 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:77
|
945 |
-
__( 'Users that have at least one of these roles will be able to view the reports.', 'google-analytics-dashboard-for-wp' ),
|
946 |
-
|
947 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:79
|
948 |
-
__( 'Allow These User Roles to Save Settings', 'google-analytics-dashboard-for-wp' ),
|
949 |
-
|
950 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:80
|
951 |
-
__( 'Users that have at least one of these roles will be able to view and save the settings panel.', 'google-analytics-dashboard-for-wp' ),
|
952 |
-
|
953 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:81
|
954 |
-
__( 'Users that have at least one of these roles will be able to view and save the settings panel, along with any user with the manage_options capability.', 'google-analytics-dashboard-for-wp' ),
|
955 |
-
|
956 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:82
|
957 |
-
__( 'Exclude These User Roles From Tracking', 'google-analytics-dashboard-for-wp' ),
|
958 |
-
|
959 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:84
|
960 |
-
__( 'Users that have at least one of these roles will not be tracked into Google Analytics.', 'google-analytics-dashboard-for-wp' ),
|
961 |
-
|
962 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:85
|
963 |
-
__( 'Custom code', 'google-analytics-dashboard-for-wp' ),
|
964 |
-
|
965 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:87
|
966 |
-
/* Translators: Adds a link to the Google reference. */
|
967 |
-
__( 'Not for the average user: this allows you to add a line of code, to be added before the %1$spageview is sent%2$s.', 'google-analytics-dashboard-for-wp' ),
|
968 |
-
|
969 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:88
|
970 |
-
__( 'Reports', 'google-analytics-dashboard-for-wp' ),
|
971 |
-
|
972 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:89
|
973 |
-
__( 'Automatic Updates', 'google-analytics-dashboard-for-wp' ),
|
974 |
-
|
975 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:90
|
976 |
-
__( 'You must have the "unfiltered_html" capability to view/edit this setting.', 'google-analytics-dashboard-for-wp' ),
|
977 |
-
|
978 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:91
|
979 |
-
__( 'Hide Admin Bar Reports', 'google-analytics-dashboard-for-wp' ),
|
980 |
-
|
981 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:96
|
982 |
-
/* Translators: placeholders make text small. */
|
983 |
-
__( 'Enabled %1$s- Show reports and dashboard widget.%2$s', 'google-analytics-dashboard-for-wp' ),
|
984 |
-
|
985 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:45
|
986 |
-
__( 'Unlock Form Tracking', 'google-analytics-dashboard-for-wp' ),
|
987 |
-
|
988 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:46
|
989 |
-
__( 'See who\'s viewing and submitting your forms, so you can increase your conversion rate.', 'google-analytics-dashboard-for-wp' ),
|
990 |
-
|
991 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:48
|
992 |
-
__( 'Use Google Optimize to retarget your website visitors and perform A/B split tests with ease.', 'google-analytics-dashboard-for-wp' ),
|
993 |
-
|
994 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:50
|
995 |
-
__( 'Add Custom Dimensions and track who\'s the most popular author on your site, which post types get the most traffic, and more', 'google-analytics-dashboard-for-wp' ),
|
996 |
-
|
997 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:102
|
998 |
-
__( 'One-click Complete eCommerce tracking', 'google-analytics-dashboard-for-wp' ),
|
999 |
-
|
1000 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:103
|
1001 |
-
__( 'Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required', 'google-analytics-dashboard-for-wp' ),
|
1002 |
-
|
1003 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:107
|
1004 |
-
__( 'Forms Tracking', 'google-analytics-dashboard-for-wp' ),
|
1005 |
-
|
1006 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:111
|
1007 |
-
__( 'One-click Form Events Tracking', 'google-analytics-dashboard-for-wp' ),
|
1008 |
-
|
1009 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:112
|
1010 |
-
__( 'WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin', 'google-analytics-dashboard-for-wp' ),
|
1011 |
-
|
1012 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:116
|
1013 |
-
__( 'WordPress Admin Area Reports', 'google-analytics-dashboard-for-wp' ),
|
1014 |
|
1015 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:119
|
1016 |
__( 'Standard Reports', 'google-analytics-dashboard-for-wp' ),
|
@@ -1048,7 +987,7 @@ $generated_i18n_strings = array(
|
|
1048 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:141
|
1049 |
__( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-dashboard-for-wp' ),
|
1050 |
|
1051 |
-
// Reference: src/modules/
|
1052 |
__( 'Not Available', 'google-analytics-dashboard-for-wp' ),
|
1053 |
|
1054 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:149
|
@@ -1078,13 +1017,13 @@ $generated_i18n_strings = array(
|
|
1078 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:64
|
1079 |
__( 'Pro', 'google-analytics-dashboard-for-wp' ),
|
1080 |
|
1081 |
-
// Reference: src/modules/about/components/exactmetrics-
|
1082 |
__( 'Get ExactMetrics Pro Today and Unlock all the Powerful Features', 'google-analytics-dashboard-for-wp' ),
|
1083 |
|
1084 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:66
|
1085 |
__( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
|
1086 |
|
1087 |
-
// Reference: src/modules/
|
1088 |
__( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
|
1089 |
|
1090 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:70
|
@@ -1123,37 +1062,35 @@ $generated_i18n_strings = array(
|
|
1123 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:94
|
1124 |
__( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-dashboard-for-wp' ),
|
1125 |
|
1126 |
-
// Reference: src/modules/
|
1127 |
-
__( '
|
1128 |
|
1129 |
-
// Reference: src/modules/
|
1130 |
-
|
1131 |
-
__( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
|
1132 |
|
1133 |
-
// Reference: src/modules/
|
1134 |
-
__( '
|
1135 |
|
1136 |
-
// Reference: src/modules/
|
1137 |
-
|
1138 |
-
__( 'Unique %s Pageviews', 'google-analytics-dashboard-for-wp' ),
|
1139 |
|
1140 |
-
// Reference: src/modules/
|
1141 |
-
__( '
|
1142 |
|
1143 |
-
// Reference: src/modules/
|
1144 |
-
__( '
|
1145 |
|
1146 |
-
// Reference: src/modules/
|
1147 |
-
__( '
|
1148 |
|
1149 |
-
// Reference: src/modules/
|
1150 |
-
__( '
|
1151 |
|
1152 |
-
// Reference: src/modules/
|
1153 |
-
__( '
|
1154 |
|
1155 |
-
// Reference: src/modules/
|
1156 |
-
__( '
|
1157 |
|
1158 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:40
|
1159 |
__( 'ExactMetrics Recommends WPForms', 'google-analytics-dashboard-for-wp' ),
|
@@ -1173,18 +1110,9 @@ $generated_i18n_strings = array(
|
|
1173 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
|
1174 |
__( 'Continue & Install WPForms', 'google-analytics-dashboard-for-wp' ),
|
1175 |
|
1176 |
-
// Reference: src/modules/
|
1177 |
__( 'Installing...', 'google-analytics-dashboard-for-wp' ),
|
1178 |
|
1179 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:33
|
1180 |
-
__( 'Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress.', 'google-analytics-dashboard-for-wp' ),
|
1181 |
-
|
1182 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:34
|
1183 |
-
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
1184 |
-
|
1185 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:35
|
1186 |
-
__( 'The ExactMetrics Team', 'google-analytics-dashboard-for-wp' ),
|
1187 |
-
|
1188 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:32
|
1189 |
__( 'Welcome to ExactMetrics!', 'google-analytics-dashboard-for-wp' ),
|
1190 |
|
@@ -1204,315 +1132,295 @@ $generated_i18n_strings = array(
|
|
1204 |
/* Translators: Make text bold. */
|
1205 |
__( 'Publisher %1$s(Blog)%2$s', 'google-analytics-dashboard-for-wp' ),
|
1206 |
|
1207 |
-
// Reference: src/modules/
|
1208 |
-
|
1209 |
-
__( 'Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
|
1210 |
|
1211 |
-
// Reference: src/modules/
|
1212 |
-
__( '
|
1213 |
|
1214 |
-
// Reference: src/modules/
|
1215 |
-
__( '
|
1216 |
|
1217 |
-
// Reference: src/modules/
|
1218 |
-
__( '
|
1219 |
|
1220 |
-
// Reference: src/modules/
|
1221 |
-
__( '
|
1222 |
|
1223 |
-
// Reference: src/modules/
|
1224 |
-
__( '
|
1225 |
|
1226 |
-
// Reference: src/modules/
|
1227 |
-
__( '
|
1228 |
|
1229 |
-
// Reference: src/modules/
|
1230 |
-
__( '
|
1231 |
|
1232 |
-
// Reference: src/modules/
|
1233 |
-
__( '
|
1234 |
|
1235 |
-
// Reference: src/modules/
|
1236 |
-
__( '
|
1237 |
|
1238 |
-
// Reference: src/modules/
|
1239 |
-
__( '
|
1240 |
|
1241 |
-
// Reference: src/modules/
|
1242 |
-
__( '
|
1243 |
|
1244 |
-
// Reference: src/modules/
|
1245 |
-
|
1246 |
-
__( '%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress.', 'google-analytics-dashboard-for-wp' ),
|
1247 |
|
1248 |
-
// Reference: src/modules/
|
1249 |
-
|
1250 |
-
__( '%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click.', 'google-analytics-dashboard-for-wp' ),
|
1251 |
|
1252 |
-
// Reference: src/
|
1253 |
-
__( '
|
1254 |
|
1255 |
-
// Reference: src/modules/
|
1256 |
-
__( '
|
1257 |
|
1258 |
-
// Reference: src/modules/
|
1259 |
-
__( '
|
1260 |
|
1261 |
-
// Reference: src/modules/
|
1262 |
-
__( '
|
1263 |
-
|
1264 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:47
|
1265 |
-
__( 'See Your Forms Impressions Count to Find the Best Placement', 'google-analytics-dashboard-for-wp' ),
|
1266 |
-
|
1267 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:30
|
1268 |
-
__( 'Real-Time Report', 'google-analytics-dashboard-for-wp' ),
|
1269 |
-
|
1270 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:32
|
1271 |
-
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
1272 |
-
|
1273 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:41
|
1274 |
-
__( 'See Your Active Visitors and Track Their Behaviour to Optimize', 'google-analytics-dashboard-for-wp' ),
|
1275 |
-
|
1276 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:45
|
1277 |
-
__( 'See Your Top Pages Immediately After Making Changes', 'google-analytics-dashboard-for-wp' ),
|
1278 |
-
|
1279 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:49
|
1280 |
-
__( 'See Your Top Referral Sources and Adapt Faster', 'google-analytics-dashboard-for-wp' ),
|
1281 |
-
|
1282 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:53
|
1283 |
-
__( 'See Your Traffic Demographics', 'google-analytics-dashboard-for-wp' ),
|
1284 |
-
|
1285 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:57
|
1286 |
-
__( 'Get Fresh Reports Data Every 60 Seconds', 'google-analytics-dashboard-for-wp' ),
|
1287 |
-
|
1288 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:61
|
1289 |
-
__( 'See Where Your Visitors are Connecting From (country & city)', 'google-analytics-dashboard-for-wp' ),
|
1290 |
-
|
1291 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:30
|
1292 |
-
__( 'Custom Dimensions Report', 'google-analytics-dashboard-for-wp' ),
|
1293 |
-
|
1294 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:31
|
1295 |
-
__( 'Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters', 'google-analytics-dashboard-for-wp' ),
|
1296 |
-
|
1297 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:32
|
1298 |
-
__( 'The Dimensions report allows you to easily see what\'s working right inside your WordPress dashboard.', 'google-analytics-dashboard-for-wp' ),
|
1299 |
-
|
1300 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:39
|
1301 |
-
__( 'Author tracking to see which author’s posts generate the most traffic', 'google-analytics-dashboard-for-wp' ),
|
1302 |
-
|
1303 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:43
|
1304 |
-
__( 'Post Type tracking to see which WordPress post types perform better', 'google-analytics-dashboard-for-wp' ),
|
1305 |
-
|
1306 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:47
|
1307 |
-
__( 'Category tracking to see which sections of your sites are the most popular', 'google-analytics-dashboard-for-wp' ),
|
1308 |
-
|
1309 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:51
|
1310 |
-
__( 'SEO score tracking to see which blog SEO scores are the most popular', 'google-analytics-dashboard-for-wp' ),
|
1311 |
-
|
1312 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:55
|
1313 |
-
__( 'Focus Keyword tracking to see which of your content is doing well in search engines.', 'google-analytics-dashboard-for-wp' ),
|
1314 |
-
|
1315 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:59
|
1316 |
-
__( 'Tag tracking to determine which topics are the most engaging to for your website visitors.', 'google-analytics-dashboard-for-wp' ),
|
1317 |
-
|
1318 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:30
|
1319 |
-
__( 'Search Console Report', 'google-analytics-dashboard-for-wp' ),
|
1320 |
-
|
1321 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:32
|
1322 |
-
__( 'See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more.', 'google-analytics-dashboard-for-wp' ),
|
1323 |
|
1324 |
-
// Reference: src/modules/
|
1325 |
-
__( '
|
1326 |
|
1327 |
-
// Reference: src/modules/
|
1328 |
-
|
|
|
1329 |
|
1330 |
-
// Reference: src/modules/
|
1331 |
-
__( '
|
1332 |
|
1333 |
-
// Reference: src/modules/
|
1334 |
-
__( '
|
1335 |
|
1336 |
-
// Reference: src/modules/
|
1337 |
-
__( '
|
1338 |
|
1339 |
-
// Reference: src/modules/
|
1340 |
-
__( '
|
1341 |
|
1342 |
-
// Reference: src/modules/
|
1343 |
-
__( '
|
1344 |
|
1345 |
-
// Reference: src/modules/
|
1346 |
-
__( '
|
1347 |
|
1348 |
-
// Reference: src/modules/
|
1349 |
-
__( '
|
1350 |
|
1351 |
-
// Reference: src/modules/
|
1352 |
-
__( '
|
1353 |
|
1354 |
-
// Reference: src/modules/
|
1355 |
-
__( '
|
1356 |
|
1357 |
-
// Reference: src/modules/
|
1358 |
-
__( '
|
1359 |
|
1360 |
-
// Reference: src/modules/
|
1361 |
-
__( '
|
1362 |
|
1363 |
-
// Reference: src/modules/
|
1364 |
-
__( '
|
1365 |
|
1366 |
-
// Reference: src/modules/
|
1367 |
-
|
|
|
1368 |
|
1369 |
-
// Reference: src/modules/
|
1370 |
-
|
|
|
1371 |
|
1372 |
-
// Reference: src/modules/
|
1373 |
-
|
|
|
1374 |
|
1375 |
-
// Reference: src/modules/
|
1376 |
-
__( '
|
1377 |
|
1378 |
-
// Reference: src/modules/
|
1379 |
-
|
|
|
1380 |
|
1381 |
-
// Reference: src/modules/
|
1382 |
-
|
|
|
1383 |
|
1384 |
-
// Reference: src/modules/
|
1385 |
-
|
|
|
1386 |
|
1387 |
-
// Reference: src/modules/
|
1388 |
-
__( '
|
1389 |
|
1390 |
-
// Reference: src/modules/
|
1391 |
-
|
|
|
1392 |
|
1393 |
-
// Reference: src/modules/
|
1394 |
-
|
|
|
1395 |
|
1396 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1397 |
__( 'Custom Campaign Parameters', 'google-analytics-dashboard-for-wp' ),
|
1398 |
|
1399 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1400 |
__( 'The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns.', 'google-analytics-dashboard-for-wp' ),
|
1401 |
|
1402 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1403 |
__( 'A custom campaign is any ad campaign not using the AdWords auto-tagging feature. When users click one of the custom links, the unique parameters are sent to your Analytics account, so you can identify the URLs that are the most effective in attracting users to your content.', 'google-analytics-dashboard-for-wp' ),
|
1404 |
|
1405 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1406 |
/* Translators: Marks the field as required. */
|
1407 |
__( 'Website URL %s', 'google-analytics-dashboard-for-wp' ),
|
1408 |
|
1409 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1410 |
/* Translators: Display the current website url in italic. */
|
1411 |
__( 'The full website URL (e.g. %1$s %2$s%3$s)', 'google-analytics-dashboard-for-wp' ),
|
1412 |
|
1413 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1414 |
/* Translators: Marks the field as required. */
|
1415 |
__( 'Campaign Source %s', 'google-analytics-dashboard-for-wp' ),
|
1416 |
|
1417 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1418 |
/* Translators: Make the text italic. */
|
1419 |
__( 'Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)', 'google-analytics-dashboard-for-wp' ),
|
1420 |
|
1421 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1422 |
/* Translators: Make the text italic. */
|
1423 |
__( 'Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)', 'google-analytics-dashboard-for-wp' ),
|
1424 |
|
1425 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1426 |
/* Translators: Make the text italic. */
|
1427 |
__( 'Enter a name to easily identify (e.g. %1$sspring_sale%2$s)', 'google-analytics-dashboard-for-wp' ),
|
1428 |
|
1429 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1430 |
__( 'Enter the paid keyword', 'google-analytics-dashboard-for-wp' ),
|
1431 |
|
1432 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1433 |
__( 'Enter something to differentiate ads', 'google-analytics-dashboard-for-wp' ),
|
1434 |
|
1435 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1436 |
__( 'Use Fragment', 'google-analytics-dashboard-for-wp' ),
|
1437 |
|
1438 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1439 |
/* Translators: Make the text bold. */
|
1440 |
__( 'Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s', 'google-analytics-dashboard-for-wp' ),
|
1441 |
|
1442 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1443 |
__( 'URL to use', 'google-analytics-dashboard-for-wp' ),
|
1444 |
|
1445 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1446 |
__( '(Updates automatically)', 'google-analytics-dashboard-for-wp' ),
|
1447 |
|
1448 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1449 |
__( 'Copy to Clipboard', 'google-analytics-dashboard-for-wp' ),
|
1450 |
|
1451 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1452 |
__( 'More Information & Examples', 'google-analytics-dashboard-for-wp' ),
|
1453 |
|
1454 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1455 |
__( 'The following table gives a detailed explanation and example of each of the campaign parameters.', 'google-analytics-dashboard-for-wp' ),
|
1456 |
|
1457 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1458 |
__( 'Campaign Source', 'google-analytics-dashboard-for-wp' ),
|
1459 |
|
1460 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1461 |
__( 'Required. Use utm_source to identify a search engine, newsletter name, or other source.', 'google-analytics-dashboard-for-wp' ),
|
1462 |
|
1463 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1464 |
__( 'Campaign Medium', 'google-analytics-dashboard-for-wp' ),
|
1465 |
|
1466 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1467 |
__( 'Use utm_medium to identify a medium such as email or cost-per-click.', 'google-analytics-dashboard-for-wp' ),
|
1468 |
|
1469 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1470 |
__( 'Campaign Name', 'google-analytics-dashboard-for-wp' ),
|
1471 |
|
1472 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1473 |
__( 'Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign.', 'google-analytics-dashboard-for-wp' ),
|
1474 |
|
1475 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1476 |
__( 'Campaign Term', 'google-analytics-dashboard-for-wp' ),
|
1477 |
|
1478 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1479 |
__( 'Used for paid search. Use utm_term to note the keywords for this ad.', 'google-analytics-dashboard-for-wp' ),
|
1480 |
|
1481 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1482 |
__( 'Campaign Content', 'google-analytics-dashboard-for-wp' ),
|
1483 |
|
1484 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1485 |
__( 'Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL.', 'google-analytics-dashboard-for-wp' ),
|
1486 |
|
1487 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1488 |
/* Translators: Example. */
|
1489 |
__( 'Example: %s', 'google-analytics-dashboard-for-wp' ),
|
1490 |
|
1491 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1492 |
/* Translators: Examples. */
|
1493 |
__( 'Examples: %s', 'google-analytics-dashboard-for-wp' ),
|
1494 |
|
1495 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1496 |
__( 'About Campaigns', 'google-analytics-dashboard-for-wp' ),
|
1497 |
|
1498 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1499 |
__( 'About Custom Campaigns', 'google-analytics-dashboard-for-wp' ),
|
1500 |
|
1501 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1502 |
__( 'Best Practices for Creating Custom Campaigns', 'google-analytics-dashboard-for-wp' ),
|
1503 |
|
1504 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1505 |
__( 'About the Referral Traffic Report', 'google-analytics-dashboard-for-wp' ),
|
1506 |
|
1507 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1508 |
__( 'About Traffic Source Dimensions', 'google-analytics-dashboard-for-wp' ),
|
1509 |
|
1510 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1511 |
__( 'AdWords Auto-Tagging', 'google-analytics-dashboard-for-wp' ),
|
1512 |
|
1513 |
-
// Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:
|
1514 |
__( 'Additional Information', 'google-analytics-dashboard-for-wp' ),
|
1515 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1516 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:31
|
1517 |
__( 'Unlock the Publisher Report and Focus on the Content That Matters', 'google-analytics-dashboard-for-wp' ),
|
1518 |
|
@@ -1534,99 +1442,195 @@ $generated_i18n_strings = array(
|
|
1534 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:59
|
1535 |
__( 'See Audience Demographic Report (Age / Gender / Interests)', 'google-analytics-dashboard-for-wp' ),
|
1536 |
|
1537 |
-
// Reference: src/components/
|
1538 |
-
|
1539 |
-
__( 'You\'re using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s.', 'google-analytics-dashboard-for-wp' ),
|
1540 |
-
|
1541 |
-
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:53
|
1542 |
-
__( 'Recommended Addons', 'google-analytics-dashboard-for-wp' ),
|
1543 |
|
1544 |
-
// Reference: src/modules/
|
1545 |
-
|
1546 |
-
__( '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!', 'google-analytics-dashboard-for-wp' ),
|
1547 |
|
1548 |
-
// Reference: src/modules/
|
1549 |
-
__( '
|
1550 |
|
1551 |
-
// Reference: src/modules/
|
1552 |
-
__( 'See
|
1553 |
|
1554 |
-
// Reference: src/modules/
|
1555 |
-
__( '
|
1556 |
|
1557 |
-
// Reference: src/modules/
|
1558 |
-
|
|
|
1559 |
|
1560 |
-
// Reference: src/modules/
|
1561 |
-
__( '
|
1562 |
|
1563 |
-
// Reference: src/modules/
|
1564 |
-
__( '
|
1565 |
|
1566 |
-
// Reference: src/modules/
|
1567 |
-
__( '
|
1568 |
|
1569 |
-
// Reference: src/modules/
|
1570 |
-
__( '
|
1571 |
|
1572 |
-
// Reference: src/modules/
|
1573 |
-
|
|
|
1574 |
|
1575 |
-
// Reference: src/modules/
|
1576 |
-
__( '
|
1577 |
|
1578 |
-
// Reference: src/modules/
|
1579 |
-
__( '
|
1580 |
|
1581 |
-
// Reference: src/modules/
|
1582 |
-
__( '
|
1583 |
|
1584 |
-
// Reference: src/modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1585 |
__( 'ExactMetrics Addons', 'google-analytics-dashboard-for-wp' ),
|
1586 |
|
1587 |
-
// Reference: src/modules/addons/
|
1588 |
-
|
|
|
1589 |
|
1590 |
-
// Reference: src/modules/
|
1591 |
-
|
1592 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1593 |
|
1594 |
-
// Reference: src/modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
1595 |
/* Translators: Error status and error text. */
|
1596 |
-
__( 'Can\'t
|
1597 |
|
1598 |
// Reference: src/modules/wizard-onboarding/api/index.js:22
|
1599 |
__( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
|
1600 |
|
1601 |
-
// Reference: src/modules/
|
1602 |
/* Translators: Error status and error text. */
|
1603 |
-
__( 'Can\'t
|
1604 |
|
1605 |
-
// Reference: src/modules/
|
1606 |
-
__( '
|
1607 |
|
1608 |
-
// Reference: src/modules/
|
1609 |
/* Translators: Error status and error text. */
|
1610 |
-
__( 'Can\'t
|
1611 |
|
1612 |
-
// Reference: src/modules/
|
1613 |
/* Translators: Error status and error text. */
|
1614 |
-
__( 'Can\'t
|
1615 |
-
|
1616 |
-
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:38
|
1617 |
-
__( 'Last 30 Days Analytics for ', 'google-analytics-dashboard-for-wp' ),
|
1618 |
|
1619 |
-
// Reference: src/modules/
|
1620 |
-
|
|
|
1621 |
|
1622 |
-
// Reference: src/modules/
|
1623 |
-
|
|
|
1624 |
|
1625 |
-
// Reference: src/modules/frontend/components/
|
1626 |
-
|
|
|
1627 |
|
1628 |
-
// Reference: src/modules/frontend/components/
|
1629 |
-
__( '
|
1630 |
|
1631 |
// Reference: src/modules/addons/api/index.js:103
|
1632 |
__( 'You appear to be offline. WPForms not installed.', 'google-analytics-dashboard-for-wp' ),
|
@@ -1645,11 +1649,11 @@ $generated_i18n_strings = array(
|
|
1645 |
// Reference: src/modules/addons/api/index.js:161
|
1646 |
__( 'You appear to be offline. Addon not deactivated.', 'google-analytics-dashboard-for-wp' ),
|
1647 |
|
1648 |
-
// Reference: src/modules/addons/api/index.js:
|
1649 |
/* Translators: Error status and error text. */
|
1650 |
__( 'Can\'t install plugin. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1651 |
|
1652 |
-
// Reference: src/modules/addons/api/index.js:
|
1653 |
__( 'You appear to be offline. Plugin not installed.', 'google-analytics-dashboard-for-wp' ),
|
1654 |
|
1655 |
// Reference: src/modules/addons/api/index.js:64
|
@@ -1663,61 +1667,57 @@ $generated_i18n_strings = array(
|
|
1663 |
/* Translators: Error status and error text. */
|
1664 |
__( 'Can\'t install WPForms. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1665 |
|
1666 |
-
// Reference: src/modules/
|
1667 |
-
|
1668 |
-
|
1669 |
-
// Reference: src/modules/reports/store/actions.js:155
|
1670 |
-
__( 'Activating Addon', 'google-analytics-dashboard-for-wp' ),
|
1671 |
-
|
1672 |
-
// Reference: src/modules/reports/store/actions.js:170
|
1673 |
-
__( 'Addon Activated', 'google-analytics-dashboard-for-wp' ),
|
1674 |
-
|
1675 |
-
// Reference: src/modules/reports/store/actions.js:171
|
1676 |
-
__( 'Loading report data', 'google-analytics-dashboard-for-wp' ),
|
1677 |
|
1678 |
-
// Reference: src/modules/
|
1679 |
-
|
|
|
1680 |
|
1681 |
-
// Reference: src/modules/
|
1682 |
-
/* Translators:
|
1683 |
-
__( 'Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1684 |
|
1685 |
-
// Reference: src/modules/
|
1686 |
-
__( 'Error
|
1687 |
|
1688 |
-
// Reference: src/modules/
|
1689 |
-
|
|
|
1690 |
|
1691 |
-
// Reference: src/modules/
|
1692 |
-
|
|
|
1693 |
|
1694 |
-
// Reference: src/modules/reports/
|
1695 |
-
|
|
|
1696 |
|
1697 |
-
// Reference: src/modules/
|
1698 |
-
__( '
|
1699 |
|
1700 |
-
// Reference: src/modules/
|
1701 |
-
__( '
|
1702 |
|
1703 |
-
// Reference: src/modules/
|
1704 |
-
__( '
|
1705 |
|
1706 |
-
// Reference: src/modules/
|
1707 |
-
|
|
|
1708 |
|
1709 |
-
// Reference: src/modules/
|
1710 |
-
__( '
|
1711 |
|
1712 |
-
// Reference: src/modules/
|
1713 |
-
|
1714 |
-
__( '%s Addon', 'google-analytics-dashboard-for-wp' ),
|
1715 |
|
1716 |
-
// Reference: src/modules/
|
1717 |
-
__( '
|
1718 |
|
1719 |
-
// Reference: src/modules/
|
1720 |
-
__( '
|
1721 |
|
1722 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:17
|
1723 |
__( 'Help Us Improve', 'google-analytics-dashboard-for-wp' ),
|
@@ -1729,111 +1729,162 @@ $generated_i18n_strings = array(
|
|
1729 |
/* Translators: Adds a link to the documentation. */
|
1730 |
__( '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' ),
|
1731 |
|
1732 |
-
// Reference: src/modules/settings/components/
|
1733 |
-
|
|
|
1734 |
|
1735 |
-
// Reference: src/modules/
|
1736 |
-
|
1737 |
-
__( 'You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s', 'google-analytics-dashboard-for-wp' ),
|
1738 |
|
1739 |
-
// Reference: src/modules/
|
1740 |
-
|
1741 |
-
__( 'As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
|
1742 |
|
1743 |
-
// Reference: src/modules/
|
1744 |
-
__( '
|
1745 |
|
1746 |
-
// Reference: src/modules/
|
1747 |
-
__( '
|
1748 |
|
1749 |
-
// Reference: src/modules/
|
1750 |
-
__( '
|
1751 |
|
1752 |
-
// Reference: src/modules/
|
1753 |
-
__( '
|
1754 |
|
1755 |
-
// Reference: src/modules/
|
1756 |
-
__( '
|
1757 |
|
1758 |
-
// Reference: src/modules/
|
1759 |
-
__( '
|
1760 |
|
1761 |
-
// Reference: src/modules/
|
1762 |
-
__( '
|
1763 |
|
1764 |
-
// Reference: src/modules/
|
1765 |
-
__( '
|
1766 |
|
1767 |
-
// Reference: src/modules/
|
1768 |
-
__( '
|
1769 |
|
1770 |
-
// Reference: src/modules/
|
1771 |
-
__( '
|
1772 |
|
1773 |
-
// Reference: src/modules/
|
1774 |
-
__( '
|
1775 |
|
1776 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
1777 |
-
__( '
|
1778 |
|
1779 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
1780 |
-
__( '
|
1781 |
|
1782 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
1783 |
-
|
|
|
1784 |
|
1785 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
1786 |
-
__( '
|
1787 |
|
1788 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
1789 |
-
__( 'Top
|
1790 |
|
1791 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
1792 |
-
__( '
|
1793 |
|
1794 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
1795 |
-
__( '
|
1796 |
|
1797 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
1798 |
-
__( '
|
1799 |
|
1800 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
1801 |
-
__( '
|
1802 |
|
1803 |
-
// Reference: src/modules/
|
1804 |
-
__( '
|
1805 |
|
1806 |
-
// Reference: src/modules/
|
1807 |
-
__( '
|
1808 |
|
1809 |
-
// Reference: src/modules/
|
1810 |
-
__( '
|
1811 |
|
1812 |
-
// Reference: src/modules/
|
1813 |
-
__( '
|
1814 |
|
1815 |
-
// Reference: src/modules/
|
1816 |
-
__( '
|
1817 |
|
1818 |
-
// Reference: src/modules/
|
1819 |
-
|
1820 |
-
__( 'Status: %s', 'google-analytics-dashboard-for-wp' ),
|
1821 |
|
1822 |
-
// Reference: src/modules/
|
1823 |
-
__( '
|
1824 |
|
1825 |
-
// Reference: src/modules/
|
1826 |
-
|
1827 |
-
__( '%s can\'t be empty.', 'google-analytics-dashboard-for-wp' ),
|
1828 |
|
1829 |
-
// Reference: src/modules/
|
1830 |
-
__( '
|
1831 |
|
1832 |
-
// Reference: src/modules/
|
1833 |
-
__( '
|
1834 |
|
1835 |
-
// Reference: src/modules/
|
1836 |
-
__( '
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1837 |
|
1838 |
// Reference: src/components/TheAppFTPForm.vue:100
|
1839 |
__( 'Proceed', 'google-analytics-dashboard-for-wp' ),
|
@@ -1862,11 +1913,11 @@ $generated_i18n_strings = array(
|
|
1862 |
// Reference: src/components/TheAppFTPForm.vue:99
|
1863 |
__( 'Cancel', 'google-analytics-dashboard-for-wp' ),
|
1864 |
|
1865 |
-
// Reference: src/modules/settings/components/input/
|
1866 |
-
__( '
|
1867 |
|
1868 |
-
// Reference: src/modules/settings/components/input/
|
1869 |
-
__( '
|
1870 |
|
1871 |
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAmp-Lite.vue:25
|
1872 |
__( 'Google AMP', 'google-analytics-dashboard-for-wp' ),
|
@@ -1874,82 +1925,90 @@ $generated_i18n_strings = array(
|
|
1874 |
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAmp-Lite.vue:26
|
1875 |
__( 'Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking.', 'google-analytics-dashboard-for-wp' ),
|
1876 |
|
1877 |
-
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-
|
1878 |
-
__( '
|
1879 |
|
1880 |
-
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-
|
1881 |
-
__( '
|
1882 |
|
1883 |
-
// Reference: src/modules/
|
1884 |
-
|
|
|
1885 |
|
1886 |
-
// Reference: src/modules/
|
1887 |
-
__( '
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1888 |
|
1889 |
-
// Reference: src/modules/
|
1890 |
-
__( '
|
1891 |
|
1892 |
-
// Reference: src/modules/
|
1893 |
-
__( '
|
1894 |
|
1895 |
-
// Reference: src/modules/
|
1896 |
-
__( '
|
1897 |
|
1898 |
-
// Reference: src/modules/
|
1899 |
-
|
|
|
1900 |
|
1901 |
-
// Reference: src/modules/
|
1902 |
-
__( '
|
1903 |
|
1904 |
-
// Reference: src/modules/
|
1905 |
-
__( '
|
1906 |
|
1907 |
-
// Reference: src/modules/
|
1908 |
-
|
|
|
1909 |
|
1910 |
-
// Reference: src/modules/
|
1911 |
-
__( '
|
1912 |
|
1913 |
-
// Reference: src/modules/
|
1914 |
-
__( '
|
1915 |
|
1916 |
-
// Reference: src/modules/
|
1917 |
-
|
|
|
1918 |
|
1919 |
-
// Reference: src/modules/
|
1920 |
-
|
1921 |
-
__( 'vs. Previous Day', 'google-analytics-dashboard-for-wp' ),
|
1922 |
|
1923 |
-
// Reference: src/modules/
|
1924 |
-
__( '
|
1925 |
|
1926 |
-
// Reference: src/modules/
|
1927 |
-
__( '
|
1928 |
|
1929 |
-
// Reference: src/modules/
|
1930 |
-
__( '
|
1931 |
|
1932 |
-
// Reference: src/modules/
|
1933 |
-
__( '
|
1934 |
-
and other privacy regulations.', 'google-analytics-dashboard-for-wp' ),
|
1935 |
|
1936 |
-
// Reference: src/modules/
|
1937 |
-
__( '
|
1938 |
|
1939 |
-
// Reference: src/modules/wizard-onboarding/
|
1940 |
-
|
1941 |
-
__( 'Can\'t load errors. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1942 |
|
1943 |
-
// Reference: src/modules/
|
1944 |
-
|
1945 |
-
__( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1946 |
|
1947 |
-
// Reference: src/modules/
|
1948 |
-
|
1949 |
-
__( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1950 |
|
1951 |
-
// Reference: src/modules/
|
1952 |
-
__( '
|
1953 |
|
1954 |
// Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputScroll-Lite.vue:20
|
1955 |
__( 'Scroll Tracking', 'google-analytics-dashboard-for-wp' ),
|
@@ -1957,33 +2016,15 @@ $generated_i18n_strings = array(
|
|
1957 |
// Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputScroll-Lite.vue:21
|
1958 |
__( 'Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site.', 'google-analytics-dashboard-for-wp' ),
|
1959 |
|
1960 |
-
// Reference: src/modules/settings/components/input/tab-
|
1961 |
-
__( '
|
1962 |
-
|
1963 |
-
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPerformance-Lite.vue:22
|
1964 |
-
__( 'Adjust the sample rate so you don\'t exceed Google Analytics\' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization.', 'google-analytics-dashboard-for-wp' ),
|
1965 |
-
|
1966 |
-
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:41
|
1967 |
-
__( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
|
1968 |
-
|
1969 |
-
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:43
|
1970 |
-
__( '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' ),
|
1971 |
-
|
1972 |
-
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:44
|
1973 |
-
__( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
|
1974 |
-
|
1975 |
-
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:36
|
1976 |
-
__( 'Usage Tracking', 'google-analytics-dashboard-for-wp' ),
|
1977 |
-
|
1978 |
-
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:37
|
1979 |
-
__( 'By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test.', 'google-analytics-dashboard-for-wp' ),
|
1980 |
|
1981 |
-
// Reference: src/modules/settings/components/input/tab-
|
1982 |
-
__( '
|
1983 |
|
1984 |
-
// Reference: src/modules/
|
1985 |
-
|
1986 |
-
__( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ),
|
1987 |
|
1988 |
// Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:14
|
1989 |
__( 'Hide dashboard widget', 'google-analytics-dashboard-for-wp' ),
|
@@ -2003,206 +2044,249 @@ $generated_i18n_strings = array(
|
|
2003 |
// Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:41
|
2004 |
__( 'You can re-enable the ExactMetrics widget at any time using the "Screen Options" menu on the top right of this page', 'google-analytics-dashboard-for-wp' ),
|
2005 |
|
2006 |
-
// Reference: src/modules/settings/components/
|
2007 |
-
/* Translators:
|
2008 |
-
__( '
|
2009 |
|
2010 |
-
// Reference: src/modules/settings/components/
|
2011 |
-
__( '
|
2012 |
|
2013 |
-
// Reference: src/modules/settings/components/exactmetrics-
|
2014 |
-
__( '
|
2015 |
|
2016 |
-
// Reference: src/modules/settings/components/
|
2017 |
-
__( '
|
2018 |
|
2019 |
-
// Reference: src/modules/settings/components/
|
2020 |
-
__( '
|
2021 |
|
2022 |
-
// Reference: src/modules/settings/components/
|
2023 |
-
__( '
|
2024 |
|
2025 |
-
// Reference: src/modules/settings/components/
|
2026 |
-
__( '
|
2027 |
|
2028 |
-
// Reference: src/modules/settings/components/
|
2029 |
-
__( '
|
2030 |
|
2031 |
-
// Reference: src/modules/settings/components/
|
2032 |
-
__( '
|
2033 |
|
2034 |
-
// Reference: src/modules/settings/components/
|
2035 |
-
|
2036 |
-
__( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
|
2037 |
|
2038 |
-
// Reference: src/modules/
|
2039 |
-
__( '
|
2040 |
|
2041 |
-
// Reference: src/modules/
|
2042 |
-
__( '
|
2043 |
|
2044 |
-
// Reference: src/modules/settings/components/
|
2045 |
-
__( '
|
2046 |
|
2047 |
-
// Reference: src/modules/settings/components/
|
2048 |
-
__( '
|
2049 |
|
2050 |
-
// Reference: src/modules/settings/components/
|
2051 |
-
|
2052 |
-
__( '%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process.', 'google-analytics-dashboard-for-wp' ),
|
2053 |
|
2054 |
-
// Reference: src/modules/settings/components/
|
2055 |
-
__( '
|
2056 |
|
2057 |
-
// Reference: src/modules/
|
2058 |
-
__( '
|
2059 |
|
2060 |
-
// Reference: src/modules/
|
2061 |
-
|
|
|
2062 |
|
2063 |
-
// Reference: src/modules/
|
2064 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2065 |
|
2066 |
-
// Reference: src/modules/settings/components/
|
2067 |
__( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
|
2068 |
|
2069 |
-
// Reference: src/modules/
|
2070 |
-
/* Translators:
|
2071 |
-
__( '
|
2072 |
|
2073 |
-
// Reference: src/modules/
|
2074 |
-
|
|
|
2075 |
|
2076 |
-
// Reference: src/modules/
|
2077 |
-
__( '
|
2078 |
|
2079 |
-
// Reference: src/modules/
|
2080 |
-
__( '
|
2081 |
|
2082 |
-
// Reference: src/modules/
|
2083 |
-
__( '
|
2084 |
|
2085 |
-
// Reference: src/modules/settings/components/
|
2086 |
-
|
2087 |
-
__( 'Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
|
2088 |
|
2089 |
-
// Reference: src/modules/
|
2090 |
-
|
2091 |
-
__( 'Can\'t deauthenticate. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
2092 |
|
2093 |
-
// Reference: src/modules/
|
2094 |
-
__( '
|
2095 |
|
2096 |
-
// Reference: src/modules/
|
2097 |
-
|
2098 |
-
__( 'Can\'t load authentication details. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
2099 |
|
2100 |
-
// Reference: src/
|
2101 |
-
|
2102 |
-
__( 'Can\'t authenticate. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
2103 |
|
2104 |
-
// Reference: src/
|
2105 |
-
|
2106 |
-
__( 'Can\'t reauthenticate. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
2107 |
|
2108 |
-
// Reference: src/
|
2109 |
-
|
2110 |
-
__( 'Can\'t verify credentials. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
2111 |
|
2112 |
-
// Reference: src/
|
2113 |
-
__( '
|
2114 |
|
2115 |
-
// Reference: src/
|
2116 |
-
|
2117 |
-
__( '%s results', 'google-analytics-dashboard-for-wp' ),
|
2118 |
|
2119 |
-
// Reference: src/modules/settings/
|
2120 |
-
__( '
|
2121 |
|
2122 |
-
// Reference: src/modules/
|
2123 |
-
__( '
|
2124 |
|
2125 |
-
// Reference: src/modules/
|
2126 |
-
__( '
|
2127 |
|
2128 |
-
// Reference: src/modules/
|
2129 |
-
__( '
|
2130 |
|
2131 |
-
// Reference: src/modules/
|
2132 |
-
__( '
|
2133 |
|
2134 |
-
// Reference: src/modules/
|
2135 |
-
__( '
|
2136 |
|
2137 |
-
// Reference: src/modules/
|
2138 |
-
__( '
|
2139 |
|
2140 |
-
// Reference: src/modules/
|
2141 |
-
__( '
|
2142 |
|
2143 |
-
// Reference: src/modules/
|
2144 |
-
__( '
|
2145 |
|
2146 |
-
// Reference: src/modules/
|
2147 |
-
__( '
|
2148 |
|
2149 |
-
// Reference: src/modules/
|
2150 |
-
__( '
|
2151 |
|
2152 |
-
// Reference: src/modules/
|
2153 |
-
|
2154 |
-
__( 'You\'re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
|
2155 |
|
2156 |
-
// Reference: src/modules/
|
2157 |
-
__( '
|
2158 |
|
2159 |
-
// Reference: src/modules/
|
2160 |
-
__( '
|
2161 |
|
2162 |
-
// Reference: src/modules/
|
2163 |
-
__( '
|
2164 |
|
2165 |
-
// Reference: src/modules/
|
2166 |
-
__( '
|
2167 |
|
2168 |
-
// Reference: src/modules/
|
2169 |
-
__( '
|
2170 |
|
2171 |
-
// Reference: src/modules/
|
2172 |
-
|
|
|
2173 |
|
2174 |
-
// Reference: src/modules/
|
2175 |
-
__( '
|
2176 |
|
2177 |
-
// Reference: src/modules/
|
2178 |
-
__( '
|
2179 |
|
2180 |
-
// Reference: src/modules/
|
2181 |
-
__( '
|
2182 |
|
2183 |
-
// Reference: src/modules/
|
2184 |
-
__( '
|
2185 |
|
2186 |
-
// Reference: src/modules/
|
2187 |
-
__( '
|
2188 |
|
2189 |
-
// Reference: src/modules/
|
2190 |
-
|
2191 |
-
__( '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' ),
|
2192 |
|
2193 |
-
// Reference: src/modules/
|
2194 |
-
__( '
|
2195 |
|
2196 |
-
// Reference: src/modules/
|
2197 |
-
__( '
|
2198 |
|
2199 |
-
// Reference: src/modules/
|
2200 |
-
__( '
|
2201 |
|
2202 |
-
// Reference: src/modules/
|
2203 |
-
__( '
|
2204 |
|
2205 |
-
// Reference: src/modules/
|
2206 |
-
__( '
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2207 |
);
|
2208 |
/* THIS IS THE END OF THE GENERATED FILE */
|
1 |
<?php
|
2 |
/* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
|
3 |
$generated_i18n_strings = array(
|
4 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:96
|
5 |
+
__( '1', 'google-analytics-dashboard-for-wp' ),
|
6 |
+
|
7 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:97
|
8 |
+
__( '2', 'google-analytics-dashboard-for-wp' ),
|
9 |
+
|
10 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:124
|
11 |
__( 'Error', 'google-analytics-dashboard-for-wp' ),
|
12 |
|
13 |
+
// Reference: src/plugins/exactmetrics-widget-helper-plugin.js:16
|
14 |
__( 'Please try again.', 'google-analytics-dashboard-for-wp' ),
|
15 |
|
16 |
+
// Reference: src/plugins/exactmetrics-wizard-helper-plugin.js:19
|
17 |
+
__( 'Loading settings', 'google-analytics-dashboard-for-wp' ),
|
18 |
|
19 |
+
// Reference: src/modules/widget/components/WidgetReminder.vue:33
|
20 |
+
/* Translators: Number of visitors. */
|
21 |
+
__( 'See how %s visitors found your site!', 'google-analytics-dashboard-for-wp' ),
|
|
|
22 |
|
23 |
+
// Reference: src/modules/widget/components/WidgetReminder.vue:35
|
24 |
+
/* Translators: Number of visitors. */
|
25 |
+
__( 'Your website was visited by %s users in the last 30 days.', 'google-analytics-dashboard-for-wp' ),
|
26 |
|
27 |
+
// Reference: src/modules/widget/components/WidgetReminder.vue:36
|
28 |
+
__( 'See the full analytics report!', 'google-analytics-dashboard-for-wp' ),
|
29 |
|
30 |
+
// Reference: src/modules/widget/widget.vue:25
|
31 |
+
__( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
|
|
|
32 |
|
33 |
+
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:27
|
34 |
+
/* Translators: Current WordPress version. */
|
35 |
+
__( 'ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.', 'google-analytics-dashboard-for-wp' ),
|
36 |
|
37 |
+
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:39
|
38 |
+
__( 'Yikes! PHP Update Required', 'google-analytics-dashboard-for-wp' ),
|
39 |
|
40 |
+
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:41
|
41 |
+
/* Translators: Current PHP version and recommended PHP version. */
|
42 |
+
__( 'ExactMetrics has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure.', 'google-analytics-dashboard-for-wp' ),
|
|
|
43 |
|
44 |
+
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:45
|
45 |
+
__( 'Learn more about updating PHP', 'google-analytics-dashboard-for-wp' ),
|
46 |
|
47 |
+
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:53
|
48 |
+
__( 'Yikes! WordPress Update Required', 'google-analytics-dashboard-for-wp' ),
|
49 |
|
50 |
+
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:55
|
51 |
+
/* Translators: Current WordPress version. */
|
52 |
+
__( 'ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.9 in October, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.', 'google-analytics-dashboard-for-wp' ),
|
53 |
|
54 |
+
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:59
|
55 |
+
__( 'Learn more about updating WordPress', 'google-analytics-dashboard-for-wp' ),
|
56 |
|
57 |
+
// Reference: src/modules/settings/exactmetrics-site.vue:77
|
58 |
+
__( 'Success! ', 'google-analytics-dashboard-for-wp' ),
|
59 |
|
60 |
+
// Reference: src/modules/settings/exactmetrics-site.vue:78
|
61 |
+
__( 'You\'re now using ExactMetrics Pro with all the features.', 'google-analytics-dashboard-for-wp' ),
|
62 |
|
63 |
+
// Reference: src/modules/settings/exactmetrics-site.vue:80
|
64 |
+
/* Translators: Placeholder gets replaced with an arrow icon. */
|
65 |
+
__( 'Get Started %s', 'google-analytics-dashboard-for-wp' ),
|
66 |
|
67 |
+
// Reference: src/modules/reports/routes/exactmetrics-routes.js:22
|
68 |
+
__( 'Overview', 'google-analytics-dashboard-for-wp' ),
|
69 |
|
70 |
+
// Reference: src/modules/reports/routes/exactmetrics-routes.js:30
|
71 |
+
__( 'Publishers', 'google-analytics-dashboard-for-wp' ),
|
|
|
72 |
|
73 |
+
// Reference: src/modules/settings/routes/site.js:46
|
74 |
+
__( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
|
|
|
75 |
|
76 |
+
// Reference: src/modules/reports/routes/exactmetrics-routes.js:46
|
77 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:57
|
78 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:180
|
79 |
+
__( 'Search Console', 'google-analytics-dashboard-for-wp' ),
|
80 |
|
81 |
+
// Reference: src/modules/reports/routes/exactmetrics-routes.js:54
|
82 |
+
__( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
|
83 |
|
84 |
+
// Reference: src/modules/reports/routes/exactmetrics-routes.js:62
|
85 |
+
__( 'Forms', 'google-analytics-dashboard-for-wp' ),
|
86 |
|
87 |
+
// Reference: src/modules/reports/routes/exactmetrics-routes.js:70
|
88 |
+
__( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
|
89 |
|
90 |
+
// Reference: src/modules/reports/api/index.js:21
|
91 |
+
/* Translators: Error status and error text. */
|
92 |
+
__( 'Can\'t load report data. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
93 |
|
94 |
+
// Reference: src/modules/reports/api/index.js:28
|
95 |
+
__( 'Error loading report data', 'google-analytics-dashboard-for-wp' ),
|
96 |
|
97 |
+
// Reference: src/modules/settings/routes/site.js:117
|
98 |
+
__( 'About Us', 'google-analytics-dashboard-for-wp' ),
|
|
|
99 |
|
100 |
+
// Reference: src/modules/settings/routes/site.js:125
|
101 |
+
__( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
|
|
|
102 |
|
103 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:60
|
104 |
+
// Reference: src/modules/settings/routes/site.js:134
|
105 |
+
__( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
|
106 |
|
107 |
+
// Reference: src/modules/settings/routes/site.js:30
|
108 |
+
__( 'General', 'google-analytics-dashboard-for-wp' ),
|
109 |
|
110 |
+
// Reference: src/modules/settings/routes/site.js:38
|
111 |
+
__( 'Engagement', 'google-analytics-dashboard-for-wp' ),
|
|
|
112 |
|
113 |
+
// Reference: src/modules/settings/routes/site.js:54
|
114 |
+
__( 'Publisher', 'google-analytics-dashboard-for-wp' ),
|
115 |
|
116 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:44
|
117 |
+
// Reference: src/modules/settings/routes/site.js:62
|
118 |
+
__( 'Conversions', 'google-analytics-dashboard-for-wp' ),
|
119 |
|
120 |
+
// Reference: src/modules/settings/routes/site.js:70
|
121 |
+
__( 'Advanced', 'google-analytics-dashboard-for-wp' ),
|
|
|
122 |
|
123 |
+
// Reference: src/modules/settings/routes/site.js:87
|
124 |
+
__( 'URL Builder', 'google-analytics-dashboard-for-wp' ),
|
125 |
+
|
126 |
+
// Reference: src/modules/settings/routes/site.js:95
|
127 |
+
__( 'Import Export', 'google-analytics-dashboard-for-wp' ),
|
128 |
+
|
129 |
+
// Reference: src/modules/frontend/components/FrontendNoAuth.vue:24
|
130 |
+
__( 'Please Setup Website Analytics to See Audience Insights', 'google-analytics-dashboard-for-wp' ),
|
131 |
+
|
132 |
+
// Reference: src/modules/frontend/components/FrontendNoAuth.vue:25
|
133 |
+
__( 'ExactMetrics, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 1 million website owners use ExactMetrics to see the stats that matter and grow their business.', 'google-analytics-dashboard-for-wp' ),
|
134 |
+
|
135 |
+
// Reference: src/modules/frontend/components/FrontendNoAuth.vue:26
|
136 |
+
__( 'Connect ExactMetrics and Setup Website Analytics', 'google-analytics-dashboard-for-wp' ),
|
137 |
+
|
138 |
+
// Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
|
139 |
+
__( 'Learn More', 'google-analytics-dashboard-for-wp' ),
|
140 |
+
|
141 |
+
// Reference: src/modules/reports/components/ReportReAuth.vue:19
|
142 |
+
__( 'ExactMetrics encountered an error loading your report data', 'google-analytics-dashboard-for-wp' ),
|
143 |
+
|
144 |
+
// Reference: src/modules/reports/components/ReportReAuth.vue:20
|
145 |
+
__( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-dashboard-for-wp' ),
|
146 |
+
|
147 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:47
|
148 |
+
__( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
149 |
+
|
150 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:108
|
151 |
+
__( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
|
152 |
+
|
153 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:126
|
154 |
+
__( 'Ok', 'google-analytics-dashboard-for-wp' ),
|
155 |
+
|
156 |
+
// Reference: src/modules/reports/components/ReportNoAuth.vue:25
|
157 |
+
__( 'You must connect with ExactMetrics before you can view reports.', 'google-analytics-dashboard-for-wp' ),
|
158 |
+
|
159 |
+
// Reference: src/modules/reports/components/ReportNoAuth.vue:26
|
160 |
+
__( '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' ),
|
161 |
+
|
162 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:82
|
163 |
+
__( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
|
164 |
+
|
165 |
+
// Reference: src/modules/reports/components/ReportNoAuth.vue:28
|
166 |
+
__( 'Please ask your webmaster to connect ExactMetrics to Google Analytics.', 'google-analytics-dashboard-for-wp' ),
|
167 |
+
|
168 |
+
// Reference: src/modules/widget/components/WidgetFooter.vue:19
|
169 |
+
/* Translators: Placeholder is replaced with WPForms. */
|
170 |
+
__( 'Recommended Plugin: %s', 'google-analytics-dashboard-for-wp' ),
|
171 |
+
|
172 |
+
// Reference: src/modules/addons/store/actions.js:49
|
173 |
+
// Reference: src/modules/widget/components/WidgetFooter.vue:20
|
174 |
+
__( 'Install', 'google-analytics-dashboard-for-wp' ),
|
175 |
+
|
176 |
+
// Reference: src/modules/addons/store/actions.js:49
|
177 |
+
// Reference: src/modules/widget/components/WidgetFooter.vue:21
|
178 |
+
__( 'Activate', 'google-analytics-dashboard-for-wp' ),
|
179 |
+
|
180 |
+
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:39
|
181 |
+
__( 'Dimensions', 'google-analytics-dashboard-for-wp' ),
|
182 |
+
|
183 |
+
// Reference: src/components/TheQuickLinks.vue:31
|
184 |
+
__( 'See Quick Links', 'google-analytics-dashboard-for-wp' ),
|
185 |
+
|
186 |
+
// Reference: src/components/TheQuickLinks.vue:58
|
187 |
+
__( 'Suggest a Feature', 'google-analytics-dashboard-for-wp' ),
|
188 |
+
|
189 |
+
// Reference: src/components/TheQuickLinks.vue:64
|
190 |
+
__( 'Join Our Community', 'google-analytics-dashboard-for-wp' ),
|
191 |
+
|
192 |
+
// Reference: src/components/TheQuickLinks.vue:70
|
193 |
+
__( 'Support & Docs', 'google-analytics-dashboard-for-wp' ),
|
194 |
+
|
195 |
+
// Reference: src/components/TheQuickLinks.vue:78
|
196 |
+
__( 'Upgrade to Pro »', 'google-analytics-dashboard-for-wp' ),
|
197 |
+
|
198 |
+
// Reference: src/modules/settings/components/SettingsButtonSave.vue:46
|
199 |
+
__( 'Save Changes', 'google-analytics-dashboard-for-wp' ),
|
200 |
+
|
201 |
+
// Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24
|
202 |
+
__( 'Exit Setup', 'google-analytics-dashboard-for-wp' ),
|
203 |
+
|
204 |
+
// Reference: src/modules/addons/components/AddonsNavigation.vue:18
|
205 |
+
__( 'ExactMetrics Addons', 'google-analytics-dashboard-for-wp' ),
|
206 |
+
|
207 |
+
// Reference: src/modules/addons/components/AddonsNavigation.vue:19
|
208 |
+
__( 'Search Addons', 'google-analytics-dashboard-for-wp' ),
|
209 |
+
|
210 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingAboveContent.vue:15
|
211 |
+
/* Translators: Placeholders are replaced with the current step number out of the total number of steps. */
|
212 |
+
__( 'Step %1$s of %2$s', 'google-analytics-dashboard-for-wp' ),
|
213 |
|
214 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:102
|
215 |
/* Translators: Makes text bold. */
|
248 |
__( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
|
249 |
|
250 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:41
|
251 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:145
|
252 |
__( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
|
253 |
|
254 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:42
|
255 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:146
|
256 |
__( 'per year', 'google-analytics-dashboard-for-wp' ),
|
257 |
|
|
|
258 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:43
|
259 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:147
|
260 |
__( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
|
261 |
|
262 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:148
|
263 |
__( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
|
264 |
|
265 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:63
|
266 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:153
|
267 |
__( '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' ),
|
268 |
|
269 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:64
|
270 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:154
|
271 |
__( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
|
272 |
|
273 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:68
|
274 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:158
|
275 |
__( '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' ),
|
276 |
|
277 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:69
|
278 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:159
|
279 |
__( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
|
280 |
|
281 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:73
|
282 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:163
|
283 |
__( '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' ),
|
284 |
|
285 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:74
|
286 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:164
|
287 |
__( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
|
288 |
|
289 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:167
|
290 |
__( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
|
291 |
|
292 |
+
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:61
|
293 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:77
|
294 |
+
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAmp-Lite.vue:24
|
295 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:54
|
296 |
__( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
|
297 |
|
298 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:98
|
299 |
__( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
|
300 |
|
301 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:145
|
302 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:49
|
303 |
__( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
|
304 |
|
305 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:49
|
306 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:172
|
307 |
__( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
|
308 |
|
309 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:50
|
310 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:173
|
311 |
__( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
|
312 |
|
313 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:51
|
314 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:174
|
315 |
__( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
|
316 |
|
317 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:54
|
318 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:177
|
319 |
__( 'EU Compliance Addon', 'google-analytics-dashboard-for-wp' ),
|
320 |
|
321 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:55
|
322 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:178
|
323 |
__( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
|
324 |
|
325 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:47
|
326 |
__( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
|
327 |
|
|
|
|
|
|
|
328 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:58
|
329 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:181
|
330 |
__( 'Custom Date Ranges', 'google-analytics-dashboard-for-wp' ),
|
331 |
|
332 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:84
|
344 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:88
|
345 |
__( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
|
346 |
|
347 |
+
// Reference: src/components/ContentIntroFullWidth.vue:46
|
348 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:90
|
349 |
__( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
|
350 |
|
362 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:97
|
363 |
__( 'Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market.', 'google-analytics-dashboard-for-wp' ),
|
364 |
|
365 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
|
366 |
+
__( 'Loading new report data', 'google-analytics-dashboard-for-wp' ),
|
|
|
367 |
|
368 |
+
// Reference: src/components/TheAppFTPForm.vue:110
|
369 |
+
__( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
|
|
|
370 |
|
371 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:228
|
372 |
+
/* Translators: Placeholder gets replaced with an arrow icon. */
|
373 |
+
__( 'Continue %s', 'google-analytics-dashboard-for-wp' ),
|
374 |
|
375 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:181
|
376 |
+
__( 'Unlock the Publishers Report and Focus on the Content that Matters', 'google-analytics-dashboard-for-wp' ),
|
|
|
377 |
|
378 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:182
|
379 |
+
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
380 |
|
381 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:185
|
382 |
+
__( 'Unlock the Publishers Report and Focus on the Content That Matters', 'google-analytics-dashboard-for-wp' ),
|
|
|
383 |
|
384 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:186
|
385 |
+
__( 'Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions.', 'google-analytics-dashboard-for-wp' ),
|
386 |
|
387 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:31
|
388 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:189
|
389 |
+
__( 'Unlock the eCommerce Report and See Your Important Store Metrics', 'google-analytics-dashboard-for-wp' ),
|
390 |
|
391 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:190
|
392 |
+
__( 'Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more.', 'google-analytics-dashboard-for-wp' ),
|
393 |
|
394 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:193
|
395 |
+
__( 'Unlock the Dimensions Report and Track Your Own Custom Data', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
396 |
|
397 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:194
|
398 |
+
__( 'Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what\'s working right inside your WordPress dashboard.', 'google-analytics-dashboard-for-wp' ),
|
399 |
|
400 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:31
|
401 |
+
__( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
402 |
|
403 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:32
|
404 |
+
__( 'Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data.', 'google-analytics-dashboard-for-wp' ),
|
|
|
405 |
|
406 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:31
|
407 |
+
__( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
408 |
|
409 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:202
|
410 |
+
__( 'See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more.', 'google-analytics-dashboard-for-wp' ),
|
|
|
411 |
|
412 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:31
|
413 |
+
__( 'Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time', 'google-analytics-dashboard-for-wp' ),
|
414 |
|
415 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:206
|
416 |
+
__( 'Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it.', 'google-analytics-dashboard-for-wp' ),
|
417 |
|
418 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBelowContent.vue:17
|
419 |
__( 'Go back', 'google-analytics-dashboard-for-wp' ),
|
420 |
|
421 |
+
// Reference: src/modules/addons/store/actions.js:33
|
422 |
+
/* Translators: Adds a link to documentation. */
|
423 |
+
__( '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', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
424 |
|
425 |
+
// Reference: src/modules/addons/store/actions.js:36
|
426 |
+
/* Translators: Adds link to activate/install plugin and documentation. */
|
427 |
+
__( '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', 'google-analytics-dashboard-for-wp' ),
|
428 |
|
429 |
+
// Reference: src/modules/addons/store/actions.js:51
|
430 |
+
/* Translators: Adds a link to documentation. */
|
431 |
+
__( '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', 'google-analytics-dashboard-for-wp' ),
|
432 |
|
433 |
+
// Reference: src/modules/addons/store/actions.js:54
|
434 |
+
/* Translators: Adds link to activate/install plugin and documentation. */
|
435 |
+
__( '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', 'google-analytics-dashboard-for-wp' ),
|
436 |
|
437 |
+
// Reference: src/modules/license/store/actions.js:61
|
438 |
+
/* Translators: Adds a link to the license renewal. */
|
439 |
+
__( 'Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s', 'google-analytics-dashboard-for-wp' ),
|
440 |
|
441 |
+
// Reference: src/modules/license/store/actions.js:71
|
442 |
+
__( 'Your license key for ExactMetrics has been disabled. Please use a different key.', 'google-analytics-dashboard-for-wp' ),
|
443 |
|
444 |
+
// Reference: src/modules/license/store/actions.js:81
|
445 |
+
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
446 |
|
447 |
// Reference: src/modules/widget/store/index.js:102
|
448 |
__( 'Time to Purchase', 'google-analytics-dashboard-for-wp' ),
|
456 |
// Reference: src/modules/widget/store/index.js:110
|
457 |
__( 'This list shows the number of sessions it took users before they purchased a product from your website.', 'google-analytics-dashboard-for-wp' ),
|
458 |
|
459 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:266
|
|
|
460 |
__( 'Top Posts/Pages', 'google-analytics-dashboard-for-wp' ),
|
461 |
|
462 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:277
|
|
|
463 |
__( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-dashboard-for-wp' ),
|
464 |
|
465 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:260
|
|
|
466 |
__( 'New vs. Returning Visitors', 'google-analytics-dashboard-for-wp' ),
|
467 |
|
468 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:273
|
|
|
469 |
__( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-dashboard-for-wp' ),
|
470 |
|
471 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:261
|
|
|
472 |
__( 'Device Breakdown', 'google-analytics-dashboard-for-wp' ),
|
473 |
|
474 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:274
|
|
|
475 |
__( 'This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site.', 'google-analytics-dashboard-for-wp' ),
|
476 |
|
477 |
// Reference: src/modules/widget/store/index.js:41
|
519 |
// Reference: src/modules/widget/store/index.js:96
|
520 |
__( 'Total Add/Remove', 'google-analytics-dashboard-for-wp' ),
|
521 |
|
522 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:162
|
523 |
+
__( 'New', 'google-analytics-dashboard-for-wp' ),
|
524 |
|
525 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:163
|
526 |
+
__( 'Returning', 'google-analytics-dashboard-for-wp' ),
|
|
|
527 |
|
528 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:196
|
529 |
+
__( 'Desktop', 'google-analytics-dashboard-for-wp' ),
|
530 |
|
531 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:197
|
532 |
+
__( 'Tablet', 'google-analytics-dashboard-for-wp' ),
|
533 |
|
534 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:198
|
535 |
+
__( 'Mobile', 'google-analytics-dashboard-for-wp' ),
|
536 |
|
537 |
+
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:44
|
538 |
+
__( 'Sessions', 'google-analytics-dashboard-for-wp' ),
|
539 |
|
540 |
+
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:45
|
541 |
+
__( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
|
542 |
|
543 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:258
|
544 |
+
__( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
|
545 |
|
546 |
+
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:47
|
547 |
+
__( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
|
548 |
|
549 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:262
|
550 |
+
__( 'Top 10 Countries', 'google-analytics-dashboard-for-wp' ),
|
|
|
551 |
|
552 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:263
|
553 |
+
__( 'View Countries Report', 'google-analytics-dashboard-for-wp' ),
|
|
|
554 |
|
555 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:264
|
556 |
+
__( 'Top 10 Referrals', 'google-analytics-dashboard-for-wp' ),
|
|
|
557 |
|
558 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:265
|
559 |
+
__( 'View All Referral Sources', 'google-analytics-dashboard-for-wp' ),
|
|
|
560 |
|
561 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:267
|
562 |
+
__( 'View Full Posts/Pages Report', 'google-analytics-dashboard-for-wp' ),
|
563 |
|
564 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:269
|
565 |
+
__( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
|
566 |
|
567 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:270
|
568 |
+
__( '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' ),
|
569 |
|
570 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:271
|
571 |
+
__( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
|
|
|
572 |
|
573 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:272
|
574 |
+
__( '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' ),
|
575 |
|
576 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:275
|
577 |
+
__( 'This list shows the top countries your website visitors are from.', 'google-analytics-dashboard-for-wp' ),
|
578 |
|
579 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:276
|
580 |
+
__( 'This list shows the top websites that send your website traffic, known as referral traffic.', 'google-analytics-dashboard-for-wp' ),
|
581 |
|
582 |
+
// Reference: src/modules/reports/store/actions.js:132
|
583 |
+
__( 'Installing Addon', 'google-analytics-dashboard-for-wp' ),
|
584 |
|
585 |
+
// Reference: src/modules/reports/store/actions.js:155
|
586 |
+
__( 'Activating Addon', 'google-analytics-dashboard-for-wp' ),
|
587 |
|
588 |
+
// Reference: src/modules/reports/store/actions.js:170
|
589 |
+
__( 'Addon Activated', 'google-analytics-dashboard-for-wp' ),
|
590 |
|
591 |
+
// Reference: src/modules/reports/store/actions.js:171
|
592 |
+
__( 'Loading report data', 'google-analytics-dashboard-for-wp' ),
|
593 |
|
594 |
+
// Reference: src/modules/reports/store/actions.js:188
|
595 |
+
__( 'Please activate manually', 'google-analytics-dashboard-for-wp' ),
|
596 |
|
597 |
+
// Reference: src/modules/reports/store/actions.js:191
|
598 |
+
/* Translators: Adds the error status and status text. */
|
599 |
+
__( 'Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
600 |
|
601 |
+
// Reference: src/modules/reports/store/actions.js:197
|
602 |
+
__( 'Error Activating Addon', 'google-analytics-dashboard-for-wp' ),
|
603 |
|
604 |
+
// Reference: src/modules/reports/store/actions.js:203
|
605 |
+
__( 'View Addons', 'google-analytics-dashboard-for-wp' ),
|
606 |
|
607 |
+
// Reference: src/modules/reports/store/actions.js:204
|
608 |
+
__( 'Dismiss', 'google-analytics-dashboard-for-wp' ),
|
609 |
|
610 |
+
// Reference: src/modules/reports/store/actions.js:211
|
611 |
+
__( 'Redirecting', 'google-analytics-dashboard-for-wp' ),
|
612 |
|
613 |
+
// Reference: src/modules/reports/store/actions.js:212
|
614 |
+
__( 'Please wait', 'google-analytics-dashboard-for-wp' ),
|
615 |
|
616 |
+
// Reference: src/modules/reports/store/actions.js:52
|
617 |
+
__( 'activate', 'google-analytics-dashboard-for-wp' ),
|
618 |
|
619 |
+
// Reference: src/modules/reports/store/actions.js:52
|
620 |
+
__( 'install', 'google-analytics-dashboard-for-wp' ),
|
621 |
|
622 |
+
// Reference: src/modules/reports/store/actions.js:56
|
623 |
+
__( 'Visit addons page', 'google-analytics-dashboard-for-wp' ),
|
624 |
|
625 |
+
// Reference: src/modules/reports/store/actions.js:64
|
626 |
+
__( 'Report Unavailable', 'google-analytics-dashboard-for-wp' ),
|
627 |
|
628 |
+
// Reference: src/modules/reports/store/actions.js:71
|
629 |
+
/* Translators: Install/Activate the addon. */
|
630 |
+
__( '%s Addon', 'google-analytics-dashboard-for-wp' ),
|
631 |
|
632 |
+
// Reference: src/modules/reports/store/actions.js:90
|
633 |
+
__( 'Go Back To Reports', 'google-analytics-dashboard-for-wp' ),
|
634 |
|
635 |
+
// Reference: src/modules/reports/store/actions.js:91
|
636 |
+
__( 'Enable Enhanced eCommerce', 'google-analytics-dashboard-for-wp' ),
|
637 |
|
638 |
+
// Reference: src/plugins/exactmetrics-settings-helper-plugin.js:112
|
639 |
+
__( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
|
640 |
|
641 |
+
// Reference: src/plugins/exactmetrics-settings-helper-plugin.js:20
|
642 |
+
__( 'Saving Changes...', 'google-analytics-dashboard-for-wp' ),
|
643 |
|
644 |
+
// Reference: src/plugins/exactmetrics-settings-helper-plugin.js:49
|
645 |
+
__( 'Settings Updated', 'google-analytics-dashboard-for-wp' ),
|
646 |
|
647 |
+
// Reference: src/plugins/exactmetrics-settings-helper-plugin.js:7
|
648 |
+
/* Translators: Add a link to the onboarding wizard. */
|
649 |
+
__( 'You need to %1$sconnect ExactMetrics%2$s first', 'google-analytics-dashboard-for-wp' ),
|
650 |
+
|
651 |
+
// Reference: src/plugins/exactmetrics-settings-helper-plugin.js:83
|
652 |
+
__( 'Could Not Save Changes', 'google-analytics-dashboard-for-wp' ),
|
653 |
+
|
654 |
+
// Reference: src/modules/widget/components/exactmetrics-WidgetSettings-Lite.vue:22
|
655 |
+
/* Translators: Number of days. */
|
656 |
+
__( 'Last %s days', 'google-analytics-dashboard-for-wp' ),
|
657 |
+
|
658 |
+
// Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:213
|
659 |
+
__( 'Analytics', 'google-analytics-dashboard-for-wp' ),
|
660 |
+
|
661 |
+
// Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:65
|
662 |
+
// Reference: src/modules/widget/components/settings/exactmetrics-WidgetFullReportButton.vue:16
|
663 |
+
/* Translators: Adds an arrow icon. */
|
664 |
+
__( 'View All Reports %s', 'google-analytics-dashboard-for-wp' ),
|
665 |
+
|
666 |
+
// Reference: src/components/TheFloatingBar-Lite.vue:29
|
667 |
+
/* Translators: Placeholders are used for making text bold and adding a link. */
|
668 |
+
__( 'You\'re using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s.', 'google-analytics-dashboard-for-wp' ),
|
669 |
+
|
670 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:35
|
671 |
+
/* Translators: Placeholders make the text highlighted. */
|
672 |
+
__( '%1$sNeed%2$s to Grow FASTER??', 'google-analytics-dashboard-for-wp' ),
|
673 |
+
|
674 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:36
|
675 |
+
__( 'Get additional, actionable insights by going Pro.', 'google-analytics-dashboard-for-wp' ),
|
676 |
+
|
677 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:37
|
678 |
+
__( 'Skip', 'google-analytics-dashboard-for-wp' ),
|
679 |
+
|
680 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:38
|
681 |
+
__( 'See All Features', 'google-analytics-dashboard-for-wp' ),
|
682 |
+
|
683 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:39
|
684 |
+
__( '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' ),
|
685 |
+
|
686 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:40
|
687 |
+
__( 'Our Pro plan includes:', 'google-analytics-dashboard-for-wp' ),
|
688 |
+
|
689 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:39
|
690 |
+
__( 'Awesome, You\'re All Set!', 'google-analytics-dashboard-for-wp' ),
|
691 |
+
|
692 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:40
|
693 |
+
__( 'ExactMetrics is all set up and ready to use. We\'ve verified that the tracking code is deployed properly and collecting data.', 'google-analytics-dashboard-for-wp' ),
|
694 |
+
|
695 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:42
|
696 |
+
/* Translators: Make the text bold. */
|
697 |
+
__( '%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' ),
|
698 |
+
|
699 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:44
|
700 |
+
/* Translators: Add link to blog. */
|
701 |
+
__( '%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' ),
|
702 |
+
|
703 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:45
|
704 |
+
__( 'Finish Setup & Exit Wizard', 'google-analytics-dashboard-for-wp' ),
|
705 |
+
|
706 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:47
|
707 |
+
__( 'Google Analytics', 'google-analytics-dashboard-for-wp' ),
|
708 |
+
|
709 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:48
|
710 |
+
__( 'Subscribe', 'google-analytics-dashboard-for-wp' ),
|
711 |
+
|
712 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:61
|
713 |
+
__( 'Checking your website...', 'google-analytics-dashboard-for-wp' ),
|
714 |
+
|
715 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:53
|
716 |
+
__( 'Recommended Settings', 'google-analytics-dashboard-for-wp' ),
|
717 |
|
718 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:54
|
719 |
__( 'ExactMetrics recommends the following settings based on your configuration.', 'google-analytics-dashboard-for-wp' ),
|
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/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:71
|
758 |
/* Translators: Example path (/go/). */
|
759 |
__( 'Path (example: %s)', 'google-analytics-dashboard-for-wp' ),
|
760 |
|
|
|
761 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:73
|
762 |
__( 'Path has to start with a / and have no spaces', 'google-analytics-dashboard-for-wp' ),
|
763 |
|
|
|
764 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:78
|
765 |
/* Translators: Example label (aff). */
|
766 |
__( 'Label (example: %s)', 'google-analytics-dashboard-for-wp' ),
|
767 |
|
|
|
768 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:80
|
769 |
__( 'Label can\'t contain any spaces', 'google-analytics-dashboard-for-wp' ),
|
770 |
|
783 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:87
|
784 |
__( 'These user roles will be able to access ExactMetrics\'s reports in the WordPress admin area.', 'google-analytics-dashboard-for-wp' ),
|
785 |
|
786 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:92
|
787 |
__( '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' ),
|
788 |
|
789 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:89
|
795 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:92
|
796 |
__( 'Enhanced Link Attribution is enabled the moment you set up ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
797 |
|
798 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:141
|
799 |
__( '+ Add Role', 'google-analytics-dashboard-for-wp' ),
|
800 |
|
801 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:56
|
802 |
+
__( 'Affiliate Links', 'google-analytics-dashboard-for-wp' ),
|
803 |
|
804 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:58
|
805 |
+
/* Translators: Add links to documentation. */
|
806 |
+
__( 'This allows you to track custom affiliate links. A path of /go/ would match urls that start with that. The label is appended onto the end of the string "outbound-link-", to provide unique labels for these links in Google Analytics. Complete documentation on affiliate links is available %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ),
|
807 |
|
808 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:59
|
809 |
+
__( 'Our affiliate link tracking works by setting path for internal links to track as outbound links.', 'google-analytics-dashboard-for-wp' ),
|
|
|
810 |
|
811 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:48
|
812 |
+
__( 'Connect ExactMetrics to Your Website', 'google-analytics-dashboard-for-wp' ),
|
|
|
813 |
|
814 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:49
|
815 |
+
__( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
|
816 |
|
817 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:67
|
818 |
+
__( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
|
819 |
|
820 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:68
|
821 |
+
__( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
|
822 |
|
823 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:52
|
824 |
+
__( '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' ),
|
825 |
|
826 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:53
|
827 |
+
__( 'Manually enter your UA code', 'google-analytics-dashboard-for-wp' ),
|
828 |
|
829 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:54
|
830 |
+
__( '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' ),
|
831 |
|
832 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:55
|
833 |
+
__( 'Save and Continue', 'google-analytics-dashboard-for-wp' ),
|
834 |
|
835 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:81
|
836 |
+
__( 'UA code can\'t be empty', 'google-analytics-dashboard-for-wp' ),
|
837 |
|
838 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:93
|
839 |
+
__( 'Saving UA code...', 'google-analytics-dashboard-for-wp' ),
|
840 |
|
841 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:115
|
842 |
+
/* Translators: placeholders make text small. */
|
843 |
+
__( 'Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s', 'google-analytics-dashboard-for-wp' ),
|
844 |
|
845 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:120
|
846 |
+
/* Translators: placeholders make text small. */
|
847 |
+
__( 'Disabled %1$s- Hide reports and dashboard widget.%2$s', 'google-analytics-dashboard-for-wp' ),
|
848 |
|
849 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:127
|
850 |
+
/* Translators: placeholders make text small. */
|
851 |
+
__( 'Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s', 'google-analytics-dashboard-for-wp' ),
|
852 |
|
853 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:132
|
854 |
+
/* Translators: placeholders make text small. */
|
855 |
+
__( 'Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s', 'google-analytics-dashboard-for-wp' ),
|
856 |
|
857 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:137
|
858 |
+
/* Translators: placeholders make text small. */
|
859 |
+
__( 'None %1$s- Manually update everything.%2$s', 'google-analytics-dashboard-for-wp' ),
|
860 |
|
861 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:185
|
862 |
+
/* Translators: Adds a link to the general settings tab. */
|
863 |
+
__( 'It looks like you added a Google Analytics tracking code in the custom code area, this can potentially prevent proper tracking. If you want to use a manual UA please use the setting in the %1$sGeneral%2$s tab.', 'google-analytics-dashboard-for-wp' ),
|
864 |
|
865 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:87
|
866 |
+
__( 'Permissions', 'google-analytics-dashboard-for-wp' ),
|
867 |
|
868 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:90
|
869 |
+
__( 'Allow These User Roles to See Reports', 'google-analytics-dashboard-for-wp' ),
|
870 |
|
871 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:91
|
872 |
+
__( 'Users that have at least one of these roles will be able to view the reports.', 'google-analytics-dashboard-for-wp' ),
|
873 |
|
874 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:93
|
875 |
+
__( 'Allow These User Roles to Save Settings', 'google-analytics-dashboard-for-wp' ),
|
876 |
|
877 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:94
|
878 |
+
__( 'Users that have at least one of these roles will be able to view and save the settings panel.', 'google-analytics-dashboard-for-wp' ),
|
879 |
|
880 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:95
|
881 |
+
__( 'Users that have at least one of these roles will be able to view and save the settings panel, along with any user with the manage_options capability.', 'google-analytics-dashboard-for-wp' ),
|
882 |
|
883 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:96
|
884 |
+
__( 'Exclude These User Roles From Tracking', 'google-analytics-dashboard-for-wp' ),
|
885 |
|
886 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:98
|
887 |
+
__( 'Users that have at least one of these roles will not be tracked into Google Analytics.', 'google-analytics-dashboard-for-wp' ),
|
888 |
|
889 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:99
|
890 |
+
__( 'Custom code', 'google-analytics-dashboard-for-wp' ),
|
891 |
|
892 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:101
|
893 |
+
/* Translators: Adds a link to the Google reference. */
|
894 |
+
__( 'Not for the average user: this allows you to add a line of code, to be added before the %1$spageview is sent%2$s.', 'google-analytics-dashboard-for-wp' ),
|
895 |
|
896 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:102
|
897 |
+
__( 'Reports', 'google-analytics-dashboard-for-wp' ),
|
898 |
|
899 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:103
|
900 |
+
__( 'Automatic Updates', 'google-analytics-dashboard-for-wp' ),
|
|
|
901 |
|
902 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:104
|
903 |
+
__( 'You must have the "unfiltered_html" capability to view/edit this setting.', 'google-analytics-dashboard-for-wp' ),
|
904 |
|
905 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:105
|
906 |
+
__( 'Hide Admin Bar Reports', 'google-analytics-dashboard-for-wp' ),
|
907 |
|
908 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:110
|
909 |
+
/* Translators: placeholders make text small. */
|
910 |
+
__( 'Enabled %1$s- Show reports and dashboard widget.%2$s', 'google-analytics-dashboard-for-wp' ),
|
911 |
|
912 |
+
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:42
|
913 |
+
__( 'Last 30 Days Analytics for ', 'google-analytics-dashboard-for-wp' ),
|
914 |
|
915 |
+
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:43
|
916 |
+
__( 'Your Website', 'google-analytics-dashboard-for-wp' ),
|
917 |
|
918 |
+
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:46
|
919 |
+
__( 'Avg. Duration', 'google-analytics-dashboard-for-wp' ),
|
920 |
|
921 |
+
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:56
|
922 |
+
__( 'More data is available', 'google-analytics-dashboard-for-wp' ),
|
923 |
|
924 |
+
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:58
|
925 |
+
__( 'Want to see page-specific stats?', 'google-analytics-dashboard-for-wp' ),
|
926 |
|
927 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:33
|
928 |
+
__( 'Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress.', 'google-analytics-dashboard-for-wp' ),
|
929 |
|
930 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:34
|
931 |
+
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
932 |
|
933 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:35
|
934 |
+
__( 'The ExactMetrics Team', 'google-analytics-dashboard-for-wp' ),
|
935 |
|
936 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:102
|
937 |
+
__( 'One-click Complete eCommerce tracking', 'google-analytics-dashboard-for-wp' ),
|
938 |
|
939 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:103
|
940 |
+
__( 'Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required', 'google-analytics-dashboard-for-wp' ),
|
941 |
|
942 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:107
|
943 |
+
__( 'Forms Tracking', 'google-analytics-dashboard-for-wp' ),
|
944 |
|
945 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:111
|
946 |
+
__( 'One-click Form Events Tracking', 'google-analytics-dashboard-for-wp' ),
|
947 |
|
948 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:112
|
949 |
+
__( 'WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin', 'google-analytics-dashboard-for-wp' ),
|
|
|
950 |
|
951 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:116
|
952 |
+
__( 'WordPress Admin Area Reports', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
953 |
|
954 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:119
|
955 |
__( 'Standard Reports', 'google-analytics-dashboard-for-wp' ),
|
987 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:141
|
988 |
__( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-dashboard-for-wp' ),
|
989 |
|
990 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:148
|
991 |
__( 'Not Available', 'google-analytics-dashboard-for-wp' ),
|
992 |
|
993 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:149
|
1017 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:64
|
1018 |
__( 'Pro', 'google-analytics-dashboard-for-wp' ),
|
1019 |
|
1020 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:65
|
1021 |
__( 'Get ExactMetrics Pro Today and Unlock all the Powerful Features', 'google-analytics-dashboard-for-wp' ),
|
1022 |
|
1023 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:66
|
1024 |
__( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
|
1025 |
|
1026 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:67
|
1027 |
__( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
|
1028 |
|
1029 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:70
|
1062 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:94
|
1063 |
__( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-dashboard-for-wp' ),
|
1064 |
|
1065 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:38
|
1066 |
+
__( 'Welcome to the all-new ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
1067 |
|
1068 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:39
|
1069 |
+
__( 'Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress.', 'google-analytics-dashboard-for-wp' ),
|
|
|
1070 |
|
1071 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:40
|
1072 |
+
__( 'The New & Improved ExactMetrics includes:', 'google-analytics-dashboard-for-wp' ),
|
1073 |
|
1074 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:42
|
1075 |
+
__( 'All-New Design', 'google-analytics-dashboard-for-wp' ),
|
|
|
1076 |
|
1077 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:43
|
1078 |
+
__( 'Better Reporting', 'google-analytics-dashboard-for-wp' ),
|
1079 |
|
1080 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:44
|
1081 |
+
__( 'Better Tracking', 'google-analytics-dashboard-for-wp' ),
|
1082 |
|
1083 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:45
|
1084 |
+
__( 'Better Support', 'google-analytics-dashboard-for-wp' ),
|
1085 |
|
1086 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:47
|
1087 |
+
__( 'Continue', 'google-analytics-dashboard-for-wp' ),
|
1088 |
|
1089 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:48
|
1090 |
+
__( 'Your settings have been automatically transferred.', 'google-analytics-dashboard-for-wp' ),
|
1091 |
|
1092 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:49
|
1093 |
+
__( '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' ),
|
1094 |
|
1095 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:40
|
1096 |
__( 'ExactMetrics Recommends WPForms', 'google-analytics-dashboard-for-wp' ),
|
1110 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
|
1111 |
__( 'Continue & Install WPForms', 'google-analytics-dashboard-for-wp' ),
|
1112 |
|
1113 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:46
|
1114 |
__( 'Installing...', 'google-analytics-dashboard-for-wp' ),
|
1115 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1116 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:32
|
1117 |
__( 'Welcome to ExactMetrics!', 'google-analytics-dashboard-for-wp' ),
|
1118 |
|
1132 |
/* Translators: Make text bold. */
|
1133 |
__( 'Publisher %1$s(Blog)%2$s', 'google-analytics-dashboard-for-wp' ),
|
1134 |
|
1135 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:28
|
1136 |
+
__( 'Ecommerce', 'google-analytics-dashboard-for-wp' ),
|
|
|
1137 |
|
1138 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:101
|
1139 |
+
__( 'File imported', 'google-analytics-dashboard-for-wp' ),
|
1140 |
|
1141 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:102
|
1142 |
+
__( 'Settings successfully updated!', 'google-analytics-dashboard-for-wp' ),
|
1143 |
|
1144 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:108
|
1145 |
+
__( 'Error importing settings', 'google-analytics-dashboard-for-wp' ),
|
1146 |
|
1147 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:109
|
1148 |
+
__( 'Please choose a .json file generated by a ExactMetrics settings export.', 'google-analytics-dashboard-for-wp' ),
|
1149 |
|
1150 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:54
|
1151 |
+
__( 'Import/Export', 'google-analytics-dashboard-for-wp' ),
|
1152 |
|
1153 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:55
|
1154 |
+
__( 'Import', 'google-analytics-dashboard-for-wp' ),
|
1155 |
|
1156 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:56
|
1157 |
+
__( 'Import settings from another ExactMetrics website.', 'google-analytics-dashboard-for-wp' ),
|
1158 |
|
1159 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:57
|
1160 |
+
__( 'Export', 'google-analytics-dashboard-for-wp' ),
|
1161 |
|
1162 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:58
|
1163 |
+
__( 'Export settings to import into another ExactMetrics install.', 'google-analytics-dashboard-for-wp' ),
|
1164 |
|
1165 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:59
|
1166 |
+
__( 'Import Settings', 'google-analytics-dashboard-for-wp' ),
|
1167 |
|
1168 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:60
|
1169 |
+
__( 'Export Settings', 'google-analytics-dashboard-for-wp' ),
|
1170 |
|
1171 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:61
|
1172 |
+
__( 'Please choose a file to import', 'google-analytics-dashboard-for-wp' ),
|
|
|
1173 |
|
1174 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:62
|
1175 |
+
__( 'Use the filepicker below to select the settings export file from another site.', 'google-analytics-dashboard-for-wp' ),
|
|
|
1176 |
|
1177 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:63
|
1178 |
+
__( 'Use the button below to export a file with your ExactMetrics settings.', 'google-analytics-dashboard-for-wp' ),
|
1179 |
|
1180 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:64
|
1181 |
+
__( 'Choose file', 'google-analytics-dashboard-for-wp' ),
|
1182 |
|
1183 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:71
|
1184 |
+
__( 'No file chosen', 'google-analytics-dashboard-for-wp' ),
|
1185 |
|
1186 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:86
|
1187 |
+
__( 'Uploading file...', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1188 |
|
1189 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:102
|
1190 |
+
__( 'Cross Domain Tracking', 'google-analytics-dashboard-for-wp' ),
|
1191 |
|
1192 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:104
|
1193 |
+
/* Translators: Add links to documentation. */
|
1194 |
+
__( 'Cross domain tracking makes it possible for Analytics to see sessions on two related sites as a single session. More info on specific setup steps can be found in our %1$sknowledge base%2$s.', 'google-analytics-dashboard-for-wp' ),
|
1195 |
|
1196 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:65
|
1197 |
+
__( 'Demographics', 'google-analytics-dashboard-for-wp' ),
|
1198 |
|
1199 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:66
|
1200 |
+
__( 'Enable Demographics and Interests Reports for Remarketing and Advertising', 'google-analytics-dashboard-for-wp' ),
|
1201 |
|
1202 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:67
|
1203 |
+
__( 'Anonymize IP Addresses', 'google-analytics-dashboard-for-wp' ),
|
1204 |
|
1205 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:68
|
1206 |
+
__( 'Link Attribution', 'google-analytics-dashboard-for-wp' ),
|
1207 |
|
1208 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:69
|
1209 |
+
__( 'Enable Enhanced Link Attribution', 'google-analytics-dashboard-for-wp' ),
|
1210 |
|
1211 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:70
|
1212 |
+
__( 'Enable Anchor Tracking', 'google-analytics-dashboard-for-wp' ),
|
1213 |
|
1214 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:71
|
1215 |
+
__( 'Enable allowAnchor', 'google-analytics-dashboard-for-wp' ),
|
1216 |
|
1217 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:72
|
1218 |
+
__( 'Enable allowLinker', 'google-analytics-dashboard-for-wp' ),
|
1219 |
|
1220 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:73
|
1221 |
+
__( 'Enable Tag Links in RSS', 'google-analytics-dashboard-for-wp' ),
|
1222 |
|
1223 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:74
|
1224 |
+
__( 'File Downloads', 'google-analytics-dashboard-for-wp' ),
|
1225 |
|
1226 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:75
|
1227 |
+
__( 'Extensions of Files to Track as Downloads', 'google-analytics-dashboard-for-wp' ),
|
1228 |
|
1229 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:76
|
1230 |
+
__( 'ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions.', 'google-analytics-dashboard-for-wp' ),
|
1231 |
|
1232 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:78
|
1233 |
+
/* Translators: Add links to documentation. */
|
1234 |
+
__( 'Enable this setting to add the Demographics and Remarketing features to your Google Analytics tracking code. Make sure to enable Demographics and Remarketing in your Google Analytics account. We have a guide for how to do that in our %1$sknowledge base%2$s. For more information about Remarketing, we refer you to %3$sGoogle\'s documentation%4$s. Note that usage of this function is affected by privacy and cookie laws around the world. Be sure to follow the laws that affect your target audience.', 'google-analytics-dashboard-for-wp' ),
|
1235 |
|
1236 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:80
|
1237 |
+
/* Translators: Add links to documentation. */
|
1238 |
+
__( 'This adds %1$sanonymizeIp%2$s, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage.', 'google-analytics-dashboard-for-wp' ),
|
1239 |
|
1240 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:82
|
1241 |
+
/* Translators: Add links to documentation. */
|
1242 |
+
__( 'Add %1$sEnhanced Link Attribution%2$s to your tracking code.', 'google-analytics-dashboard-for-wp' ),
|
1243 |
|
1244 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:83
|
1245 |
+
__( 'Many WordPress "1-page" style themes rely on anchor tags for navigation to show virtual pages. The problem is that to Google Analytics, these are all just a single page, and it makes it hard to get meaningful statistics about pages viewed. This feature allows proper tracking in those themes.', 'google-analytics-dashboard-for-wp' ),
|
1246 |
|
1247 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:85
|
1248 |
+
/* Translators: Add links to documentation. */
|
1249 |
+
__( 'This adds %1$sallowAnchor%2$s to the create command of the pageview hit tracking code, and makes RSS link tagging use a # as well.', 'google-analytics-dashboard-for-wp' ),
|
1250 |
|
1251 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:87
|
1252 |
+
/* Translators: Add links to documentation. */
|
1253 |
+
__( 'Enabling %1$scross-domain tracking (additional setup required)%2$s allows you to track users across multiple properties you own (such as example-1.com and example-2.com as a single session. It also allows you fix an issue so that when a user has to go to an off-site hosted payment gateway to finish a purchase it doesn\'t count it as referral traffic from that gateway but maintains the visit as part of the same session.) It is required that the other site includes a Google Analytics tracker with the same UA Code.', 'google-analytics-dashboard-for-wp' ),
|
1254 |
|
1255 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:89
|
1256 |
+
/* Translators: Add links to documentation. */
|
1257 |
+
__( 'Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check this %1$shelp page%2$s for info on how to enable this feature in FeedBurner.', 'google-analytics-dashboard-for-wp' ),
|
1258 |
|
1259 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:90
|
1260 |
+
__( 'Add domain', 'google-analytics-dashboard-for-wp' ),
|
1261 |
|
1262 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:95
|
1263 |
+
/* Translators: Domain name example. */
|
1264 |
+
__( 'Domain (example: %s)', 'google-analytics-dashboard-for-wp' ),
|
1265 |
|
1266 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:98
|
1267 |
+
/* Translators: Current domain name that should not be used. */
|
1268 |
+
__( 'Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s ).', 'google-analytics-dashboard-for-wp' ),
|
1269 |
|
1270 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:161
|
1271 |
__( 'Custom Campaign Parameters', 'google-analytics-dashboard-for-wp' ),
|
1272 |
|
1273 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:162
|
1274 |
__( 'The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns.', 'google-analytics-dashboard-for-wp' ),
|
1275 |
|
1276 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:163
|
1277 |
__( 'A custom campaign is any ad campaign not using the AdWords auto-tagging feature. When users click one of the custom links, the unique parameters are sent to your Analytics account, so you can identify the URLs that are the most effective in attracting users to your content.', 'google-analytics-dashboard-for-wp' ),
|
1278 |
|
1279 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:165
|
1280 |
/* Translators: Marks the field as required. */
|
1281 |
__( 'Website URL %s', 'google-analytics-dashboard-for-wp' ),
|
1282 |
|
1283 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:167
|
1284 |
/* Translators: Display the current website url in italic. */
|
1285 |
__( 'The full website URL (e.g. %1$s %2$s%3$s)', 'google-analytics-dashboard-for-wp' ),
|
1286 |
|
1287 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:169
|
1288 |
/* Translators: Marks the field as required. */
|
1289 |
__( 'Campaign Source %s', 'google-analytics-dashboard-for-wp' ),
|
1290 |
|
1291 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:171
|
1292 |
/* Translators: Make the text italic. */
|
1293 |
__( 'Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)', 'google-analytics-dashboard-for-wp' ),
|
1294 |
|
1295 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:174
|
1296 |
/* Translators: Make the text italic. */
|
1297 |
__( 'Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)', 'google-analytics-dashboard-for-wp' ),
|
1298 |
|
1299 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:177
|
1300 |
/* Translators: Make the text italic. */
|
1301 |
__( 'Enter a name to easily identify (e.g. %1$sspring_sale%2$s)', 'google-analytics-dashboard-for-wp' ),
|
1302 |
|
1303 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:179
|
1304 |
__( 'Enter the paid keyword', 'google-analytics-dashboard-for-wp' ),
|
1305 |
|
1306 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:181
|
1307 |
__( 'Enter something to differentiate ads', 'google-analytics-dashboard-for-wp' ),
|
1308 |
|
1309 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:182
|
1310 |
__( 'Use Fragment', 'google-analytics-dashboard-for-wp' ),
|
1311 |
|
1312 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:184
|
1313 |
/* Translators: Make the text bold. */
|
1314 |
__( 'Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s', 'google-analytics-dashboard-for-wp' ),
|
1315 |
|
1316 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:185
|
1317 |
__( 'URL to use', 'google-analytics-dashboard-for-wp' ),
|
1318 |
|
1319 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:186
|
1320 |
__( '(Updates automatically)', 'google-analytics-dashboard-for-wp' ),
|
1321 |
|
1322 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:187
|
1323 |
__( 'Copy to Clipboard', 'google-analytics-dashboard-for-wp' ),
|
1324 |
|
1325 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:192
|
1326 |
__( 'More Information & Examples', 'google-analytics-dashboard-for-wp' ),
|
1327 |
|
1328 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:193
|
1329 |
__( 'The following table gives a detailed explanation and example of each of the campaign parameters.', 'google-analytics-dashboard-for-wp' ),
|
1330 |
|
1331 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:201
|
1332 |
__( 'Campaign Source', 'google-analytics-dashboard-for-wp' ),
|
1333 |
|
1334 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:202
|
1335 |
__( 'Required. Use utm_source to identify a search engine, newsletter name, or other source.', 'google-analytics-dashboard-for-wp' ),
|
1336 |
|
1337 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:203
|
1338 |
__( 'Campaign Medium', 'google-analytics-dashboard-for-wp' ),
|
1339 |
|
1340 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:204
|
1341 |
__( 'Use utm_medium to identify a medium such as email or cost-per-click.', 'google-analytics-dashboard-for-wp' ),
|
1342 |
|
1343 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:205
|
1344 |
__( 'Campaign Name', 'google-analytics-dashboard-for-wp' ),
|
1345 |
|
1346 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:206
|
1347 |
__( 'Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign.', 'google-analytics-dashboard-for-wp' ),
|
1348 |
|
1349 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:207
|
1350 |
__( 'Campaign Term', 'google-analytics-dashboard-for-wp' ),
|
1351 |
|
1352 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:208
|
1353 |
__( 'Used for paid search. Use utm_term to note the keywords for this ad.', 'google-analytics-dashboard-for-wp' ),
|
1354 |
|
1355 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:209
|
1356 |
__( 'Campaign Content', 'google-analytics-dashboard-for-wp' ),
|
1357 |
|
1358 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:210
|
1359 |
__( 'Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL.', 'google-analytics-dashboard-for-wp' ),
|
1360 |
|
1361 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:212
|
1362 |
/* Translators: Example. */
|
1363 |
__( 'Example: %s', 'google-analytics-dashboard-for-wp' ),
|
1364 |
|
1365 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:214
|
1366 |
/* Translators: Examples. */
|
1367 |
__( 'Examples: %s', 'google-analytics-dashboard-for-wp' ),
|
1368 |
|
1369 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:217
|
1370 |
__( 'About Campaigns', 'google-analytics-dashboard-for-wp' ),
|
1371 |
|
1372 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:221
|
1373 |
__( 'About Custom Campaigns', 'google-analytics-dashboard-for-wp' ),
|
1374 |
|
1375 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:225
|
1376 |
__( 'Best Practices for Creating Custom Campaigns', 'google-analytics-dashboard-for-wp' ),
|
1377 |
|
1378 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:229
|
1379 |
__( 'About the Referral Traffic Report', 'google-analytics-dashboard-for-wp' ),
|
1380 |
|
1381 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:233
|
1382 |
__( 'About Traffic Source Dimensions', 'google-analytics-dashboard-for-wp' ),
|
1383 |
|
1384 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:237
|
1385 |
__( 'AdWords Auto-Tagging', 'google-analytics-dashboard-for-wp' ),
|
1386 |
|
1387 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:241
|
1388 |
__( 'Additional Information', 'google-analytics-dashboard-for-wp' ),
|
1389 |
|
1390 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:30
|
1391 |
+
__( 'Ecommerce Report', 'google-analytics-dashboard-for-wp' ),
|
1392 |
+
|
1393 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:32
|
1394 |
+
__( 'Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value top products, top referral sources and more.', 'google-analytics-dashboard-for-wp' ),
|
1395 |
+
|
1396 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:35
|
1397 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:34
|
1398 |
+
__( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
|
1399 |
+
|
1400 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:38
|
1401 |
+
__( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-dashboard-for-wp' ),
|
1402 |
+
|
1403 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:42
|
1404 |
+
__( 'See The Number of Transactions and Make Data-Driven Decisions', 'google-analytics-dashboard-for-wp' ),
|
1405 |
+
|
1406 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:46
|
1407 |
+
__( 'See The Total Revenue to Track Growth', 'google-analytics-dashboard-for-wp' ),
|
1408 |
+
|
1409 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:50
|
1410 |
+
__( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-dashboard-for-wp' ),
|
1411 |
+
|
1412 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:54
|
1413 |
+
__( 'See Your Top Products to See Individual Performance', 'google-analytics-dashboard-for-wp' ),
|
1414 |
+
|
1415 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:59
|
1416 |
+
__( 'See Your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
|
1417 |
+
|
1418 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:62
|
1419 |
+
__( 'See The Time it Takes for Customers to Purchase', 'google-analytics-dashboard-for-wp' ),
|
1420 |
+
|
1421 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:66
|
1422 |
+
__( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
|
1423 |
+
|
1424 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:31
|
1425 |
__( 'Unlock the Publisher Report and Focus on the Content That Matters', 'google-analytics-dashboard-for-wp' ),
|
1426 |
|
1442 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:59
|
1443 |
__( 'See Audience Demographic Report (Age / Gender / Interests)', 'google-analytics-dashboard-for-wp' ),
|
1444 |
|
1445 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:30
|
1446 |
+
__( 'Forms Report', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
|
|
|
|
1447 |
|
1448 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:39
|
1449 |
+
__( 'See Reports for Any Contact Form Plugin or Sign-up Form', 'google-analytics-dashboard-for-wp' ),
|
|
|
1450 |
|
1451 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:43
|
1452 |
+
__( 'See Your Top Converting Forms and Optimize', 'google-analytics-dashboard-for-wp' ),
|
1453 |
|
1454 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:47
|
1455 |
+
__( 'See Your Forms Impressions Count to Find the Best Placement', 'google-analytics-dashboard-for-wp' ),
|
1456 |
|
1457 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:63
|
1458 |
+
__( 'License Key', 'google-analytics-dashboard-for-wp' ),
|
1459 |
|
1460 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:65
|
1461 |
+
/* Translators: Add link to retrieve license key from account. */
|
1462 |
+
__( 'Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
|
1463 |
|
1464 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:66
|
1465 |
+
__( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
|
1466 |
|
1467 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:69
|
1468 |
+
__( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
|
1469 |
|
1470 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:71
|
1471 |
+
__( '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' ),
|
1472 |
|
1473 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:72
|
1474 |
+
__( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
|
1475 |
|
1476 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:107
|
1477 |
+
/* Translators: Placeholders make the text green. */
|
1478 |
+
__( 'Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
|
1479 |
|
1480 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:111
|
1481 |
+
__( 'How to Connect to Google Analytics', 'google-analytics-dashboard-for-wp' ),
|
1482 |
|
1483 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:112
|
1484 |
+
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
1485 |
|
1486 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:117
|
1487 |
+
__( 'Guide and Checklist for Advanced Insights', 'google-analytics-dashboard-for-wp' ),
|
1488 |
|
1489 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:118
|
1490 |
+
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
1491 |
+
|
1492 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:123
|
1493 |
+
__( 'GDPR Guide', 'google-analytics-dashboard-for-wp' ),
|
1494 |
+
|
1495 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:124
|
1496 |
+
__( '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. ', 'google-analytics-dashboard-for-wp' ),
|
1497 |
+
|
1498 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:129
|
1499 |
+
__( 'How to Install and Activate ExactMetrics Addons', 'google-analytics-dashboard-for-wp' ),
|
1500 |
+
|
1501 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:130
|
1502 |
+
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
1503 |
+
|
1504 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:135
|
1505 |
+
__( 'Enabling eCommerce Tracking and Reports', 'google-analytics-dashboard-for-wp' ),
|
1506 |
+
|
1507 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:136
|
1508 |
+
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
1509 |
+
|
1510 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:140
|
1511 |
+
__( 'Read Documentation', 'google-analytics-dashboard-for-wp' ),
|
1512 |
+
|
1513 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:169
|
1514 |
+
/* Translators: Makes the text bold. */
|
1515 |
+
__( '%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress.', 'google-analytics-dashboard-for-wp' ),
|
1516 |
+
|
1517 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:189
|
1518 |
+
/* Translators: Makes the text bold. */
|
1519 |
+
__( '%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click.', 'google-analytics-dashboard-for-wp' ),
|
1520 |
+
|
1521 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:45
|
1522 |
+
__( 'Unlock Form Tracking', 'google-analytics-dashboard-for-wp' ),
|
1523 |
+
|
1524 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:46
|
1525 |
+
__( 'See who\'s viewing and submitting your forms, so you can increase your conversion rate.', 'google-analytics-dashboard-for-wp' ),
|
1526 |
+
|
1527 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:48
|
1528 |
+
__( 'Use Google Optimize to retarget your website visitors and perform A/B split tests with ease.', 'google-analytics-dashboard-for-wp' ),
|
1529 |
+
|
1530 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:50
|
1531 |
+
__( 'Add Custom Dimensions and track who\'s the most popular author on your site, which post types get the most traffic, and more', 'google-analytics-dashboard-for-wp' ),
|
1532 |
+
|
1533 |
+
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:54
|
1534 |
+
__( 'There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data.', 'google-analytics-dashboard-for-wp' ),
|
1535 |
+
|
1536 |
+
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:55
|
1537 |
+
__( 'No addons found.', 'google-analytics-dashboard-for-wp' ),
|
1538 |
+
|
1539 |
+
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:56
|
1540 |
+
__( 'Refresh Addons', 'google-analytics-dashboard-for-wp' ),
|
1541 |
+
|
1542 |
+
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:57
|
1543 |
__( 'ExactMetrics Addons', 'google-analytics-dashboard-for-wp' ),
|
1544 |
|
1545 |
+
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:59
|
1546 |
+
/* Translators: Adds a line break. */
|
1547 |
+
__( 'Upgrade to Pro to unlock addons and other great features.', 'google-analytics-dashboard-for-wp' ),
|
1548 |
|
1549 |
+
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:60
|
1550 |
+
__( 'As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!', 'google-analytics-dashboard-for-wp' ),
|
1551 |
+
|
1552 |
+
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:85
|
1553 |
+
__( 'Refreshing Addons', 'google-analytics-dashboard-for-wp' ),
|
1554 |
+
|
1555 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:53
|
1556 |
+
__( 'Recommended Addons', 'google-analytics-dashboard-for-wp' ),
|
1557 |
+
|
1558 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:55
|
1559 |
+
/* Translators: Add a link to upgrade and make the text green. */
|
1560 |
+
__( '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!', 'google-analytics-dashboard-for-wp' ),
|
1561 |
+
|
1562 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:57
|
1563 |
+
__( 'Upgrade to PRO Now', 'google-analytics-dashboard-for-wp' ),
|
1564 |
+
|
1565 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:61
|
1566 |
+
__( 'See who’s viewing and submitting your forms, so you can increase your conversion rate.', 'google-analytics-dashboard-for-wp' ),
|
1567 |
+
|
1568 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:63
|
1569 |
+
__( 'See All Your Important Store Metrics in One Place.', 'google-analytics-dashboard-for-wp' ),
|
1570 |
+
|
1571 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:64
|
1572 |
+
__( '... and more:', 'google-analytics-dashboard-for-wp' ),
|
1573 |
+
|
1574 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:68
|
1575 |
+
__( 'Dimensions- Track authors, categories, trags, searches, users and more.', 'google-analytics-dashboard-for-wp' ),
|
1576 |
+
|
1577 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:72
|
1578 |
+
__( 'EU Compliance- Improve compliance with GDPR and other privacy regulations.', 'google-analytics-dashboard-for-wp' ),
|
1579 |
+
|
1580 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:76
|
1581 |
+
__( 'AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages.', 'google-analytics-dashboard-for-wp' ),
|
1582 |
+
|
1583 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:80
|
1584 |
+
__( 'Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click.', 'google-analytics-dashboard-for-wp' ),
|
1585 |
+
|
1586 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:84
|
1587 |
+
__( 'eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores.', 'google-analytics-dashboard-for-wp' ),
|
1588 |
+
|
1589 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:88
|
1590 |
+
__( 'Google Optimize- Easily enable Google Optimize on your WordPress site.', 'google-analytics-dashboard-for-wp' ),
|
1591 |
|
1592 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:92
|
1593 |
+
__( 'Forms- Enable tracking of your form views, submissions and conversion rates.', 'google-analytics-dashboard-for-wp' ),
|
1594 |
+
|
1595 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:96
|
1596 |
+
__( 'Ads- See who’s clicking on your Google Adsense banner ads.', 'google-analytics-dashboard-for-wp' ),
|
1597 |
+
|
1598 |
+
// Reference: src/modules/auth/api/index.js:119
|
1599 |
/* Translators: Error status and error text. */
|
1600 |
+
__( 'Can\'t deauthenticate. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1601 |
|
1602 |
// Reference: src/modules/wizard-onboarding/api/index.js:22
|
1603 |
__( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
|
1604 |
|
1605 |
+
// Reference: src/modules/auth/api/index.js:146
|
1606 |
/* Translators: Error status and error text. */
|
1607 |
+
__( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1608 |
|
1609 |
+
// Reference: src/modules/auth/api/index.js:150
|
1610 |
+
__( 'You appear to be offline. Settings not saved.', 'google-analytics-dashboard-for-wp' ),
|
1611 |
|
1612 |
+
// Reference: src/modules/auth/api/index.js:17
|
1613 |
/* Translators: Error status and error text. */
|
1614 |
+
__( 'Can\'t load authentication details. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1615 |
|
1616 |
+
// Reference: src/modules/auth/api/index.js:42
|
1617 |
/* Translators: Error status and error text. */
|
1618 |
+
__( 'Can\'t authenticate. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
|
|
1619 |
|
1620 |
+
// Reference: src/modules/auth/api/index.js:67
|
1621 |
+
/* Translators: Error status and error text. */
|
1622 |
+
__( 'Can\'t reauthenticate. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1623 |
|
1624 |
+
// Reference: src/modules/auth/api/index.js:90
|
1625 |
+
/* Translators: Error status and error text. */
|
1626 |
+
__( 'Can\'t verify credentials. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1627 |
|
1628 |
+
// Reference: src/modules/frontend/components/FrontendInfoboxChange.vue:29
|
1629 |
+
/* Translators: Replaced with the number of days */
|
1630 |
+
__( 'vs. Previous Day', 'google-analytics-dashboard-for-wp' ),
|
1631 |
|
1632 |
+
// Reference: src/modules/frontend/components/FrontendInfoboxChange.vue:46
|
1633 |
+
__( 'No change', 'google-analytics-dashboard-for-wp' ),
|
1634 |
|
1635 |
// Reference: src/modules/addons/api/index.js:103
|
1636 |
__( 'You appear to be offline. WPForms not installed.', 'google-analytics-dashboard-for-wp' ),
|
1649 |
// Reference: src/modules/addons/api/index.js:161
|
1650 |
__( 'You appear to be offline. Addon not deactivated.', 'google-analytics-dashboard-for-wp' ),
|
1651 |
|
1652 |
+
// Reference: src/modules/addons/api/index.js:191
|
1653 |
/* Translators: Error status and error text. */
|
1654 |
__( 'Can\'t install plugin. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1655 |
|
1656 |
+
// Reference: src/modules/addons/api/index.js:195
|
1657 |
__( 'You appear to be offline. Plugin not installed.', 'google-analytics-dashboard-for-wp' ),
|
1658 |
|
1659 |
// Reference: src/modules/addons/api/index.js:64
|
1667 |
/* Translators: Error status and error text. */
|
1668 |
__( 'Can\'t install WPForms. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1669 |
|
1670 |
+
// Reference: src/modules/license/api/index.js:118
|
1671 |
+
/* Translators: Error status and error text. */
|
1672 |
+
__( 'Can\'t deactivate the license. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1673 |
|
1674 |
+
// Reference: src/modules/license/api/index.js:145
|
1675 |
+
/* Translators: Error status and error text. */
|
1676 |
+
__( 'Can\'t upgrade to PRO please try again. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1677 |
|
1678 |
+
// Reference: src/modules/license/api/index.js:18
|
1679 |
+
/* Translators: Error status and error text. */
|
1680 |
+
__( 'Can\'t load license details. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1681 |
|
1682 |
+
// Reference: src/modules/license/api/index.js:24
|
1683 |
+
__( 'Error loading license details', 'google-analytics-dashboard-for-wp' ),
|
1684 |
|
1685 |
+
// Reference: src/modules/license/api/index.js:57
|
1686 |
+
/* Translators: Error status and error text. */
|
1687 |
+
__( 'Can\'t verify the license. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1688 |
|
1689 |
+
// Reference: src/modules/license/api/index.js:82
|
1690 |
+
/* Translators: Error status and error text. */
|
1691 |
+
__( 'Can\'t validate the license. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1692 |
|
1693 |
+
// Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:21
|
1694 |
+
/* Translators: Make text green. */
|
1695 |
+
__( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-dashboard-for-wp' ),
|
1696 |
|
1697 |
+
// Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:105
|
1698 |
+
__( 'Network Active', 'google-analytics-dashboard-for-wp' ),
|
1699 |
|
1700 |
+
// Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:105
|
1701 |
+
__( 'Active', 'google-analytics-dashboard-for-wp' ),
|
1702 |
|
1703 |
+
// Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:107
|
1704 |
+
__( 'Inactive', 'google-analytics-dashboard-for-wp' ),
|
1705 |
|
1706 |
+
// Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:45
|
1707 |
+
/* Translators: Placeholder for the addon status (installed, active, etc). */
|
1708 |
+
__( 'Status: %s', 'google-analytics-dashboard-for-wp' ),
|
1709 |
|
1710 |
+
// Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:99
|
1711 |
+
__( 'Not Installed', 'google-analytics-dashboard-for-wp' ),
|
1712 |
|
1713 |
+
// Reference: src/modules/settings/components/input/SettingsInputSelect.vue:62
|
1714 |
+
__( 'No options available', 'google-analytics-dashboard-for-wp' ),
|
|
|
1715 |
|
1716 |
+
// Reference: src/modules/settings/components/input/SettingsInputText.vue:42
|
1717 |
+
__( 'Reset to default', 'google-analytics-dashboard-for-wp' ),
|
1718 |
|
1719 |
+
// Reference: src/modules/settings/components/input/SettingsInputText.vue:43
|
1720 |
+
__( 'The value entered does not match the required format', 'google-analytics-dashboard-for-wp' ),
|
1721 |
|
1722 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:17
|
1723 |
__( 'Help Us Improve', 'google-analytics-dashboard-for-wp' ),
|
1729 |
/* Translators: Adds a link to the documentation. */
|
1730 |
__( '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' ),
|
1731 |
|
1732 |
+
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:171
|
1733 |
+
/* Translators: The name of the field that is throwing a validation error. */
|
1734 |
+
__( '%s can\'t be empty.', 'google-analytics-dashboard-for-wp' ),
|
1735 |
|
1736 |
+
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:192
|
1737 |
+
__( 'Duplicate values are not allowed.', 'google-analytics-dashboard-for-wp' ),
|
|
|
1738 |
|
1739 |
+
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:63
|
1740 |
+
__( 'Add Another Link Path', 'google-analytics-dashboard-for-wp' ),
|
|
|
1741 |
|
1742 |
+
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:64
|
1743 |
+
__( 'Remove row', 'google-analytics-dashboard-for-wp' ),
|
1744 |
|
1745 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:30
|
1746 |
+
__( 'Search Console Report', 'google-analytics-dashboard-for-wp' ),
|
1747 |
|
1748 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:32
|
1749 |
+
__( 'See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more.', 'google-analytics-dashboard-for-wp' ),
|
1750 |
|
1751 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:39
|
1752 |
+
__( 'See Your Top Google Search Terms and Optimize Content', 'google-analytics-dashboard-for-wp' ),
|
1753 |
|
1754 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:43
|
1755 |
+
__( 'See The Number of Clicks and Track Interests', 'google-analytics-dashboard-for-wp' ),
|
1756 |
|
1757 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:47
|
1758 |
+
__( 'See The Click-Through-Ratio and Improve SEO', 'google-analytics-dashboard-for-wp' ),
|
1759 |
|
1760 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:51
|
1761 |
+
__( 'See The Average Results Position and Focus on what works.', 'google-analytics-dashboard-for-wp' ),
|
1762 |
|
1763 |
+
// Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:68
|
1764 |
+
__( 'Show Overview Reports', 'google-analytics-dashboard-for-wp' ),
|
1765 |
|
1766 |
+
// Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:69
|
1767 |
+
__( 'Show Publishers Reports', 'google-analytics-dashboard-for-wp' ),
|
1768 |
|
1769 |
+
// Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:70
|
1770 |
+
__( 'Show eCommerce Reports', 'google-analytics-dashboard-for-wp' ),
|
1771 |
|
1772 |
+
// Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:72
|
1773 |
+
__( 'Available in PRO version', 'google-analytics-dashboard-for-wp' ),
|
1774 |
|
1775 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:30
|
1776 |
+
__( 'Real-Time Report', 'google-analytics-dashboard-for-wp' ),
|
1777 |
|
1778 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:32
|
1779 |
+
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
1780 |
|
1781 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:34
|
1782 |
+
/* Translators: add link to blog. */
|
1783 |
+
__( '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' ),
|
1784 |
|
1785 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:41
|
1786 |
+
__( 'See Your Active Visitors and Track Their Behaviour to Optimize', 'google-analytics-dashboard-for-wp' ),
|
1787 |
|
1788 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:45
|
1789 |
+
__( 'See Your Top Pages Immediately After Making Changes', 'google-analytics-dashboard-for-wp' ),
|
1790 |
|
1791 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:49
|
1792 |
+
__( 'See Your Top Referral Sources and Adapt Faster', 'google-analytics-dashboard-for-wp' ),
|
1793 |
|
1794 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:53
|
1795 |
+
__( 'See Your Traffic Demographics', 'google-analytics-dashboard-for-wp' ),
|
1796 |
|
1797 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:57
|
1798 |
+
__( 'Get Fresh Reports Data Every 60 Seconds', 'google-analytics-dashboard-for-wp' ),
|
1799 |
|
1800 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:61
|
1801 |
+
__( 'See Where Your Visitors are Connecting From (country & city)', 'google-analytics-dashboard-for-wp' ),
|
1802 |
|
1803 |
+
// Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
|
1804 |
+
__( 'Show in widget mode', 'google-analytics-dashboard-for-wp' ),
|
1805 |
|
1806 |
+
// Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
|
1807 |
+
__( 'Show in full-width mode', 'google-analytics-dashboard-for-wp' ),
|
1808 |
|
1809 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:30
|
1810 |
+
__( 'Custom Dimensions Report', 'google-analytics-dashboard-for-wp' ),
|
1811 |
|
1812 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:31
|
1813 |
+
__( 'Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters', 'google-analytics-dashboard-for-wp' ),
|
1814 |
|
1815 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:32
|
1816 |
+
__( 'The Dimensions report allows you to easily see what\'s working right inside your WordPress dashboard.', 'google-analytics-dashboard-for-wp' ),
|
1817 |
|
1818 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:39
|
1819 |
+
__( 'Author tracking to see which author’s posts generate the most traffic', 'google-analytics-dashboard-for-wp' ),
|
|
|
1820 |
|
1821 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:43
|
1822 |
+
__( 'Post Type tracking to see which WordPress post types perform better', 'google-analytics-dashboard-for-wp' ),
|
1823 |
|
1824 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:47
|
1825 |
+
__( 'Category tracking to see which sections of your sites are the most popular', 'google-analytics-dashboard-for-wp' ),
|
|
|
1826 |
|
1827 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:51
|
1828 |
+
__( 'SEO score tracking to see which blog SEO scores are the most popular', 'google-analytics-dashboard-for-wp' ),
|
1829 |
|
1830 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:55
|
1831 |
+
__( 'Focus Keyword tracking to see which of your content is doing well in search engines.', 'google-analytics-dashboard-for-wp' ),
|
1832 |
|
1833 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:59
|
1834 |
+
__( 'Tag tracking to determine which topics are the most engaging to for your website visitors.', 'google-analytics-dashboard-for-wp' ),
|
1835 |
+
|
1836 |
+
// Reference: src/modules/wizard-onboarding/api/index.js:18
|
1837 |
+
/* Translators: Error status and error text. */
|
1838 |
+
__( 'Can\'t load errors. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1839 |
+
|
1840 |
+
// Reference: src/modules/settings/api/index.js:19
|
1841 |
+
/* Translators: Error status and error text. */
|
1842 |
+
__( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1843 |
+
|
1844 |
+
// Reference: src/modules/settings/api/index.js:54
|
1845 |
+
__( 'Network error encountered. Settings not saved.', 'google-analytics-dashboard-for-wp' ),
|
1846 |
+
|
1847 |
+
// Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewDatePicker-Lite.vue:50
|
1848 |
+
// Reference: src/modules/widget/components/settings/WidgetSettingsIntervalUpsell.vue:29
|
1849 |
+
/* Translators: Placeholder adds a line break. */
|
1850 |
+
__( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-dashboard-for-wp' ),
|
1851 |
+
|
1852 |
+
// Reference: src/modules/widget/components/WidgetNoticeCompact.vue:15
|
1853 |
+
__( 'Check out the newly added classic mode', 'google-analytics-dashboard-for-wp' ),
|
1854 |
+
|
1855 |
+
// Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:32
|
1856 |
+
__( 'It\'s easy to double your traffic and sales when you know exactly how people find and use your website. ExactMetrics Pro shows you the stats that matter!', 'google-analytics-dashboard-for-wp' ),
|
1857 |
+
|
1858 |
+
// Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:33
|
1859 |
+
__( 'To unlock more features consider upgrading to PRO.', 'google-analytics-dashboard-for-wp' ),
|
1860 |
+
|
1861 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:76
|
1862 |
+
__( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
|
1863 |
+
|
1864 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:78
|
1865 |
+
__( 'See all features', 'google-analytics-dashboard-for-wp' ),
|
1866 |
+
|
1867 |
+
// Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:38
|
1868 |
+
__( 'Upgrade to', 'google-analytics-dashboard-for-wp' ),
|
1869 |
+
|
1870 |
+
// Reference: src/plugins/exactmetrics-widget-helper-plugin.js:72
|
1871 |
+
__( 'Last 30 days', 'google-analytics-dashboard-for-wp' ),
|
1872 |
+
|
1873 |
+
// Reference: src/modules/widget/components/WidgetReportsLink.vue:17
|
1874 |
+
__( 'See All Reports', 'google-analytics-dashboard-for-wp' ),
|
1875 |
+
|
1876 |
+
// Reference: src/modules/widget/components/WidgetReportsLink.vue:18
|
1877 |
+
__( 'Go to the Analytics Dashboard', 'google-analytics-dashboard-for-wp' ),
|
1878 |
+
|
1879 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:30
|
1880 |
+
/* Translators: Add line break. */
|
1881 |
+
__( 'See All Your Important Store%s Metrics in One Place', 'google-analytics-dashboard-for-wp' ),
|
1882 |
+
|
1883 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:31
|
1884 |
+
__( 'Get an Answer to All Your Top Ecommerce Questions From a Single Report', 'google-analytics-dashboard-for-wp' ),
|
1885 |
+
|
1886 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:58
|
1887 |
+
__( 'See your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
|
1888 |
|
1889 |
// Reference: src/components/TheAppFTPForm.vue:100
|
1890 |
__( 'Proceed', 'google-analytics-dashboard-for-wp' ),
|
1913 |
// Reference: src/components/TheAppFTPForm.vue:99
|
1914 |
__( 'Cancel', 'google-analytics-dashboard-for-wp' ),
|
1915 |
|
1916 |
+
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputFbia-Lite.vue:25
|
1917 |
+
__( 'Facebook Instant Articles', 'google-analytics-dashboard-for-wp' ),
|
1918 |
|
1919 |
+
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputFbia-Lite.vue:26
|
1920 |
+
__( 'Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro.', 'google-analytics-dashboard-for-wp' ),
|
1921 |
|
1922 |
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAmp-Lite.vue:25
|
1923 |
__( 'Google AMP', 'google-analytics-dashboard-for-wp' ),
|
1925 |
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAmp-Lite.vue:26
|
1926 |
__( 'Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking.', 'google-analytics-dashboard-for-wp' ),
|
1927 |
|
1928 |
+
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAds-Lite.vue:25
|
1929 |
+
__( 'Ads Tracking', 'google-analytics-dashboard-for-wp' ),
|
1930 |
|
1931 |
+
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAds-Lite.vue:26
|
1932 |
+
__( 'Add Ads tracking to see who\'s clicking on your Google Ads, so you can increase your revenue.', 'google-analytics-dashboard-for-wp' ),
|
1933 |
|
1934 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:112
|
1935 |
+
/* Translators: Adds link to the account area to retreive license key. */
|
1936 |
+
__( 'Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
|
1937 |
|
1938 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:36
|
1939 |
+
__( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
|
1940 |
+
|
1941 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:37
|
1942 |
+
__( 'Verify', 'google-analytics-dashboard-for-wp' ),
|
1943 |
+
|
1944 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:79
|
1945 |
+
__( 'Setup Wizard', 'google-analytics-dashboard-for-wp' ),
|
1946 |
+
|
1947 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:80
|
1948 |
+
__( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-dashboard-for-wp' ),
|
1949 |
|
1950 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:81
|
1951 |
+
__( 'Relaunch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
|
1952 |
|
1953 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:125
|
1954 |
+
__( 'Connect ExactMetrics to Start Tracking Your Data', 'google-analytics-dashboard-for-wp' ),
|
1955 |
|
1956 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:73
|
1957 |
+
__( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
|
1958 |
|
1959 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:75
|
1960 |
+
/* Translators: Adds link to upgrade. */
|
1961 |
+
__( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
|
1962 |
|
1963 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:135
|
1964 |
+
__( 'Complete Upgrade', 'google-analytics-dashboard-for-wp' ),
|
1965 |
|
1966 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:136
|
1967 |
+
__( 'Upgrade to Pro Version!', 'google-analytics-dashboard-for-wp' ),
|
1968 |
|
1969 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:138
|
1970 |
+
/* Translators: Make text bold. */
|
1971 |
+
__( '%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process.', 'google-analytics-dashboard-for-wp' ),
|
1972 |
|
1973 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:69
|
1974 |
+
__( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
|
1975 |
|
1976 |
+
// Reference: src/modules/reports/components/exactmetrics-ReportsPagination.vue:25
|
1977 |
+
__( 'Show', 'google-analytics-dashboard-for-wp' ),
|
1978 |
|
1979 |
+
// Reference: src/modules/reports/components/exactmetrics-ReportsPagination.vue:27
|
1980 |
+
/* Translators: The number of results. */
|
1981 |
+
__( '%s results', 'google-analytics-dashboard-for-wp' ),
|
1982 |
|
1983 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:46
|
1984 |
+
__( 'Connect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
|
|
1985 |
|
1986 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:48
|
1987 |
+
__( 'Website profile', 'google-analytics-dashboard-for-wp' ),
|
1988 |
|
1989 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:49
|
1990 |
+
__( 'Active profile', 'google-analytics-dashboard-for-wp' ),
|
1991 |
|
1992 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:50
|
1993 |
+
__( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-dashboard-for-wp' ),
|
1994 |
|
1995 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:51
|
1996 |
+
__( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-dashboard-for-wp' ),
|
|
|
1997 |
|
1998 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:52
|
1999 |
+
__( 'Skip and Keep Connection', 'google-analytics-dashboard-for-wp' ),
|
2000 |
|
2001 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:79
|
2002 |
+
__( 'Authenticating', 'google-analytics-dashboard-for-wp' ),
|
|
|
2003 |
|
2004 |
+
// Reference: src/modules/addons/components/AddonButton.vue:31
|
2005 |
+
__( 'Activating...', 'google-analytics-dashboard-for-wp' ),
|
|
|
2006 |
|
2007 |
+
// Reference: src/modules/addons/components/AddonButton.vue:35
|
2008 |
+
__( 'Deactivating...', 'google-analytics-dashboard-for-wp' ),
|
|
|
2009 |
|
2010 |
+
// Reference: src/modules/addons/components/AddonButton.vue:43
|
2011 |
+
__( 'Deactivate', 'google-analytics-dashboard-for-wp' ),
|
2012 |
|
2013 |
// Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputScroll-Lite.vue:20
|
2014 |
__( 'Scroll Tracking', 'google-analytics-dashboard-for-wp' ),
|
2016 |
// Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputScroll-Lite.vue:21
|
2017 |
__( 'Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site.', 'google-analytics-dashboard-for-wp' ),
|
2018 |
|
2019 |
+
// Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputEUCompliance-Lite.vue:22
|
2020 |
+
__( 'The EU Compliance addon allows you to improve compliance with GDPR
|
2021 |
+
and other privacy regulations.', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022 |
|
2023 |
+
// Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputEUCompliance-Lite.vue:23
|
2024 |
+
__( 'EU Compliance', 'google-analytics-dashboard-for-wp' ),
|
2025 |
|
2026 |
+
// Reference: src/modules/widget/components/settings/exactmetrics-WidgetSettingsCompact.vue:16
|
2027 |
+
__( 'Classic mode', 'google-analytics-dashboard-for-wp' ),
|
|
|
2028 |
|
2029 |
// Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:14
|
2030 |
__( 'Hide dashboard widget', 'google-analytics-dashboard-for-wp' ),
|
2044 |
// Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:41
|
2045 |
__( 'You can re-enable the ExactMetrics widget at any time using the "Screen Options" menu on the top right of this page', 'google-analytics-dashboard-for-wp' ),
|
2046 |
|
2047 |
+
// Reference: src/modules/settings/components/network/exactmetrics-SettingsInputLicenseNetwork-Lite.vue:21
|
2048 |
+
/* Translators: Make text bold. */
|
2049 |
+
__( 'You\'re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
|
2050 |
|
2051 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:158
|
2052 |
+
__( 'Verifying Credentials', 'google-analytics-dashboard-for-wp' ),
|
2053 |
|
2054 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:175
|
2055 |
+
__( 'Your site is connected to ExactMetrics!', 'google-analytics-dashboard-for-wp' ),
|
2056 |
|
2057 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:197
|
2058 |
+
__( 'Deauthenticating', 'google-analytics-dashboard-for-wp' ),
|
2059 |
|
2060 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:217
|
2061 |
+
__( 'You\'ve disconnected your site from ExactMetrics. Your site is no longer being tracked by Google Analytics and you won\'t see reports anymore.', 'google-analytics-dashboard-for-wp' ),
|
2062 |
|
2063 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:55
|
2064 |
+
__( 'Connect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
2065 |
|
2066 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:56
|
2067 |
+
__( 'Verify Credentials', 'google-analytics-dashboard-for-wp' ),
|
2068 |
|
2069 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:57
|
2070 |
+
__( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
2071 |
|
2072 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:58
|
2073 |
+
__( 'Website Profile', 'google-analytics-dashboard-for-wp' ),
|
2074 |
|
2075 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:59
|
2076 |
+
__( 'Active Profile', 'google-analytics-dashboard-for-wp' ),
|
|
|
2077 |
|
2078 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:70
|
2079 |
+
__( 'Force Deauthenticate', 'google-analytics-dashboard-for-wp' ),
|
2080 |
|
2081 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:70
|
2082 |
+
__( 'Disconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
2083 |
|
2084 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPerformance-Lite.vue:21
|
2085 |
+
__( 'Performance', 'google-analytics-dashboard-for-wp' ),
|
2086 |
|
2087 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPerformance-Lite.vue:22
|
2088 |
+
__( 'Adjust the sample rate so you don\'t exceed Google Analytics\' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization.', 'google-analytics-dashboard-for-wp' ),
|
2089 |
|
2090 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:36
|
2091 |
+
__( 'Usage Tracking', 'google-analytics-dashboard-for-wp' ),
|
|
|
2092 |
|
2093 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:37
|
2094 |
+
__( 'By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test.', 'google-analytics-dashboard-for-wp' ),
|
2095 |
|
2096 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:38
|
2097 |
+
__( 'Allow usage tracking', 'google-analytics-dashboard-for-wp' ),
|
2098 |
|
2099 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:40
|
2100 |
+
/* Translators: Adds a link to the documentation. */
|
2101 |
+
__( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ),
|
2102 |
|
2103 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:29
|
2104 |
+
/* Translators: Makes text bold and adds smiley. */
|
2105 |
+
__( 'You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s', 'google-analytics-dashboard-for-wp' ),
|
2106 |
+
|
2107 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:31
|
2108 |
+
/* Translators: Makes text green. */
|
2109 |
+
__( 'As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
|
2110 |
+
|
2111 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:32
|
2112 |
+
__( 'Unlock All Features and Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
|
2113 |
|
2114 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputEmailSummaries-Lite.vue:16
|
2115 |
__( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
|
2116 |
|
2117 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:65
|
2118 |
+
/* Translators: Line break. */
|
2119 |
+
__( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
|
2120 |
|
2121 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:68
|
2122 |
+
/* Translators: Line break. */
|
2123 |
+
__( 'Unique %s Pageviews', 'google-analytics-dashboard-for-wp' ),
|
2124 |
|
2125 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:72
|
2126 |
+
__( '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' ),
|
2127 |
|
2128 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:88
|
2129 |
+
__( 'Email Summaries', 'google-analytics-dashboard-for-wp' ),
|
2130 |
|
2131 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:89
|
2132 |
+
__( 'Export PDF Reports', 'google-analytics-dashboard-for-wp' ),
|
2133 |
|
2134 |
+
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:54
|
2135 |
+
__( 'You can add maximum 5 items.', 'google-analytics-dashboard-for-wp' ),
|
|
|
2136 |
|
2137 |
+
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:58
|
2138 |
+
__( 'At least 0 item required.', 'google-analytics-dashboard-for-wp' ),
|
|
|
2139 |
|
2140 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputEmailSummaries-Lite.vue:17
|
2141 |
+
__( 'Our email summaries feature sends a weekly summary of the most important site analytics information.', 'google-analytics-dashboard-for-wp' ),
|
2142 |
|
2143 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPdfReports-Lite.vue:17
|
2144 |
+
__( 'Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone.', 'google-analytics-dashboard-for-wp' ),
|
|
|
2145 |
|
2146 |
+
// Reference: src/plugins/exactmetrics-widget-helper-plugin.js:42
|
2147 |
+
__( 'Today', 'google-analytics-dashboard-for-wp' ),
|
|
|
2148 |
|
2149 |
+
// Reference: src/plugins/exactmetrics-widget-helper-plugin.js:48
|
2150 |
+
__( 'Yesterday', 'google-analytics-dashboard-for-wp' ),
|
|
|
2151 |
|
2152 |
+
// Reference: src/plugins/exactmetrics-widget-helper-plugin.js:54
|
2153 |
+
__( 'Last Week', 'google-analytics-dashboard-for-wp' ),
|
|
|
2154 |
|
2155 |
+
// Reference: src/plugins/exactmetrics-widget-helper-plugin.js:60
|
2156 |
+
__( 'Last Month', 'google-analytics-dashboard-for-wp' ),
|
2157 |
|
2158 |
+
// Reference: src/plugins/exactmetrics-widget-helper-plugin.js:66
|
2159 |
+
__( 'Last 7 days', 'google-analytics-dashboard-for-wp' ),
|
|
|
2160 |
|
2161 |
+
// Reference: src/modules/settings/routes/site.js:103
|
2162 |
+
__( 'PrettyLinks Integration', 'google-analytics-dashboard-for-wp' ),
|
2163 |
|
2164 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:83
|
2165 |
+
__( 'Make your ExactMetrics campaign links prettier with Pretty Links!', 'google-analytics-dashboard-for-wp' ),
|
2166 |
|
2167 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:84
|
2168 |
+
__( 'Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links.', 'google-analytics-dashboard-for-wp' ),
|
2169 |
|
2170 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:85
|
2171 |
+
__( 'Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!', 'google-analytics-dashboard-for-wp' ),
|
2172 |
|
2173 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:86
|
2174 |
+
__( 'Over 200,000 websites use Pretty Links!', 'google-analytics-dashboard-for-wp' ),
|
2175 |
|
2176 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:87
|
2177 |
+
__( 'Install Pretty Links', 'google-analytics-dashboard-for-wp' ),
|
2178 |
|
2179 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:88
|
2180 |
+
__( 'Pretty Links Installed & Activated', 'google-analytics-dashboard-for-wp' ),
|
2181 |
|
2182 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:191
|
2183 |
+
__( 'Download Pretty Links', 'google-analytics-dashboard-for-wp' ),
|
2184 |
|
2185 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:90
|
2186 |
+
__( 'Install Pretty Links from the WordPress.org plugin repository.', 'google-analytics-dashboard-for-wp' ),
|
2187 |
|
2188 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:91
|
2189 |
+
__( 'Activate Pretty Links', 'google-analytics-dashboard-for-wp' ),
|
2190 |
|
2191 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:92
|
2192 |
+
__( 'Activating Pretty Links', 'google-analytics-dashboard-for-wp' ),
|
2193 |
|
2194 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:93
|
2195 |
+
__( 'Create New Pretty Link', 'google-analytics-dashboard-for-wp' ),
|
|
|
2196 |
|
2197 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:94
|
2198 |
+
__( 'Create a New Pretty Link', 'google-analytics-dashboard-for-wp' ),
|
2199 |
|
2200 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:95
|
2201 |
+
__( 'Grab your campaign link and paste it into the Target URL field.', 'google-analytics-dashboard-for-wp' ),
|
2202 |
|
2203 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:188
|
2204 |
+
__( 'Copy to Pretty Links', 'google-analytics-dashboard-for-wp' ),
|
2205 |
|
2206 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:189
|
2207 |
+
__( 'Make your campaign links prettier!', 'google-analytics-dashboard-for-wp' ),
|
2208 |
|
2209 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:190
|
2210 |
+
__( 'Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links.', 'google-analytics-dashboard-for-wp' ),
|
2211 |
|
2212 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:82
|
2213 |
+
/* Translators: Add links to documentation. */
|
2214 |
+
__( 'Adds the Enhanced Link Attribution (retain link) code to improve the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs.', 'google-analytics-dashboard-for-wp' ),
|
2215 |
|
2216 |
+
// Reference: src/modules/notifications/components/NotificationsIndicator.vue:19
|
2217 |
+
__( 'View notifications', 'google-analytics-dashboard-for-wp' ),
|
2218 |
|
2219 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputLicenseSite.vue:118
|
2220 |
+
__( 'Verifying License', 'google-analytics-dashboard-for-wp' ),
|
2221 |
|
2222 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputLicenseSite.vue:143
|
2223 |
+
__( 'There was an error verifying your license', 'google-analytics-dashboard-for-wp' ),
|
2224 |
|
2225 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputLicenseSite.vue:157
|
2226 |
+
__( 'Refreshing License', 'google-analytics-dashboard-for-wp' ),
|
2227 |
|
2228 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputLicenseSite.vue:184
|
2229 |
+
__( 'There was an error refreshing your license', 'google-analytics-dashboard-for-wp' ),
|
2230 |
|
2231 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputLicenseSite.vue:198
|
2232 |
+
__( 'Deactivating License', 'google-analytics-dashboard-for-wp' ),
|
|
|
2233 |
|
2234 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputLicenseSite.vue:213
|
2235 |
+
__( 'Success', 'google-analytics-dashboard-for-wp' ),
|
2236 |
|
2237 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputLicenseSite.vue:223
|
2238 |
+
__( 'There was an error deactivating your license', 'google-analytics-dashboard-for-wp' ),
|
2239 |
|
2240 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputLicenseSite.vue:38
|
2241 |
+
__( 'Your license key has been set at the network level of your WordPress Multisite.', 'google-analytics-dashboard-for-wp' ),
|
2242 |
|
2243 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputLicenseSite.vue:39
|
2244 |
+
__( 'If you would like to use a different license for this subsite, you can enter it below.', 'google-analytics-dashboard-for-wp' ),
|
2245 |
|
2246 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputLicenseSite.vue:40
|
2247 |
+
__( 'No license key activated on this subsite', 'google-analytics-dashboard-for-wp' ),
|
2248 |
+
|
2249 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputLicenseSite.vue:42
|
2250 |
+
/* Translators: License key type. */
|
2251 |
+
__( 'Your license key type for this site is %s. ', 'google-analytics-dashboard-for-wp' ),
|
2252 |
+
|
2253 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputLicenseSite.vue:43
|
2254 |
+
__( 'Refresh Key', 'google-analytics-dashboard-for-wp' ),
|
2255 |
+
|
2256 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputLicenseSite.vue:44
|
2257 |
+
__( 'Click refresh if your license has been upgraded or the type is incorrect.', 'google-analytics-dashboard-for-wp' ),
|
2258 |
+
|
2259 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputLicenseSite.vue:46
|
2260 |
+
__( 'Change Key', 'google-analytics-dashboard-for-wp' ),
|
2261 |
+
|
2262 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputLicenseSite.vue:47
|
2263 |
+
__( 'Deactivate this license key', 'google-analytics-dashboard-for-wp' ),
|
2264 |
+
|
2265 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputLicenseSite.vue:51
|
2266 |
+
__( 'The license key is used to enable updates for ExactMetrics Pro and addons, as well enable the ability to view reports. Deactivate your license if you want to use it on another WordPress site.', 'google-analytics-dashboard-for-wp' ),
|
2267 |
+
|
2268 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:30
|
2269 |
+
/* Translators: Make text green and add smiley face. */
|
2270 |
+
__( 'You\'re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s', 'google-analytics-dashboard-for-wp' ),
|
2271 |
+
|
2272 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:34
|
2273 |
+
/* Translators: Make text green. */
|
2274 |
+
__( 'As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!', 'google-analytics-dashboard-for-wp' ),
|
2275 |
+
|
2276 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:35
|
2277 |
+
__( 'Unlock PRO Features Now', 'google-analytics-dashboard-for-wp' ),
|
2278 |
+
|
2279 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:39
|
2280 |
+
/* Translators: Add link to retrieve license from account area. */
|
2281 |
+
__( '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' ),
|
2282 |
+
|
2283 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:92
|
2284 |
+
__( 'Activating Pretty Links...', 'google-analytics-dashboard-for-wp' ),
|
2285 |
+
|
2286 |
+
// Reference: src/modules/reports/components/exactmetrics-ReportsPdfExport-Lite.vue:42
|
2287 |
+
__( 'Export PDF Report', 'google-analytics-dashboard-for-wp' ),
|
2288 |
+
|
2289 |
+
// Reference: src/modules/reports/components/exactmetrics-ReportsPdfExport-Lite.vue:50
|
2290 |
+
__( 'You can export PDF reports only in the PRO version.', 'google-analytics-dashboard-for-wp' )
|
2291 |
);
|
2292 |
/* THIS IS THE END OF THE GENERATED FILE */
|
lite/assets/vue/css/chunk-common.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.exactmetrics-dark[data-v-493c7577]{display:block}.exactmetrics-reset-default[data-v-493c7577]{margin-left:5px}.exactmetrics-dark[data-v-2327c40a]{display:block}.exactmetrics-admin-page .exactmetrics-floating-bar{background:#6528f5;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -20px 20px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-floating-bar{margin-top:-10px;padding-right:20px;padding-left:20px}}.exactmetrics-admin-page .exactmetrics-floating-bar>span>span{font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a{text-decoration:underline;color:#fff;font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a:focus,.exactmetrics-admin-page .exactmetrics-floating-bar a:hover{color:#fff;text-decoration:none}.exactmetrics-admin-page .exactmetrics-floating-bar .exactmetrics-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:15px;position:absolute;right:15px;top:50%;margin-top:-10px;opacity:.5;cursor:pointer}.exactmetrics-admin-page .exactmetrics-slide-enter-active,.exactmetrics-admin-page .exactmetrics-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.exactmetrics-admin-page .exactmetrics-slide-enter-to,.exactmetrics-admin-page .exactmetrics-slide-leave{max-height:100px;overflow:hidden}.exactmetrics-admin-page .exactmetrics-slide-enter,.exactmetrics-admin-page .exactmetrics-slide-leave-to{overflow:hidden;max-height:0}.exactmetrics-container[data-v-db2d076c]:after{display:table;clear:both;content:""}.exactmetrics-quick-links{position:fixed;bottom:25px;right:25px;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;width:60px;height:60px;border-radius:50%;background:#6528f5;z-index:1000;padding:5px 10px}.exactmetrics-quick-links.exactmetrics-quick-links-open,.exactmetrics-quick-links:focus,.exactmetrics-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-label{border-radius:50%;background:rgba(0,0,0,0);position:absolute;left:6px;right:2px;top:6px;bottom:2px;padding:6px 6px 6px 8px;display:block;width:44px;outline:none;cursor:pointer;border:none}.exactmetrics-quick-links-open .exactmetrics-quick-links-label .exactmetrics-quick-link-title{opacity:0;pointer-events:none}.exactmetrics-bg-img.exactmetrics-quick-links-mascot{padding-top:100%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;display:block}.exactmetrics-bg-img.exactmetrics-quick-links-mascot:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUUAAABKCAMAAAAbi7YOAAAAn1BMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8Kd3m4AAAANHRSTlMAQN8ggL9g758QMLB5cwNv+5BQz14J9tSPF/HkxgdXSA0B7aqbpCkk2oRouDvLloobEug208uV8wAACFtJREFUeNrs1+1yojAUBuATIEBABVHU+t1aa+u222597//a1hgJKFaFdWY70zw/nCmaCX3nnHxQRX/ePyFZ63sy6km7I2Q6M5NjLa9jFC1sMqp6WuBI71GQUcXk3UPZaN0i41rz7ie0uINcn5FRY0EcBzTrI7c0y+M1Vo8xtP5U9nCrOYIWN/6QcV7qDKENnTkpH7970J7dCRlfm3RHhQz9YtGtFjG0N7M8fm0zRu5XQAfukzdosf9Exil3y2LXTstdO18/HHa7cWze7BUjmpwOuh1Ds1xzKTySWMj5Nn0l4MjxDRm5YIwcD+iMVvIMrbdYkaGIZQxtlKQXe/8TmmeWx71W0T1ddvfYg8ZTMurZcGihibGu+2kfGXMEr++uMYKyIOOsdMWm04R9TM4d00f000ymDed6v/sxpOH4ZdOishdIHv0w818x6onDgEqaPzPFF1TysFizJzuYRb96QK/dMinu9CtlGH1Qxn5/AMZ39VIM+KGQbsnnnNERm3MuqCqbo2PTZc8VWng5p6IVB55FrRQZDll0Sx7A6YgDIKCqfAA+XdbE1abH/dsaAH3xHVJs+1sJKeLUkdUC4J4pOgBUFgLgdNk8jHGV3pTKHGDxHVK0sOWQEqD8v7vYiiqnGHjwEroGa1w2Vu9YFgLsu6WYQGLlH7Qrp0g2E3Qr9gjjlE5JH9Bp1U0xdDPJLVOMIPmlUkRYJcXbawCvOrdZ4yV61cl1Ec/qpuiQdssU24D82z783gM6/zXF9A18H9v9bBwDiPkTKXMLi2+WYgg4HGgflmIEeP81xU2MLinTHpTPjT62D9NbpMjy1k5cKVCPnZDzASPhSoIUEfkdi+935e1zD1vh/gcciBjgCcpwwJc55U/YIOQ87NokCcdpA3Acp0vEdp+unNWW3zjieIx+h5DLVyhKm4/+VziGK71AZvqpDoTdIkXbg8SyRcwS8k1DKCErbBnC8aBY8gEKbHVcZGQBTnE2WxSa3ObYc1QhZjiRIz99SBHZ+aBAj/F3uXY9SAen8rtnnPM2Kd8X1/uWBpr/uruwfGu1hLB0HraFjM5YPdWccooAAnJVMepS3IWb7Gf3oPmnUnSxwwopRshZdvGU0SFtibNCvf7klqQMMaiZoubvdwVpMNBFovIsYjpErXucYqBaVxdjFkUHcPOqb7uMRZacj+RqIUOSC4pK0UIncqNQ5Cm6gEyXMZcDHUHEd41gOwCS6y6COrEUBeP9hjPC421SLIZmqTP9qRR9FHkRcc693Rh1VWZq/kgXo68mCIF2VgpWkN8LWb676EnDfRnbeVPI0HZc2cMiG+gXt7H+VSm2/rZzts2JwkAAzgsQgneCYrVYq6117LVaXzr7/3/bDZc0GxLlkPFjni9VEHQel91NLCkAiY3Fw30skgzdcIx8ESV5jBa5fvcxTRhAzL0anaiLTAor63EV6qnJknbd8S0yTpoWU3OMs4NwSrnVEbayI4oFIBttdgrHO1nE5DOxEiW3wpLWMtBYlHudji4P6q/Q0RLrk5f4HD+I8C2mriymtyGizgUuQ/wF2genbj4B0c32CeCzp0XBNCMMDW0VzWX2HqofsCv9Il5jKhgnSgRVMaoOKwEibhAA3LNIHYtZY0IIQzaixOF9mVxjY84hv/Ai1xf0CiC7W9dNwTKX2qfKtUUcEfsWje8IgxJDL9Oi/JLlWXQvXOr25JjE4wnpyPvaNDPbEhRmynMDT693s6jbw0e0yIgi6WyRqaqpgpFy9RSNdLDIWiwiEcMP24kY/gyJgo9YAdNZ/oLN8obcy2KEeVGVA2z60obFuMWi9qKDMUcpumGsa1Jqk7kWY7RoN08eNIrFDQPZiT3Ded6vsmecH4Viey+LvFmjc/NV48gGddZQ7lrEkNPBWCdHfFFiOh6Hdovy6hQvH6kvugtyBk8VuUQ2hzfS12JKDdLpF2OUmtaXlN5Ffw5lk38DQTZxLKr9jdhmVrqIsJFUcN7BouqxG64y9ZGV4Iw4bDe7+AJMNTse5xnMT30tuiM3PWhRrUyOFRuEsFMY0xuZmoLgjsWx5U0KnR3s7ltaTYosIR53sEit9kdO1LlyJ4EgewFX2TwTl+cY4Be5i0UzCfETkhl24Qj1jx2hRceCWyoibBxB/ZZOS22p3aJOy6z2LSmr32iMjayXMoeD1gGMq/F9oXrvu1jkZhKCmjmdHBpg44eU0rE4asxpcy7tWUZmtVBxKfCoNos6aGsYE1aRG6SpuNAwnBm0Mds3lI+/Ad4e7mUxxoIzMmUlF6CJ7KLCMBKlkxexXfSgaMoehneySOQIj0kacyIpcXiYQTuL8VnPeVfLGcA0Ij1/1WcOPGE1pc5WrKZWxlP2L24yrjcpkliF08/zuN6phAyYKjk+9Sm4fpjqIbq09un2nrGBe4g+Rs15RFI/Zdh1+xLaWe+izyQ/LuZ4J2Uni/3JKCc+Ejf3Pe3tJ+A0k16h9hk+igK6UZS/H8J/O13m9URbWR5iNi/mbPCxQofIy5sKWBJoZygrXskhucTqS5chEugLHYDmQAL9qA5z0EzDjZX9kPkaDL9JoHZCLd471CQ6A+Qj3HKurCwZGIpN9Z9Xbwd2A7QnAc3DowCDyB/IdV5GUzB8h7UPGlRpAQa2fL2mO7Ecro/Bocu+w929jYQ4CGvCXGL5B5DDyWvA7YQIi3D33xXOx7W9HJYkNvJoJ8SwVlYL2RsgX2MrED+tQC0+TiTQwnBVWrbMajD7EpBBGKzctHYliEPlrUi0CneVd6H6mFvpMa8iy+F3WP6lM3xgiVuHhNgXWoJHsQvrvtzI8+81NJmtQndzO+fDHJCnKBSVfmxNepweKxLoy+qrqB3uMhIw/AWFbdSoUycRogAAAABJRU5ErkJggg==);background-size:auto 85%;background-position:0 0}.exactmetrics-quick-links-menu{position:absolute;bottom:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;right:6px;margin-bottom:10px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item{display:block;width:48px;height:48px;background:#6528f5;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:relative;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;margin-bottom:6px;color:#fff;text-decoration:none;text-align:center;font-size:18px;line-height:48px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item:hover{color:#fff;background:#37276a;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade{background-color:#32a27a}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade:hover{background-color:#19865f}.exactmetrics-quick-link-title{position:absolute;right:100%;margin-right:12px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-14px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-files:before{content:"\f028"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-expand:before{content:"\f02d"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-arrow-right:before{content:"\f01d"}.monstericon-amp-icon:before{content:"\f000"}.monstericon-fbia:before{content:"\f001"}.monstericon-google-optimize:before{content:"\f002"}.monstericon-ads:before{content:"\0041"}.monstericon-affiliate:before{content:"\0042"}.monstericon-compatibility:before{content:"\0043"}.monstericon-demographics:before{content:"\0044"}.monstericon-download:before{content:"\0046"}.monstericon-ecommerce:before{content:"\0047"}.monstericon-engagement:before{content:"\0048"}.monstericon-forms:before{content:"\0049"}.monstericon-links:before{content:"\004a"}.monstericon-memberships:before{content:"\004b"}.monstericon-notifications:before{content:"\004c"}.monstericon-performance:before{content:"\004d"}.monstericon-permissions:before{content:"\004e"}.monstericon-reporting:before{content:"\004f"}.monstericon-social:before{content:"\0050"}.monstericon-video:before{content:"\0051"}.monstericon-times:before{content:"\f014"}.monstericon-check:before{content:"\f015"}.monstericon-info:before{content:"\f016"}.monstericon-exclamation-triangle:before{content:"\f017"}.monstericon-user:before{content:"\f018"}.monstericon-eye:before{content:"\f019"}.monstericon-info-circle:before{content:"\f01a"}.monstericon-info-circle-btm:before{content:"\f01c"}.monstericon-chevron-up:before{content:"\f01f"}.monstericon-times-fas:before{content:"\f021"}.monstericon-check-circle:before{content:"\f022"}.monstericon-exclamation-circle:before{content:"\f023"}.monstericon-star:before{content:"\f025"}.monstericon-times-circle-fas:before{content:"\f026"}.monstericon-check-circle-far:before{content:"\f027"}.monstericon-file-alt:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user-far:before{content:"\f02a"}.monstericon-eye-far:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand-alt:before{content:"\f02d"}.monstericon-compress-arrows-alt:before{content:"\f02e"}.monstericon-compress:before{content:"\f02f"}.monstericon-badge-check:before{content:"\f034"}.monstericon-download-em:before{content:"\f035"}.monstericon-globe:before{content:"\f036"}.monstericon-wand-magic:before{content:"\f037"}.monstericon-mouse-pointer:before{content:"\f038"}.monstericon-users:before{content:"\f039"}.monstericon-file-certificate:before{content:"\f03a"}.monstericon-bullseye-arrow:before{content:"\f03b"}.monstericon-cash-register:before{content:"\f03c"}.monstericon-chart-line:before{content:"\f03d"}.monstericon-clock:before{content:"\f03e"}.monstericon-box:before{content:"\f03f"}.monstericon-sack-dollar:before{content:"\f040"}.monstericon-browser:before{content:"\f041"}.monstericon-eye-em:before{content:"\f042"}.monstericon-newspaper:before{content:"\f043"}.monstericon-mobile:before{content:"\f044"}.monstericon-check-em-light:before{content:"\f045"}.monstericon-times-em-lite:before{content:"\f046"}.monstericon-code:before{content:"\f047"}.monstericon-clipboard:before{content:"\f048"}.monstericon-upload:before{content:"\f049"}.monstericon-clone:before{content:"\f04a"}.monstericon-id-card:before{content:"\f04b"}.monstericon-user-friends:before{content:"\f04c"}.monstericon-file-alt-em:before{content:"\f04d"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-comment-alt-check:before{content:"\f04f"}.monstericon-arrow-circle-up:before{content:"\f050"}.monstericon-search-em:before{content:"\f051"}.monstericon-list-ol:before{content:"\f052"}.monstericon-hand-pointer:before{content:"\f053"}.monstericon-folder:before{content:"\f054"}.monstericon-sign-out-em-solid:before{content:"\f055"}.monstericon-external-link-alt:before{content:"\f056"}.monstericon-copy:before{content:"\f057"}.monstericon-sync:before{content:"\f058"}.monstericon-flag:before{content:"\f059"}.monstericon-building:before{content:"\f05a"}.monstericon-chart-bar:before{content:"\f05b"}.monstericon-shopping-bag:before{content:"\f05c"}.monstericon-exchange-alt:before{content:"\f05d"}.monstericon-plus:before{content:"\f05e"}.monstericon-tachometer-alt:before{content:"\f05f"}.monstericon-tag:before{content:"\f060"}.monstericon-check-circle-em:before{content:"\f061"}.monstericon-bullseye:before{content:"\f062"}.monstericon-rocket:before{content:"\f063"}.monstericon-exclamation-square:before{content:"\f064"}.monstericon-trash:before{content:"\f065"}.monstericon-user-em:before{content:"\f066"}.monstericon-unlock:before{content:"\f067"}.monstericon-exclamation-em-solid:before{content:"\f068"}.monstericon-key-em:before{content:"\f069"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-plug-light:before{content:"\f06b"}.monstericon-align-left-regular:before{content:"\f06c"}.monstericon-envelope-solid:before{content:"\f06f"}.monstericon-comment-alt-lines-solid:before{content:"\f06e"}.monstericon-arrow-circle-up-light:before{content:"\f071"}.monstericon-megaphone-solid:before{content:"\f070"}.monstericon-arrow-circle-up-light :before{content:"\f071"}@media (max-width:782px){.exactmetrics-notices-area{margin-left:10px;margin-right:10px}}.exactmetrics-notice .exactmetrics-notice-inner{position:relative;color:#210f59;padding:32px 45px;border:1px solid #f4f3f7;border-bottom:3px solid;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);border-radius:10px;background:#fff;margin-top:40px}.exactmetrics-notice .exactmetrics-notice-inner .notice-title{color:#fff;font-weight:700;display:block;margin:0 0 6px;padding:0;font-size:17px}@media (max-width:782px){.exactmetrics-notice .exactmetrics-notice-inner{padding:10px}}.exactmetrics-notice .exactmetrics-notice-inner .notice-content{padding-left:92px;background:#fff;line-height:1.75;font-size:15px;position:relative}.exactmetrics-notice .exactmetrics-notice-inner .notice-content:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:48px;left:0;position:absolute;top:0;line-height:1}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner{border-bottom-color:#d83638}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner .notice-content:before{content:"\f064";color:#d83638}.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-inner{border-bottom-color:#fa0}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-inner{border-bottom-color:#4d3f7a}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner{border:1px solid #6528f5;border-left-width:3px;color:#777}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner .exactmetrics-button{color:#fff;margin:15px 0 0}.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-inner{border-bottom-color:#32a27a}.exactmetrics-notice .notice-content{margin-right:20px}.exactmetrics-notice .notice-content a{color:#210f59}.exactmetrics-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#e9e7ee;position:relative;float:right}.exactmetrics-notice .dismiss-notice:focus,.exactmetrics-notice .dismiss-notice:hover{color:#210f59}.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-right:-20px;margin-left:auto}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{margin-left:0}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:10px;margin-left:0}}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-button{margin-top:10px;margin-left:0;color:#fff}body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:42px;right:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{border-radius:5px;padding:17px 28px;border:1px solid #f4f3f7;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);min-width:380px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{color:#210f59;font-size:15px;font-weight:700;line-height:1.5;margin-left:32px;margin-top:-3px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{font-size:26px;width:18px;height:18px;line-height:10px;position:absolute;right:14px;top:19px;color:#9087ac}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:27px;height:24px;min-width:27px;margin:0;border:0;color:#9087ac}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;left:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;left:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;left:0}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{top:0;left:0;border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;left:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.exactmetrics_page body.swal2-toast-shown .swal2-container,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}.exactmetrics_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.exactmetrics_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;width:100%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.exactmetrics_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;left:-.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:4em 0 0 4em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;-webkit-transform-origin:0 2em;-ms-transform-origin:0 2em;transform-origin:0 2em;border-radius:0 4em 4em 0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.exactmetrics_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.exactmetrics_page body.swal2-height-auto{height:auto!important}.exactmetrics_page body.swal2-no-backdrop .swal2-shown{top:auto;right:auto;bottom:auto;left:auto;background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;left:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;right:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;left:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{right:0;bottom:0}.exactmetrics_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;right:0;bottom:0;left:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.exactmetrics_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-top-left,.exactmetrics_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-top-end,.exactmetrics_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-center-left,.exactmetrics_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-center-end,.exactmetrics_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-container .swal2-modal{margin:0!important}}.exactmetrics_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.exactmetrics_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.exactmetrics_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;left:0;top:0}.exactmetrics_page .swal2-popup:focus{outline:0}.exactmetrics_page .swal2-popup.swal2-loading{overflow-y:hidden}.exactmetrics_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.exactmetrics_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-right:30px;margin-left:30px}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-left:5px;border-radius:50%;border:3px solid #999;border-right-color:rgba(0,0,0,0);-webkit-box-shadow:1px 1px 1px #fff;box-shadow:1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.exactmetrics_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.exactmetrics_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.exactmetrics_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.exactmetrics_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.exactmetrics_page .swal2-popup .swal2-close{position:absolute;top:0;right:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:0 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.exactmetrics_page .swal2-popup>.swal2-checkbox,.exactmetrics_page .swal2-popup>.swal2-file,.exactmetrics_page .swal2-popup>.swal2-input,.exactmetrics_page .swal2-popup>.swal2-radio,.exactmetrics_page .swal2-popup>.swal2-select,.exactmetrics_page .swal2-popup>.swal2-textarea{display:none}.exactmetrics_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.exactmetrics_page .swal2-popup #swal2-content{text-align:center}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-radio,.exactmetrics_page .swal2-popup .swal2-select,.exactmetrics_page .swal2-popup .swal2-textarea{margin:1em auto}.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics_page .swal2-popup .swal2-file.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-input.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.exactmetrics_page .swal2-popup .swal2-file:focus,.exactmetrics_page .swal2-popup .swal2-input:focus,.exactmetrics_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.exactmetrics_page .swal2-popup .swal2-file::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::placeholder,.exactmetrics_page .swal2-popup .swal2-input::placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-range input{width:80%}.exactmetrics_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.exactmetrics_page .swal2-popup .swal2-range input,.exactmetrics_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.exactmetrics_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.exactmetrics_page .swal2-popup .swal2-input[type=number]{max-width:10em}.exactmetrics_page .swal2-popup .swal2-file{font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.exactmetrics_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-popup .swal2-checkbox label,.exactmetrics_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox input,.exactmetrics_page .swal2-popup .swal2-radio input{margin:0 .4em}.exactmetrics_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@-moz-document url-prefix(){.exactmetrics_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.exactmetrics_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.exactmetrics_page .swal2-icon-text{font-size:3.75em}.exactmetrics_page .swal2-icon.swal2-error{border-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.exactmetrics_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.exactmetrics_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.exactmetrics_page .swal2-icon.swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0 3.75em;-ms-transform-origin:0 3.75em;transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;left:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;left:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);z-index:1}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.875em;width:1.5625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.exactmetrics_page .swal2-progresssteps li{display:inline-block;position:relative}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-left:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-right:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.exactmetrics_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.exactmetrics_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.exactmetrics_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.exactmetrics_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.exactmetrics_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-rtl .swal2-close{right:auto;left:0}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.exactmetrics_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.exactmetrics_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@media print{.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.exactmetrics-tooltip{display:block!important;z-index:10000;max-width:350px}.exactmetrics-tooltip .exactmetrics-tooltip-inner{background:#6528f5;color:#fff;border-radius:5px;padding:16px 20px;font-size:15px;line-height:1.5;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;text-align:center}.exactmetrics-tooltip .exactmetrics-tooltip-inner a{color:#fff;font-weight:700}.exactmetrics-tooltip .exactmetrics-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:8px;border-color:#6528f5;z-index:1}.exactmetrics-tooltip[x-placement^=top]{padding-bottom:8px}.exactmetrics-tooltip[x-placement^=top] .exactmetrics-tooltip-arrow{border-width:8px 8px 0;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;left:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=bottom]{padding-top:8px}.exactmetrics-tooltip[x-placement^=bottom] .exactmetrics-tooltip-arrow{border-width:0 8px 8px;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;left:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=right]{padding-left:8px}.exactmetrics-tooltip[x-placement^=right] .exactmetrics-tooltip-arrow{border-width:8px 8px 8px 0;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 8px);margin-left:0;margin-right:0}.exactmetrics-tooltip[x-placement^=left]{padding-right:8px}.exactmetrics-tooltip[x-placement^=left] .exactmetrics-tooltip-arrow{border-width:8px 0 8px 8px;border-top-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 8px);margin-left:0;margin-right:0}.exactmetrics-tooltip.popover .popover-inner{background:#fff;color:#6528f5;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.exactmetrics-tooltip.popover .popover-arrow{border-color:#fff}.exactmetrics-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.exactmetrics-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}.exactmetrics-roller div{-webkit-animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;-webkit-transform-origin:29px 29px;-ms-transform-origin:29px 29px;transform-origin:29px 29px}.exactmetrics-roller div:after{content:" ";display:block;position:absolute;width:8px;height:8px;border-radius:50%;background:#6528f5;margin:-4px 0 0 -4px}.exactmetrics-roller div:first-child{-webkit-animation-delay:-36ms;animation-delay:-36ms}.exactmetrics-roller div:nth-child(2){-webkit-animation-delay:-72ms;animation-delay:-72ms}.exactmetrics-roller div:nth-child(3){-webkit-animation-delay:-.108s;animation-delay:-.108s}.exactmetrics-roller div:nth-child(4){-webkit-animation-delay:-.144s;animation-delay:-.144s}.exactmetrics-roller div:nth-child(5){-webkit-animation-delay:-.18s;animation-delay:-.18s}.exactmetrics-roller div:nth-child(6){-webkit-animation-delay:-.216s;animation-delay:-.216s}.exactmetrics-roller div:nth-child(7){-webkit-animation-delay:-.252s;animation-delay:-.252s}.exactmetrics-roller div:first-child:after{top:49px;left:44px}.exactmetrics-roller div:nth-child(2):after{top:54px;left:28px}.exactmetrics-roller div:nth-child(3):after{top:48px;left:13px}.exactmetrics-roller div:nth-child(4):after{top:35px;left:5px}.exactmetrics-roller div:nth-child(5):after{top:19px;left:6px}.exactmetrics-roller div:nth-child(6):after{top:8px;left:15px}.exactmetrics-roller div:nth-child(7):after{top:4px;left:29px}@-webkit-keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}body{background:#fff;margin:0}.exactmetrics-admin-page,.exactmetrics-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-left:0}.exactmetrics-highlighted-text{color:#64bfa5;font-weight:700}.exactmetrics-bold{font-weight:700}.exactmetrics-bg-img{width:100%;padding-top:66%;position:relative}.exactmetrics-bg-img:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background-repeat:no-repeat;background-size:contain}.exactmetrics-header{padding:20px;background-color:#210f59;position:relative;z-index:90}.exactmetrics-header .exactmetrics-container{width:100%}@media (max-width:959px){.exactmetrics-header .exactmetrics-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}.exactmetrics-header .exactmetrics-float-right{text-align:center}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right{text-align:right}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{float:right;background:#fff;color:#210f59}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{display:none}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:focus,.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:hover{color:#6528f5;background:#fff}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button.exactmetrics-button-disabled{color:#9087ac}@media (max-width:959px){.exactmetrics-header .exactmetrics-float-right{text-align:right;width:100%}}.exactmetrics-logo-area{float:left;max-width:calc(100vw - 170px)}.exactmetrics-logo-area img{display:block;max-width:100%}@media (max-width:959px){.exactmetrics-logo-area{width:140px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}}@media (max-width:959px){.exactmetrics-header .exactmetrics-container,.exactmetrics-navigation-bar .exactmetrics-container{padding:0;width:100%}}.exactmetrics-navigation-bar{background:rgba(0,0,0,0);display:inline-block;margin-left:-163px}@media (max-width:959px){.exactmetrics-navigation-bar{padding:0;border:0}}@media (max-width:750px){.exactmetrics-navigation-bar{background:none}}.exactmetrics-admin-page{position:relative}.exactmetrics-admin-page .exactmetrics-blocked{position:absolute;top:0;bottom:0;right:0;left:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-header{padding:20px 24px}.exactmetrics-admin-page .exactmetrics-header .exactmetrics-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#210f59}#footer-left .exactmetrics-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#6528f5}#wpfooter{display:none;margin-right:23px;margin-bottom:20px;left:23px;background:rgba(101,40,245,.05);padding:14px 20px;border-radius:5px}#wpfooter a{color:#6528f5}.exactmetrics-container{margin:0 auto;max-width:100%;width:750px}.exactmetrics-admin-page .exactmetrics-navigation-tab-link{text-decoration:none;padding:12px 4px 11px;font-size:15px;color:#fff;display:inline-block;margin-right:20px;line-height:1;outline:none;font-family:Lato,sans-serif;position:relative}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:after{content:"";width:100%;left:0;position:absolute;top:100%;height:2px;border-radius:20px;background:#fff;display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover{border-bottom-color:#fff;color:#fff;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover:after{display:block}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#fff;cursor:default}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-navigation-tab-link{width:100%;padding:20px 0;color:#fff;font-size:16px;border-top:1px solid #4d3f7a;text-align:left}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:first-child{border-top:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:first-child+.exactmetrics-navigation-tab-link{border-top:0}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active{display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus{color:#fff;text-decoration:none}}.exactmetrics-admin-page .exactmetrics-button{background:#6528f5;border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics-admin-page .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-button:hover{background-color:#37276a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;color:#9087ac}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary{background:#e9e7ee;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:hover{background-color:#f4f3f7;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green{background:#32a27a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:hover{background-color:#19865f;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text{background:rgba(0,0,0,0);border:none;color:#6528f5;padding:0;border-radius:0;text-decoration:underline}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]{margin-left:10px;min-width:16px;display:inline-block}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]:first-child{margin-left:0;margin-right:10px}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark{color:#210f59}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:hover{color:#6528f5}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-red{background:#e43462;border-color:#e43462;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-large{font-size:15px;padding:14px 30px 12px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{font-size:20px;padding:23px 67px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl i{margin-left:10px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{padding-left:45px;padding-right:45px}}.exactmetrics-admin-page .exactmetrics-spaced-top{margin-top:20px}.exactmetrics-green-text{color:#32a27a;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-left:-18px}}.exactmetrics-mobile-nav-trigger{color:#fff;font-size:15px;font-weight:500;display:inline-block;border:none;background:#37276a;padding:7px 18px;line-height:1.7;margin:0;border-radius:5px}@media (min-width:960px){.exactmetrics-mobile-nav-trigger{display:none}}.exactmetrics-mobile-nav-trigger i{color:#fff;margin-left:25px;vertical-align:middle}.exactmetrics-mobile-nav-trigger.exactmetrics-mobile-nav-trigger-open{border-radius:5px 5px 0 0}@media (max-width:959px){.exactmetrics-main-navigation{background:#37276a;height:0;overflow:hidden;position:absolute;left:24px;right:24px;text-align:left;border-radius:5px 0 5px 5px}.exactmetrics-main-navigation.exactmetrics-main-navigation-open{padding:17px 40px;height:auto;-webkit-box-shadow:0 40px 30px rgba(33,15,89,.1);box-shadow:0 40px 30px rgba(33,15,89,.1)}}@media (min-width:782px){.exactmetrics_page .exactmetrics-swal{margin-left:160px}.auto-fold .exactmetrics_page .exactmetrics-swal{margin-left:36px}}@media (min-width:961px){.auto-fold .exactmetrics_page .exactmetrics-swal{margin-left:160px}.folded .exactmetrics_page .exactmetrics-swal{margin-left:36px}}.exactmetrics_page .exactmetrics-swal .swal2-footer{border-top:none;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;margin-top:0;font-size:15px}.exactmetrics_page .exactmetrics-swal .swal2-footer a{color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-footer a:focus,.exactmetrics_page .exactmetrics-swal .swal2-footer a:hover{color:#37276a}.exactmetrics-modal{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-modal .exactmetrics-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.exactmetrics-modal .exactmetrics-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.exactmetrics-modal .exactmetrics-modal-inner p{margin-bottom:0}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-modal-buttons{margin-top:50px}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-button{margin:0 10px}.exactmetrics-welcome-overlay{position:fixed;top:0;left:0;right:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(33,15,89,.9)}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%;border-radius:10px;-webkit-box-shadow:0 20px 80px rgba(13,7,36,.5);box-shadow:0 20px 80px rgba(13,7,36,.5)}.exactmetrics-welcome-overlay .exactmetrics-overlay-close{background:none;border:none;position:absolute;top:5px;right:7px;padding:0;color:#777}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content{height:100%}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content iframe{height:100%;width:100%}.swal2-container.exactmetrics-swal-loading{background:#fff;padding:20px;top:112px;height:auto}.swal2-container.exactmetrics-swal-loading.exactmetrics-swal-full-height{top:32px}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal{width:100%;height:100%;border-radius:10px;background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;background-size:cover;-webkit-animation-duration:1ms;animation-duration:1ms}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-icon{visibility:hidden;height:0;padding:0}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-header{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-title{font-size:17px;color:#210f59}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-content{color:#9087ac;margin-top:6px;font-size:15px;line-height:1.75;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-actions button{display:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess{padding:0;background:#f8f6ff}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-icon{visibility:hidden;height:0;width:0;margin:0;padding:0}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal{width:750px;background:none;padding-left:260px;position:relative}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-header{display:block}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-title{font-size:32px;line-height:1.3;color:#210f59;text-align:left}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content{font-size:15px;line-height:1.75;color:#210f59;text-align:left;margin-bottom:20px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content p{font-size:15px;margin:0;font-weight:500}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-actions{margin:0;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled{margin:0;font-size:15px;padding:16px 23px 14px;outline:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled .monstericon-long-arrow-right-light{margin-left:14px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:hover{border:none;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm{background:#32a27a}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:hover{background:#19865f}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-cancel{margin-left:15px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons{position:absolute;left:-35px;top:-15px;width:260px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]{position:absolute;color:#6528f5;opacity:.5;font-size:41px;top:114px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:first-child{font-size:108px;opacity:1;top:-22px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(2){left:35px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-].monstericon-exclamation-em-solid:nth-child(2){left:50px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(3){top:147px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(4){left:185px}.exactmetrics_page .exactmetrics-swal .swal2-title{line-height:1.2}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info{border:none;border-radius:0}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error:before,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f064";font-size:80px;color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-icon-text,.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-x-mark{display:none}.exactmetrics_page .exactmetrics-swal .swal2-styled{border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm{background:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:hover{background-color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel{background:#e9e7ee;color:#37276a}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:hover{background-color:#f4f3f7;color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-popup{border-radius:10px;padding:40px}.exactmetrics-list-check ul{margin:0;list-style:none;padding-left:0}.exactmetrics-list-check li{font-size:15px;margin-top:18px;padding-left:30px;position:relative;color:#fff}.exactmetrics-list-check li:first-child{margin-top:0}.exactmetrics-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f045";font-size:15px;margin-right:10px;color:#fff;position:absolute;left:0;top:0}.exactmetrics-settings-input-select-input .multiselect__tags-wrap{position:relative}.exactmetrics-settings-input-select-input .multiselect__tags-wrap:after{content:attr(data-text);display:inline-block;position:relative;color:#9087ac;bottom:0;background:#fff;border-radius:4px;font-size:14px;vertical-align:top;padding:8px 15px}.exactmetrics-settings-input-select-input .multiselect__placeholder{display:none}.multiselect__content-wrapper{left:30px}
|
1 |
+
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.exactmetrics-dark[data-v-493c7577]{display:block}.exactmetrics-reset-default[data-v-493c7577]{margin-left:5px}.exactmetrics-dark[data-v-2327c40a]{display:block}.exactmetrics-admin-page .exactmetrics-floating-bar{background:#6528f5;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -20px 20px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-floating-bar{margin-top:-10px;padding-right:20px;padding-left:20px}}.exactmetrics-admin-page .exactmetrics-floating-bar>span>span{font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a{text-decoration:underline;color:#fff;font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a:focus,.exactmetrics-admin-page .exactmetrics-floating-bar a:hover{color:#fff;text-decoration:none}.exactmetrics-admin-page .exactmetrics-floating-bar .exactmetrics-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:15px;position:absolute;right:15px;top:50%;margin-top:-10px;opacity:.5;cursor:pointer}.exactmetrics-admin-page .exactmetrics-slide-enter-active,.exactmetrics-admin-page .exactmetrics-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.exactmetrics-admin-page .exactmetrics-slide-enter-to,.exactmetrics-admin-page .exactmetrics-slide-leave{max-height:100px;overflow:hidden}.exactmetrics-admin-page .exactmetrics-slide-enter,.exactmetrics-admin-page .exactmetrics-slide-leave-to{overflow:hidden;max-height:0}.exactmetrics-container[data-v-408df493]:after{display:table;clear:both;content:""}.exactmetrics-quick-links{position:fixed;bottom:25px;right:25px;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;width:60px;height:60px;border-radius:50%;background:#6528f5;z-index:1000;padding:5px 10px}.exactmetrics-quick-links.exactmetrics-quick-links-open,.exactmetrics-quick-links:focus,.exactmetrics-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-label{border-radius:50%;background:rgba(0,0,0,0);position:absolute;left:6px;right:2px;top:6px;bottom:2px;padding:6px 6px 6px 8px;display:block;width:44px;outline:none;cursor:pointer;border:none}.exactmetrics-quick-links-open .exactmetrics-quick-links-label .exactmetrics-quick-link-title{opacity:0;pointer-events:none}.exactmetrics-bg-img.exactmetrics-quick-links-mascot{padding-top:100%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;display:block}.exactmetrics-bg-img.exactmetrics-quick-links-mascot:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUUAAABKCAMAAAAbi7YOAAAAn1BMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8Kd3m4AAAANHRSTlMAQN8ggL9g758QMLB5cwNv+5BQz14J9tSPF/HkxgdXSA0B7aqbpCkk2oRouDvLloobEug208uV8wAACFtJREFUeNrs1+1yojAUBuATIEBABVHU+t1aa+u222597//a1hgJKFaFdWY70zw/nCmaCX3nnHxQRX/ePyFZ63sy6km7I2Q6M5NjLa9jFC1sMqp6WuBI71GQUcXk3UPZaN0i41rz7ie0uINcn5FRY0EcBzTrI7c0y+M1Vo8xtP5U9nCrOYIWN/6QcV7qDKENnTkpH7970J7dCRlfm3RHhQz9YtGtFjG0N7M8fm0zRu5XQAfukzdosf9Exil3y2LXTstdO18/HHa7cWze7BUjmpwOuh1Ds1xzKTySWMj5Nn0l4MjxDRm5YIwcD+iMVvIMrbdYkaGIZQxtlKQXe/8TmmeWx71W0T1ddvfYg8ZTMurZcGihibGu+2kfGXMEr++uMYKyIOOsdMWm04R9TM4d00f000ymDed6v/sxpOH4ZdOishdIHv0w818x6onDgEqaPzPFF1TysFizJzuYRb96QK/dMinu9CtlGH1Qxn5/AMZ39VIM+KGQbsnnnNERm3MuqCqbo2PTZc8VWng5p6IVB55FrRQZDll0Sx7A6YgDIKCqfAA+XdbE1abH/dsaAH3xHVJs+1sJKeLUkdUC4J4pOgBUFgLgdNk8jHGV3pTKHGDxHVK0sOWQEqD8v7vYiiqnGHjwEroGa1w2Vu9YFgLsu6WYQGLlH7Qrp0g2E3Qr9gjjlE5JH9Bp1U0xdDPJLVOMIPmlUkRYJcXbawCvOrdZ4yV61cl1Ec/qpuiQdssU24D82z783gM6/zXF9A18H9v9bBwDiPkTKXMLi2+WYgg4HGgflmIEeP81xU2MLinTHpTPjT62D9NbpMjy1k5cKVCPnZDzASPhSoIUEfkdi+935e1zD1vh/gcciBjgCcpwwJc55U/YIOQ87NokCcdpA3Acp0vEdp+unNWW3zjieIx+h5DLVyhKm4/+VziGK71AZvqpDoTdIkXbg8SyRcwS8k1DKCErbBnC8aBY8gEKbHVcZGQBTnE2WxSa3ObYc1QhZjiRIz99SBHZ+aBAj/F3uXY9SAen8rtnnPM2Kd8X1/uWBpr/uruwfGu1hLB0HraFjM5YPdWccooAAnJVMepS3IWb7Gf3oPmnUnSxwwopRshZdvGU0SFtibNCvf7klqQMMaiZoubvdwVpMNBFovIsYjpErXucYqBaVxdjFkUHcPOqb7uMRZacj+RqIUOSC4pK0UIncqNQ5Cm6gEyXMZcDHUHEd41gOwCS6y6COrEUBeP9hjPC421SLIZmqTP9qRR9FHkRcc693Rh1VWZq/kgXo68mCIF2VgpWkN8LWb676EnDfRnbeVPI0HZc2cMiG+gXt7H+VSm2/rZzts2JwkAAzgsQgneCYrVYq6117LVaXzr7/3/bDZc0GxLlkPFjni9VEHQel91NLCkAiY3Fw30skgzdcIx8ESV5jBa5fvcxTRhAzL0anaiLTAor63EV6qnJknbd8S0yTpoWU3OMs4NwSrnVEbayI4oFIBttdgrHO1nE5DOxEiW3wpLWMtBYlHudji4P6q/Q0RLrk5f4HD+I8C2mriymtyGizgUuQ/wF2genbj4B0c32CeCzp0XBNCMMDW0VzWX2HqofsCv9Il5jKhgnSgRVMaoOKwEibhAA3LNIHYtZY0IIQzaixOF9mVxjY84hv/Ai1xf0CiC7W9dNwTKX2qfKtUUcEfsWje8IgxJDL9Oi/JLlWXQvXOr25JjE4wnpyPvaNDPbEhRmynMDT693s6jbw0e0yIgi6WyRqaqpgpFy9RSNdLDIWiwiEcMP24kY/gyJgo9YAdNZ/oLN8obcy2KEeVGVA2z60obFuMWi9qKDMUcpumGsa1Jqk7kWY7RoN08eNIrFDQPZiT3Ded6vsmecH4Viey+LvFmjc/NV48gGddZQ7lrEkNPBWCdHfFFiOh6Hdovy6hQvH6kvugtyBk8VuUQ2hzfS12JKDdLpF2OUmtaXlN5Ffw5lk38DQTZxLKr9jdhmVrqIsJFUcN7BouqxG64y9ZGV4Iw4bDe7+AJMNTse5xnMT30tuiM3PWhRrUyOFRuEsFMY0xuZmoLgjsWx5U0KnR3s7ltaTYosIR53sEit9kdO1LlyJ4EgewFX2TwTl+cY4Be5i0UzCfETkhl24Qj1jx2hRceCWyoibBxB/ZZOS22p3aJOy6z2LSmr32iMjayXMoeD1gGMq/F9oXrvu1jkZhKCmjmdHBpg44eU0rE4asxpcy7tWUZmtVBxKfCoNos6aGsYE1aRG6SpuNAwnBm0Mds3lI+/Ad4e7mUxxoIzMmUlF6CJ7KLCMBKlkxexXfSgaMoehneySOQIj0kacyIpcXiYQTuL8VnPeVfLGcA0Ij1/1WcOPGE1pc5WrKZWxlP2L24yrjcpkliF08/zuN6phAyYKjk+9Sm4fpjqIbq09un2nrGBe4g+Rs15RFI/Zdh1+xLaWe+izyQ/LuZ4J2Uni/3JKCc+Ejf3Pe3tJ+A0k16h9hk+igK6UZS/H8J/O13m9URbWR5iNi/mbPCxQofIy5sKWBJoZygrXskhucTqS5chEugLHYDmQAL9qA5z0EzDjZX9kPkaDL9JoHZCLd471CQ6A+Qj3HKurCwZGIpN9Z9Xbwd2A7QnAc3DowCDyB/IdV5GUzB8h7UPGlRpAQa2fL2mO7Ecro/Bocu+w929jYQ4CGvCXGL5B5DDyWvA7YQIi3D33xXOx7W9HJYkNvJoJ8SwVlYL2RsgX2MrED+tQC0+TiTQwnBVWrbMajD7EpBBGKzctHYliEPlrUi0CneVd6H6mFvpMa8iy+F3WP6lM3xgiVuHhNgXWoJHsQvrvtzI8+81NJmtQndzO+fDHJCnKBSVfmxNepweKxLoy+qrqB3uMhIw/AWFbdSoUycRogAAAABJRU5ErkJggg==);background-size:auto 85%;background-position:0 0}.exactmetrics-quick-links-menu{position:absolute;bottom:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;right:6px;margin-bottom:10px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item{display:block;width:48px;height:48px;background:#6528f5;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:relative;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;margin-bottom:6px;color:#fff;text-decoration:none;text-align:center;font-size:18px;line-height:48px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item:hover{color:#fff;background:#37276a;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade{background-color:#32a27a}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade:hover{background-color:#19865f}.exactmetrics-quick-link-title{position:absolute;right:100%;margin-right:12px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-14px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-files:before{content:"\f028"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-expand:before{content:"\f02d"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-arrow-right:before{content:"\f01d"}.monstericon-amp-icon:before{content:"\f000"}.monstericon-fbia:before{content:"\f001"}.monstericon-google-optimize:before{content:"\f002"}.monstericon-ads:before{content:"\0041"}.monstericon-affiliate:before{content:"\0042"}.monstericon-compatibility:before{content:"\0043"}.monstericon-demographics:before{content:"\0044"}.monstericon-download:before{content:"\0046"}.monstericon-ecommerce:before{content:"\0047"}.monstericon-engagement:before{content:"\0048"}.monstericon-forms:before{content:"\0049"}.monstericon-links:before{content:"\004a"}.monstericon-memberships:before{content:"\004b"}.monstericon-notifications:before{content:"\004c"}.monstericon-performance:before{content:"\004d"}.monstericon-permissions:before{content:"\004e"}.monstericon-reporting:before{content:"\004f"}.monstericon-social:before{content:"\0050"}.monstericon-video:before{content:"\0051"}.monstericon-times:before{content:"\f014"}.monstericon-check:before{content:"\f015"}.monstericon-info:before{content:"\f016"}.monstericon-exclamation-triangle:before{content:"\f017"}.monstericon-user:before{content:"\f018"}.monstericon-eye:before{content:"\f019"}.monstericon-info-circle:before{content:"\f01a"}.monstericon-info-circle-btm:before{content:"\f01c"}.monstericon-chevron-up:before{content:"\f01f"}.monstericon-times-fas:before{content:"\f021"}.monstericon-check-circle:before{content:"\f022"}.monstericon-exclamation-circle:before{content:"\f023"}.monstericon-star:before{content:"\f025"}.monstericon-times-circle-fas:before{content:"\f026"}.monstericon-check-circle-far:before{content:"\f027"}.monstericon-file-alt:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user-far:before{content:"\f02a"}.monstericon-eye-far:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand-alt:before{content:"\f02d"}.monstericon-compress-arrows-alt:before{content:"\f02e"}.monstericon-compress:before{content:"\f02f"}.monstericon-badge-check:before{content:"\f034"}.monstericon-download-em:before{content:"\f035"}.monstericon-globe:before{content:"\f036"}.monstericon-wand-magic:before{content:"\f037"}.monstericon-mouse-pointer:before{content:"\f038"}.monstericon-users:before{content:"\f039"}.monstericon-file-certificate:before{content:"\f03a"}.monstericon-bullseye-arrow:before{content:"\f03b"}.monstericon-cash-register:before{content:"\f03c"}.monstericon-chart-line:before{content:"\f03d"}.monstericon-clock:before{content:"\f03e"}.monstericon-box:before{content:"\f03f"}.monstericon-sack-dollar:before{content:"\f040"}.monstericon-browser:before{content:"\f041"}.monstericon-eye-em:before{content:"\f042"}.monstericon-newspaper:before{content:"\f043"}.monstericon-mobile:before{content:"\f044"}.monstericon-check-em-light:before{content:"\f045"}.monstericon-times-em-lite:before{content:"\f046"}.monstericon-code:before{content:"\f047"}.monstericon-clipboard:before{content:"\f048"}.monstericon-upload:before{content:"\f049"}.monstericon-clone:before{content:"\f04a"}.monstericon-id-card:before{content:"\f04b"}.monstericon-user-friends:before{content:"\f04c"}.monstericon-file-alt-em:before{content:"\f04d"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-comment-alt-check:before{content:"\f04f"}.monstericon-arrow-circle-up:before{content:"\f050"}.monstericon-search-em:before{content:"\f051"}.monstericon-list-ol:before{content:"\f052"}.monstericon-hand-pointer:before{content:"\f053"}.monstericon-folder:before{content:"\f054"}.monstericon-sign-out-em-solid:before{content:"\f055"}.monstericon-external-link-alt:before{content:"\f056"}.monstericon-copy:before{content:"\f057"}.monstericon-sync:before{content:"\f058"}.monstericon-flag:before{content:"\f059"}.monstericon-building:before{content:"\f05a"}.monstericon-chart-bar:before{content:"\f05b"}.monstericon-shopping-bag:before{content:"\f05c"}.monstericon-exchange-alt:before{content:"\f05d"}.monstericon-plus:before{content:"\f05e"}.monstericon-tachometer-alt:before{content:"\f05f"}.monstericon-tag:before{content:"\f060"}.monstericon-check-circle-em:before{content:"\f061"}.monstericon-bullseye:before{content:"\f062"}.monstericon-rocket:before{content:"\f063"}.monstericon-exclamation-square:before{content:"\f064"}.monstericon-trash:before{content:"\f065"}.monstericon-user-em:before{content:"\f066"}.monstericon-unlock:before{content:"\f067"}.monstericon-exclamation-em-solid:before{content:"\f068"}.monstericon-key-em:before{content:"\f069"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-plug-light:before{content:"\f06b"}.monstericon-align-left-regular:before{content:"\f06c"}.monstericon-envelope-solid:before{content:"\f06f"}.monstericon-comment-alt-lines-solid:before{content:"\f06e"}.monstericon-arrow-circle-up-light:before{content:"\f071"}.monstericon-megaphone-solid:before{content:"\f070"}.monstericon-arrow-circle-up-light :before{content:"\f071"}@media (max-width:782px){.exactmetrics-notices-area{margin-left:10px;margin-right:10px}}.exactmetrics-notice .exactmetrics-notice-inner{position:relative;color:#210f59;padding:32px 45px;border:1px solid #f4f3f7;border-bottom:3px solid;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);border-radius:10px;background:#fff;margin-top:40px}.exactmetrics-notice .exactmetrics-notice-inner .notice-title{color:#fff;font-weight:700;display:block;margin:0 0 6px;padding:0;font-size:17px}@media (max-width:782px){.exactmetrics-notice .exactmetrics-notice-inner{padding:10px}}.exactmetrics-notice .exactmetrics-notice-inner .notice-content{padding-left:92px;background:#fff;line-height:1.75;font-size:15px;position:relative}.exactmetrics-notice .exactmetrics-notice-inner .notice-content:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:48px;left:0;position:absolute;top:0;line-height:1}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner{border-bottom-color:#d83638}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner .notice-content:before{content:"\f064";color:#d83638}.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-inner{border-bottom-color:#fa0}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-inner{border-bottom-color:#4d3f7a}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner{border:1px solid #6528f5;border-left-width:3px;color:#777}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner .exactmetrics-button{color:#fff;margin:15px 0 0}.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-inner{border-bottom-color:#32a27a}.exactmetrics-notice .notice-content{margin-right:20px}.exactmetrics-notice .notice-content a{color:#210f59}.exactmetrics-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#e9e7ee;position:relative;float:right}.exactmetrics-notice .dismiss-notice:focus,.exactmetrics-notice .dismiss-notice:hover{color:#210f59}.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-right:-20px;margin-left:auto}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{margin-left:0}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:10px;margin-left:0}}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-button{margin-top:10px;margin-left:0;color:#fff}body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:42px;right:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{border-radius:5px;padding:17px 28px;border:1px solid #f4f3f7;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);min-width:380px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{color:#210f59;font-size:15px;font-weight:700;line-height:1.5;margin-left:32px;margin-top:-3px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{font-size:26px;width:18px;height:18px;line-height:10px;position:absolute;right:14px;top:19px;color:#9087ac}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:27px;height:24px;min-width:27px;margin:0;border:0;color:#9087ac}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;left:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;left:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;left:0}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{top:0;left:0;border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;left:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.exactmetrics_page body.swal2-toast-shown .swal2-container,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}.exactmetrics_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.exactmetrics_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;width:100%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.exactmetrics_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;left:-.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:4em 0 0 4em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;-webkit-transform-origin:0 2em;-ms-transform-origin:0 2em;transform-origin:0 2em;border-radius:0 4em 4em 0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.exactmetrics_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.exactmetrics_page body.swal2-height-auto{height:auto!important}.exactmetrics_page body.swal2-no-backdrop .swal2-shown{top:auto;right:auto;bottom:auto;left:auto;background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;left:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;right:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;left:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{right:0;bottom:0}.exactmetrics_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;right:0;bottom:0;left:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.exactmetrics_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-top-left,.exactmetrics_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-top-end,.exactmetrics_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-center-left,.exactmetrics_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-center-end,.exactmetrics_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-container .swal2-modal{margin:0!important}}.exactmetrics_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.exactmetrics_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.exactmetrics_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;left:0;top:0}.exactmetrics_page .swal2-popup:focus{outline:0}.exactmetrics_page .swal2-popup.swal2-loading{overflow-y:hidden}.exactmetrics_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.exactmetrics_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-right:30px;margin-left:30px}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-left:5px;border-radius:50%;border:3px solid #999;border-right-color:rgba(0,0,0,0);-webkit-box-shadow:1px 1px 1px #fff;box-shadow:1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.exactmetrics_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.exactmetrics_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.exactmetrics_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.exactmetrics_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.exactmetrics_page .swal2-popup .swal2-close{position:absolute;top:0;right:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:0 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.exactmetrics_page .swal2-popup>.swal2-checkbox,.exactmetrics_page .swal2-popup>.swal2-file,.exactmetrics_page .swal2-popup>.swal2-input,.exactmetrics_page .swal2-popup>.swal2-radio,.exactmetrics_page .swal2-popup>.swal2-select,.exactmetrics_page .swal2-popup>.swal2-textarea{display:none}.exactmetrics_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.exactmetrics_page .swal2-popup #swal2-content{text-align:center}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-radio,.exactmetrics_page .swal2-popup .swal2-select,.exactmetrics_page .swal2-popup .swal2-textarea{margin:1em auto}.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics_page .swal2-popup .swal2-file.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-input.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.exactmetrics_page .swal2-popup .swal2-file:focus,.exactmetrics_page .swal2-popup .swal2-input:focus,.exactmetrics_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.exactmetrics_page .swal2-popup .swal2-file::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::placeholder,.exactmetrics_page .swal2-popup .swal2-input::placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-range input{width:80%}.exactmetrics_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.exactmetrics_page .swal2-popup .swal2-range input,.exactmetrics_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.exactmetrics_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.exactmetrics_page .swal2-popup .swal2-input[type=number]{max-width:10em}.exactmetrics_page .swal2-popup .swal2-file{font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.exactmetrics_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-popup .swal2-checkbox label,.exactmetrics_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox input,.exactmetrics_page .swal2-popup .swal2-radio input{margin:0 .4em}.exactmetrics_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@-moz-document url-prefix(){.exactmetrics_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.exactmetrics_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.exactmetrics_page .swal2-icon-text{font-size:3.75em}.exactmetrics_page .swal2-icon.swal2-error{border-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.exactmetrics_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.exactmetrics_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.exactmetrics_page .swal2-icon.swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0 3.75em;-ms-transform-origin:0 3.75em;transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;left:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;left:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);z-index:1}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.875em;width:1.5625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.exactmetrics_page .swal2-progresssteps li{display:inline-block;position:relative}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-left:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-right:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.exactmetrics_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.exactmetrics_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.exactmetrics_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.exactmetrics_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.exactmetrics_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-rtl .swal2-close{right:auto;left:0}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.exactmetrics_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.exactmetrics_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@media print{.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.exactmetrics-notifications-display{background:#f4f3f7;border-left:3px solid #6528f5;padding:20px;border-radius:3px 0 0 3px;margin-bottom:50px;position:relative}.exactmetrics-settings-panel .exactmetrics-notifications-display{margin-left:25px;margin-right:25px}.exactmetrics-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.exactmetrics-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.exactmetrics-notifications-display .exactmetrics-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-notifications-display .exactmetrics-notification .exactmetrics-notifications-indicator{padding-top:10px}.exactmetrics-notifications-display .exactmetrics-notification .exactmetrics-notifications-indicator a{position:relative}.exactmetrics-notifications-display .exactmetrics-notification-inner{margin-left:25px}.exactmetrics-notifications-display .exactmetrics-button{margin-right:15px}.exactmetrics-notifications-display .exactmetrics-notification-navigation{position:absolute;right:0;top:100%}.exactmetrics-notifications-display .exactmetrics-notification-navigation button{background:#f4f3f7;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.exactmetrics-notifications-display .exactmetrics-notification-navigation button:focus,.exactmetrics-notifications-display .exactmetrics-notification-navigation button:hover{color:#6528f5}.exactmetrics-notifications-display .exactmetrics-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);font-size:10px}.exactmetrics-notifications-display .exactmetrics-notification-navigation button.exactmetrics-notification-previous{margin-right:2px}.exactmetrics-notifications-display .exactmetrics-notification-navigation button.exactmetrics-notification-previous .monstericon-arrow{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.exactmetrics-notifications-display .exactmetrics-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;right:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.exactmetrics-notifications-display .exactmetrics-notifications-unread{width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;right:0;border-radius:50%}.exactmetrics-tooltip{display:block!important;z-index:10000;max-width:350px}.exactmetrics-tooltip .exactmetrics-tooltip-inner{background:#6528f5;color:#fff;border-radius:5px;padding:16px 20px;font-size:15px;line-height:1.5;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;text-align:center}.exactmetrics-tooltip .exactmetrics-tooltip-inner a{color:#fff;font-weight:700}.exactmetrics-tooltip .exactmetrics-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:8px;border-color:#6528f5;z-index:1}.exactmetrics-tooltip[x-placement^=top]{padding-bottom:8px}.exactmetrics-tooltip[x-placement^=top] .exactmetrics-tooltip-arrow{border-width:8px 8px 0;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;left:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=bottom]{padding-top:8px}.exactmetrics-tooltip[x-placement^=bottom] .exactmetrics-tooltip-arrow{border-width:0 8px 8px;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;left:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=right]{padding-left:8px}.exactmetrics-tooltip[x-placement^=right] .exactmetrics-tooltip-arrow{border-width:8px 8px 8px 0;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 8px);margin-left:0;margin-right:0}.exactmetrics-tooltip[x-placement^=left]{padding-right:8px}.exactmetrics-tooltip[x-placement^=left] .exactmetrics-tooltip-arrow{border-width:8px 0 8px 8px;border-top-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 8px);margin-left:0;margin-right:0}.exactmetrics-tooltip.popover .popover-inner{background:#fff;color:#6528f5;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.exactmetrics-tooltip.popover .popover-arrow{border-color:#fff}.exactmetrics-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.exactmetrics-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}.exactmetrics-roller div{-webkit-animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;-webkit-transform-origin:29px 29px;-ms-transform-origin:29px 29px;transform-origin:29px 29px}.exactmetrics-roller div:after{content:" ";display:block;position:absolute;width:8px;height:8px;border-radius:50%;background:#6528f5;margin:-4px 0 0 -4px}.exactmetrics-roller div:first-child{-webkit-animation-delay:-36ms;animation-delay:-36ms}.exactmetrics-roller div:nth-child(2){-webkit-animation-delay:-72ms;animation-delay:-72ms}.exactmetrics-roller div:nth-child(3){-webkit-animation-delay:-.108s;animation-delay:-.108s}.exactmetrics-roller div:nth-child(4){-webkit-animation-delay:-.144s;animation-delay:-.144s}.exactmetrics-roller div:nth-child(5){-webkit-animation-delay:-.18s;animation-delay:-.18s}.exactmetrics-roller div:nth-child(6){-webkit-animation-delay:-.216s;animation-delay:-.216s}.exactmetrics-roller div:nth-child(7){-webkit-animation-delay:-.252s;animation-delay:-.252s}.exactmetrics-roller div:first-child:after{top:49px;left:44px}.exactmetrics-roller div:nth-child(2):after{top:54px;left:28px}.exactmetrics-roller div:nth-child(3):after{top:48px;left:13px}.exactmetrics-roller div:nth-child(4):after{top:35px;left:5px}.exactmetrics-roller div:nth-child(5):after{top:19px;left:6px}.exactmetrics-roller div:nth-child(6):after{top:8px;left:15px}.exactmetrics-roller div:nth-child(7):after{top:4px;left:29px}@-webkit-keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.exactmetrics-upload-media-wrapper .exactmetrics-dark{display:block}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media-label{margin-bottom:0!important}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;left:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay .exactmetrics-remove-uploaded-media{color:#fff;text-decoration:underline;margin-left:auto;cursor:pointer;padding:0 10px 10px 0}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay .exactmetrics-remove-uploaded-media:hover{text-decoration:none}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media:hover .exactmetrics-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media img{max-width:100%;display:inline-block}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-input{width:73%;margin-right:2%;float:left;position:relative;margin-top:0}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button{width:25%;float:left;font-size:15px}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:active,.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:focus,.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:hover{outline:none}.exactmetrics-upload-media-wrapper .inline-field .exactmetrics-button{position:relative!important;margin-left:10px;padding:12px 24px!important}.exactmetrics-upload-media-wrapper .inline-field .exactmetrics-button:first-child{margin-left:0}.exactmetrics-email-summaries-settings a{color:#6528f5!important}.exactmetrics-email-summaries-settings a:focus,.exactmetrics-email-summaries-settings a:hover{color:#393f4c!important}.exactmetrics-email-summaries-settings .exactmetrics-dark{display:block}.exactmetrics-email-summaries-settings .inline-field .exactmetrics-button{position:relative!important;margin-left:10px;padding:12px 24px!important}.exactmetrics-email-summaries-settings .inline-field .exactmetrics-button:first-child{margin-left:0}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater{margin-bottom:18px}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row input[type=number],.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row input[type=text],.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row textarea{border-color:#9087ac}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid input{border-color:#32a27a}.exactmetrics-email-summaries-settings .exactmetrics-button.exactmetrics-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}body{background:#fff;margin:0}.exactmetrics-admin-page,.exactmetrics-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-left:0}.exactmetrics-highlighted-text{color:#64bfa5;font-weight:700}.exactmetrics-bold{font-weight:700}.exactmetrics-bg-img{width:100%;padding-top:66%;position:relative}.exactmetrics-bg-img:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background-repeat:no-repeat;background-size:contain}.exactmetrics-header{padding:20px;background-color:#210f59;position:relative;z-index:90}.exactmetrics-header .exactmetrics-container{width:100%}@media (max-width:959px){.exactmetrics-header .exactmetrics-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}.exactmetrics-header .exactmetrics-float-right{text-align:center}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right{text-align:right}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{float:right;background:#fff;color:#210f59}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{display:none}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:focus,.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:hover{color:#6528f5;background:#fff}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button.exactmetrics-button-disabled{color:#9087ac}@media (max-width:959px){.exactmetrics-header .exactmetrics-float-right{text-align:right;width:100%}}.exactmetrics-logo-area{float:left;max-width:calc(100vw - 170px)}.exactmetrics-logo-area img{display:block;max-width:100%}@media (max-width:959px){.exactmetrics-logo-area{width:140px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}}@media (max-width:959px){.exactmetrics-header .exactmetrics-container,.exactmetrics-navigation-bar .exactmetrics-container{padding:0;width:100%}}.exactmetrics-navigation-bar{background:rgba(0,0,0,0);display:inline-block;margin-left:-163px}@media (max-width:959px){.exactmetrics-navigation-bar{padding:0;border:0}}@media (max-width:750px){.exactmetrics-navigation-bar{background:none}}.exactmetrics-admin-page{position:relative}.exactmetrics-admin-page .exactmetrics-blocked{position:absolute;top:0;bottom:0;right:0;left:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-header{padding:20px 24px}.exactmetrics-admin-page .exactmetrics-header .exactmetrics-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#210f59}#footer-left .exactmetrics-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#6528f5}#wpfooter{display:none;margin-right:23px;margin-bottom:20px;left:23px;background:rgba(101,40,245,.05);padding:14px 20px;border-radius:5px}#wpfooter a{color:#6528f5}.exactmetrics-container{margin:0 auto;max-width:100%;width:750px}.exactmetrics-admin-page .exactmetrics-navigation-tab-link{text-decoration:none;padding:12px 4px 11px;font-size:15px;color:#fff;display:inline-block;margin-right:20px;line-height:1;outline:none;font-family:Lato,sans-serif;position:relative}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:after{content:"";width:100%;left:0;position:absolute;top:100%;height:2px;border-radius:20px;background:#fff;display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover{border-bottom-color:#fff;color:#fff;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover:after{display:block}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#fff;cursor:default}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-navigation-tab-link{width:100%;padding:20px 0;color:#fff;font-size:16px;border-top:1px solid #4d3f7a;text-align:left}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:first-child{border-top:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:first-child+.exactmetrics-navigation-tab-link{border-top:0}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active{display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus{color:#fff;text-decoration:none}}.exactmetrics-admin-page .exactmetrics-button{background:#6528f5;border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics-admin-page .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-button:hover{background-color:#37276a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;color:#9087ac}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary{background:#e9e7ee;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:hover{background-color:#f4f3f7;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green{background:#32a27a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:hover{background-color:#19865f;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text{background:rgba(0,0,0,0);border:none;color:#6528f5;padding:0;border-radius:0;text-decoration:underline}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]{margin-left:10px;min-width:16px;display:inline-block}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]:first-child{margin-left:0;margin-right:10px}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark{color:#210f59}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:hover{color:#6528f5}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-red{background:#e43462;border-color:#e43462;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-large{font-size:15px;padding:14px 30px 12px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{font-size:20px;padding:23px 67px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl i{margin-left:10px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{padding-left:45px;padding-right:45px}}.exactmetrics-admin-page .exactmetrics-spaced-top{margin-top:20px}.exactmetrics-green-text{color:#32a27a;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-left:-18px}}.exactmetrics-mobile-nav-trigger{color:#fff;font-size:15px;font-weight:500;display:inline-block;border:none;background:#37276a;padding:7px 18px;line-height:1.7;margin:0;border-radius:5px}@media (min-width:960px){.exactmetrics-mobile-nav-trigger{display:none}}.exactmetrics-mobile-nav-trigger i{color:#fff;margin-left:25px;vertical-align:middle}.exactmetrics-mobile-nav-trigger.exactmetrics-mobile-nav-trigger-open{border-radius:5px 5px 0 0}@media (max-width:959px){.exactmetrics-main-navigation{background:#37276a;height:0;overflow:hidden;position:absolute;left:24px;right:24px;text-align:left;border-radius:5px 0 5px 5px}.exactmetrics-main-navigation.exactmetrics-main-navigation-open{padding:17px 40px;height:auto;-webkit-box-shadow:0 40px 30px rgba(33,15,89,.1);box-shadow:0 40px 30px rgba(33,15,89,.1)}}@media (min-width:782px){.exactmetrics_page .exactmetrics-swal{margin-left:160px}.auto-fold .exactmetrics_page .exactmetrics-swal{margin-left:36px}}@media (min-width:961px){.auto-fold .exactmetrics_page .exactmetrics-swal{margin-left:160px}.folded .exactmetrics_page .exactmetrics-swal{margin-left:36px}}.exactmetrics_page .exactmetrics-swal .swal2-footer{border-top:none;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;margin-top:0;font-size:15px}.exactmetrics_page .exactmetrics-swal .swal2-footer a{color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-footer a:focus,.exactmetrics_page .exactmetrics-swal .swal2-footer a:hover{color:#37276a}.exactmetrics-modal{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-modal .exactmetrics-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.exactmetrics-modal .exactmetrics-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.exactmetrics-modal .exactmetrics-modal-inner p{margin-bottom:0}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-modal-buttons{margin-top:50px}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-button{margin:0 10px}.exactmetrics-welcome-overlay{position:fixed;top:0;left:0;right:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(33,15,89,.9)}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%;border-radius:10px;-webkit-box-shadow:0 20px 80px rgba(13,7,36,.5);box-shadow:0 20px 80px rgba(13,7,36,.5)}.exactmetrics-welcome-overlay .exactmetrics-overlay-close{background:none;border:none;position:absolute;top:5px;right:7px;padding:0;color:#777}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content{height:100%}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content iframe{height:100%;width:100%}.swal2-container.exactmetrics-swal-loading{background:#fff;padding:20px;top:112px;height:auto}.swal2-container.exactmetrics-swal-loading.exactmetrics-swal-full-height{top:32px}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal{width:100%;height:100%;border-radius:10px;background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;background-size:cover;-webkit-animation-duration:1ms;animation-duration:1ms}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-icon{visibility:hidden;height:0;padding:0}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-header{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-title{font-size:17px;color:#210f59}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-content{color:#9087ac;margin-top:6px;font-size:15px;line-height:1.75;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-actions button{display:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess{padding:0;background:#f8f6ff}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-icon{visibility:hidden;height:0;width:0;margin:0;padding:0}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal{width:750px;background:none;padding-left:260px;position:relative}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-header{display:block}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-title{font-size:32px;line-height:1.3;color:#210f59;text-align:left}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content{font-size:15px;line-height:1.75;color:#210f59;text-align:left;margin-bottom:20px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content p{font-size:15px;margin:0;font-weight:500}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-actions{margin:0;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled{margin:0;font-size:15px;padding:16px 23px 14px;outline:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled .monstericon-long-arrow-right-light{margin-left:14px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:hover{border:none;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm{background:#32a27a}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:hover{background:#19865f}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-cancel{margin-left:15px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons{position:absolute;left:-35px;top:-15px;width:260px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]{position:absolute;color:#6528f5;opacity:.5;font-size:41px;top:114px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:first-child{font-size:108px;opacity:1;top:-22px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(2){left:35px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-].monstericon-exclamation-em-solid:nth-child(2){left:50px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(3){top:147px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(4){left:185px}.exactmetrics_page .exactmetrics-swal .swal2-title{line-height:1.2}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info{border:none;border-radius:0}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error:before,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f064";font-size:80px;color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-icon-text,.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-x-mark{display:none}.exactmetrics_page .exactmetrics-swal .swal2-styled{border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm{background:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:hover{background-color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel{background:#e9e7ee;color:#37276a}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:hover{background-color:#f4f3f7;color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-popup{border-radius:10px;padding:40px}.exactmetrics-list-check ul{margin:0;list-style:none;padding-left:0}.exactmetrics-list-check li{font-size:15px;margin-top:18px;padding-left:30px;position:relative;color:#fff}.exactmetrics-list-check li:first-child{margin-top:0}.exactmetrics-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f045";font-size:15px;margin-right:10px;color:#fff;position:absolute;left:0;top:0}.exactmetrics-settings-input-select-input .multiselect__tags-wrap{position:relative}.exactmetrics-settings-input-select-input .multiselect__tags-wrap:after{content:attr(data-text);display:inline-block;position:relative;color:#9087ac;bottom:0;background:#fff;border-radius:4px;font-size:14px;vertical-align:top;padding:8px 15px}.exactmetrics-settings-input-select-input .multiselect__placeholder{display:none}.multiselect__content-wrapper{left:30px}
|
lite/assets/vue/css/chunk-common.rtl.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.exactmetrics-dark[data-v-493c7577]{display:block}.exactmetrics-reset-default[data-v-493c7577]{margin-right:5px}.exactmetrics-dark[data-v-2327c40a]{display:block}.exactmetrics-admin-page .exactmetrics-floating-bar{background:#6528f5;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -20px 20px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-floating-bar{margin-top:-10px;padding-left:20px;padding-right:20px}}.exactmetrics-admin-page .exactmetrics-floating-bar>span>span{font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a{text-decoration:underline;color:#fff;font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a:focus,.exactmetrics-admin-page .exactmetrics-floating-bar a:hover{color:#fff;text-decoration:none}.exactmetrics-admin-page .exactmetrics-floating-bar .exactmetrics-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:15px;position:absolute;left:15px;top:50%;margin-top:-10px;opacity:.5;cursor:pointer}.exactmetrics-admin-page .exactmetrics-slide-enter-active,.exactmetrics-admin-page .exactmetrics-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.exactmetrics-admin-page .exactmetrics-slide-enter-to,.exactmetrics-admin-page .exactmetrics-slide-leave{max-height:100px;overflow:hidden}.exactmetrics-admin-page .exactmetrics-slide-enter,.exactmetrics-admin-page .exactmetrics-slide-leave-to{overflow:hidden;max-height:0}.exactmetrics-container[data-v-db2d076c]:after{display:table;clear:both;content:""}.exactmetrics-quick-links{position:fixed;bottom:25px;left:25px;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;width:60px;height:60px;border-radius:50%;background:#6528f5;z-index:1000;padding:5px 10px}.exactmetrics-quick-links.exactmetrics-quick-links-open,.exactmetrics-quick-links:focus,.exactmetrics-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-label{border-radius:50%;background:rgba(0,0,0,0);position:absolute;right:6px;left:2px;top:6px;bottom:2px;padding:6px 8px 6px 6px;display:block;width:44px;outline:none;cursor:pointer;border:none}.exactmetrics-quick-links-open .exactmetrics-quick-links-label .exactmetrics-quick-link-title{opacity:0;pointer-events:none}.exactmetrics-bg-img.exactmetrics-quick-links-mascot{padding-top:100%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;display:block}.exactmetrics-bg-img.exactmetrics-quick-links-mascot:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUUAAABKCAMAAAAbi7YOAAAAn1BMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8Kd3m4AAAANHRSTlMAQN8ggL9g758QMLB5cwNv+5BQz14J9tSPF/HkxgdXSA0B7aqbpCkk2oRouDvLloobEug208uV8wAACFtJREFUeNrs1+1yojAUBuATIEBABVHU+t1aa+u222597//a1hgJKFaFdWY70zw/nCmaCX3nnHxQRX/ePyFZ63sy6km7I2Q6M5NjLa9jFC1sMqp6WuBI71GQUcXk3UPZaN0i41rz7ie0uINcn5FRY0EcBzTrI7c0y+M1Vo8xtP5U9nCrOYIWN/6QcV7qDKENnTkpH7970J7dCRlfm3RHhQz9YtGtFjG0N7M8fm0zRu5XQAfukzdosf9Exil3y2LXTstdO18/HHa7cWze7BUjmpwOuh1Ds1xzKTySWMj5Nn0l4MjxDRm5YIwcD+iMVvIMrbdYkaGIZQxtlKQXe/8TmmeWx71W0T1ddvfYg8ZTMurZcGihibGu+2kfGXMEr++uMYKyIOOsdMWm04R9TM4d00f000ymDed6v/sxpOH4ZdOishdIHv0w818x6onDgEqaPzPFF1TysFizJzuYRb96QK/dMinu9CtlGH1Qxn5/AMZ39VIM+KGQbsnnnNERm3MuqCqbo2PTZc8VWng5p6IVB55FrRQZDll0Sx7A6YgDIKCqfAA+XdbE1abH/dsaAH3xHVJs+1sJKeLUkdUC4J4pOgBUFgLgdNk8jHGV3pTKHGDxHVK0sOWQEqD8v7vYiiqnGHjwEroGa1w2Vu9YFgLsu6WYQGLlH7Qrp0g2E3Qr9gjjlE5JH9Bp1U0xdDPJLVOMIPmlUkRYJcXbawCvOrdZ4yV61cl1Ec/qpuiQdssU24D82z783gM6/zXF9A18H9v9bBwDiPkTKXMLi2+WYgg4HGgflmIEeP81xU2MLinTHpTPjT62D9NbpMjy1k5cKVCPnZDzASPhSoIUEfkdi+935e1zD1vh/gcciBjgCcpwwJc55U/YIOQ87NokCcdpA3Acp0vEdp+unNWW3zjieIx+h5DLVyhKm4/+VziGK71AZvqpDoTdIkXbg8SyRcwS8k1DKCErbBnC8aBY8gEKbHVcZGQBTnE2WxSa3ObYc1QhZjiRIz99SBHZ+aBAj/F3uXY9SAen8rtnnPM2Kd8X1/uWBpr/uruwfGu1hLB0HraFjM5YPdWccooAAnJVMepS3IWb7Gf3oPmnUnSxwwopRshZdvGU0SFtibNCvf7klqQMMaiZoubvdwVpMNBFovIsYjpErXucYqBaVxdjFkUHcPOqb7uMRZacj+RqIUOSC4pK0UIncqNQ5Cm6gEyXMZcDHUHEd41gOwCS6y6COrEUBeP9hjPC421SLIZmqTP9qRR9FHkRcc693Rh1VWZq/kgXo68mCIF2VgpWkN8LWb676EnDfRnbeVPI0HZc2cMiG+gXt7H+VSm2/rZzts2JwkAAzgsQgneCYrVYq6117LVaXzr7/3/bDZc0GxLlkPFjni9VEHQel91NLCkAiY3Fw30skgzdcIx8ESV5jBa5fvcxTRhAzL0anaiLTAor63EV6qnJknbd8S0yTpoWU3OMs4NwSrnVEbayI4oFIBttdgrHO1nE5DOxEiW3wpLWMtBYlHudji4P6q/Q0RLrk5f4HD+I8C2mriymtyGizgUuQ/wF2genbj4B0c32CeCzp0XBNCMMDW0VzWX2HqofsCv9Il5jKhgnSgRVMaoOKwEibhAA3LNIHYtZY0IIQzaixOF9mVxjY84hv/Ai1xf0CiC7W9dNwTKX2qfKtUUcEfsWje8IgxJDL9Oi/JLlWXQvXOr25JjE4wnpyPvaNDPbEhRmynMDT693s6jbw0e0yIgi6WyRqaqpgpFy9RSNdLDIWiwiEcMP24kY/gyJgo9YAdNZ/oLN8obcy2KEeVGVA2z60obFuMWi9qKDMUcpumGsa1Jqk7kWY7RoN08eNIrFDQPZiT3Ded6vsmecH4Viey+LvFmjc/NV48gGddZQ7lrEkNPBWCdHfFFiOh6Hdovy6hQvH6kvugtyBk8VuUQ2hzfS12JKDdLpF2OUmtaXlN5Ffw5lk38DQTZxLKr9jdhmVrqIsJFUcN7BouqxG64y9ZGV4Iw4bDe7+AJMNTse5xnMT30tuiM3PWhRrUyOFRuEsFMY0xuZmoLgjsWx5U0KnR3s7ltaTYosIR53sEit9kdO1LlyJ4EgewFX2TwTl+cY4Be5i0UzCfETkhl24Qj1jx2hRceCWyoibBxB/ZZOS22p3aJOy6z2LSmr32iMjayXMoeD1gGMq/F9oXrvu1jkZhKCmjmdHBpg44eU0rE4asxpcy7tWUZmtVBxKfCoNos6aGsYE1aRG6SpuNAwnBm0Mds3lI+/Ad4e7mUxxoIzMmUlF6CJ7KLCMBKlkxexXfSgaMoehneySOQIj0kacyIpcXiYQTuL8VnPeVfLGcA0Ij1/1WcOPGE1pc5WrKZWxlP2L24yrjcpkliF08/zuN6phAyYKjk+9Sm4fpjqIbq09un2nrGBe4g+Rs15RFI/Zdh1+xLaWe+izyQ/LuZ4J2Uni/3JKCc+Ejf3Pe3tJ+A0k16h9hk+igK6UZS/H8J/O13m9URbWR5iNi/mbPCxQofIy5sKWBJoZygrXskhucTqS5chEugLHYDmQAL9qA5z0EzDjZX9kPkaDL9JoHZCLd471CQ6A+Qj3HKurCwZGIpN9Z9Xbwd2A7QnAc3DowCDyB/IdV5GUzB8h7UPGlRpAQa2fL2mO7Ecro/Bocu+w929jYQ4CGvCXGL5B5DDyWvA7YQIi3D33xXOx7W9HJYkNvJoJ8SwVlYL2RsgX2MrED+tQC0+TiTQwnBVWrbMajD7EpBBGKzctHYliEPlrUi0CneVd6H6mFvpMa8iy+F3WP6lM3xgiVuHhNgXWoJHsQvrvtzI8+81NJmtQndzO+fDHJCnKBSVfmxNepweKxLoy+qrqB3uMhIw/AWFbdSoUycRogAAAABJRU5ErkJggg==);background-size:auto 85%;background-position:100% 0}.exactmetrics-quick-links-menu{position:absolute;bottom:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;left:6px;margin-bottom:10px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item{display:block;width:48px;height:48px;background:#6528f5;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:relative;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;margin-bottom:6px;color:#fff;text-decoration:none;text-align:center;font-size:18px;line-height:48px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item:hover{color:#fff;background:#37276a;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade{background-color:#32a27a}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade:hover{background-color:#19865f}.exactmetrics-quick-link-title{position:absolute;left:100%;margin-left:12px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-14px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-files:before{content:"\f028"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-expand:before{content:"\f02d"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-arrow-right:before{content:"\f01d"}.monstericon-amp-icon:before{content:"\f000"}.monstericon-fbia:before{content:"\f001"}.monstericon-google-optimize:before{content:"\f002"}.monstericon-ads:before{content:"\0041"}.monstericon-affiliate:before{content:"\0042"}.monstericon-compatibility:before{content:"\0043"}.monstericon-demographics:before{content:"\0044"}.monstericon-download:before{content:"\0046"}.monstericon-ecommerce:before{content:"\0047"}.monstericon-engagement:before{content:"\0048"}.monstericon-forms:before{content:"\0049"}.monstericon-links:before{content:"\004a"}.monstericon-memberships:before{content:"\004b"}.monstericon-notifications:before{content:"\004c"}.monstericon-performance:before{content:"\004d"}.monstericon-permissions:before{content:"\004e"}.monstericon-reporting:before{content:"\004f"}.monstericon-social:before{content:"\0050"}.monstericon-video:before{content:"\0051"}.monstericon-times:before{content:"\f014"}.monstericon-check:before{content:"\f015"}.monstericon-info:before{content:"\f016"}.monstericon-exclamation-triangle:before{content:"\f017"}.monstericon-user:before{content:"\f018"}.monstericon-eye:before{content:"\f019"}.monstericon-info-circle:before{content:"\f01a"}.monstericon-info-circle-btm:before{content:"\f01c"}.monstericon-chevron-up:before{content:"\f01f"}.monstericon-times-fas:before{content:"\f021"}.monstericon-check-circle:before{content:"\f022"}.monstericon-exclamation-circle:before{content:"\f023"}.monstericon-star:before{content:"\f025"}.monstericon-times-circle-fas:before{content:"\f026"}.monstericon-check-circle-far:before{content:"\f027"}.monstericon-file-alt:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user-far:before{content:"\f02a"}.monstericon-eye-far:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand-alt:before{content:"\f02d"}.monstericon-compress-arrows-alt:before{content:"\f02e"}.monstericon-compress:before{content:"\f02f"}.monstericon-badge-check:before{content:"\f034"}.monstericon-download-em:before{content:"\f035"}.monstericon-globe:before{content:"\f036"}.monstericon-wand-magic:before{content:"\f037"}.monstericon-mouse-pointer:before{content:"\f038"}.monstericon-users:before{content:"\f039"}.monstericon-file-certificate:before{content:"\f03a"}.monstericon-bullseye-arrow:before{content:"\f03b"}.monstericon-cash-register:before{content:"\f03c"}.monstericon-chart-line:before{content:"\f03d"}.monstericon-clock:before{content:"\f03e"}.monstericon-box:before{content:"\f03f"}.monstericon-sack-dollar:before{content:"\f040"}.monstericon-browser:before{content:"\f041"}.monstericon-eye-em:before{content:"\f042"}.monstericon-newspaper:before{content:"\f043"}.monstericon-mobile:before{content:"\f044"}.monstericon-check-em-light:before{content:"\f045"}.monstericon-times-em-lite:before{content:"\f046"}.monstericon-code:before{content:"\f047"}.monstericon-clipboard:before{content:"\f048"}.monstericon-upload:before{content:"\f049"}.monstericon-clone:before{content:"\f04a"}.monstericon-id-card:before{content:"\f04b"}.monstericon-user-friends:before{content:"\f04c"}.monstericon-file-alt-em:before{content:"\f04d"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-comment-alt-check:before{content:"\f04f"}.monstericon-arrow-circle-up:before{content:"\f050"}.monstericon-search-em:before{content:"\f051"}.monstericon-list-ol:before{content:"\f052"}.monstericon-hand-pointer:before{content:"\f053"}.monstericon-folder:before{content:"\f054"}.monstericon-sign-out-em-solid:before{content:"\f055"}.monstericon-external-link-alt:before{content:"\f056"}.monstericon-copy:before{content:"\f057"}.monstericon-sync:before{content:"\f058"}.monstericon-flag:before{content:"\f059"}.monstericon-building:before{content:"\f05a"}.monstericon-chart-bar:before{content:"\f05b"}.monstericon-shopping-bag:before{content:"\f05c"}.monstericon-exchange-alt:before{content:"\f05d"}.monstericon-plus:before{content:"\f05e"}.monstericon-tachometer-alt:before{content:"\f05f"}.monstericon-tag:before{content:"\f060"}.monstericon-check-circle-em:before{content:"\f061"}.monstericon-bullseye:before{content:"\f062"}.monstericon-rocket:before{content:"\f063"}.monstericon-exclamation-square:before{content:"\f064"}.monstericon-trash:before{content:"\f065"}.monstericon-user-em:before{content:"\f066"}.monstericon-unlock:before{content:"\f067"}.monstericon-exclamation-em-solid:before{content:"\f068"}.monstericon-key-em:before{content:"\f069"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-plug-light:before{content:"\f06b"}.monstericon-align-left-regular:before{content:"\f06c"}.monstericon-envelope-solid:before{content:"\f06f"}.monstericon-comment-alt-lines-solid:before{content:"\f06e"}.monstericon-arrow-circle-up-light:before{content:"\f071"}.monstericon-megaphone-solid:before{content:"\f070"}.monstericon-arrow-circle-up-light :before{content:"\f071"}@media (max-width:782px){.exactmetrics-notices-area{margin-right:10px;margin-left:10px}}.exactmetrics-notice .exactmetrics-notice-inner{position:relative;color:#210f59;padding:32px 45px;border:1px solid #f4f3f7;border-bottom:3px solid;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);border-radius:10px;background:#fff;margin-top:40px}.exactmetrics-notice .exactmetrics-notice-inner .notice-title{color:#fff;font-weight:700;display:block;margin:0 0 6px;padding:0;font-size:17px}@media (max-width:782px){.exactmetrics-notice .exactmetrics-notice-inner{padding:10px}}.exactmetrics-notice .exactmetrics-notice-inner .notice-content{padding-right:92px;background:#fff;line-height:1.75;font-size:15px;position:relative}.exactmetrics-notice .exactmetrics-notice-inner .notice-content:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:48px;right:0;position:absolute;top:0;line-height:1}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner{border-bottom-color:#d83638}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner .notice-content:before{content:"\f064";color:#d83638}.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-inner{border-bottom-color:#fa0}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-inner{border-bottom-color:#4d3f7a}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner{border:1px solid #6528f5;border-right-width:3px;color:#777}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner .exactmetrics-button{color:#fff;margin:15px 0 0}.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-inner{border-bottom-color:#32a27a}.exactmetrics-notice .notice-content{margin-left:20px}.exactmetrics-notice .notice-content a{color:#210f59}.exactmetrics-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#e9e7ee;position:relative;float:left}.exactmetrics-notice .dismiss-notice:focus,.exactmetrics-notice .dismiss-notice:hover{color:#210f59}.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-left:-20px;margin-right:auto}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{margin-right:0}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:10px;margin-right:0}}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-button{margin-top:10px;margin-right:0;color:#fff}body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:42px;left:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{border-radius:5px;padding:17px 28px;border:1px solid #f4f3f7;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);min-width:380px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{color:#210f59;font-size:15px;font-weight:700;line-height:1.5;margin-right:32px;margin-top:-3px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{font-size:26px;width:18px;height:18px;line-height:10px;position:absolute;left:14px;top:19px;color:#9087ac}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:27px;height:24px;min-width:27px;margin:0;border:0;color:#9087ac}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;right:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;right:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;right:0}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{top:0;right:0;border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;right:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.exactmetrics_page body.swal2-toast-shown .swal2-container,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;left:auto;bottom:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;left:0;bottom:auto;right:auto}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;left:auto;bottom:auto;right:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;left:auto;bottom:auto;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;left:auto;bottom:auto;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;left:0;bottom:auto;right:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;left:auto;bottom:0;right:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;left:auto;bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;left:0;bottom:0;right:auto}.exactmetrics_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.exactmetrics_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;width:100%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.exactmetrics_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;right:-.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:0 4em 4em 0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;right:.9375em;-webkit-transform-origin:100% 2em;-ms-transform-origin:100% 2em;transform-origin:100% 2em;border-radius:4em 0 0 4em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;right:.4375em;width:.4375em;height:2.6875em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;right:.1875em;width:.75em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;left:.1875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.exactmetrics_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.exactmetrics_page body.swal2-height-auto{height:auto!important}.exactmetrics_page body.swal2-no-backdrop .swal2-shown{top:auto;left:auto;bottom:auto;right:auto;background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;right:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;left:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;right:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{left:0;bottom:0}.exactmetrics_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;left:0;bottom:0;right:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.exactmetrics_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-top-left,.exactmetrics_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-top-end,.exactmetrics_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-center-left,.exactmetrics_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-center-end,.exactmetrics_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-container .swal2-modal{margin:0!important}}.exactmetrics_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.exactmetrics_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.exactmetrics_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;right:0;top:0}.exactmetrics_page .swal2-popup:focus{outline:0}.exactmetrics_page .swal2-popup.swal2-loading{overflow-y:hidden}.exactmetrics_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.exactmetrics_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-left:30px;margin-right:30px}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-right:5px;border-radius:50%;border:3px solid #999;border-left-color:rgba(0,0,0,0);-webkit-box-shadow:-1px 1px 1px #fff;box-shadow:-1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.exactmetrics_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.exactmetrics_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.exactmetrics_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.exactmetrics_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.exactmetrics_page .swal2-popup .swal2-close{position:absolute;top:0;left:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:100% 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.exactmetrics_page .swal2-popup>.swal2-checkbox,.exactmetrics_page .swal2-popup>.swal2-file,.exactmetrics_page .swal2-popup>.swal2-input,.exactmetrics_page .swal2-popup>.swal2-radio,.exactmetrics_page .swal2-popup>.swal2-select,.exactmetrics_page .swal2-popup>.swal2-textarea{display:none}.exactmetrics_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.exactmetrics_page .swal2-popup #swal2-content{text-align:center}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-radio,.exactmetrics_page .swal2-popup .swal2-select,.exactmetrics_page .swal2-popup .swal2-textarea{margin:1em auto}.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics_page .swal2-popup .swal2-file.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-input.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.exactmetrics_page .swal2-popup .swal2-file:focus,.exactmetrics_page .swal2-popup .swal2-input:focus,.exactmetrics_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.exactmetrics_page .swal2-popup .swal2-file::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::placeholder,.exactmetrics_page .swal2-popup .swal2-input::placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-range input{width:80%}.exactmetrics_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.exactmetrics_page .swal2-popup .swal2-range input,.exactmetrics_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.exactmetrics_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.exactmetrics_page .swal2-popup .swal2-input[type=number]{max-width:10em}.exactmetrics_page .swal2-popup .swal2-file{font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.exactmetrics_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-popup .swal2-checkbox label,.exactmetrics_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox input,.exactmetrics_page .swal2-popup .swal2-radio input{margin:0 .4em}.exactmetrics_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@-moz-document url-prefix(){.exactmetrics_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.exactmetrics_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.exactmetrics_page .swal2-icon-text{font-size:3.75em}.exactmetrics_page .swal2-icon.swal2-error{border-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:1.0625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:1em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.exactmetrics_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.exactmetrics_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.exactmetrics_page .swal2-icon.swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;right:-2.0635em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:0 7.5em 7.5em 0}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;right:1.875em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:100% 3.75em;-ms-transform-origin:100% 3.75em;transform-origin:100% 3.75em;border-radius:7.5em 0 0 7.5em}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;right:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;right:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);z-index:1}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;right:.875em;width:1.5625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;left:.5em;width:2.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.exactmetrics_page .swal2-progresssteps li{display:inline-block;position:relative}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-right:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-left:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.exactmetrics_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.exactmetrics_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.exactmetrics_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.exactmetrics_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.exactmetrics_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-rtl .swal2-close{left:auto;right:0}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.exactmetrics_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.exactmetrics_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@media print{.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.exactmetrics-tooltip{display:block!important;z-index:10000;max-width:350px}.exactmetrics-tooltip .exactmetrics-tooltip-inner{background:#6528f5;color:#fff;border-radius:5px;padding:16px 20px;font-size:15px;line-height:1.5;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;text-align:center}.exactmetrics-tooltip .exactmetrics-tooltip-inner a{color:#fff;font-weight:700}.exactmetrics-tooltip .exactmetrics-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:8px;border-color:#6528f5;z-index:1}.exactmetrics-tooltip[x-placement^=top]{padding-bottom:8px}.exactmetrics-tooltip[x-placement^=top] .exactmetrics-tooltip-arrow{border-width:8px 8px 0;border-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;right:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=bottom]{padding-top:8px}.exactmetrics-tooltip[x-placement^=bottom] .exactmetrics-tooltip-arrow{border-width:0 8px 8px;border-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;right:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=right]{padding-right:8px}.exactmetrics-tooltip[x-placement^=right] .exactmetrics-tooltip-arrow{border-width:8px 0 8px 8px;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 8px);margin-right:0;margin-left:0}.exactmetrics-tooltip[x-placement^=left]{padding-left:8px}.exactmetrics-tooltip[x-placement^=left] .exactmetrics-tooltip-arrow{border-width:8px 8px 8px 0;border-top-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 8px);margin-right:0;margin-left:0}.exactmetrics-tooltip.popover .popover-inner{background:#fff;color:#6528f5;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.exactmetrics-tooltip.popover .popover-arrow{border-color:#fff}.exactmetrics-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.exactmetrics-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}.exactmetrics-roller div{-webkit-animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;-webkit-transform-origin:29px 29px;-ms-transform-origin:29px 29px;transform-origin:29px 29px}.exactmetrics-roller div:after{content:" ";display:block;position:absolute;width:8px;height:8px;border-radius:50%;background:#6528f5;margin:-4px -4px 0 0}.exactmetrics-roller div:first-child{-webkit-animation-delay:-36ms;animation-delay:-36ms}.exactmetrics-roller div:nth-child(2){-webkit-animation-delay:-72ms;animation-delay:-72ms}.exactmetrics-roller div:nth-child(3){-webkit-animation-delay:-.108s;animation-delay:-.108s}.exactmetrics-roller div:nth-child(4){-webkit-animation-delay:-.144s;animation-delay:-.144s}.exactmetrics-roller div:nth-child(5){-webkit-animation-delay:-.18s;animation-delay:-.18s}.exactmetrics-roller div:nth-child(6){-webkit-animation-delay:-.216s;animation-delay:-.216s}.exactmetrics-roller div:nth-child(7){-webkit-animation-delay:-.252s;animation-delay:-.252s}.exactmetrics-roller div:first-child:after{top:49px;right:44px}.exactmetrics-roller div:nth-child(2):after{top:54px;right:28px}.exactmetrics-roller div:nth-child(3):after{top:48px;right:13px}.exactmetrics-roller div:nth-child(4):after{top:35px;right:5px}.exactmetrics-roller div:nth-child(5):after{top:19px;right:6px}.exactmetrics-roller div:nth-child(6):after{top:8px;right:15px}.exactmetrics-roller div:nth-child(7):after{top:4px;right:29px}@-webkit-keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}body{background:#fff;margin:0}.exactmetrics-admin-page,.exactmetrics-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-right:0}.exactmetrics-highlighted-text{color:#64bfa5;font-weight:700}.exactmetrics-bold{font-weight:700}.exactmetrics-bg-img{width:100%;padding-top:66%;position:relative}.exactmetrics-bg-img:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background-repeat:no-repeat;background-size:contain}.exactmetrics-header{padding:20px;background-color:#210f59;position:relative;z-index:90}.exactmetrics-header .exactmetrics-container{width:100%}@media (max-width:959px){.exactmetrics-header .exactmetrics-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}.exactmetrics-header .exactmetrics-float-right{text-align:center}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right{text-align:left}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{float:left;background:#fff;color:#210f59}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{display:none}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:focus,.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:hover{color:#6528f5;background:#fff}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button.exactmetrics-button-disabled{color:#9087ac}@media (max-width:959px){.exactmetrics-header .exactmetrics-float-right{text-align:left;width:100%}}.exactmetrics-logo-area{float:right;max-width:calc(100vw - 170px)}.exactmetrics-logo-area img{display:block;max-width:100%}@media (max-width:959px){.exactmetrics-logo-area{width:140px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}}@media (max-width:959px){.exactmetrics-header .exactmetrics-container,.exactmetrics-navigation-bar .exactmetrics-container{padding:0;width:100%}}.exactmetrics-navigation-bar{background:rgba(0,0,0,0);display:inline-block;margin-right:-163px}@media (max-width:959px){.exactmetrics-navigation-bar{padding:0;border:0}}@media (max-width:750px){.exactmetrics-navigation-bar{background:none}}.exactmetrics-admin-page{position:relative}.exactmetrics-admin-page .exactmetrics-blocked{position:absolute;top:0;bottom:0;left:0;right:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-header{padding:20px 24px}.exactmetrics-admin-page .exactmetrics-header .exactmetrics-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#210f59}#footer-left .exactmetrics-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#6528f5}#wpfooter{display:none;margin-left:23px;margin-bottom:20px;right:23px;background:rgba(101,40,245,.05);padding:14px 20px;border-radius:5px}#wpfooter a{color:#6528f5}.exactmetrics-container{margin:0 auto;max-width:100%;width:750px}.exactmetrics-admin-page .exactmetrics-navigation-tab-link{text-decoration:none;padding:12px 4px 11px;font-size:15px;color:#fff;display:inline-block;margin-left:20px;line-height:1;outline:none;font-family:Lato,sans-serif;position:relative}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:after{content:"";width:100%;right:0;position:absolute;top:100%;height:2px;border-radius:20px;background:#fff;display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover{border-bottom-color:#fff;color:#fff;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover:after{display:block}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#fff;cursor:default}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-navigation-tab-link{width:100%;padding:20px 0;color:#fff;font-size:16px;border-top:1px solid #4d3f7a;text-align:right}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:first-child{border-top:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:first-child+.exactmetrics-navigation-tab-link{border-top:0}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active{display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus{color:#fff;text-decoration:none}}.exactmetrics-admin-page .exactmetrics-button{background:#6528f5;border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics-admin-page .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-button:hover{background-color:#37276a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;color:#9087ac}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary{background:#e9e7ee;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:hover{background-color:#f4f3f7;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green{background:#32a27a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:hover{background-color:#19865f;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text{background:rgba(0,0,0,0);border:none;color:#6528f5;padding:0;border-radius:0;text-decoration:underline}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]{margin-right:10px;min-width:16px;display:inline-block}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]:first-child{margin-right:0;margin-left:10px}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark{color:#210f59}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:hover{color:#6528f5}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-red{background:#e43462;border-color:#e43462;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-large{font-size:15px;padding:14px 30px 12px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{font-size:20px;padding:23px 67px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl i{margin-right:10px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{padding-right:45px;padding-left:45px}}.exactmetrics-admin-page .exactmetrics-spaced-top{margin-top:20px}.exactmetrics-green-text{color:#32a27a;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-right:-18px}}.exactmetrics-mobile-nav-trigger{color:#fff;font-size:15px;font-weight:500;display:inline-block;border:none;background:#37276a;padding:7px 18px;line-height:1.7;margin:0;border-radius:5px}@media (min-width:960px){.exactmetrics-mobile-nav-trigger{display:none}}.exactmetrics-mobile-nav-trigger i{color:#fff;margin-right:25px;vertical-align:middle}.exactmetrics-mobile-nav-trigger.exactmetrics-mobile-nav-trigger-open{border-radius:5px 5px 0 0}@media (max-width:959px){.exactmetrics-main-navigation{background:#37276a;height:0;overflow:hidden;position:absolute;right:24px;left:24px;text-align:right;border-radius:0 5px 5px 5px}.exactmetrics-main-navigation.exactmetrics-main-navigation-open{padding:17px 40px;height:auto;-webkit-box-shadow:0 40px 30px rgba(33,15,89,.1);box-shadow:0 40px 30px rgba(33,15,89,.1)}}@media (min-width:782px){.exactmetrics_page .exactmetrics-swal{margin-right:160px}.auto-fold .exactmetrics_page .exactmetrics-swal{margin-right:36px}}@media (min-width:961px){.auto-fold .exactmetrics_page .exactmetrics-swal{margin-right:160px}.folded .exactmetrics_page .exactmetrics-swal{margin-right:36px}}.exactmetrics_page .exactmetrics-swal .swal2-footer{border-top:none;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;margin-top:0;font-size:15px}.exactmetrics_page .exactmetrics-swal .swal2-footer a{color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-footer a:focus,.exactmetrics_page .exactmetrics-swal .swal2-footer a:hover{color:#37276a}.exactmetrics-modal{position:fixed;top:0;right:0;left:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-modal .exactmetrics-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.exactmetrics-modal .exactmetrics-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.exactmetrics-modal .exactmetrics-modal-inner p{margin-bottom:0}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-modal-buttons{margin-top:50px}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-button{margin:0 10px}.exactmetrics-welcome-overlay{position:fixed;top:0;right:0;left:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(33,15,89,.9)}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%;border-radius:10px;-webkit-box-shadow:0 20px 80px rgba(13,7,36,.5);box-shadow:0 20px 80px rgba(13,7,36,.5)}.exactmetrics-welcome-overlay .exactmetrics-overlay-close{background:none;border:none;position:absolute;top:5px;left:7px;padding:0;color:#777}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content{height:100%}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content iframe{height:100%;width:100%}.swal2-container.exactmetrics-swal-loading{background:#fff;padding:20px;top:112px;height:auto}.swal2-container.exactmetrics-swal-loading.exactmetrics-swal-full-height{top:32px}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal{width:100%;height:100%;border-radius:10px;background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;background-size:cover;-webkit-animation-duration:1ms;animation-duration:1ms}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-icon{visibility:hidden;height:0;padding:0}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-header{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-title{font-size:17px;color:#210f59}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-content{color:#9087ac;margin-top:6px;font-size:15px;line-height:1.75;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-actions button{display:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess{padding:0;background:#f8f6ff}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-icon{visibility:hidden;height:0;width:0;margin:0;padding:0}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal{width:750px;background:none;padding-right:260px;position:relative}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-header{display:block}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-title{font-size:32px;line-height:1.3;color:#210f59;text-align:right}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content{font-size:15px;line-height:1.75;color:#210f59;text-align:right;margin-bottom:20px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content p{font-size:15px;margin:0;font-weight:500}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-actions{margin:0;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled{margin:0;font-size:15px;padding:16px 23px 14px;outline:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled .monstericon-long-arrow-right-light{margin-right:14px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:hover{border:none;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm{background:#32a27a}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:hover{background:#19865f}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-cancel{margin-right:15px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons{position:absolute;right:-35px;top:-15px;width:260px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]{position:absolute;color:#6528f5;opacity:.5;font-size:41px;top:114px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:first-child{font-size:108px;opacity:1;top:-22px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(2){right:35px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-].monstericon-exclamation-em-solid:nth-child(2){right:50px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(3){top:147px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(4){right:185px}.exactmetrics_page .exactmetrics-swal .swal2-title{line-height:1.2}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info{border:none;border-radius:0}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error:before,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f064";font-size:80px;color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-icon-text,.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-x-mark{display:none}.exactmetrics_page .exactmetrics-swal .swal2-styled{border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm{background:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:hover{background-color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel{background:#e9e7ee;color:#37276a}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:hover{background-color:#f4f3f7;color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-popup{border-radius:10px;padding:40px}.exactmetrics-list-check ul{margin:0;list-style:none;padding-right:0}.exactmetrics-list-check li{font-size:15px;margin-top:18px;padding-right:30px;position:relative;color:#fff}.exactmetrics-list-check li:first-child{margin-top:0}.exactmetrics-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f045";font-size:15px;margin-left:10px;color:#fff;position:absolute;right:0;top:0}.exactmetrics-settings-input-select-input .multiselect__tags-wrap{position:relative}.exactmetrics-settings-input-select-input .multiselect__tags-wrap:after{content:attr(data-text);display:inline-block;position:relative;color:#9087ac;bottom:0;background:#fff;border-radius:4px;font-size:14px;vertical-align:top;padding:8px 15px}.exactmetrics-settings-input-select-input .multiselect__placeholder{display:none}.multiselect__content-wrapper{right:30px}
|
1 |
+
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.exactmetrics-dark[data-v-493c7577]{display:block}.exactmetrics-reset-default[data-v-493c7577]{margin-right:5px}.exactmetrics-dark[data-v-2327c40a]{display:block}.exactmetrics-admin-page .exactmetrics-floating-bar{background:#6528f5;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -20px 20px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-floating-bar{margin-top:-10px;padding-left:20px;padding-right:20px}}.exactmetrics-admin-page .exactmetrics-floating-bar>span>span{font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a{text-decoration:underline;color:#fff;font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a:focus,.exactmetrics-admin-page .exactmetrics-floating-bar a:hover{color:#fff;text-decoration:none}.exactmetrics-admin-page .exactmetrics-floating-bar .exactmetrics-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:15px;position:absolute;left:15px;top:50%;margin-top:-10px;opacity:.5;cursor:pointer}.exactmetrics-admin-page .exactmetrics-slide-enter-active,.exactmetrics-admin-page .exactmetrics-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.exactmetrics-admin-page .exactmetrics-slide-enter-to,.exactmetrics-admin-page .exactmetrics-slide-leave{max-height:100px;overflow:hidden}.exactmetrics-admin-page .exactmetrics-slide-enter,.exactmetrics-admin-page .exactmetrics-slide-leave-to{overflow:hidden;max-height:0}.exactmetrics-container[data-v-408df493]:after{display:table;clear:both;content:""}.exactmetrics-quick-links{position:fixed;bottom:25px;left:25px;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;width:60px;height:60px;border-radius:50%;background:#6528f5;z-index:1000;padding:5px 10px}.exactmetrics-quick-links.exactmetrics-quick-links-open,.exactmetrics-quick-links:focus,.exactmetrics-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-label{border-radius:50%;background:rgba(0,0,0,0);position:absolute;right:6px;left:2px;top:6px;bottom:2px;padding:6px 8px 6px 6px;display:block;width:44px;outline:none;cursor:pointer;border:none}.exactmetrics-quick-links-open .exactmetrics-quick-links-label .exactmetrics-quick-link-title{opacity:0;pointer-events:none}.exactmetrics-bg-img.exactmetrics-quick-links-mascot{padding-top:100%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;display:block}.exactmetrics-bg-img.exactmetrics-quick-links-mascot:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUUAAABKCAMAAAAbi7YOAAAAn1BMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8Kd3m4AAAANHRSTlMAQN8ggL9g758QMLB5cwNv+5BQz14J9tSPF/HkxgdXSA0B7aqbpCkk2oRouDvLloobEug208uV8wAACFtJREFUeNrs1+1yojAUBuATIEBABVHU+t1aa+u222597//a1hgJKFaFdWY70zw/nCmaCX3nnHxQRX/ePyFZ63sy6km7I2Q6M5NjLa9jFC1sMqp6WuBI71GQUcXk3UPZaN0i41rz7ie0uINcn5FRY0EcBzTrI7c0y+M1Vo8xtP5U9nCrOYIWN/6QcV7qDKENnTkpH7970J7dCRlfm3RHhQz9YtGtFjG0N7M8fm0zRu5XQAfukzdosf9Exil3y2LXTstdO18/HHa7cWze7BUjmpwOuh1Ds1xzKTySWMj5Nn0l4MjxDRm5YIwcD+iMVvIMrbdYkaGIZQxtlKQXe/8TmmeWx71W0T1ddvfYg8ZTMurZcGihibGu+2kfGXMEr++uMYKyIOOsdMWm04R9TM4d00f000ymDed6v/sxpOH4ZdOishdIHv0w818x6onDgEqaPzPFF1TysFizJzuYRb96QK/dMinu9CtlGH1Qxn5/AMZ39VIM+KGQbsnnnNERm3MuqCqbo2PTZc8VWng5p6IVB55FrRQZDll0Sx7A6YgDIKCqfAA+XdbE1abH/dsaAH3xHVJs+1sJKeLUkdUC4J4pOgBUFgLgdNk8jHGV3pTKHGDxHVK0sOWQEqD8v7vYiiqnGHjwEroGa1w2Vu9YFgLsu6WYQGLlH7Qrp0g2E3Qr9gjjlE5JH9Bp1U0xdDPJLVOMIPmlUkRYJcXbawCvOrdZ4yV61cl1Ec/qpuiQdssU24D82z783gM6/zXF9A18H9v9bBwDiPkTKXMLi2+WYgg4HGgflmIEeP81xU2MLinTHpTPjT62D9NbpMjy1k5cKVCPnZDzASPhSoIUEfkdi+935e1zD1vh/gcciBjgCcpwwJc55U/YIOQ87NokCcdpA3Acp0vEdp+unNWW3zjieIx+h5DLVyhKm4/+VziGK71AZvqpDoTdIkXbg8SyRcwS8k1DKCErbBnC8aBY8gEKbHVcZGQBTnE2WxSa3ObYc1QhZjiRIz99SBHZ+aBAj/F3uXY9SAen8rtnnPM2Kd8X1/uWBpr/uruwfGu1hLB0HraFjM5YPdWccooAAnJVMepS3IWb7Gf3oPmnUnSxwwopRshZdvGU0SFtibNCvf7klqQMMaiZoubvdwVpMNBFovIsYjpErXucYqBaVxdjFkUHcPOqb7uMRZacj+RqIUOSC4pK0UIncqNQ5Cm6gEyXMZcDHUHEd41gOwCS6y6COrEUBeP9hjPC421SLIZmqTP9qRR9FHkRcc693Rh1VWZq/kgXo68mCIF2VgpWkN8LWb676EnDfRnbeVPI0HZc2cMiG+gXt7H+VSm2/rZzts2JwkAAzgsQgneCYrVYq6117LVaXzr7/3/bDZc0GxLlkPFjni9VEHQel91NLCkAiY3Fw30skgzdcIx8ESV5jBa5fvcxTRhAzL0anaiLTAor63EV6qnJknbd8S0yTpoWU3OMs4NwSrnVEbayI4oFIBttdgrHO1nE5DOxEiW3wpLWMtBYlHudji4P6q/Q0RLrk5f4HD+I8C2mriymtyGizgUuQ/wF2genbj4B0c32CeCzp0XBNCMMDW0VzWX2HqofsCv9Il5jKhgnSgRVMaoOKwEibhAA3LNIHYtZY0IIQzaixOF9mVxjY84hv/Ai1xf0CiC7W9dNwTKX2qfKtUUcEfsWje8IgxJDL9Oi/JLlWXQvXOr25JjE4wnpyPvaNDPbEhRmynMDT693s6jbw0e0yIgi6WyRqaqpgpFy9RSNdLDIWiwiEcMP24kY/gyJgo9YAdNZ/oLN8obcy2KEeVGVA2z60obFuMWi9qKDMUcpumGsa1Jqk7kWY7RoN08eNIrFDQPZiT3Ded6vsmecH4Viey+LvFmjc/NV48gGddZQ7lrEkNPBWCdHfFFiOh6Hdovy6hQvH6kvugtyBk8VuUQ2hzfS12JKDdLpF2OUmtaXlN5Ffw5lk38DQTZxLKr9jdhmVrqIsJFUcN7BouqxG64y9ZGV4Iw4bDe7+AJMNTse5xnMT30tuiM3PWhRrUyOFRuEsFMY0xuZmoLgjsWx5U0KnR3s7ltaTYosIR53sEit9kdO1LlyJ4EgewFX2TwTl+cY4Be5i0UzCfETkhl24Qj1jx2hRceCWyoibBxB/ZZOS22p3aJOy6z2LSmr32iMjayXMoeD1gGMq/F9oXrvu1jkZhKCmjmdHBpg44eU0rE4asxpcy7tWUZmtVBxKfCoNos6aGsYE1aRG6SpuNAwnBm0Mds3lI+/Ad4e7mUxxoIzMmUlF6CJ7KLCMBKlkxexXfSgaMoehneySOQIj0kacyIpcXiYQTuL8VnPeVfLGcA0Ij1/1WcOPGE1pc5WrKZWxlP2L24yrjcpkliF08/zuN6phAyYKjk+9Sm4fpjqIbq09un2nrGBe4g+Rs15RFI/Zdh1+xLaWe+izyQ/LuZ4J2Uni/3JKCc+Ejf3Pe3tJ+A0k16h9hk+igK6UZS/H8J/O13m9URbWR5iNi/mbPCxQofIy5sKWBJoZygrXskhucTqS5chEugLHYDmQAL9qA5z0EzDjZX9kPkaDL9JoHZCLd471CQ6A+Qj3HKurCwZGIpN9Z9Xbwd2A7QnAc3DowCDyB/IdV5GUzB8h7UPGlRpAQa2fL2mO7Ecro/Bocu+w929jYQ4CGvCXGL5B5DDyWvA7YQIi3D33xXOx7W9HJYkNvJoJ8SwVlYL2RsgX2MrED+tQC0+TiTQwnBVWrbMajD7EpBBGKzctHYliEPlrUi0CneVd6H6mFvpMa8iy+F3WP6lM3xgiVuHhNgXWoJHsQvrvtzI8+81NJmtQndzO+fDHJCnKBSVfmxNepweKxLoy+qrqB3uMhIw/AWFbdSoUycRogAAAABJRU5ErkJggg==);background-size:auto 85%;background-position:100% 0}.exactmetrics-quick-links-menu{position:absolute;bottom:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;left:6px;margin-bottom:10px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item{display:block;width:48px;height:48px;background:#6528f5;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:relative;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;margin-bottom:6px;color:#fff;text-decoration:none;text-align:center;font-size:18px;line-height:48px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item:hover{color:#fff;background:#37276a;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade{background-color:#32a27a}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade:hover{background-color:#19865f}.exactmetrics-quick-link-title{position:absolute;left:100%;margin-left:12px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-14px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-files:before{content:"\f028"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-expand:before{content:"\f02d"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-arrow-right:before{content:"\f01d"}.monstericon-amp-icon:before{content:"\f000"}.monstericon-fbia:before{content:"\f001"}.monstericon-google-optimize:before{content:"\f002"}.monstericon-ads:before{content:"\0041"}.monstericon-affiliate:before{content:"\0042"}.monstericon-compatibility:before{content:"\0043"}.monstericon-demographics:before{content:"\0044"}.monstericon-download:before{content:"\0046"}.monstericon-ecommerce:before{content:"\0047"}.monstericon-engagement:before{content:"\0048"}.monstericon-forms:before{content:"\0049"}.monstericon-links:before{content:"\004a"}.monstericon-memberships:before{content:"\004b"}.monstericon-notifications:before{content:"\004c"}.monstericon-performance:before{content:"\004d"}.monstericon-permissions:before{content:"\004e"}.monstericon-reporting:before{content:"\004f"}.monstericon-social:before{content:"\0050"}.monstericon-video:before{content:"\0051"}.monstericon-times:before{content:"\f014"}.monstericon-check:before{content:"\f015"}.monstericon-info:before{content:"\f016"}.monstericon-exclamation-triangle:before{content:"\f017"}.monstericon-user:before{content:"\f018"}.monstericon-eye:before{content:"\f019"}.monstericon-info-circle:before{content:"\f01a"}.monstericon-info-circle-btm:before{content:"\f01c"}.monstericon-chevron-up:before{content:"\f01f"}.monstericon-times-fas:before{content:"\f021"}.monstericon-check-circle:before{content:"\f022"}.monstericon-exclamation-circle:before{content:"\f023"}.monstericon-star:before{content:"\f025"}.monstericon-times-circle-fas:before{content:"\f026"}.monstericon-check-circle-far:before{content:"\f027"}.monstericon-file-alt:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user-far:before{content:"\f02a"}.monstericon-eye-far:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand-alt:before{content:"\f02d"}.monstericon-compress-arrows-alt:before{content:"\f02e"}.monstericon-compress:before{content:"\f02f"}.monstericon-badge-check:before{content:"\f034"}.monstericon-download-em:before{content:"\f035"}.monstericon-globe:before{content:"\f036"}.monstericon-wand-magic:before{content:"\f037"}.monstericon-mouse-pointer:before{content:"\f038"}.monstericon-users:before{content:"\f039"}.monstericon-file-certificate:before{content:"\f03a"}.monstericon-bullseye-arrow:before{content:"\f03b"}.monstericon-cash-register:before{content:"\f03c"}.monstericon-chart-line:before{content:"\f03d"}.monstericon-clock:before{content:"\f03e"}.monstericon-box:before{content:"\f03f"}.monstericon-sack-dollar:before{content:"\f040"}.monstericon-browser:before{content:"\f041"}.monstericon-eye-em:before{content:"\f042"}.monstericon-newspaper:before{content:"\f043"}.monstericon-mobile:before{content:"\f044"}.monstericon-check-em-light:before{content:"\f045"}.monstericon-times-em-lite:before{content:"\f046"}.monstericon-code:before{content:"\f047"}.monstericon-clipboard:before{content:"\f048"}.monstericon-upload:before{content:"\f049"}.monstericon-clone:before{content:"\f04a"}.monstericon-id-card:before{content:"\f04b"}.monstericon-user-friends:before{content:"\f04c"}.monstericon-file-alt-em:before{content:"\f04d"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-comment-alt-check:before{content:"\f04f"}.monstericon-arrow-circle-up:before{content:"\f050"}.monstericon-search-em:before{content:"\f051"}.monstericon-list-ol:before{content:"\f052"}.monstericon-hand-pointer:before{content:"\f053"}.monstericon-folder:before{content:"\f054"}.monstericon-sign-out-em-solid:before{content:"\f055"}.monstericon-external-link-alt:before{content:"\f056"}.monstericon-copy:before{content:"\f057"}.monstericon-sync:before{content:"\f058"}.monstericon-flag:before{content:"\f059"}.monstericon-building:before{content:"\f05a"}.monstericon-chart-bar:before{content:"\f05b"}.monstericon-shopping-bag:before{content:"\f05c"}.monstericon-exchange-alt:before{content:"\f05d"}.monstericon-plus:before{content:"\f05e"}.monstericon-tachometer-alt:before{content:"\f05f"}.monstericon-tag:before{content:"\f060"}.monstericon-check-circle-em:before{content:"\f061"}.monstericon-bullseye:before{content:"\f062"}.monstericon-rocket:before{content:"\f063"}.monstericon-exclamation-square:before{content:"\f064"}.monstericon-trash:before{content:"\f065"}.monstericon-user-em:before{content:"\f066"}.monstericon-unlock:before{content:"\f067"}.monstericon-exclamation-em-solid:before{content:"\f068"}.monstericon-key-em:before{content:"\f069"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-plug-light:before{content:"\f06b"}.monstericon-align-left-regular:before{content:"\f06c"}.monstericon-envelope-solid:before{content:"\f06f"}.monstericon-comment-alt-lines-solid:before{content:"\f06e"}.monstericon-arrow-circle-up-light:before{content:"\f071"}.monstericon-megaphone-solid:before{content:"\f070"}.monstericon-arrow-circle-up-light :before{content:"\f071"}@media (max-width:782px){.exactmetrics-notices-area{margin-right:10px;margin-left:10px}}.exactmetrics-notice .exactmetrics-notice-inner{position:relative;color:#210f59;padding:32px 45px;border:1px solid #f4f3f7;border-bottom:3px solid;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);border-radius:10px;background:#fff;margin-top:40px}.exactmetrics-notice .exactmetrics-notice-inner .notice-title{color:#fff;font-weight:700;display:block;margin:0 0 6px;padding:0;font-size:17px}@media (max-width:782px){.exactmetrics-notice .exactmetrics-notice-inner{padding:10px}}.exactmetrics-notice .exactmetrics-notice-inner .notice-content{padding-right:92px;background:#fff;line-height:1.75;font-size:15px;position:relative}.exactmetrics-notice .exactmetrics-notice-inner .notice-content:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:48px;right:0;position:absolute;top:0;line-height:1}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner{border-bottom-color:#d83638}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner .notice-content:before{content:"\f064";color:#d83638}.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-inner{border-bottom-color:#fa0}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-inner{border-bottom-color:#4d3f7a}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner{border:1px solid #6528f5;border-right-width:3px;color:#777}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner .exactmetrics-button{color:#fff;margin:15px 0 0}.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-inner{border-bottom-color:#32a27a}.exactmetrics-notice .notice-content{margin-left:20px}.exactmetrics-notice .notice-content a{color:#210f59}.exactmetrics-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#e9e7ee;position:relative;float:left}.exactmetrics-notice .dismiss-notice:focus,.exactmetrics-notice .dismiss-notice:hover{color:#210f59}.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-left:-20px;margin-right:auto}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{margin-right:0}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:10px;margin-right:0}}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-button{margin-top:10px;margin-right:0;color:#fff}body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:42px;left:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{border-radius:5px;padding:17px 28px;border:1px solid #f4f3f7;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);min-width:380px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{color:#210f59;font-size:15px;font-weight:700;line-height:1.5;margin-right:32px;margin-top:-3px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{font-size:26px;width:18px;height:18px;line-height:10px;position:absolute;left:14px;top:19px;color:#9087ac}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:27px;height:24px;min-width:27px;margin:0;border:0;color:#9087ac}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;right:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;right:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;right:0}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{top:0;right:0;border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;right:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.exactmetrics_page body.swal2-toast-shown .swal2-container,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;left:auto;bottom:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;left:0;bottom:auto;right:auto}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;left:auto;bottom:auto;right:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;left:auto;bottom:auto;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;left:auto;bottom:auto;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;left:0;bottom:auto;right:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;left:auto;bottom:0;right:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;left:auto;bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;left:0;bottom:0;right:auto}.exactmetrics_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.exactmetrics_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;width:100%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.exactmetrics_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;right:-.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:0 4em 4em 0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;right:.9375em;-webkit-transform-origin:100% 2em;-ms-transform-origin:100% 2em;transform-origin:100% 2em;border-radius:4em 0 0 4em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;right:.4375em;width:.4375em;height:2.6875em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;right:.1875em;width:.75em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;left:.1875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.exactmetrics_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.exactmetrics_page body.swal2-height-auto{height:auto!important}.exactmetrics_page body.swal2-no-backdrop .swal2-shown{top:auto;left:auto;bottom:auto;right:auto;background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;right:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;left:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;right:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{left:0;bottom:0}.exactmetrics_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;left:0;bottom:0;right:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.exactmetrics_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-top-left,.exactmetrics_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-top-end,.exactmetrics_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-center-left,.exactmetrics_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-center-end,.exactmetrics_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-container .swal2-modal{margin:0!important}}.exactmetrics_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.exactmetrics_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.exactmetrics_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;right:0;top:0}.exactmetrics_page .swal2-popup:focus{outline:0}.exactmetrics_page .swal2-popup.swal2-loading{overflow-y:hidden}.exactmetrics_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.exactmetrics_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-left:30px;margin-right:30px}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-right:5px;border-radius:50%;border:3px solid #999;border-left-color:rgba(0,0,0,0);-webkit-box-shadow:-1px 1px 1px #fff;box-shadow:-1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.exactmetrics_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.exactmetrics_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.exactmetrics_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.exactmetrics_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.exactmetrics_page .swal2-popup .swal2-close{position:absolute;top:0;left:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:100% 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.exactmetrics_page .swal2-popup>.swal2-checkbox,.exactmetrics_page .swal2-popup>.swal2-file,.exactmetrics_page .swal2-popup>.swal2-input,.exactmetrics_page .swal2-popup>.swal2-radio,.exactmetrics_page .swal2-popup>.swal2-select,.exactmetrics_page .swal2-popup>.swal2-textarea{display:none}.exactmetrics_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.exactmetrics_page .swal2-popup #swal2-content{text-align:center}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-radio,.exactmetrics_page .swal2-popup .swal2-select,.exactmetrics_page .swal2-popup .swal2-textarea{margin:1em auto}.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics_page .swal2-popup .swal2-file.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-input.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.exactmetrics_page .swal2-popup .swal2-file:focus,.exactmetrics_page .swal2-popup .swal2-input:focus,.exactmetrics_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.exactmetrics_page .swal2-popup .swal2-file::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::placeholder,.exactmetrics_page .swal2-popup .swal2-input::placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-range input{width:80%}.exactmetrics_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.exactmetrics_page .swal2-popup .swal2-range input,.exactmetrics_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.exactmetrics_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.exactmetrics_page .swal2-popup .swal2-input[type=number]{max-width:10em}.exactmetrics_page .swal2-popup .swal2-file{font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.exactmetrics_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-popup .swal2-checkbox label,.exactmetrics_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox input,.exactmetrics_page .swal2-popup .swal2-radio input{margin:0 .4em}.exactmetrics_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@-moz-document url-prefix(){.exactmetrics_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.exactmetrics_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.exactmetrics_page .swal2-icon-text{font-size:3.75em}.exactmetrics_page .swal2-icon.swal2-error{border-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:1.0625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:1em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.exactmetrics_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.exactmetrics_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.exactmetrics_page .swal2-icon.swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;right:-2.0635em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:0 7.5em 7.5em 0}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;right:1.875em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:100% 3.75em;-ms-transform-origin:100% 3.75em;transform-origin:100% 3.75em;border-radius:7.5em 0 0 7.5em}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;right:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;right:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);z-index:1}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;right:.875em;width:1.5625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;left:.5em;width:2.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.exactmetrics_page .swal2-progresssteps li{display:inline-block;position:relative}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-right:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-left:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.exactmetrics_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.exactmetrics_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.exactmetrics_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.exactmetrics_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.exactmetrics_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-rtl .swal2-close{left:auto;right:0}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.exactmetrics_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.exactmetrics_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@media print{.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.exactmetrics-notifications-display{background:#f4f3f7;border-right:3px solid #6528f5;padding:20px;border-radius:0 3px 3px 0;margin-bottom:50px;position:relative}.exactmetrics-settings-panel .exactmetrics-notifications-display{margin-right:25px;margin-left:25px}.exactmetrics-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.exactmetrics-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.exactmetrics-notifications-display .exactmetrics-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-notifications-display .exactmetrics-notification .exactmetrics-notifications-indicator{padding-top:10px}.exactmetrics-notifications-display .exactmetrics-notification .exactmetrics-notifications-indicator a{position:relative}.exactmetrics-notifications-display .exactmetrics-notification-inner{margin-right:25px}.exactmetrics-notifications-display .exactmetrics-button{margin-left:15px}.exactmetrics-notifications-display .exactmetrics-notification-navigation{position:absolute;left:0;top:100%}.exactmetrics-notifications-display .exactmetrics-notification-navigation button{background:#f4f3f7;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.exactmetrics-notifications-display .exactmetrics-notification-navigation button:focus,.exactmetrics-notifications-display .exactmetrics-notification-navigation button:hover{color:#6528f5}.exactmetrics-notifications-display .exactmetrics-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);font-size:10px}.exactmetrics-notifications-display .exactmetrics-notification-navigation button.exactmetrics-notification-previous{margin-left:2px}.exactmetrics-notifications-display .exactmetrics-notification-navigation button.exactmetrics-notification-previous .monstericon-arrow{-webkit-transform:rotate(-270deg);-ms-transform:rotate(-270deg);transform:rotate(-270deg)}.exactmetrics-notifications-display .exactmetrics-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;left:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.exactmetrics-notifications-display .exactmetrics-notifications-unread{width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;left:0;border-radius:50%}.exactmetrics-tooltip{display:block!important;z-index:10000;max-width:350px}.exactmetrics-tooltip .exactmetrics-tooltip-inner{background:#6528f5;color:#fff;border-radius:5px;padding:16px 20px;font-size:15px;line-height:1.5;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;text-align:center}.exactmetrics-tooltip .exactmetrics-tooltip-inner a{color:#fff;font-weight:700}.exactmetrics-tooltip .exactmetrics-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:8px;border-color:#6528f5;z-index:1}.exactmetrics-tooltip[x-placement^=top]{padding-bottom:8px}.exactmetrics-tooltip[x-placement^=top] .exactmetrics-tooltip-arrow{border-width:8px 8px 0;border-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;right:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=bottom]{padding-top:8px}.exactmetrics-tooltip[x-placement^=bottom] .exactmetrics-tooltip-arrow{border-width:0 8px 8px;border-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;right:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=right]{padding-right:8px}.exactmetrics-tooltip[x-placement^=right] .exactmetrics-tooltip-arrow{border-width:8px 0 8px 8px;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 8px);margin-right:0;margin-left:0}.exactmetrics-tooltip[x-placement^=left]{padding-left:8px}.exactmetrics-tooltip[x-placement^=left] .exactmetrics-tooltip-arrow{border-width:8px 8px 8px 0;border-top-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 8px);margin-right:0;margin-left:0}.exactmetrics-tooltip.popover .popover-inner{background:#fff;color:#6528f5;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.exactmetrics-tooltip.popover .popover-arrow{border-color:#fff}.exactmetrics-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.exactmetrics-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}.exactmetrics-roller div{-webkit-animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;-webkit-transform-origin:29px 29px;-ms-transform-origin:29px 29px;transform-origin:29px 29px}.exactmetrics-roller div:after{content:" ";display:block;position:absolute;width:8px;height:8px;border-radius:50%;background:#6528f5;margin:-4px -4px 0 0}.exactmetrics-roller div:first-child{-webkit-animation-delay:-36ms;animation-delay:-36ms}.exactmetrics-roller div:nth-child(2){-webkit-animation-delay:-72ms;animation-delay:-72ms}.exactmetrics-roller div:nth-child(3){-webkit-animation-delay:-.108s;animation-delay:-.108s}.exactmetrics-roller div:nth-child(4){-webkit-animation-delay:-.144s;animation-delay:-.144s}.exactmetrics-roller div:nth-child(5){-webkit-animation-delay:-.18s;animation-delay:-.18s}.exactmetrics-roller div:nth-child(6){-webkit-animation-delay:-.216s;animation-delay:-.216s}.exactmetrics-roller div:nth-child(7){-webkit-animation-delay:-.252s;animation-delay:-.252s}.exactmetrics-roller div:first-child:after{top:49px;right:44px}.exactmetrics-roller div:nth-child(2):after{top:54px;right:28px}.exactmetrics-roller div:nth-child(3):after{top:48px;right:13px}.exactmetrics-roller div:nth-child(4):after{top:35px;right:5px}.exactmetrics-roller div:nth-child(5):after{top:19px;right:6px}.exactmetrics-roller div:nth-child(6):after{top:8px;right:15px}.exactmetrics-roller div:nth-child(7):after{top:4px;right:29px}@-webkit-keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}.exactmetrics-upload-media-wrapper .exactmetrics-dark{display:block}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media-label{margin-bottom:0!important}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;right:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay .exactmetrics-remove-uploaded-media{color:#fff;text-decoration:underline;margin-right:auto;cursor:pointer;padding:0 0 10px 10px}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay .exactmetrics-remove-uploaded-media:hover{text-decoration:none}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media:hover .exactmetrics-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media img{max-width:100%;display:inline-block}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-input{width:73%;margin-left:2%;float:right;position:relative;margin-top:0}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button{width:25%;float:right;font-size:15px}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:active,.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:focus,.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:hover{outline:none}.exactmetrics-upload-media-wrapper .inline-field .exactmetrics-button{position:relative!important;margin-right:10px;padding:12px 24px!important}.exactmetrics-upload-media-wrapper .inline-field .exactmetrics-button:first-child{margin-right:0}.exactmetrics-email-summaries-settings a{color:#6528f5!important}.exactmetrics-email-summaries-settings a:focus,.exactmetrics-email-summaries-settings a:hover{color:#393f4c!important}.exactmetrics-email-summaries-settings .exactmetrics-dark{display:block}.exactmetrics-email-summaries-settings .inline-field .exactmetrics-button{position:relative!important;margin-right:10px;padding:12px 24px!important}.exactmetrics-email-summaries-settings .inline-field .exactmetrics-button:first-child{margin-right:0}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater{margin-bottom:18px}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row input[type=number],.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row input[type=text],.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row textarea{border-color:#9087ac}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid input{border-color:#32a27a}.exactmetrics-email-summaries-settings .exactmetrics-button.exactmetrics-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}body{background:#fff;margin:0}.exactmetrics-admin-page,.exactmetrics-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-right:0}.exactmetrics-highlighted-text{color:#64bfa5;font-weight:700}.exactmetrics-bold{font-weight:700}.exactmetrics-bg-img{width:100%;padding-top:66%;position:relative}.exactmetrics-bg-img:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background-repeat:no-repeat;background-size:contain}.exactmetrics-header{padding:20px;background-color:#210f59;position:relative;z-index:90}.exactmetrics-header .exactmetrics-container{width:100%}@media (max-width:959px){.exactmetrics-header .exactmetrics-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}.exactmetrics-header .exactmetrics-float-right{text-align:center}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right{text-align:left}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{float:left;background:#fff;color:#210f59}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{display:none}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:focus,.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:hover{color:#6528f5;background:#fff}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button.exactmetrics-button-disabled{color:#9087ac}@media (max-width:959px){.exactmetrics-header .exactmetrics-float-right{text-align:left;width:100%}}.exactmetrics-logo-area{float:right;max-width:calc(100vw - 170px)}.exactmetrics-logo-area img{display:block;max-width:100%}@media (max-width:959px){.exactmetrics-logo-area{width:140px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}}@media (max-width:959px){.exactmetrics-header .exactmetrics-container,.exactmetrics-navigation-bar .exactmetrics-container{padding:0;width:100%}}.exactmetrics-navigation-bar{background:rgba(0,0,0,0);display:inline-block;margin-right:-163px}@media (max-width:959px){.exactmetrics-navigation-bar{padding:0;border:0}}@media (max-width:750px){.exactmetrics-navigation-bar{background:none}}.exactmetrics-admin-page{position:relative}.exactmetrics-admin-page .exactmetrics-blocked{position:absolute;top:0;bottom:0;left:0;right:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-header{padding:20px 24px}.exactmetrics-admin-page .exactmetrics-header .exactmetrics-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#210f59}#footer-left .exactmetrics-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#6528f5}#wpfooter{display:none;margin-left:23px;margin-bottom:20px;right:23px;background:rgba(101,40,245,.05);padding:14px 20px;border-radius:5px}#wpfooter a{color:#6528f5}.exactmetrics-container{margin:0 auto;max-width:100%;width:750px}.exactmetrics-admin-page .exactmetrics-navigation-tab-link{text-decoration:none;padding:12px 4px 11px;font-size:15px;color:#fff;display:inline-block;margin-left:20px;line-height:1;outline:none;font-family:Lato,sans-serif;position:relative}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:after{content:"";width:100%;right:0;position:absolute;top:100%;height:2px;border-radius:20px;background:#fff;display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover{border-bottom-color:#fff;color:#fff;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover:after{display:block}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#fff;cursor:default}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-navigation-tab-link{width:100%;padding:20px 0;color:#fff;font-size:16px;border-top:1px solid #4d3f7a;text-align:right}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:first-child{border-top:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:first-child+.exactmetrics-navigation-tab-link{border-top:0}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active{display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus{color:#fff;text-decoration:none}}.exactmetrics-admin-page .exactmetrics-button{background:#6528f5;border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics-admin-page .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-button:hover{background-color:#37276a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;color:#9087ac}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary{background:#e9e7ee;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:hover{background-color:#f4f3f7;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green{background:#32a27a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:hover{background-color:#19865f;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text{background:rgba(0,0,0,0);border:none;color:#6528f5;padding:0;border-radius:0;text-decoration:underline}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]{margin-right:10px;min-width:16px;display:inline-block}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]:first-child{margin-right:0;margin-left:10px}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark{color:#210f59}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:hover{color:#6528f5}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-red{background:#e43462;border-color:#e43462;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-large{font-size:15px;padding:14px 30px 12px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{font-size:20px;padding:23px 67px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl i{margin-right:10px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{padding-right:45px;padding-left:45px}}.exactmetrics-admin-page .exactmetrics-spaced-top{margin-top:20px}.exactmetrics-green-text{color:#32a27a;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-right:-18px}}.exactmetrics-mobile-nav-trigger{color:#fff;font-size:15px;font-weight:500;display:inline-block;border:none;background:#37276a;padding:7px 18px;line-height:1.7;margin:0;border-radius:5px}@media (min-width:960px){.exactmetrics-mobile-nav-trigger{display:none}}.exactmetrics-mobile-nav-trigger i{color:#fff;margin-right:25px;vertical-align:middle}.exactmetrics-mobile-nav-trigger.exactmetrics-mobile-nav-trigger-open{border-radius:5px 5px 0 0}@media (max-width:959px){.exactmetrics-main-navigation{background:#37276a;height:0;overflow:hidden;position:absolute;right:24px;left:24px;text-align:right;border-radius:0 5px 5px 5px}.exactmetrics-main-navigation.exactmetrics-main-navigation-open{padding:17px 40px;height:auto;-webkit-box-shadow:0 40px 30px rgba(33,15,89,.1);box-shadow:0 40px 30px rgba(33,15,89,.1)}}@media (min-width:782px){.exactmetrics_page .exactmetrics-swal{margin-right:160px}.auto-fold .exactmetrics_page .exactmetrics-swal{margin-right:36px}}@media (min-width:961px){.auto-fold .exactmetrics_page .exactmetrics-swal{margin-right:160px}.folded .exactmetrics_page .exactmetrics-swal{margin-right:36px}}.exactmetrics_page .exactmetrics-swal .swal2-footer{border-top:none;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;margin-top:0;font-size:15px}.exactmetrics_page .exactmetrics-swal .swal2-footer a{color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-footer a:focus,.exactmetrics_page .exactmetrics-swal .swal2-footer a:hover{color:#37276a}.exactmetrics-modal{position:fixed;top:0;right:0;left:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-modal .exactmetrics-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.exactmetrics-modal .exactmetrics-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.exactmetrics-modal .exactmetrics-modal-inner p{margin-bottom:0}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-modal-buttons{margin-top:50px}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-button{margin:0 10px}.exactmetrics-welcome-overlay{position:fixed;top:0;right:0;left:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(33,15,89,.9)}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%;border-radius:10px;-webkit-box-shadow:0 20px 80px rgba(13,7,36,.5);box-shadow:0 20px 80px rgba(13,7,36,.5)}.exactmetrics-welcome-overlay .exactmetrics-overlay-close{background:none;border:none;position:absolute;top:5px;left:7px;padding:0;color:#777}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content{height:100%}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content iframe{height:100%;width:100%}.swal2-container.exactmetrics-swal-loading{background:#fff;padding:20px;top:112px;height:auto}.swal2-container.exactmetrics-swal-loading.exactmetrics-swal-full-height{top:32px}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal{width:100%;height:100%;border-radius:10px;background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;background-size:cover;-webkit-animation-duration:1ms;animation-duration:1ms}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-icon{visibility:hidden;height:0;padding:0}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-header{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-title{font-size:17px;color:#210f59}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-content{color:#9087ac;margin-top:6px;font-size:15px;line-height:1.75;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-actions button{display:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess{padding:0;background:#f8f6ff}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-icon{visibility:hidden;height:0;width:0;margin:0;padding:0}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal{width:750px;background:none;padding-right:260px;position:relative}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-header{display:block}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-title{font-size:32px;line-height:1.3;color:#210f59;text-align:right}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content{font-size:15px;line-height:1.75;color:#210f59;text-align:right;margin-bottom:20px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content p{font-size:15px;margin:0;font-weight:500}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-actions{margin:0;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled{margin:0;font-size:15px;padding:16px 23px 14px;outline:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled .monstericon-long-arrow-right-light{margin-right:14px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:hover{border:none;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm{background:#32a27a}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:hover{background:#19865f}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-cancel{margin-right:15px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons{position:absolute;right:-35px;top:-15px;width:260px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]{position:absolute;color:#6528f5;opacity:.5;font-size:41px;top:114px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:first-child{font-size:108px;opacity:1;top:-22px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(2){right:35px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-].monstericon-exclamation-em-solid:nth-child(2){right:50px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(3){top:147px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(4){right:185px}.exactmetrics_page .exactmetrics-swal .swal2-title{line-height:1.2}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info{border:none;border-radius:0}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error:before,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f064";font-size:80px;color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-icon-text,.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-x-mark{display:none}.exactmetrics_page .exactmetrics-swal .swal2-styled{border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm{background:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:hover{background-color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel{background:#e9e7ee;color:#37276a}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:hover{background-color:#f4f3f7;color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-popup{border-radius:10px;padding:40px}.exactmetrics-list-check ul{margin:0;list-style:none;padding-right:0}.exactmetrics-list-check li{font-size:15px;margin-top:18px;padding-right:30px;position:relative;color:#fff}.exactmetrics-list-check li:first-child{margin-top:0}.exactmetrics-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f045";font-size:15px;margin-left:10px;color:#fff;position:absolute;right:0;top:0}.exactmetrics-settings-input-select-input .multiselect__tags-wrap{position:relative}.exactmetrics-settings-input-select-input .multiselect__tags-wrap:after{content:attr(data-text);display:inline-block;position:relative;color:#9087ac;bottom:0;background:#fff;border-radius:4px;font-size:14px;vertical-align:top;padding:8px 15px}.exactmetrics-settings-input-select-input .multiselect__placeholder{display:none}.multiselect__content-wrapper{right:30px}
|
lite/assets/vue/css/frontend.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}.exactmetrics-roller div{-webkit-animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;-webkit-transform-origin:29px 29px;-ms-transform-origin:29px 29px;transform-origin:29px 29px}.exactmetrics-roller div:after{content:" ";display:block;position:absolute;width:8px;height:8px;border-radius:50%;background:#6528f5;margin:-4px 0 0 -4px}.exactmetrics-roller div:first-child{-webkit-animation-delay:-36ms;animation-delay:-36ms}.exactmetrics-roller div:nth-child(2){-webkit-animation-delay:-72ms;animation-delay:-72ms}.exactmetrics-roller div:nth-child(3){-webkit-animation-delay:-.108s;animation-delay:-.108s}.exactmetrics-roller div:nth-child(4){-webkit-animation-delay:-.144s;animation-delay:-.144s}.exactmetrics-roller div:nth-child(5){-webkit-animation-delay:-.18s;animation-delay:-.18s}.exactmetrics-roller div:nth-child(6){-webkit-animation-delay:-.216s;animation-delay:-.216s}.exactmetrics-roller div:nth-child(7){-webkit-animation-delay:-.252s;animation-delay:-.252s}.exactmetrics-roller div:first-child:after{top:49px;left:44px}.exactmetrics-roller div:nth-child(2):after{top:54px;left:28px}.exactmetrics-roller div:nth-child(3):after{top:48px;left:13px}.exactmetrics-roller div:nth-child(4):after{top:35px;left:5px}.exactmetrics-roller div:nth-child(5):after{top:19px;left:6px}.exactmetrics-roller div:nth-child(6):after{top:8px;left:15px}.exactmetrics-roller div:nth-child(7):after{top:4px;left:29px}@-webkit-keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}#wpadminbar .exactmetrics-frontend-stats{position:absolute;top:32px;background:#fff;width:100vw;left:0;color:#000;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px -10px rgba(0,0,0,.15);box-shadow:0 5px 25px -10px rgba(0,0,0,.15);-webkit-box-sizing:border-box;box-sizing:border-box;min-height:104px}@media (max-width:1023px){#wpadminbar .exactmetrics-frontend-stats{padding:0 20px 20px}}@media (max-width:782px){#wpadminbar .exactmetrics-frontend-stats{top:46px}}#wpadminbar .exactmetrics-adminbar-menu-item{position:static}@media (max-width:782px){#wpadminbar .exactmetrics-adminbar-menu-item{display:block}#wpadminbar .exactmetrics-adminbar-menu-item .exactmetrics-admin-bar-handle-text{display:none}#wpadminbar .exactmetrics-adminbar-menu-item .dashicons-chart-bar:before{font-size:28px;margin-top:10px;width:28px;height:28px}}#wpadminbar .exactmetrics-toggle{cursor:pointer}#wpadminbar .exactmetrics-toggle-active{background:#fff;color:#393f4c}#wpadminbar .exactmetrics-toggle-active:focus,#wpadminbar .exactmetrics-toggle-active:hover{color:#6528f5}#wpadminbar .ab-item.exactmetrics-toggle-active .ab-icon:before{color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active{background:#fff;color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active .ab-icon,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active .ab-icon:before{color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:focus,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:focus .ab-icon:before,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:hover,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:hover .ab-icon:before{color:#6528f5}#wpadminbar .exactmetrics-frontend-stats-inner h3{font-size:13px;line-height:1;color:#4d3f7a;margin:13px 0;font-weight:500}#wpadminbar .exactmetrics-frontend-stats-inner h3 span{line-height:1;font-weight:700}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;background-color:#f4f3f7;border-radius:10px;padding-top:24px;padding-bottom:24px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column{margin-right:20px;padding-left:60px;border-left:1px solid #d6e2ed}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column:first-child{border:none}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area:not(.exactmetrics-pageinsights-data) .exactmetrics-stats-column:last-child{border:none;padding-left:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:881px){#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area{-ms-flex-wrap:wrap;flex-wrap:wrap;padding:20px 20px 0}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column{width:calc(50% - 20px);padding:0;margin:0 0 20px;border:none}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column:last-child{width:100%;text-align:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change div,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change span{line-height:1}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{display:inline-block}@media (max-width:1280px){#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{float:none;clear:both}}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare{color:#9087ac;font-size:12px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{font-size:14px;margin-right:6px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev .exactmetrics-arrow{vertical-align:middle}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow{width:10px;height:11px;display:inline-block;background-size:contain;background-repeat:no-repeat}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-down.exactmetrics-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-up.exactmetrics-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-red{color:#d73638}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-green{color:#5cc0a5}#wpadminbar .exactmetrics-stats-label{font-weight:700;color:#4d3f7a;font-size:13px;line-height:1}#wpadminbar .exactmetrics-stats-value{font-size:32px;color:#210f59;margin:6px 0 5px;line-height:1}#wpadminbar .exactmetrics-stats-column-title{width:30%;-ms-flex-negative:0;flex-shrink:0}#wpadminbar .exactmetrics-stats-column-title .exactmetrics-stats-value{white-space:pre;text-overflow:ellipsis;overflow:hidden}#wpadminbar .exactmetrics-frontend-stats-loading{text-align:center;position:absolute;z-index:90;left:0;right:0;bottom:0;top:0;background:#fff;padding-top:25px;padding-bottom:25px;min-height:100px}#wpadminbar .exactmetrics-frontend-spinner{animation:exactmetrics-rotate-loading 1.5s linear 0s infinite normal;-webkit-animation:exactmetrics-rotate-loading 1.5s linear 0s infinite normal;background-color:rgba(0,0,0,0)!important;border-radius:100%;border-color:rgba(0,0,0,0) #4b9ce4;border-style:solid;border-width:.25em;-webkit-box-sizing:border-box;box-sizing:border-box;color:rgba(0,0,0,0);cursor:default;display:inline-block;height:2.5em;margin:10px auto;padding:0;width:2.5em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#wpadminbar a.exactmetrics-button,#wpadminbar button.exactmetrics-button{background:#6528f5;border:solid #6528f5;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none;line-height:1;height:auto}#wpadminbar a.exactmetrics-button:focus,#wpadminbar a.exactmetrics-button:hover,#wpadminbar button.exactmetrics-button:focus,#wpadminbar button.exactmetrics-button:hover{background-color:#37276a;border-color:#37276a;color:#fff;border-width:1px 1px 2px}#wpadminbar .exactmetrics-widget-error{padding:0;text-align:center}#wpadminbar .exactmetrics-widget-error h2{font-size:18px;font-weight:700}#wpadminbar .exactmetrics-widget-error h2:before{display:none}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-title{font-weight:700;font-size:24px}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-content{font-size:16px}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-footer{margin:35px 0 0;padding:15px 0 0;border-top:1px solid #ccc}#wpadminbar .exactmetrics-widget-error .swal2-icon,#wpadminbar .exactmetrics-widget-error .swal2-icon *,#wpadminbar .swal2-icon{-webkit-box-sizing:content-box;box-sizing:content-box}#wpadminbar .swal2-icon{border:.25em solid rgba(0,0,0,0);border-radius:50%;cursor:default;height:5em;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;line-height:5em;margin:1.25em auto 1.875em;position:relative;width:5em;zoom:normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#wpadminbar .swal2-animate-error-icon .swal2-x-mark{animation:swal2-animate-error-x-mark .5s;-webkit-animation:swal2-animate-error-x-mark .5s;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;position:relative}#wpadminbar .swal2-animate-error-icon{animation:swal2-animate-error-icon .5s;-webkit-animation:swal2-animate-error-icon .5s}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform:rotate(45deg)}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line]{background-color:#f27474;border-radius:.125em;display:block;height:.3125em;position:absolute;top:2.3125em;width:2.9375em}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}#wpadminbar .swal2-icon.swal2-error{border-color:#f27474}#wpadminbar .quicklinks .exactmetrics-powered-by{display:none}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}#wpadminbar .exactmetrics-not-authenticated-notice{text-align:center;font-family:Arial,Helvetica,Trebuchet MS,sans-serif;margin-bottom:17px;border:none}#wpadminbar .exactmetrics-not-authenticated-notice h3{color:#222;font-size:18px;font-weight:700;margin-top:17px}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate{max-width:975px;margin-left:auto;margin-right:auto}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate p{font-size:15px;line-height:1.4;color:#222;margin:5px 0 30px}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button{color:#555;background:#f7f7f7;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc;vertical-align:top;display:inline-block;text-decoration:none;font-size:13px;line-height:26px;height:28px;margin:0 6px;padding:0 10px 1px;cursor:pointer;border:1px solid #ccc;-webkit-appearance:none;border-radius:3px;white-space:nowrap;-webkit-box-sizing:border-box;box-sizing:border-box}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button:hover{background:#fafafa;border-color:#999;color:#23282d}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button.exactmetrics-wp-button-primary{background:#0085ba;border-color:#0073aa #006799 #006799;-webkit-box-shadow:0 1px 0 #006799;box-shadow:0 1px 0 #006799;color:#fff;text-decoration:none;text-shadow:0 -1px 1px #006799,1px 0 1px #006799,0 1px 1px #006799,-1px 0 1px #006799}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button.exactmetrics-wp-button-primary:hover{background:#008ec2;border-color:#006799;color:#fff}#wpadminbar .exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}@-webkit-keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}
|
1 |
+
.exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}.exactmetrics-roller div{-webkit-animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;-webkit-transform-origin:29px 29px;-ms-transform-origin:29px 29px;transform-origin:29px 29px}.exactmetrics-roller div:after{content:" ";display:block;position:absolute;width:8px;height:8px;border-radius:50%;background:#6528f5;margin:-4px 0 0 -4px}.exactmetrics-roller div:first-child{-webkit-animation-delay:-36ms;animation-delay:-36ms}.exactmetrics-roller div:nth-child(2){-webkit-animation-delay:-72ms;animation-delay:-72ms}.exactmetrics-roller div:nth-child(3){-webkit-animation-delay:-.108s;animation-delay:-.108s}.exactmetrics-roller div:nth-child(4){-webkit-animation-delay:-.144s;animation-delay:-.144s}.exactmetrics-roller div:nth-child(5){-webkit-animation-delay:-.18s;animation-delay:-.18s}.exactmetrics-roller div:nth-child(6){-webkit-animation-delay:-.216s;animation-delay:-.216s}.exactmetrics-roller div:nth-child(7){-webkit-animation-delay:-.252s;animation-delay:-.252s}.exactmetrics-roller div:first-child:after{top:49px;left:44px}.exactmetrics-roller div:nth-child(2):after{top:54px;left:28px}.exactmetrics-roller div:nth-child(3):after{top:48px;left:13px}.exactmetrics-roller div:nth-child(4):after{top:35px;left:5px}.exactmetrics-roller div:nth-child(5):after{top:19px;left:6px}.exactmetrics-roller div:nth-child(6):after{top:8px;left:15px}.exactmetrics-roller div:nth-child(7):after{top:4px;left:29px}@-webkit-keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}#wpadminbar .exactmetrics-frontend-stats{position:absolute;top:32px;background:#fff;width:100vw;left:0;color:#000;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px -10px rgba(0,0,0,.15);box-shadow:0 5px 25px -10px rgba(0,0,0,.15);-webkit-box-sizing:border-box;box-sizing:border-box;min-height:104px}@media (max-width:1023px){#wpadminbar .exactmetrics-frontend-stats{padding:0 20px 20px}}@media (max-width:782px){#wpadminbar .exactmetrics-frontend-stats{top:46px}}#wpadminbar .exactmetrics-adminbar-menu-item{position:static}@media (max-width:782px){#wpadminbar .exactmetrics-adminbar-menu-item{display:block}#wpadminbar .exactmetrics-adminbar-menu-item .exactmetrics-admin-bar-handle-text{display:none}#wpadminbar .exactmetrics-adminbar-menu-item .dashicons-chart-bar:before{font-size:28px;margin-top:10px;width:28px;height:28px}}#wpadminbar .exactmetrics-toggle{cursor:pointer}#wpadminbar .exactmetrics-toggle-active{background:#fff;color:#393f4c}#wpadminbar .exactmetrics-toggle-active:focus,#wpadminbar .exactmetrics-toggle-active:hover{color:#6528f5}#wpadminbar .ab-item.exactmetrics-toggle-active .ab-icon:before{color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active{background:#fff;color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active .ab-icon,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active .ab-icon:before{color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:focus,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:focus .ab-icon:before,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:hover,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:hover .ab-icon:before{color:#6528f5}#wpadminbar .exactmetrics-frontend-stats-inner h3{font-size:13px;line-height:1;color:#4d3f7a;margin:13px 0;font-weight:500}#wpadminbar .exactmetrics-frontend-stats-inner h3 span{line-height:1;font-weight:700}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;background-color:#f4f3f7;border-radius:10px;padding-top:24px;padding-bottom:24px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column{margin-right:20px;padding-left:60px;border-left:1px solid #d6e2ed}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column:first-child{border:none}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area:not(.exactmetrics-pageinsights-data) .exactmetrics-frontend-column-button,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area:not(.exactmetrics-pageinsights-data) .exactmetrics-stats-column:last-child{border:none;padding-left:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:881px){#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area{-ms-flex-wrap:wrap;flex-wrap:wrap;padding:20px 20px 0}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column{width:calc(50% - 20px);padding:0;margin:0 0 20px;border:none}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column:last-child{width:100%;text-align:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change div,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change span{line-height:1}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{display:inline-block}@media (max-width:1280px){#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{float:none;clear:both}}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare{color:#9087ac;font-size:12px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{font-size:14px;margin-right:6px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev .exactmetrics-arrow{vertical-align:middle}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow{width:10px;height:11px;display:inline-block;background-size:contain;background-repeat:no-repeat}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-down.exactmetrics-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-up.exactmetrics-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-red{color:#d73638}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-green{color:#5cc0a5}#wpadminbar .exactmetrics-stats-label{font-weight:700;color:#4d3f7a;font-size:13px;line-height:1}#wpadminbar .exactmetrics-stats-value{font-size:32px;color:#210f59;margin:6px 0 5px;line-height:1}#wpadminbar .exactmetrics-stats-column-title{width:30%;-ms-flex-negative:0;flex-shrink:0}#wpadminbar .exactmetrics-stats-column-title .exactmetrics-stats-value{white-space:pre;text-overflow:ellipsis;overflow:hidden}#wpadminbar .exactmetrics-frontend-stats-loading{text-align:center;position:absolute;z-index:90;left:0;right:0;bottom:0;top:0;background:#fff;padding-top:25px;padding-bottom:25px;min-height:100px}#wpadminbar .exactmetrics-frontend-spinner{animation:exactmetrics-rotate-loading 1.5s linear 0s infinite normal;-webkit-animation:exactmetrics-rotate-loading 1.5s linear 0s infinite normal;background-color:rgba(0,0,0,0)!important;border-radius:100%;border-color:rgba(0,0,0,0) #4b9ce4;border-style:solid;border-width:.25em;-webkit-box-sizing:border-box;box-sizing:border-box;color:rgba(0,0,0,0);cursor:default;display:inline-block;height:2.5em;margin:10px auto;padding:0;width:2.5em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#wpadminbar a.exactmetrics-button,#wpadminbar button.exactmetrics-button{background:#6528f5;border:solid #6528f5;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none;line-height:1;height:auto}#wpadminbar a.exactmetrics-button:focus,#wpadminbar a.exactmetrics-button:hover,#wpadminbar button.exactmetrics-button:focus,#wpadminbar button.exactmetrics-button:hover{background-color:#37276a;border-color:#37276a;color:#fff;border-width:1px 1px 2px}#wpadminbar .exactmetrics-widget-error{padding:0;text-align:center}#wpadminbar .exactmetrics-widget-error h2{font-size:18px;font-weight:700}#wpadminbar .exactmetrics-widget-error h2:before{display:none}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-title{font-weight:700;font-size:24px}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-content{font-size:16px}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-footer{margin:35px 0 0;padding:15px 0 0;border-top:1px solid #ccc}#wpadminbar .exactmetrics-widget-error .swal2-icon,#wpadminbar .exactmetrics-widget-error .swal2-icon *,#wpadminbar .swal2-icon{-webkit-box-sizing:content-box;box-sizing:content-box}#wpadminbar .swal2-icon{border:.25em solid rgba(0,0,0,0);border-radius:50%;cursor:default;height:5em;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;line-height:5em;margin:1.25em auto 1.875em;position:relative;width:5em;zoom:normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#wpadminbar .swal2-animate-error-icon .swal2-x-mark{animation:swal2-animate-error-x-mark .5s;-webkit-animation:swal2-animate-error-x-mark .5s;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;position:relative}#wpadminbar .swal2-animate-error-icon{animation:swal2-animate-error-icon .5s;-webkit-animation:swal2-animate-error-icon .5s}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform:rotate(45deg)}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line]{background-color:#f27474;border-radius:.125em;display:block;height:.3125em;position:absolute;top:2.3125em;width:2.9375em}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}#wpadminbar .swal2-icon.swal2-error{border-color:#f27474}#wpadminbar .quicklinks .exactmetrics-powered-by{display:none}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}#wpadminbar .exactmetrics-not-authenticated-notice{text-align:center;font-family:Arial,Helvetica,Trebuchet MS,sans-serif;margin-bottom:17px;border:none}#wpadminbar .exactmetrics-not-authenticated-notice h3{color:#222;font-size:18px;font-weight:700;margin-top:17px}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate{max-width:975px;margin-left:auto;margin-right:auto}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate p{font-size:15px;line-height:1.4;color:#222;margin:5px 0 30px}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button{color:#555;background:#f7f7f7;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc;vertical-align:top;display:inline-block;text-decoration:none;font-size:13px;line-height:26px;height:28px;margin:0 6px;padding:0 10px 1px;cursor:pointer;border:1px solid #ccc;-webkit-appearance:none;border-radius:3px;white-space:nowrap;-webkit-box-sizing:border-box;box-sizing:border-box}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button:hover{background:#fafafa;border-color:#999;color:#23282d}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button.exactmetrics-wp-button-primary{background:#0085ba;border-color:#0073aa #006799 #006799;-webkit-box-shadow:0 1px 0 #006799;box-shadow:0 1px 0 #006799;color:#fff;text-decoration:none;text-shadow:0 -1px 1px #006799,1px 0 1px #006799,0 1px 1px #006799,-1px 0 1px #006799}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button.exactmetrics-wp-button-primary:hover{background:#008ec2;border-color:#006799;color:#fff}#wpadminbar .exactmetrics-notifications-indicator{padding-top:10px}#wpadminbar .exactmetrics-notifications-indicator a{margin-left:0;position:relative;height:auto;max-width:35px;padding:0}#wpadminbar .exactmetrics-notifications-unread{width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;right:-2px;border-radius:50%}#wpadminbar .exactmetrics-menu-notification-indicator{width:12px;height:12px;border-radius:50%;background:#c84b29;display:inline-block;margin-left:8px}@media (max-width:782px){#wpadminbar .exactmetrics-menu-notification-indicator{margin:0 0 10px -13px;z-index:10;position:relative}}#wpadminbar .exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}@-webkit-keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}
|
lite/assets/vue/css/frontend.rtl.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}.exactmetrics-roller div{-webkit-animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;-webkit-transform-origin:29px 29px;-ms-transform-origin:29px 29px;transform-origin:29px 29px}.exactmetrics-roller div:after{content:" ";display:block;position:absolute;width:8px;height:8px;border-radius:50%;background:#6528f5;margin:-4px -4px 0 0}.exactmetrics-roller div:first-child{-webkit-animation-delay:-36ms;animation-delay:-36ms}.exactmetrics-roller div:nth-child(2){-webkit-animation-delay:-72ms;animation-delay:-72ms}.exactmetrics-roller div:nth-child(3){-webkit-animation-delay:-.108s;animation-delay:-.108s}.exactmetrics-roller div:nth-child(4){-webkit-animation-delay:-.144s;animation-delay:-.144s}.exactmetrics-roller div:nth-child(5){-webkit-animation-delay:-.18s;animation-delay:-.18s}.exactmetrics-roller div:nth-child(6){-webkit-animation-delay:-.216s;animation-delay:-.216s}.exactmetrics-roller div:nth-child(7){-webkit-animation-delay:-.252s;animation-delay:-.252s}.exactmetrics-roller div:first-child:after{top:49px;right:44px}.exactmetrics-roller div:nth-child(2):after{top:54px;right:28px}.exactmetrics-roller div:nth-child(3):after{top:48px;right:13px}.exactmetrics-roller div:nth-child(4):after{top:35px;right:5px}.exactmetrics-roller div:nth-child(5):after{top:19px;right:6px}.exactmetrics-roller div:nth-child(6):after{top:8px;right:15px}.exactmetrics-roller div:nth-child(7):after{top:4px;right:29px}@-webkit-keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}#wpadminbar .exactmetrics-frontend-stats{position:absolute;top:32px;background:#fff;width:100vw;right:0;color:#000;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px -10px rgba(0,0,0,.15);box-shadow:0 5px 25px -10px rgba(0,0,0,.15);-webkit-box-sizing:border-box;box-sizing:border-box;min-height:104px}@media (max-width:1023px){#wpadminbar .exactmetrics-frontend-stats{padding:0 20px 20px}}@media (max-width:782px){#wpadminbar .exactmetrics-frontend-stats{top:46px}}#wpadminbar .exactmetrics-adminbar-menu-item{position:static}@media (max-width:782px){#wpadminbar .exactmetrics-adminbar-menu-item{display:block}#wpadminbar .exactmetrics-adminbar-menu-item .exactmetrics-admin-bar-handle-text{display:none}#wpadminbar .exactmetrics-adminbar-menu-item .dashicons-chart-bar:before{font-size:28px;margin-top:10px;width:28px;height:28px}}#wpadminbar .exactmetrics-toggle{cursor:pointer}#wpadminbar .exactmetrics-toggle-active{background:#fff;color:#393f4c}#wpadminbar .exactmetrics-toggle-active:focus,#wpadminbar .exactmetrics-toggle-active:hover{color:#6528f5}#wpadminbar .ab-item.exactmetrics-toggle-active .ab-icon:before{color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active{background:#fff;color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active .ab-icon,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active .ab-icon:before{color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:focus,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:focus .ab-icon:before,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:hover,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:hover .ab-icon:before{color:#6528f5}#wpadminbar .exactmetrics-frontend-stats-inner h3{font-size:13px;line-height:1;color:#4d3f7a;margin:13px 0;font-weight:500}#wpadminbar .exactmetrics-frontend-stats-inner h3 span{line-height:1;font-weight:700}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;background-color:#f4f3f7;border-radius:10px;padding-top:24px;padding-bottom:24px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column{margin-left:20px;padding-right:60px;border-right:1px solid #d6e2ed}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column:first-child{border:none}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area:not(.exactmetrics-pageinsights-data) .exactmetrics-stats-column:last-child{border:none;padding-right:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:881px){#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area{-ms-flex-wrap:wrap;flex-wrap:wrap;padding:20px 20px 0}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column{width:calc(50% - 20px);padding:0;margin:0 0 20px;border:none}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column:last-child{width:100%;text-align:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change div,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change span{line-height:1}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{display:inline-block}@media (max-width:1280px){#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{float:none;clear:both}}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare{color:#9087ac;font-size:12px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{font-size:14px;margin-left:6px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev .exactmetrics-arrow{vertical-align:middle}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow{width:10px;height:11px;display:inline-block;background-size:contain;background-repeat:no-repeat}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-down.exactmetrics-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-up.exactmetrics-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-red{color:#d73638}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-green{color:#5cc0a5}#wpadminbar .exactmetrics-stats-label{font-weight:700;color:#4d3f7a;font-size:13px;line-height:1}#wpadminbar .exactmetrics-stats-value{font-size:32px;color:#210f59;margin:6px 0 5px;line-height:1}#wpadminbar .exactmetrics-stats-column-title{width:30%;-ms-flex-negative:0;flex-shrink:0}#wpadminbar .exactmetrics-stats-column-title .exactmetrics-stats-value{white-space:pre;text-overflow:ellipsis;overflow:hidden}#wpadminbar .exactmetrics-frontend-stats-loading{text-align:center;position:absolute;z-index:90;right:0;left:0;bottom:0;top:0;background:#fff;padding-top:25px;padding-bottom:25px;min-height:100px}#wpadminbar .exactmetrics-frontend-spinner{animation:exactmetrics-rotate-loading 1.5s linear 0s infinite normal;-webkit-animation:exactmetrics-rotate-loading 1.5s linear 0s infinite normal;background-color:rgba(0,0,0,0)!important;border-radius:100%;border-color:rgba(0,0,0,0) #4b9ce4;border-style:solid;border-width:.25em;-webkit-box-sizing:border-box;box-sizing:border-box;color:rgba(0,0,0,0);cursor:default;display:inline-block;height:2.5em;margin:10px auto;padding:0;width:2.5em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#wpadminbar a.exactmetrics-button,#wpadminbar button.exactmetrics-button{background:#6528f5;border:solid #6528f5;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none;line-height:1;height:auto}#wpadminbar a.exactmetrics-button:focus,#wpadminbar a.exactmetrics-button:hover,#wpadminbar button.exactmetrics-button:focus,#wpadminbar button.exactmetrics-button:hover{background-color:#37276a;border-color:#37276a;color:#fff;border-width:1px 1px 2px}#wpadminbar .exactmetrics-widget-error{padding:0;text-align:center}#wpadminbar .exactmetrics-widget-error h2{font-size:18px;font-weight:700}#wpadminbar .exactmetrics-widget-error h2:before{display:none}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-title{font-weight:700;font-size:24px}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-content{font-size:16px}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-footer{margin:35px 0 0;padding:15px 0 0;border-top:1px solid #ccc}#wpadminbar .exactmetrics-widget-error .swal2-icon,#wpadminbar .exactmetrics-widget-error .swal2-icon *,#wpadminbar .swal2-icon{-webkit-box-sizing:content-box;box-sizing:content-box}#wpadminbar .swal2-icon{border:.25em solid rgba(0,0,0,0);border-radius:50%;cursor:default;height:5em;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;line-height:5em;margin:1.25em auto 1.875em;position:relative;width:5em;zoom:normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#wpadminbar .swal2-animate-error-icon .swal2-x-mark{animation:swal2-animate-error-x-mark .5s;-webkit-animation:swal2-animate-error-x-mark .5s;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;position:relative}#wpadminbar .swal2-animate-error-icon{animation:swal2-animate-error-icon .5s;-webkit-animation:swal2-animate-error-icon .5s}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:1.0625em;-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line]{background-color:#f27474;border-radius:.125em;display:block;height:.3125em;position:absolute;top:2.3125em;width:2.9375em}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:1em;-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform:rotate(45deg)}#wpadminbar .swal2-icon.swal2-error{border-color:#f27474}#wpadminbar .quicklinks .exactmetrics-powered-by{display:none}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}#wpadminbar .exactmetrics-not-authenticated-notice{text-align:center;font-family:Arial,Helvetica,Trebuchet MS,sans-serif;margin-bottom:17px;border:none}#wpadminbar .exactmetrics-not-authenticated-notice h3{color:#222;font-size:18px;font-weight:700;margin-top:17px}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate{max-width:975px;margin-right:auto;margin-left:auto}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate p{font-size:15px;line-height:1.4;color:#222;margin:5px 0 30px}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button{color:#555;background:#f7f7f7;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc;vertical-align:top;display:inline-block;text-decoration:none;font-size:13px;line-height:26px;height:28px;margin:0 6px;padding:0 10px 1px;cursor:pointer;border:1px solid #ccc;-webkit-appearance:none;border-radius:3px;white-space:nowrap;-webkit-box-sizing:border-box;box-sizing:border-box}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button:hover{background:#fafafa;border-color:#999;color:#23282d}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button.exactmetrics-wp-button-primary{background:#0085ba;border-color:#0073aa #006799 #006799;-webkit-box-shadow:0 1px 0 #006799;box-shadow:0 1px 0 #006799;color:#fff;text-decoration:none;text-shadow:0 -1px 1px #006799,-1px 0 1px #006799,0 1px 1px #006799,1px 0 1px #006799}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button.exactmetrics-wp-button-primary:hover{background:#008ec2;border-color:#006799;color:#fff}#wpadminbar .exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}@-webkit-keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}
|
1 |
+
.exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}.exactmetrics-roller div{-webkit-animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;-webkit-transform-origin:29px 29px;-ms-transform-origin:29px 29px;transform-origin:29px 29px}.exactmetrics-roller div:after{content:" ";display:block;position:absolute;width:8px;height:8px;border-radius:50%;background:#6528f5;margin:-4px -4px 0 0}.exactmetrics-roller div:first-child{-webkit-animation-delay:-36ms;animation-delay:-36ms}.exactmetrics-roller div:nth-child(2){-webkit-animation-delay:-72ms;animation-delay:-72ms}.exactmetrics-roller div:nth-child(3){-webkit-animation-delay:-.108s;animation-delay:-.108s}.exactmetrics-roller div:nth-child(4){-webkit-animation-delay:-.144s;animation-delay:-.144s}.exactmetrics-roller div:nth-child(5){-webkit-animation-delay:-.18s;animation-delay:-.18s}.exactmetrics-roller div:nth-child(6){-webkit-animation-delay:-.216s;animation-delay:-.216s}.exactmetrics-roller div:nth-child(7){-webkit-animation-delay:-.252s;animation-delay:-.252s}.exactmetrics-roller div:first-child:after{top:49px;right:44px}.exactmetrics-roller div:nth-child(2):after{top:54px;right:28px}.exactmetrics-roller div:nth-child(3):after{top:48px;right:13px}.exactmetrics-roller div:nth-child(4):after{top:35px;right:5px}.exactmetrics-roller div:nth-child(5):after{top:19px;right:6px}.exactmetrics-roller div:nth-child(6):after{top:8px;right:15px}.exactmetrics-roller div:nth-child(7):after{top:4px;right:29px}@-webkit-keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}#wpadminbar .exactmetrics-frontend-stats{position:absolute;top:32px;background:#fff;width:100vw;right:0;color:#000;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px -10px rgba(0,0,0,.15);box-shadow:0 5px 25px -10px rgba(0,0,0,.15);-webkit-box-sizing:border-box;box-sizing:border-box;min-height:104px}@media (max-width:1023px){#wpadminbar .exactmetrics-frontend-stats{padding:0 20px 20px}}@media (max-width:782px){#wpadminbar .exactmetrics-frontend-stats{top:46px}}#wpadminbar .exactmetrics-adminbar-menu-item{position:static}@media (max-width:782px){#wpadminbar .exactmetrics-adminbar-menu-item{display:block}#wpadminbar .exactmetrics-adminbar-menu-item .exactmetrics-admin-bar-handle-text{display:none}#wpadminbar .exactmetrics-adminbar-menu-item .dashicons-chart-bar:before{font-size:28px;margin-top:10px;width:28px;height:28px}}#wpadminbar .exactmetrics-toggle{cursor:pointer}#wpadminbar .exactmetrics-toggle-active{background:#fff;color:#393f4c}#wpadminbar .exactmetrics-toggle-active:focus,#wpadminbar .exactmetrics-toggle-active:hover{color:#6528f5}#wpadminbar .ab-item.exactmetrics-toggle-active .ab-icon:before{color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active{background:#fff;color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active .ab-icon,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active .ab-icon:before{color:#393f4c}#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:focus,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:focus .ab-icon:before,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:hover,#wpadminbar .ab-top-menu>li:hover .ab-item.exactmetrics-toggle-active:hover .ab-icon:before{color:#6528f5}#wpadminbar .exactmetrics-frontend-stats-inner h3{font-size:13px;line-height:1;color:#4d3f7a;margin:13px 0;font-weight:500}#wpadminbar .exactmetrics-frontend-stats-inner h3 span{line-height:1;font-weight:700}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;background-color:#f4f3f7;border-radius:10px;padding-top:24px;padding-bottom:24px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column{margin-left:20px;padding-right:60px;border-right:1px solid #d6e2ed}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column:first-child{border:none}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area:not(.exactmetrics-pageinsights-data) .exactmetrics-frontend-column-button,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area:not(.exactmetrics-pageinsights-data) .exactmetrics-stats-column:last-child{border:none;padding-right:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:881px){#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area{-ms-flex-wrap:wrap;flex-wrap:wrap;padding:20px 20px 0}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column{width:calc(50% - 20px);padding:0;margin:0 0 20px;border:none}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-stats-grey-area .exactmetrics-stats-column:last-child{width:100%;text-align:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change div,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-frontend-infobox-change span{line-height:1}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{display:inline-block}@media (max-width:1280px){#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare,#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{float:none;clear:both}}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-compare{color:#9087ac;font-size:12px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev{font-size:14px;margin-left:6px}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-reports-infobox-prev .exactmetrics-arrow{vertical-align:middle}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow{width:10px;height:11px;display:inline-block;background-size:contain;background-repeat:no-repeat}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-down.exactmetrics-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-arrow.exactmetrics-up.exactmetrics-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-red{color:#d73638}#wpadminbar .exactmetrics-frontend-stats-inner .exactmetrics-green{color:#5cc0a5}#wpadminbar .exactmetrics-stats-label{font-weight:700;color:#4d3f7a;font-size:13px;line-height:1}#wpadminbar .exactmetrics-stats-value{font-size:32px;color:#210f59;margin:6px 0 5px;line-height:1}#wpadminbar .exactmetrics-stats-column-title{width:30%;-ms-flex-negative:0;flex-shrink:0}#wpadminbar .exactmetrics-stats-column-title .exactmetrics-stats-value{white-space:pre;text-overflow:ellipsis;overflow:hidden}#wpadminbar .exactmetrics-frontend-stats-loading{text-align:center;position:absolute;z-index:90;right:0;left:0;bottom:0;top:0;background:#fff;padding-top:25px;padding-bottom:25px;min-height:100px}#wpadminbar .exactmetrics-frontend-spinner{animation:exactmetrics-rotate-loading 1.5s linear 0s infinite normal;-webkit-animation:exactmetrics-rotate-loading 1.5s linear 0s infinite normal;background-color:rgba(0,0,0,0)!important;border-radius:100%;border-color:rgba(0,0,0,0) #4b9ce4;border-style:solid;border-width:.25em;-webkit-box-sizing:border-box;box-sizing:border-box;color:rgba(0,0,0,0);cursor:default;display:inline-block;height:2.5em;margin:10px auto;padding:0;width:2.5em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#wpadminbar a.exactmetrics-button,#wpadminbar button.exactmetrics-button{background:#6528f5;border:solid #6528f5;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none;line-height:1;height:auto}#wpadminbar a.exactmetrics-button:focus,#wpadminbar a.exactmetrics-button:hover,#wpadminbar button.exactmetrics-button:focus,#wpadminbar button.exactmetrics-button:hover{background-color:#37276a;border-color:#37276a;color:#fff;border-width:1px 1px 2px}#wpadminbar .exactmetrics-widget-error{padding:0;text-align:center}#wpadminbar .exactmetrics-widget-error h2{font-size:18px;font-weight:700}#wpadminbar .exactmetrics-widget-error h2:before{display:none}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-title{font-weight:700;font-size:24px}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-content{font-size:16px}#wpadminbar .exactmetrics-widget-error .exactmetrics-error-footer{margin:35px 0 0;padding:15px 0 0;border-top:1px solid #ccc}#wpadminbar .exactmetrics-widget-error .swal2-icon,#wpadminbar .exactmetrics-widget-error .swal2-icon *,#wpadminbar .swal2-icon{-webkit-box-sizing:content-box;box-sizing:content-box}#wpadminbar .swal2-icon{border:.25em solid rgba(0,0,0,0);border-radius:50%;cursor:default;height:5em;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;line-height:5em;margin:1.25em auto 1.875em;position:relative;width:5em;zoom:normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#wpadminbar .swal2-animate-error-icon .swal2-x-mark{animation:swal2-animate-error-x-mark .5s;-webkit-animation:swal2-animate-error-x-mark .5s;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;position:relative}#wpadminbar .swal2-animate-error-icon{animation:swal2-animate-error-icon .5s;-webkit-animation:swal2-animate-error-icon .5s}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:1.0625em;-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line]{background-color:#f27474;border-radius:.125em;display:block;height:.3125em;position:absolute;top:2.3125em;width:2.9375em}#wpadminbar .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:1em;-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform:rotate(45deg)}#wpadminbar .swal2-icon.swal2-error{border-color:#f27474}#wpadminbar .quicklinks .exactmetrics-powered-by{display:none}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);opacity:1}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}#wpadminbar .exactmetrics-not-authenticated-notice{text-align:center;font-family:Arial,Helvetica,Trebuchet MS,sans-serif;margin-bottom:17px;border:none}#wpadminbar .exactmetrics-not-authenticated-notice h3{color:#222;font-size:18px;font-weight:700;margin-top:17px}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate{max-width:975px;margin-right:auto;margin-left:auto}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate p{font-size:15px;line-height:1.4;color:#222;margin:5px 0 30px}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button{color:#555;background:#f7f7f7;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc;vertical-align:top;display:inline-block;text-decoration:none;font-size:13px;line-height:26px;height:28px;margin:0 6px;padding:0 10px 1px;cursor:pointer;border:1px solid #ccc;-webkit-appearance:none;border-radius:3px;white-space:nowrap;-webkit-box-sizing:border-box;box-sizing:border-box}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button:hover{background:#fafafa;border-color:#999;color:#23282d}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button.exactmetrics-wp-button-primary{background:#0085ba;border-color:#0073aa #006799 #006799;-webkit-box-shadow:0 1px 0 #006799;box-shadow:0 1px 0 #006799;color:#fff;text-decoration:none;text-shadow:0 -1px 1px #006799,-1px 0 1px #006799,0 1px 1px #006799,1px 0 1px #006799}#wpadminbar .exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-wp-button.exactmetrics-wp-button-primary:hover{background:#008ec2;border-color:#006799;color:#fff}#wpadminbar .exactmetrics-notifications-indicator{padding-top:10px}#wpadminbar .exactmetrics-notifications-indicator a{margin-right:0;position:relative;height:auto;max-width:35px;padding:0}#wpadminbar .exactmetrics-notifications-unread{width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;left:-2px;border-radius:50%}#wpadminbar .exactmetrics-menu-notification-indicator{width:12px;height:12px;border-radius:50%;background:#c84b29;display:inline-block;margin-right:8px}@media (max-width:782px){#wpadminbar .exactmetrics-menu-notification-indicator{margin:0 -13px 10px 0;z-index:10;position:relative}}#wpadminbar .exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}@-webkit-keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes exactmetrics-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}
|
lite/assets/vue/css/reports.css
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
/*!
|
2 |
* Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
|
3 |
-
*/.exactmetrics-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.exactmetrics-flag.exactmetrics-flag-ad{background-position:-32px 0}.exactmetrics-flag.exactmetrics-flag-ae{background-position:-64px 0}.exactmetrics-flag.exactmetrics-flag-af{background-position:-96px 0}.exactmetrics-flag.exactmetrics-flag-ag{background-position:-128px 0}.exactmetrics-flag.exactmetrics-flag-ai{background-position:-160px 0}.exactmetrics-flag.exactmetrics-flag-al{background-position:-192px 0}.exactmetrics-flag.exactmetrics-flag-am{background-position:-224px 0}.exactmetrics-flag.exactmetrics-flag-an{background-position:-256px 0}.exactmetrics-flag.exactmetrics-flag-ao{background-position:-288px 0}.exactmetrics-flag.exactmetrics-flag-ar{background-position:-320px 0}.exactmetrics-flag.exactmetrics-flag-as{background-position:-352px 0}.exactmetrics-flag.exactmetrics-flag-at{background-position:-384px 0}.exactmetrics-flag.exactmetrics-flag-au{background-position:-416px 0}.exactmetrics-flag.exactmetrics-flag-aw{background-position:-448px 0}.exactmetrics-flag.exactmetrics-flag-ax{background-position:-480px 0}.exactmetrics-flag.exactmetrics-flag-az{background-position:0 -32px}.exactmetrics-flag.exactmetrics-flag-ba{background-position:-32px -32px}.exactmetrics-flag.exactmetrics-flag-bb{background-position:-64px -32px}.exactmetrics-flag.exactmetrics-flag-bd{background-position:-96px -32px}.exactmetrics-flag.exactmetrics-flag-be{background-position:-128px -32px}.exactmetrics-flag.exactmetrics-flag-bf{background-position:-160px -32px}.exactmetrics-flag.exactmetrics-flag-bg{background-position:-192px -32px}.exactmetrics-flag.exactmetrics-flag-bh{background-position:-224px -32px}.exactmetrics-flag.exactmetrics-flag-bi{background-position:-256px -32px}.exactmetrics-flag.exactmetrics-flag-bj{background-position:-288px -32px}.exactmetrics-flag.exactmetrics-flag-bl{background-position:-320px -32px}.exactmetrics-flag.exactmetrics-flag-bm{background-position:-352px -32px}.exactmetrics-flag.exactmetrics-flag-bn{background-position:-384px -32px}.exactmetrics-flag.exactmetrics-flag-bo{background-position:-416px -32px}.exactmetrics-flag.exactmetrics-flag-br{background-position:-448px -32px}.exactmetrics-flag.exactmetrics-flag-bs{background-position:-480px -32px}.exactmetrics-flag.exactmetrics-flag-bt{background-position:0 -64px}.exactmetrics-flag.exactmetrics-flag-bw{background-position:-32px -64px}.exactmetrics-flag.exactmetrics-flag-by{background-position:-64px -64px}.exactmetrics-flag.exactmetrics-flag-bz{background-position:-96px -64px}.exactmetrics-flag.exactmetrics-flag-ca{background-position:-128px -64px}.exactmetrics-flag.exactmetrics-flag-cd{background-position:-160px -64px}.exactmetrics-flag.exactmetrics-flag-cf{background-position:-192px -64px}.exactmetrics-flag.exactmetrics-flag-cg{background-position:-224px -64px}.exactmetrics-flag.exactmetrics-flag-ch{background-position:-256px -64px}.exactmetrics-flag.exactmetrics-flag-ci{background-position:-288px -64px}.exactmetrics-flag.exactmetrics-flag-ck{background-position:-320px -64px}.exactmetrics-flag.exactmetrics-flag-cl{background-position:-352px -64px}.exactmetrics-flag.exactmetrics-flag-cm{background-position:-384px -64px}.exactmetrics-flag.exactmetrics-flag-cn{background-position:-416px -64px}.exactmetrics-flag.exactmetrics-flag-co{background-position:-448px -64px}.exactmetrics-flag.exactmetrics-flag-cr{background-position:-480px -64px}.exactmetrics-flag.exactmetrics-flag-cu{background-position:0 -96px}.exactmetrics-flag.exactmetrics-flag-cv{background-position:-32px -96px}.exactmetrics-flag.exactmetrics-flag-cw{background-position:-64px -96px}.exactmetrics-flag.exactmetrics-flag-cy{background-position:-96px -96px}.exactmetrics-flag.exactmetrics-flag-cz{background-position:-128px -96px}.exactmetrics-flag.exactmetrics-flag-de{background-position:-160px -96px}.exactmetrics-flag.exactmetrics-flag-dj{background-position:-192px -96px}.exactmetrics-flag.exactmetrics-flag-dk{background-position:-224px -96px}.exactmetrics-flag.exactmetrics-flag-dm{background-position:-256px -96px}.exactmetrics-flag.exactmetrics-flag-do{background-position:-288px -96px}.exactmetrics-flag.exactmetrics-flag-dz{background-position:-320px -96px}.exactmetrics-flag.exactmetrics-flag-ec{background-position:-352px -96px}.exactmetrics-flag.exactmetrics-flag-ee{background-position:-384px -96px}.exactmetrics-flag.exactmetrics-flag-eg{background-position:-416px -96px}.exactmetrics-flag.exactmetrics-flag-eh{background-position:-448px -96px}.exactmetrics-flag.exactmetrics-flag-er{background-position:-480px -96px}.exactmetrics-flag.exactmetrics-flag-es{background-position:0 -128px}.exactmetrics-flag.exactmetrics-flag-et{background-position:-32px -128px}.exactmetrics-flag.exactmetrics-flag-eu{background-position:-64px -128px}.exactmetrics-flag.exactmetrics-flag-fi{background-position:-96px -128px}.exactmetrics-flag.exactmetrics-flag-fj{background-position:-128px -128px}.exactmetrics-flag.exactmetrics-flag-fk{background-position:-160px -128px}.exactmetrics-flag.exactmetrics-flag-fm{background-position:-192px -128px}.exactmetrics-flag.exactmetrics-flag-fo{background-position:-224px -128px}.exactmetrics-flag.exactmetrics-flag-fr{background-position:-256px -128px}.exactmetrics-flag.exactmetrics-flag-ga{background-position:-288px -128px}.exactmetrics-flag.exactmetrics-flag-gb{background-position:-320px -128px}.exactmetrics-flag.exactmetrics-flag-gd{background-position:-352px -128px}.exactmetrics-flag.exactmetrics-flag-ge{background-position:-384px -128px}.exactmetrics-flag.exactmetrics-flag-gg{background-position:-416px -128px}.exactmetrics-flag.exactmetrics-flag-gh{background-position:-448px -128px}.exactmetrics-flag.exactmetrics-flag-gi{background-position:-480px -128px}.exactmetrics-flag.exactmetrics-flag-gl{background-position:0 -160px}.exactmetrics-flag.exactmetrics-flag-gm{background-position:-32px -160px}.exactmetrics-flag.exactmetrics-flag-gn{background-position:-64px -160px}.exactmetrics-flag.exactmetrics-flag-gp{background-position:-96px -160px}.exactmetrics-flag.exactmetrics-flag-gq{background-position:-128px -160px}.exactmetrics-flag.exactmetrics-flag-gr{background-position:-160px -160px}.exactmetrics-flag.exactmetrics-flag-gs{background-position:-192px -160px}.exactmetrics-flag.exactmetrics-flag-gt{background-position:-224px -160px}.exactmetrics-flag.exactmetrics-flag-gu{background-position:-256px -160px}.exactmetrics-flag.exactmetrics-flag-gw{background-position:-288px -160px}.exactmetrics-flag.exactmetrics-flag-gy{background-position:-320px -160px}.exactmetrics-flag.exactmetrics-flag-hk{background-position:-352px -160px}.exactmetrics-flag.exactmetrics-flag-hn{background-position:-384px -160px}.exactmetrics-flag.exactmetrics-flag-hr{background-position:-416px -160px}.exactmetrics-flag.exactmetrics-flag-ht{background-position:-448px -160px}.exactmetrics-flag.exactmetrics-flag-hu{background-position:-480px -160px}.exactmetrics-flag.exactmetrics-flag-ic{background-position:0 -192px}.exactmetrics-flag.exactmetrics-flag-id{background-position:-32px -192px}.exactmetrics-flag.exactmetrics-flag-ie{background-position:-64px -192px}.exactmetrics-flag.exactmetrics-flag-il{background-position:-96px -192px}.exactmetrics-flag.exactmetrics-flag-im{background-position:-128px -192px}.exactmetrics-flag.exactmetrics-flag-in{background-position:-160px -192px}.exactmetrics-flag.exactmetrics-flag-iq{background-position:-192px -192px}.exactmetrics-flag.exactmetrics-flag-ir{background-position:-224px -192px}.exactmetrics-flag.exactmetrics-flag-is{background-position:-256px -192px}.exactmetrics-flag.exactmetrics-flag-it{background-position:-288px -192px}.exactmetrics-flag.exactmetrics-flag-je{background-position:-320px -192px}.exactmetrics-flag.exactmetrics-flag-jm{background-position:-352px -192px}.exactmetrics-flag.exactmetrics-flag-jo{background-position:-384px -192px}.exactmetrics-flag.exactmetrics-flag-jp{background-position:-416px -192px}.exactmetrics-flag.exactmetrics-flag-ke{background-position:-448px -192px}.exactmetrics-flag.exactmetrics-flag-kg{background-position:-480px -192px}.exactmetrics-flag.exactmetrics-flag-kh{background-position:0 -224px}.exactmetrics-flag.exactmetrics-flag-ki{background-position:-32px -224px}.exactmetrics-flag.exactmetrics-flag-km{background-position:-64px -224px}.exactmetrics-flag.exactmetrics-flag-kn{background-position:-96px -224px}.exactmetrics-flag.exactmetrics-flag-kp{background-position:-128px -224px}.exactmetrics-flag.exactmetrics-flag-kr{background-position:-160px -224px}.exactmetrics-flag.exactmetrics-flag-kw{background-position:-192px -224px}.exactmetrics-flag.exactmetrics-flag-ky{background-position:-224px -224px}.exactmetrics-flag.exactmetrics-flag-kz{background-position:-256px -224px}.exactmetrics-flag.exactmetrics-flag-la{background-position:-288px -224px}.exactmetrics-flag.exactmetrics-flag-lb{background-position:-320px -224px}.exactmetrics-flag.exactmetrics-flag-lc{background-position:-352px -224px}.exactmetrics-flag.exactmetrics-flag-li{background-position:-384px -224px}.exactmetrics-flag.exactmetrics-flag-lk{background-position:-416px -224px}.exactmetrics-flag.exactmetrics-flag-lr{background-position:-448px -224px}.exactmetrics-flag.exactmetrics-flag-ls{background-position:-480px -224px}.exactmetrics-flag.exactmetrics-flag-lt{background-position:0 -256px}.exactmetrics-flag.exactmetrics-flag-lu{background-position:-32px -256px}.exactmetrics-flag.exactmetrics-flag-lv{background-position:-64px -256px}.exactmetrics-flag.exactmetrics-flag-ly{background-position:-96px -256px}.exactmetrics-flag.exactmetrics-flag-ma{background-position:-128px -256px}.exactmetrics-flag.exactmetrics-flag-mc{background-position:-160px -256px}.exactmetrics-flag.exactmetrics-flag-md{background-position:-192px -256px}.exactmetrics-flag.exactmetrics-flag-me{background-position:-224px -256px}.exactmetrics-flag.exactmetrics-flag-mf{background-position:-256px -256px}.exactmetrics-flag.exactmetrics-flag-mg{background-position:-288px -256px}.exactmetrics-flag.exactmetrics-flag-mh{background-position:-320px -256px}.exactmetrics-flag.exactmetrics-flag-mk{background-position:-352px -256px}.exactmetrics-flag.exactmetrics-flag-ml{background-position:-384px -256px}.exactmetrics-flag.exactmetrics-flag-mm{background-position:-416px -256px}.exactmetrics-flag.exactmetrics-flag-mn{background-position:-448px -256px}.exactmetrics-flag.exactmetrics-flag-mo{background-position:-480px -256px}.exactmetrics-flag.exactmetrics-flag-mp{background-position:0 -288px}.exactmetrics-flag.exactmetrics-flag-mq{background-position:-32px -288px}.exactmetrics-flag.exactmetrics-flag-mr{background-position:-64px -288px}.exactmetrics-flag.exactmetrics-flag-ms{background-position:-96px -288px}.exactmetrics-flag.exactmetrics-flag-mt{background-position:-128px -288px}.exactmetrics-flag.exactmetrics-flag-mu{background-position:-160px -288px}.exactmetrics-flag.exactmetrics-flag-mv{background-position:-192px -288px}.exactmetrics-flag.exactmetrics-flag-mw{background-position:-224px -288px}.exactmetrics-flag.exactmetrics-flag-mx{background-position:-256px -288px}.exactmetrics-flag.exactmetrics-flag-my{background-position:-288px -288px}.exactmetrics-flag.exactmetrics-flag-mz{background-position:-320px -288px}.exactmetrics-flag.exactmetrics-flag-na{background-position:-352px -288px}.exactmetrics-flag.exactmetrics-flag-nc{background-position:-384px -288px}.exactmetrics-flag.exactmetrics-flag-ne{background-position:-416px -288px}.exactmetrics-flag.exactmetrics-flag-nf{background-position:-448px -288px}.exactmetrics-flag.exactmetrics-flag-ng{background-position:-480px -288px}.exactmetrics-flag.exactmetrics-flag-ni{background-position:0 -320px}.exactmetrics-flag.exactmetrics-flag-nl{background-position:-32px -320px}.exactmetrics-flag.exactmetrics-flag-no{background-position:-64px -320px}.exactmetrics-flag.exactmetrics-flag-np{background-position:-96px -320px}.exactmetrics-flag.exactmetrics-flag-nr{background-position:-128px -320px}.exactmetrics-flag.exactmetrics-flag-nu{background-position:-160px -320px}.exactmetrics-flag.exactmetrics-flag-nz{background-position:-192px -320px}.exactmetrics-flag.exactmetrics-flag-om{background-position:-224px -320px}.exactmetrics-flag.exactmetrics-flag-pa{background-position:-256px -320px}.exactmetrics-flag.exactmetrics-flag-pe{background-position:-288px -320px}.exactmetrics-flag.exactmetrics-flag-pf{background-position:-320px -320px}.exactmetrics-flag.exactmetrics-flag-pg{background-position:-352px -320px}.exactmetrics-flag.exactmetrics-flag-ph{background-position:-384px -320px}.exactmetrics-flag.exactmetrics-flag-pk{background-position:-416px -320px}.exactmetrics-flag.exactmetrics-flag-pl{background-position:-448px -320px}.exactmetrics-flag.exactmetrics-flag-pn{background-position:-480px -320px}.exactmetrics-flag.exactmetrics-flag-pr{background-position:0 -352px}.exactmetrics-flag.exactmetrics-flag-ps{background-position:-32px -352px}.exactmetrics-flag.exactmetrics-flag-pt{background-position:-64px -352px}.exactmetrics-flag.exactmetrics-flag-pw{background-position:-96px -352px}.exactmetrics-flag.exactmetrics-flag-py{background-position:-128px -352px}.exactmetrics-flag.exactmetrics-flag-qa{background-position:-160px -352px}.exactmetrics-flag.exactmetrics-flag-re{background-position:-192px -352px}.exactmetrics-flag.exactmetrics-flag-ro{background-position:-224px -352px}.exactmetrics-flag.exactmetrics-flag-rs{background-position:-256px -352px}.exactmetrics-flag.exactmetrics-flag-ru{background-position:-288px -352px}.exactmetrics-flag.exactmetrics-flag-rw{background-position:-320px -352px}.exactmetrics-flag.exactmetrics-flag-sa{background-position:-352px -352px}.exactmetrics-flag.exactmetrics-flag-sb{background-position:-384px -352px}.exactmetrics-flag.exactmetrics-flag-sc{background-position:-416px -352px}.exactmetrics-flag.exactmetrics-flag-sd{background-position:-448px -352px}.exactmetrics-flag.exactmetrics-flag-se{background-position:-480px -352px}.exactmetrics-flag.exactmetrics-flag-sg{background-position:0 -384px}.exactmetrics-flag.exactmetrics-flag-sh{background-position:-32px -384px}.exactmetrics-flag.exactmetrics-flag-si{background-position:-64px -384px}.exactmetrics-flag.exactmetrics-flag-sk{background-position:-96px -384px}.exactmetrics-flag.exactmetrics-flag-sl{background-position:-128px -384px}.exactmetrics-flag.exactmetrics-flag-sm{background-position:-160px -384px}.exactmetrics-flag.exactmetrics-flag-sn{background-position:-192px -384px}.exactmetrics-flag.exactmetrics-flag-so{background-position:-224px -384px}.exactmetrics-flag.exactmetrics-flag-sr{background-position:-256px -384px}.exactmetrics-flag.exactmetrics-flag-ss{background-position:-288px -384px}.exactmetrics-flag.exactmetrics-flag-st{background-position:-320px -384px}.exactmetrics-flag.exactmetrics-flag-sv{background-position:-352px -384px}.exactmetrics-flag.exactmetrics-flag-sy{background-position:-384px -384px}.exactmetrics-flag.exactmetrics-flag-sz{background-position:-416px -384px}.exactmetrics-flag.exactmetrics-flag-tc{background-position:-448px -384px}.exactmetrics-flag.exactmetrics-flag-td{background-position:-480px -384px}.exactmetrics-flag.exactmetrics-flag-tf{background-position:0 -416px}.exactmetrics-flag.exactmetrics-flag-tg{background-position:-32px -416px}.exactmetrics-flag.exactmetrics-flag-th{background-position:-64px -416px}.exactmetrics-flag.exactmetrics-flag-tj{background-position:-96px -416px}.exactmetrics-flag.exactmetrics-flag-tk{background-position:-128px -416px}.exactmetrics-flag.exactmetrics-flag-tl{background-position:-160px -416px}.exactmetrics-flag.exactmetrics-flag-tm{background-position:-192px -416px}.exactmetrics-flag.exactmetrics-flag-tn{background-position:-224px -416px}.exactmetrics-flag.exactmetrics-flag-to{background-position:-256px -416px}.exactmetrics-flag.exactmetrics-flag-tr{background-position:-288px -416px}.exactmetrics-flag.exactmetrics-flag-tt{background-position:-320px -416px}.exactmetrics-flag.exactmetrics-flag-tv{background-position:-352px -416px}.exactmetrics-flag.exactmetrics-flag-tw{background-position:-384px -416px}.exactmetrics-flag.exactmetrics-flag-tz{background-position:-416px -416px}.exactmetrics-flag.exactmetrics-flag-ua{background-position:-448px -416px}.exactmetrics-flag.exactmetrics-flag-ug{background-position:-480px -416px}.exactmetrics-flag.exactmetrics-flag-us{background-position:0 -448px}.exactmetrics-flag.exactmetrics-flag-uy{background-position:-32px -448px}.exactmetrics-flag.exactmetrics-flag-uz{background-position:-64px -448px}.exactmetrics-flag.exactmetrics-flag-va{background-position:-96px -448px}.exactmetrics-flag.exactmetrics-flag-vc{background-position:-128px -448px}.exactmetrics-flag.exactmetrics-flag-ve{background-position:-160px -448px}.exactmetrics-flag.exactmetrics-flag-vg{background-position:-192px -448px}.exactmetrics-flag.exactmetrics-flag-vi{background-position:-224px -448px}.exactmetrics-flag.exactmetrics-flag-vn{background-position:-256px -448px}.exactmetrics-flag.exactmetrics-flag-vu{background-position:-288px -448px}.exactmetrics-flag.exactmetrics-flag-wf{background-position:-320px -448px}.exactmetrics-flag.exactmetrics-flag-ws{background-position:-352px -448px}.exactmetrics-flag.exactmetrics-flag-ye{background-position:-384px -448px}.exactmetrics-flag.exactmetrics-flag-yt{background-position:-416px -448px}.exactmetrics-flag.exactmetrics-flag-za{background-position:-448px -448px}.exactmetrics-flag.exactmetrics-flag-zm{background-position:-480px -448px}.exactmetrics-flag.exactmetrics-flag-zw{background-position:0 -480px}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner,.exactmetrics-upsell-row .exactmetrics-upsell-row-inner,.exactmetrics-upsell .exactmetrics-upsell-title .exactmetrics-upsell-title-inner{max-width:1400px;margin:0 auto}.exactmetrics-reports-page .exactmetrics-upsell{border-bottom:1px solid #d6e2ed}.exactmetrics-upsell-row{width:100%;background:rgba(101,40,245,.05)}.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 96px}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 24px}}.exactmetrics-upsell-row h3{margin:0 0 60px;font-size:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 31%;flex:1 0 31%;margin-bottom:45px}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item{-webkit-box-flex:1;-ms-flex:1 0 21%;flex:1 0 21%}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-list-item{width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}.exactmetrics-upsell-row .exactmetrics-upsell-list-item i{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;color:#6528f5;font-size:23px;margin-right:18px;margin-top:6px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{line-height:1.7;color:#37276a;max-width:232px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;font-weight:500;text-decoration:none}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{max-width:170px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text{cursor:pointer}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:focus,.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:hover{color:#6528f5}.exactmetrics-full-width-upsell{background:#f7f3fe;min-height:445px;margin-bottom:116px}.exactmetrics-reports-page .exactmetrics-full-width-upsell{margin-bottom:0}@media (max-width:959px){.exactmetrics-full-width-upsell{margin-bottom:48px}}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space{margin-bottom:0;min-height:380px}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space+.exactmetrics-full-width-upsell{margin-top:-100px}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;position:relative}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner .exactmetrics-upsell-left{padding-left:0;padding-top:100px}.exactmetrics-full-width-upsell h2{color:#210f59;font-size:24px;line-height:1.4}.exactmetrics-full-width-upsell p{font-size:15px;line-height:1.7;color:#210f59;margin:11px 0 0}.exactmetrics-full-width-upsell p.exactmetrics-upsell-pbold{font-weight:700;margin-top:0}.exactmetrics-full-width-upsell a.exactmetrics-green-text{color:#32a27a;font-weight:400}.exactmetrics-full-width-upsell a.exactmetrics-green-text:focus,.exactmetrics-full-width-upsell a.exactmetrics-green-text:hover{color:#19865f;text-decoration:none}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-top:20px;margin-bottom:72px}@media (max-width:1099px){.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-bottom:48px}}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button:first-child{margin-right:18px}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button-text .monstericon-arrow-right{font-size:12px;vertical-align:text-top;margin-left:10px}.exactmetrics-upsell-half{position:relative;padding-top:56px}.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-left:96px;padding-top:56px;width:40%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:50%;padding-left:24px}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-top:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{max-width:100%;left:0;height:auto;padding-top:67%}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image:after{background-position:50%;left:-16%;right:-16%;top:-10%;bottom:-10%}@media (min-width:960px){.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{display:none}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%;padding-right:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:96px;padding-top:0;width:60%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-right{width:50%}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-right{display:none}}.exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{position:absolute;bottom:-140px;left:68px}.exactmetrics-upsell-half h3{color:#6528f5;font-size:20px;line-height:1.3;font-weight:400;margin:0 0 15px}.exactmetrics-upsell a{color:#6528f5}.exactmetrics-upsell a:focus,.exactmetrics-upsell a:hover{color:#37276a}.exactmetrics-upsell .exactmetrics-upsell-title{border-bottom:1px solid #e9e7ee}.exactmetrics-upsell .exactmetrics-upsell-title h2{color:#210f59;font-size:32px;margin-left:100px;margin-top:45px;margin-bottom:35px}@media (max-width:782px){.exactmetrics-upsell .exactmetrics-upsell-title h2{margin-left:24px;line-height:1.4;margin-top:24px;margin-bottom:24px}}.exactmetrics-upsell .exactmetrics-upsell-half h3{font-size:24px;color:#210f59;font-weight:700}.exactmetrics-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.exactmetrics-upsell-bottom{padding-left:20px;padding-right:20px}}.exactmetrics-upsell-bottom .exactmetrics-button-top{position:absolute;top:0;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}@media (max-width:767px){.exactmetrics-upsell-bottom .exactmetrics-button-top{min-width:288px}}.exactmetrics-upsell-bottom img{max-width:100%}.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{width:848px;padding-top:0;height:566px}@media (max-width:1099px){.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{left:20px}}.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-upsell-screen:after,.exactmetrics-screen-image:after{background-position:100% 100%;background-image:url(../img/upsell-screen.png)}.exactmetrics-em-logo-text{width:432px;height:56px;margin-bottom:28px;padding-top:0;max-width:100%}@media (max-width:1400px){.exactmetrics-em-logo-text{padding-top:13%;height:auto}}@media (max-width:959px){.exactmetrics-em-logo-text{padding-top:8%}}.exactmetrics-em-logo-text:after{background-image:url(../img/exactmetrics.png)}.exactmetrics-em-addons-upsell-screen,.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-publishers-upsell-screen{bottom:auto;top:-90px}.exactmetrics-em-addons-upsell-screen:after,.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-publishers-upsell-screen:after{background-position:100% 0;background-image:url(../img/ecommerce-screen.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-forms-upsell-screen{width:758px;max-width:100%;margin-top:-75px}.exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-em-optimize-upsell-screen{width:758px;max-width:100%;margin-left:-10%}.exactmetrics-em-optimize-upsell-screen:after{background-position:50%;background-image:url(../img/optimize-screen.png)}.exactmetrics-em-dimensions-upsell-screen{width:758px;max-width:100%}.exactmetrics-em-dimensions-upsell-screen:after{background-position:50%;background-image:url(../img/custom-dimensions-screen.png)}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:0}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half p{max-width:400px;margin-bottom:28px}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:96px}.exactmetrics-icon-background-large{position:absolute;font-size:130px;color:rgba(101,40,245,.05);left:25px;top:25px;line-height:1;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator{font-size:13px;color:#fff;background-color:#32a27a;border-radius:3px;font-weight:500;padding:4px 8px;vertical-align:top;margin-left:10px;display:inline-block;margin-top:-4px;cursor:pointer;text-decoration:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:hover,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:hover{color:#fff;background:#19865f}.exactmetrics-report .exactmetrics-upsell-dismissable{margin-left:-32px;margin-right:-32px;padding-left:32px;padding-right:32px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable{text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable h3{font-size:17px;color:#210f59;line-height:1.5;font-weight:700}.exactmetrics-report .exactmetrics-upsell-dismissable p{font-size:15px;margin-bottom:25px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{width:50%;padding-top:38px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{padding-left:32px;padding-right:32px;width:100%;text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half:first-child p{max-width:524px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:40px;color:#9087ac}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:0;margin-top:20px}}.exactmetrics-report .exactmetrics-upsell-dismiss{position:absolute;right:20px;top:20px;z-index:10}.exactmetrics-forms-image-wpf-upsell{margin-bottom:-140px;padding-top:85%}@media (max-width:782px){.exactmetrics-forms-image-wpf-upsell{margin-bottom:0}}.exactmetrics-forms-image-wpf-upsell:after{background-position:100% 100%;background-image:url(../img/forms-wpforms-upsell.png)}.exactmetrics-admin-page{overflow:hidden}.exactmetrics-report{padding:30px 32px;position:relative}@media (max-width:991px){.exactmetrics-report{padding-left:24px;padding-right:24px}}.exactmetrics-reports-page{margin-bottom:100px}.exactmetrics-reports-page .exactmetrics-header{padding-top:21px;padding-bottom:21px}body.exactmetrics-reporting-page #wpbody-content{padding-bottom:0}body.exactmetrics-reporting-page .exactmetrics-red{color:#d73638}body.exactmetrics-reporting-page .exactmetrics-green{color:#5cc0a5}body.exactmetrics-reporting-page .exactmetrics-report-top{margin-bottom:24px}body.exactmetrics-reporting-page .exactmetrics-report-top h2{margin:12px 0;display:inline-block;color:#210f59;font-size:32px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:none}}@media (min-width:783px) and (max-width:935px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:block;margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:right}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle{width:100%;margin-right:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle .exactmetrics-button{width:50%}}@media (min-width:783px) and (max-width:935px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-datepicker{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{position:relative}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{max-width:100%}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container.exactmetrics-hide,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .exactmetrics-hide{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-wrapper{display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day{max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#6528f5;border-color:#6528f5}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer{padding:0 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#f4f3f7;padding:14px 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 10px 0 5px;min-height:25px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{background:#e9e7ee;border-radius:3px;font-size:15px;color:#210f59;line-height:1.75;padding:8px 28px 8px 20px;border:none;position:relative;text-align:left}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{max-width:100%;line-height:1.4}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info>span{overflow:hidden;white-space:pre;text-overflow:ellipsis;max-width:calc(100% - 40px);display:inline-block}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-left:38px;margin-right:12px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-left:10px;margin-right:10px;vertical-align:super}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info:after{width:0;height:0;border-color:#9087ac rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-2px;right:20px}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown{position:absolute;z-index:100;background:#fff;border:1px solid #f4f3f7;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;left:0;top:100%}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button{display:block;border:none;padding:8px 12px;font-size:15px;line-height:1.75;color:#210f59;width:100%;text-align:left;border-radius:2px;background:#fff}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button.exactmetrics-interval-active,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:focus,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:hover{background:#e9e7ee}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button i{margin-right:10px}body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{width:100%;margin-bottom:0;margin-top:10px;margin-left:0;font-weight:700}@media (min-width:783px){body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{display:none}}body.exactmetrics-reporting-page .exactmetrics-info{color:#9087ac;cursor:help;font-size:15px;position:relative;display:inline-block;vertical-align:top;margin-left:10px}body.exactmetrics-reporting-page .exactmetrics-report-row{margin-bottom:25px}body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-bottom:0;margin-left:-32px;margin-right:-32px;padding:0 32px;border-top:1px solid #e9e7ee}@media (max-width:991px){body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-left:-24px;margin-right:-24px;padding-left:24px;padding-right:24px}}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-right:0;margin:0}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#fff}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:focus{z-index:10;position:relative}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval{background:#fff;color:#6528f5;font-weight:700}.exactmetrics-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border:1px solid #bcb7cd;-webkit-box-shadow:0 10px 20px rgba(57,15,157,.15);box-shadow:0 10px 20px rgba(57,15,157,.15);border-radius:5px;display:block}.exactmetrics-pie-chart-tooltip{left:20px;top:20px;padding:0}@media (max-width:782px){.exactmetrics-pie-chart-tooltip{left:50%;margin-left:-97px}}.exactmetrics-reports-doughnut-tooltip{-webkit-box-shadow:none;box-shadow:none;border:none;width:172px;border-radius:50%;height:172px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-title{font-size:30px;color:#6528f5;margin-bottom:18px;font-weight:700}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number{color:#6528f5;font-size:15px;font-weight:500}#exactmetrics-chartjs-line-overview-tooltip{min-width:100px}.exactmetrics-reports-overview-datagraph-tooltip-number{color:#210f59;font-size:24px;font-weight:400;margin-bottom:5px;display:inline-block;margin-right:5px}.exactmetrics-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:14px;font-weight:400;display:inline-block}.exactmetrics-reports-overview-datagraph-tooltip-descriptor{color:#9087ac;font-size:12px;font-weight:400;width:100%;clear:both}.exactmetrics-reports-overview-datagraph-tooltip-title{color:#210f59;font-size:12px;font-weight:400;width:100%}#exactmetrics-chartjs-bar-tooltip,.exactmetrics-line-chart-tooltip{opacity:1;position:absolute;-webkit-transform:translate(-50%,-100%);-ms-transform:translate(-50%,-100%);transform:translate(-50%,-100%);margin-top:-20px}#exactmetrics-chartjs-bar-tooltip:after,.exactmetrics-line-chart-tooltip:after{position:absolute;top:100%;width:0;height:0;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 9.5px 0;content:"";left:50%;margin-left:-9px;margin-top:-7px}#exactmetrics-chartjs-bar-tooltip:before,.exactmetrics-line-chart-tooltip:before{position:absolute;top:100%;width:0;height:0;border-color:#bcb7cd rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 10.5px 0;content:"";left:50%;margin-left:-10px;margin-top:-6px}#exactmetrics-chartjs-line-age-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number:after{content:"%"}.exactmetrics-report-tabs-navigation{border-bottom:1px solid #e9e7ee}.exactmetrics-report-tabs-navigation button{color:#4d3f7a;font-weight:700;text-align:left;font-size:15px;padding:15px 24px 17px;cursor:pointer;margin:0 0 -1px;position:relative;line-height:1;border-radius:5px 5px 0 0;background:#fff;border:1px solid;border-color:#fff #fff #e9e7ee}@media (max-width:782px){.exactmetrics-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.exactmetrics-report-tabs-navigation button:focus{z-index:10}.exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{background:#fff;color:#6528f5;border-color:#e9e7ee #e9e7ee #fff}.exactmetrics-report-tabs{background:#fff}.exactmetrics-report-tabs .exactmetrics-report-tabs-content{padding-top:20px}#mi-custom-line{max-height:330px}.exactmetrics-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;background:#f4f3f7;border-radius:10px;padding:24px 60px}@media (max-width:782px){.exactmetrics-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap;padding:20px}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-left:1px solid #bcb7cd;padding:0 0 0 80px;position:relative}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-info{display:inline-block;font-size:12px;margin-left:6px;vertical-align:middle}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-left:none;padding-left:0}@media (max-width:782px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%;border-left:none;border-top:1px solid #bcb7cd;padding:24px 0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-top:0;padding-top:0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:last-child{padding-bottom:0}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2;color:#4d3f7a;font-size:13px;display:inline-block;vertical-align:middle;padding-left:0}@media (max-width:991px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{padding-left:0}}.exactmetrics-report-title{font-size:24px;color:#210f59;font-weight:700;margin-top:0;line-height:1.4;display:inline-block}@media (max-width:762px){.exactmetrics-report-title{padding-left:60px}.exactmetrics-report-title.exactmetrics-has-pagination{margin-bottom:80px}}.exactmetrics-report-title:before{width:40px;height:40px;border-radius:50%;background:rgba(33,15,89,.1);right:100%;margin-right:30px;color:#210f59;text-align:center;line-height:40px;font-size:15px;-webkit-transition:background .2s ease 0ms,color .2s ease 0ms;transition:background .2s ease 0ms,color .2s ease 0ms;vertical-align:middle;margin-top:-2px}@media (max-width:762px){.exactmetrics-report-title:before{position:absolute;left:0}}.exactmetrics-reports-infobox-number{font-size:32px;font-weight:500;line-height:1;margin-top:4px;color:#210f59;width:100%;display:block}@media (max-width:782px){.exactmetrics-reports-infobox-number{font-size:36px;float:none}}.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{display:inline-block}@media (max-width:1280px){.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{float:none;clear:both}}.exactmetrics-reports-infobox-prev{font-size:14px;margin-top:4px;margin-right:5px}.exactmetrics-reports-infobox-prev .exactmetrics-arrow{vertical-align:middle}.exactmetrics-reports-infobox-compare{font-size:12px;color:#9087ac;display:inline-block}.exactmetrics-buttons-toggle{margin-right:25px}.exactmetrics-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.exactmetrics-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.exactmetrics-reports-pie-chart{width:50%;padding:32px 20px 32px 32px;background:#fff;position:relative}.exactmetrics-reports-pie-chart:first-child{border-right:1px solid #e9e7ee;padding-left:0}@media (max-width:991px){.exactmetrics-reports-pie-chart:first-child{border-right:0}}@media (max-width:991px){.exactmetrics-reports-pie-chart{width:100%;border:none;padding-left:0;padding-right:0}}.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;margin-left:20px}@media (max-width:781px){.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:0 12px 0 0}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend{margin:24px 12px;-ms-flex-negative:0;flex-shrink:0;-ms-flex-item-align:center;align-self:center}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend li{background:#f4f3f7;border-radius:10px;padding:10px 20px}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-tooltip{position:absolute;pointer-events:none}.exactmetrics-pie-chart-legend-color{width:25px;height:25px;display:inline-block;border-radius:50%;margin:7px 17px 7px 0;float:left}.exactmetrics-pie-chart-legend-text{display:inline-block;font-size:15px;color:#9087ac;width:calc(100% - 50px)}.exactmetrics-pie-chart-legend-value{color:#210f59;font-size:18px;font-weight:500;display:inline-block;width:calc(100% - 50px)}.exactmetrics-table-box{background:#fff;width:100%;padding-top:32px;position:relative}.exactmetrics-table-box:first-child{margin-left:0;margin-top:0}@media (max-width:991px){.exactmetrics-table-box{margin-left:0;margin-top:20px}}.exactmetrics-table-box-footer{background:#fff;padding:20px 0 21px;text-align:right}.exactmetrics-report-row-border-top .exactmetrics-table-box-footer{padding-bottom:46px}.exactmetrics-table-box-footer:after{display:table;clear:both;content:""}.exactmetrics-table-box-footer .exactmetrics-button [class*=monstericon-]{margin-left:18px}@media (max-width:782px){.exactmetrics-table-box-footer>.exactmetrics-button{width:100%;text-align:center}}.exactmetrics-table-list-item{padding:12px 20px;min-height:42px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:3px}table .exactmetrics-table-list-item{display:table-row}.exactmetrics-table-list-item:nth-child(odd){background-color:#f4f3f7}.exactmetrics-table-list-item .exactmetrics-reports-list-text{color:#210f59;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px;font-weight:500}.exactmetrics-table-list-item .exactmetrics-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;color:#210f59}.exactmetrics-table-list-item .exactmetrics-reports-list-text img{display:inline-block;margin-right:10px;vertical-align:middle}.exactmetrics-table-list-item .exactmetrics-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-6px 0 -10px -8px}.exactmetrics-table-list-item a{text-decoration:none;color:#393f4c}.exactmetrics-table-list-item a:focus,.exactmetrics-table-list-item a:hover{color:#777}.exactmetrics-table-list-item .exactmetrics-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.exactmetrics-table-list-item .exactmetrics-reports-list-number{color:#393f4c;font-size:15px;text-align:right;display:block;padding-left:5px}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;top:32px;right:0}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;top:65px}}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination span{color:#9087ac}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle{position:absolute;top:100%;background:#fff;border:1px solid #f4f3f7;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;left:0}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button{width:100%;border-radius:3px;border:none;background:#fff}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval,body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#f4f3f7}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-pagination-selector span{color:#37276a}.exactmetrics-pagination-selector{background:#f4f3f7;padding:8px 35px 8px 20px;border:none;border-radius:3px;font-size:15px;line-height:1.7;cursor:pointer}.exactmetrics-pagination-selector:after{width:0;height:0;border-color:#9087ac rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-1px;right:20px}@media (max-width:792px){.exactmetrics-pagination-selector{width:100%;text-align:left;top:65px}}.exactmetrics-table-box-list{min-height:calc(100% - 147px);position:relative}.exactmetrics-table-box-list .exactmetrics-table-no-data{top:0;bottom:0;left:0;right:0}.exactmetrics-table-box-table .exactmetrics-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.exactmetrics-table-box-table .exactmetrics-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.exactmetrics-table-box-mobile .exactmetrics-table-box-table{overflow:auto}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;padding:0}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;padding-left:0;margin-left:50px;border-top:1px solid #d6e2ed;font-size:13px;color:#657086;padding-top:8px;padding-bottom:8px}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td.exactmetrics-table-cell-1{margin-left:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-left:20px;font-size:15px;color:#210f59;padding-top:12px;padding-bottom:12px;border-top:none}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th{display:none;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1{display:block;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1 .exactmetrics-table-item-content,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1 .exactmetrics-table-item-content{padding-right:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after{content:"\F01F";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;position:absolute;right:10px;top:50%;-webkit-transform:translateY(-50%) rotate(180deg);-ms-transform:translateY(-50%) rotate(180deg);transform:translateY(-50%) rotate(180deg);color:#9087ac;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table .exactmetrics-table-mobile-heading{min-width:125px}.exactmetrics-table-box-mobile .exactmetrics-table-box-table .exactmetrics-table-list-item-empty td:first-child .exactmetrics-table-item-content:after{display:none}.exactmetrics-table-box-table table{width:100%;border-collapse:collapse}.exactmetrics-table-box-mobile .exactmetrics-table-box-table table{table-layout:fixed}.exactmetrics-table-box-table th{text-align:left;font-size:12px;color:#9087ac;text-transform:uppercase;letter-spacing:.08em}.exactmetrics-table-box-table td,.exactmetrics-table-box-table th{border:none;padding:12px 10px;line-height:19px}.exactmetrics-table-box-table td:first-child,.exactmetrics-table-box-table th:first-child{padding-left:20px}.exactmetrics-table-box-table td:last-child,.exactmetrics-table-box-table th:last-child{padding-right:20px}.exactmetrics-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-report-2-columns .exactmetrics-table-box{width:50%}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box{width:100%}}.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:50%}@media (max-width:782px){.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%}}.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(odd){padding-right:32px;border-right:1px solid #e9e7ee}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(odd){padding-right:0;border-right:none}}.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-left:32px}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-left:0}}.exactmetrics-report-dimensions .exactmetrics-table-box{border-top:1px solid #e9e7ee;padding-left:32px;padding-right:32px}.exactmetrics-report-dimensions .exactmetrics-report-2-columns{margin-left:-32px;margin-right:-32px}.exactmetrics-report-flex .exactmetrics-report-box{width:50%}@media (max-width:782px){.exactmetrics-report-flex .exactmetrics-report-box{width:100%;margin-top:20px}.exactmetrics-report-flex .exactmetrics-report-box:first-child{margin-top:0}}.exactmetrics-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.exactmetrics-arrow{width:10px;height:11px;display:inline-block;background-size:contain;background-repeat:no-repeat}.exactmetrics-arrow.exactmetrics-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}.exactmetrics-arrow.exactmetrics-down.exactmetrics-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}.exactmetrics-arrow.exactmetrics-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}.exactmetrics-arrow.exactmetrics-up.exactmetrics-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}.exactmetrics-reports-overview-datagraph-tooltip-trend{font-weight:700}.exactmetrics-report-box{background:#fff;padding:32px 0;position:relative}.exactmetrics-realtime-large{font-size:120px;text-align:center;line-height:1.4;color:#32a27a}.exactmetrics-realtime-active{text-align:center;width:100%;font-size:17px;line-height:1;margin-top:-2px;color:#210f59;font-weight:500}.exactmetrics-realtime-box-content .exactmetrics-line-chart-tooltip{max-width:115px}.exactmetrics-realtime-count-box{width:357px;height:357px;margin:50px auto;border-radius:50%;border:15px solid #e9e7ee;text-align:center;padding-top:52px}@media (max-width:782px){.exactmetrics-realtime-count-box{width:300px;height:300px;padding-top:40px}}.exactmetrics-realtime-count-box h3{display:inline-block;font-size:24px;color:#210f59;line-height:1.4;margin:0}#exactmetrics-chartjs-pie-age-tooltip{margin-left:23px;min-width:95px}.exactmetrics-blur .exactmetrics-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-blur .exactmetrics-report{min-height:850px}.exactmetrics-reports-referral-icon{vertical-align:middle;margin-right:10px;margin-left:2px}.exactmetrics-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:100% 0;background-color:#fff;background-size:452px}@media (max-width:991px){.exactmetrics-upsell-inline .exactmetrics-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.exactmetrics-upsell-content{max-width:750px}.exactmetrics-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.exactmetrics-upsell-content .exactmetrics-light{color:#657086}.exactmetrics-upsell-content .exactmetrics-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.exactmetrics-upsell-content .exactmetrics-button{font-size:15px}}.exactmetrics-upsell-overlay{position:absolute;top:125px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:750px;max-width:100%;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);background-color:#fff;border:1px solid #d6e2ed}.exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0 40px}@media (max-width:782px){.exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0 20px}}@media (max-width:782px){.exactmetrics-upsell-overlay{top:70px;width:calc(100% - 40px)}}.exactmetrics-upsell-overlay h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.exactmetrics-upsell-overlay .exactmetrics-upsell-subtitle{color:#4c6577;font-size:16px;text-align:center}.exactmetrics-upsell-overlay p{margin:20px 0}.exactmetrics-upsell-overlay .exactmetrics-upsell-content{border-top:1px solid #d6e2ed;background:#f9fbff;padding:40px}@media (max-width:782px){.exactmetrics-upsell-overlay .exactmetrics-upsell-content{padding-left:20px;padding-right:20px}}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul{margin:0 auto;max-width:520px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul li{color:#4c6577;font-size:16px;margin:0 0 30px;padding-left:40px;position:relative;line-height:1.2}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul li:before{position:absolute;content:"\f015";width:20px;height:20px;background:#5cc0a5;left:0;border-radius:50%;display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#210f59;font-size:14px;text-align:center;line-height:20px;top:-1px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content .exactmetrics-button{font-weight:400;font-size:16px;margin-top:10px}.exactmetrics-upsell-overlay a{color:#393f4c}.exactmetrics-upsell-overlay a:hover{text-decoration:none}.exactmetrics-center,.exactmetrics-mobile-upsell{text-align:center}.exactmetrics-mobile-upsell .exactmetrics-notice{border-top:1px solid #d6e2ed;border-right:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.exactmetrics-mobile-upsell .exactmetrics-notice-inner{margin-top:0}@media (min-width:783px){.exactmetrics-mobile-upsell{display:none}}.exactmetrics-mobile-upsell .exactmetrics-notice-success .exactmetrics-notice-button{margin-right:0}.exactmetrics-overview-upsell-desktop{margin:0 -32px}@media (max-width:782px){.exactmetrics-overview-upsell-desktop{display:none}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:55%}@media (max-width:969px){.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right{width:45%}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{bottom:auto;height:490px;width:779px;left:0}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text{width:376px;margin-right:142px}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text:before{content:"";height:48px;width:127px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAP4AAABgCAMAAAAKJD9QAAAAV1BMVEUAAAAgD1ghD1kgC1ghD1khD1ogD1ggEFEgDlkgDlggDlghDlkgDlkiDlkgEFghD1kgDlggEF0gDlggD1ogD1chD1kgD1kgDVgiDlkgD1ggEFogEFUhD1k1ONBfAAAAHHRSTlMAv98g/u9AEHCAYI+vnyHPUBGggDDuvkF/vjExfxARwwAABb9JREFUeNrlnO3O2yAMhfkIhAJp0y7tuo37v85p0qRqC+XENm+Wbed3hXhiY4NNUf+ElpgmbUz5IXPRU5it2ia9VVMKfsugSW9Tnk6zl5OPPmlX1nI5LAqrkGRytOh7Fop08iL27FqzTQvEJ0tHgE+UmSwP3ieHB48jGR+PCfCp4nwAr3t83cKSmQE+/QOw4bGSBfh0pRHg8z0Ky956DV64MrYrfhmem+mD6zbbwpZbAD5Vj3ET/Fl3/LqlN78ubF228M+OO7rF+HJ+XQT8mP5U2DILxJevKF0ESgD+OhWBhoDw5ebSsgm26S8FiBoAikyf+uKXu20FPUDP4C9C2b745dGwvSlFzt8XX3fGHzzw/L78RSrfF7+Yd/hT6aIhAnyzFsH8esOADpifl/GM0VobB8PL0sQ39ZN1MO/MD/FtrT6Taat/bmegFO34mmo2W9M1wftifdCE8UnnlmGpBf0GkD6td4v+5kB4JeMrW13Xjoj/kjUwmeKIov2bwaPBuwuMj2fhMT7gh3up8NbrPWeDfLc8/NEA78f4mH8YN7v+iXk4fPDwlQexn4ivfCM1vXQDZxiyAwyRgA/o3EjCx2TpdyOCEyzjfHwfefixrLUI8O2Gxa8b1QGor3X+Tzz8sTJaJOFjtrv6RZ8BPYv/PjbwadM9SfBjLfZh4xtE/1Ksm5+Hn8pKkwT/XMG3qx+AQgsj/t15+KEzvnJg239DyQFL14aYWfgRZD4y/qWNf3UFfHCsc22MBwvf98bXbfzIc328axzGvwFfV8MWVaY2Sifnzx+If61XRLBw8nxw8E+9Q59p4s/A+ALzDyMDP3fO+9d24ruBvChIfkOs4pM/Y0D4RLccVnmBGfZBApno+As48GN8fOa5tH1jVhzpKinGxye0EeOTTvy57RsjACVsrqn4FgRiMv6z3ek6kRoh1BjjMT42fhbgW1DqBoEWCGWYQMR/lopi52KXQZuChmiWSxgfVxytpNQJNvROsPTx5DMFf0ygzUPF9wa2eUAtBAg1Si7b8e3TlaoiE99r3OQ716bM1Leykqngu9NaaTKgJUnCH5eY3JYW5Fka+Ntj3VWR6tNHdng/A3xp5hPjG9sXf4gAf1JcfQR+VH3xv6i/Cd90v9uDwlU+EL6zAJ/j+n9P6AuqL/4nPGXTN/ExhTvx8vHk2x6YRbrfwdRy+j02vXL8pBC+/EbnZY8jj9xWcnyzoDnje6/Udkpg4xuveuK7yvWk/csd8v+yKN31rzxztTXN0QyKXQTpxvrTQsvj/q/vtfSNYuC7ySvVDd8kT62rp16F7kzGdzkC39Mk+BEarZP3R9DmgOAmp7iw6unR/1AAyQ5Nu3+Ty4I6P0W43JHRDdaXdmlxXtSu+KPjuL8GPsM3ftgXX82cfy+Fwlr9eAkNdj/8hvt7GLLFwf9sRJdb5PgC90+Flfvx7agd8Vvu/wBRS3yxLVRHUDviN90/wBFFO/+vsmuNcnywku+Wbv4yiRZ+MXZP/Lb7X8CQgB/R142/J37b/UtimL9M4xbPN63d9v74V0eP5LkUZvwLrllR3h9fzfSzz9nxXrwYE2hP7IUvdP/AevIkvm2j2p3xsfvPYFTyB/AalCl3xMfuf7fY/evKc8Xtnwb0EXfDH1Zgmb6RmdtFmOBfwcPOSYOm9O742JZDkD3aYbSepklfHOonLOoP46uA5oXPLYJuyh/HB39PAs8XCPuSB8A/O3r2u5ou9EfAf+P+Hm3f5fTHwAfuD/yfT38U/Lr7Z1D5ysKodxh8FcAM+z9a5dWB8JUGmz/whAZVX6w6FH7d/R+9H6x73YM/Fv6bc1z6iOcKL4s6HL7SIPv1eqzyHpQ6IP7ZgewnXAGv+wOHxG+4P5TXBPiD4r9x/3nje604CegwKnVc/LNrZD+s2H6k+uTpT5TfZPhpNeCXlgGCrulEeapav6mAWPWfaJlP+ecD9c6YfNv8QP13jdUZgGL72MYAAAAASUVORK5CYII=);background-size:contain;position:absolute;left:100%;top:0;margin-left:15px}.exactmetrics-report-realtime .exactmetrics-table-box th:first-child{width:auto}.exactmetrics-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.exactmetrics-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.exactmetrics-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;padding-top:32px}.exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px}@media (max-width:991px){.exactmetrics-report-scroll:nth-child(2){width:100%;margin-left:0;margin-top:25px}}@media (max-width:782px){.exactmetrics-report-scroll{width:100%;margin-left:0}}.exactmetrics-report-scroll>h3{position:absolute;top:0}.exactmetrics-report-scroll .exactmetrics-realtime-active{margin:0 0 50px}.exactmetrics-report-scroll .exactmetrics-realtime-box-content{margin:25px 0}.exactmetrics-report-scroll .exactmetrics-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}@media (max-width:782px){.exactmetrics-report-scroll .exactmetrics-realtime-large{margin-top:25px}}.exactmetrics-not-authenticated-notice{position:fixed;top:40%;left:50%;width:750px;max-width:100%;margin-left:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .exactmetrics-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.exactmetrics-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.exactmetrics-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.exactmetrics-not-authenticated-notice{margin-left:-375px}}.exactmetrics-not-authenticated-notice .exactmetrics-auth-manual-connect-paragraph{display:none}.exactmetrics-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate{text-align:center}.exactmetrics-not-authenticated-notice .exactmetrics-license-button{line-height:1;margin-top:20px}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#e9e7ee;border-color:#e9e7ee;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:hover{background-color:#f4f3f7;border-color:#f4f3f7;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt{background:#6528f5;border-color:#6528f5;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:hover{background-color:#37276a;border-color:#37276a;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;border-color:#e9e7ee;color:#9087ac}.exactmetrics-reports-list-has-overflow{cursor:pointer}.exactmetrics-reports-ecommerce-pie-chart{padding:130px 0 0;width:40%;max-width:100%}@media (max-width:792px){.exactmetrics-reports-ecommerce-pie-chart{width:100%;padding-top:32px}}.exactmetrics-reports-ecommerce-pie-chart .exactmetrics-reports-pie-chart{position:relative;width:225px;text-align:center;padding:0;margin:0 auto;border:none}.exactmetrics-table-no-data{background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;height:100%;min-height:300px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background-size:cover;border-radius:10px;padding:20px}.exactmetrics-table-no-data h3{font-size:17px;line-height:1.5;color:#210f59}.exactmetrics-product-color{display:inline-block;width:14px;height:14px;margin-right:11px;vertical-align:middle;border-radius:50%}.exactmetrics-report-row-icon-left{position:relative;padding-left:170px}.exactmetrics-report-row-icon-left:before{font-size:50px;position:absolute;left:50px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);color:#9087ac}@media (max-width:782px){.exactmetrics-report-row-icon-left{padding-left:20px}.exactmetrics-report-row-icon-left:before{display:none}}.exactmetrics-admin-page .exactmetrics-lite-datepicker{text-align:center;padding:12px 12px 27px}.exactmetrics-admin-page .exactmetrics-lite-datepicker p{color:#210f59;font-size:15px;line-height:1.5;font-weight:700}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text{color:#32a27a;display:inline-block;width:auto}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:hover{color:#19865f}
|
1 |
/*!
|
2 |
* Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
|
3 |
+
*/.exactmetrics-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.exactmetrics-flag.exactmetrics-flag-ad{background-position:-32px 0}.exactmetrics-flag.exactmetrics-flag-ae{background-position:-64px 0}.exactmetrics-flag.exactmetrics-flag-af{background-position:-96px 0}.exactmetrics-flag.exactmetrics-flag-ag{background-position:-128px 0}.exactmetrics-flag.exactmetrics-flag-ai{background-position:-160px 0}.exactmetrics-flag.exactmetrics-flag-al{background-position:-192px 0}.exactmetrics-flag.exactmetrics-flag-am{background-position:-224px 0}.exactmetrics-flag.exactmetrics-flag-an{background-position:-256px 0}.exactmetrics-flag.exactmetrics-flag-ao{background-position:-288px 0}.exactmetrics-flag.exactmetrics-flag-ar{background-position:-320px 0}.exactmetrics-flag.exactmetrics-flag-as{background-position:-352px 0}.exactmetrics-flag.exactmetrics-flag-at{background-position:-384px 0}.exactmetrics-flag.exactmetrics-flag-au{background-position:-416px 0}.exactmetrics-flag.exactmetrics-flag-aw{background-position:-448px 0}.exactmetrics-flag.exactmetrics-flag-ax{background-position:-480px 0}.exactmetrics-flag.exactmetrics-flag-az{background-position:0 -32px}.exactmetrics-flag.exactmetrics-flag-ba{background-position:-32px -32px}.exactmetrics-flag.exactmetrics-flag-bb{background-position:-64px -32px}.exactmetrics-flag.exactmetrics-flag-bd{background-position:-96px -32px}.exactmetrics-flag.exactmetrics-flag-be{background-position:-128px -32px}.exactmetrics-flag.exactmetrics-flag-bf{background-position:-160px -32px}.exactmetrics-flag.exactmetrics-flag-bg{background-position:-192px -32px}.exactmetrics-flag.exactmetrics-flag-bh{background-position:-224px -32px}.exactmetrics-flag.exactmetrics-flag-bi{background-position:-256px -32px}.exactmetrics-flag.exactmetrics-flag-bj{background-position:-288px -32px}.exactmetrics-flag.exactmetrics-flag-bl{background-position:-320px -32px}.exactmetrics-flag.exactmetrics-flag-bm{background-position:-352px -32px}.exactmetrics-flag.exactmetrics-flag-bn{background-position:-384px -32px}.exactmetrics-flag.exactmetrics-flag-bo{background-position:-416px -32px}.exactmetrics-flag.exactmetrics-flag-br{background-position:-448px -32px}.exactmetrics-flag.exactmetrics-flag-bs{background-position:-480px -32px}.exactmetrics-flag.exactmetrics-flag-bt{background-position:0 -64px}.exactmetrics-flag.exactmetrics-flag-bw{background-position:-32px -64px}.exactmetrics-flag.exactmetrics-flag-by{background-position:-64px -64px}.exactmetrics-flag.exactmetrics-flag-bz{background-position:-96px -64px}.exactmetrics-flag.exactmetrics-flag-ca{background-position:-128px -64px}.exactmetrics-flag.exactmetrics-flag-cd{background-position:-160px -64px}.exactmetrics-flag.exactmetrics-flag-cf{background-position:-192px -64px}.exactmetrics-flag.exactmetrics-flag-cg{background-position:-224px -64px}.exactmetrics-flag.exactmetrics-flag-ch{background-position:-256px -64px}.exactmetrics-flag.exactmetrics-flag-ci{background-position:-288px -64px}.exactmetrics-flag.exactmetrics-flag-ck{background-position:-320px -64px}.exactmetrics-flag.exactmetrics-flag-cl{background-position:-352px -64px}.exactmetrics-flag.exactmetrics-flag-cm{background-position:-384px -64px}.exactmetrics-flag.exactmetrics-flag-cn{background-position:-416px -64px}.exactmetrics-flag.exactmetrics-flag-co{background-position:-448px -64px}.exactmetrics-flag.exactmetrics-flag-cr{background-position:-480px -64px}.exactmetrics-flag.exactmetrics-flag-cu{background-position:0 -96px}.exactmetrics-flag.exactmetrics-flag-cv{background-position:-32px -96px}.exactmetrics-flag.exactmetrics-flag-cw{background-position:-64px -96px}.exactmetrics-flag.exactmetrics-flag-cy{background-position:-96px -96px}.exactmetrics-flag.exactmetrics-flag-cz{background-position:-128px -96px}.exactmetrics-flag.exactmetrics-flag-de{background-position:-160px -96px}.exactmetrics-flag.exactmetrics-flag-dj{background-position:-192px -96px}.exactmetrics-flag.exactmetrics-flag-dk{background-position:-224px -96px}.exactmetrics-flag.exactmetrics-flag-dm{background-position:-256px -96px}.exactmetrics-flag.exactmetrics-flag-do{background-position:-288px -96px}.exactmetrics-flag.exactmetrics-flag-dz{background-position:-320px -96px}.exactmetrics-flag.exactmetrics-flag-ec{background-position:-352px -96px}.exactmetrics-flag.exactmetrics-flag-ee{background-position:-384px -96px}.exactmetrics-flag.exactmetrics-flag-eg{background-position:-416px -96px}.exactmetrics-flag.exactmetrics-flag-eh{background-position:-448px -96px}.exactmetrics-flag.exactmetrics-flag-er{background-position:-480px -96px}.exactmetrics-flag.exactmetrics-flag-es{background-position:0 -128px}.exactmetrics-flag.exactmetrics-flag-et{background-position:-32px -128px}.exactmetrics-flag.exactmetrics-flag-eu{background-position:-64px -128px}.exactmetrics-flag.exactmetrics-flag-fi{background-position:-96px -128px}.exactmetrics-flag.exactmetrics-flag-fj{background-position:-128px -128px}.exactmetrics-flag.exactmetrics-flag-fk{background-position:-160px -128px}.exactmetrics-flag.exactmetrics-flag-fm{background-position:-192px -128px}.exactmetrics-flag.exactmetrics-flag-fo{background-position:-224px -128px}.exactmetrics-flag.exactmetrics-flag-fr{background-position:-256px -128px}.exactmetrics-flag.exactmetrics-flag-ga{background-position:-288px -128px}.exactmetrics-flag.exactmetrics-flag-gb{background-position:-320px -128px}.exactmetrics-flag.exactmetrics-flag-gd{background-position:-352px -128px}.exactmetrics-flag.exactmetrics-flag-ge{background-position:-384px -128px}.exactmetrics-flag.exactmetrics-flag-gg{background-position:-416px -128px}.exactmetrics-flag.exactmetrics-flag-gh{background-position:-448px -128px}.exactmetrics-flag.exactmetrics-flag-gi{background-position:-480px -128px}.exactmetrics-flag.exactmetrics-flag-gl{background-position:0 -160px}.exactmetrics-flag.exactmetrics-flag-gm{background-position:-32px -160px}.exactmetrics-flag.exactmetrics-flag-gn{background-position:-64px -160px}.exactmetrics-flag.exactmetrics-flag-gp{background-position:-96px -160px}.exactmetrics-flag.exactmetrics-flag-gq{background-position:-128px -160px}.exactmetrics-flag.exactmetrics-flag-gr{background-position:-160px -160px}.exactmetrics-flag.exactmetrics-flag-gs{background-position:-192px -160px}.exactmetrics-flag.exactmetrics-flag-gt{background-position:-224px -160px}.exactmetrics-flag.exactmetrics-flag-gu{background-position:-256px -160px}.exactmetrics-flag.exactmetrics-flag-gw{background-position:-288px -160px}.exactmetrics-flag.exactmetrics-flag-gy{background-position:-320px -160px}.exactmetrics-flag.exactmetrics-flag-hk{background-position:-352px -160px}.exactmetrics-flag.exactmetrics-flag-hn{background-position:-384px -160px}.exactmetrics-flag.exactmetrics-flag-hr{background-position:-416px -160px}.exactmetrics-flag.exactmetrics-flag-ht{background-position:-448px -160px}.exactmetrics-flag.exactmetrics-flag-hu{background-position:-480px -160px}.exactmetrics-flag.exactmetrics-flag-ic{background-position:0 -192px}.exactmetrics-flag.exactmetrics-flag-id{background-position:-32px -192px}.exactmetrics-flag.exactmetrics-flag-ie{background-position:-64px -192px}.exactmetrics-flag.exactmetrics-flag-il{background-position:-96px -192px}.exactmetrics-flag.exactmetrics-flag-im{background-position:-128px -192px}.exactmetrics-flag.exactmetrics-flag-in{background-position:-160px -192px}.exactmetrics-flag.exactmetrics-flag-iq{background-position:-192px -192px}.exactmetrics-flag.exactmetrics-flag-ir{background-position:-224px -192px}.exactmetrics-flag.exactmetrics-flag-is{background-position:-256px -192px}.exactmetrics-flag.exactmetrics-flag-it{background-position:-288px -192px}.exactmetrics-flag.exactmetrics-flag-je{background-position:-320px -192px}.exactmetrics-flag.exactmetrics-flag-jm{background-position:-352px -192px}.exactmetrics-flag.exactmetrics-flag-jo{background-position:-384px -192px}.exactmetrics-flag.exactmetrics-flag-jp{background-position:-416px -192px}.exactmetrics-flag.exactmetrics-flag-ke{background-position:-448px -192px}.exactmetrics-flag.exactmetrics-flag-kg{background-position:-480px -192px}.exactmetrics-flag.exactmetrics-flag-kh{background-position:0 -224px}.exactmetrics-flag.exactmetrics-flag-ki{background-position:-32px -224px}.exactmetrics-flag.exactmetrics-flag-km{background-position:-64px -224px}.exactmetrics-flag.exactmetrics-flag-kn{background-position:-96px -224px}.exactmetrics-flag.exactmetrics-flag-kp{background-position:-128px -224px}.exactmetrics-flag.exactmetrics-flag-kr{background-position:-160px -224px}.exactmetrics-flag.exactmetrics-flag-kw{background-position:-192px -224px}.exactmetrics-flag.exactmetrics-flag-ky{background-position:-224px -224px}.exactmetrics-flag.exactmetrics-flag-kz{background-position:-256px -224px}.exactmetrics-flag.exactmetrics-flag-la{background-position:-288px -224px}.exactmetrics-flag.exactmetrics-flag-lb{background-position:-320px -224px}.exactmetrics-flag.exactmetrics-flag-lc{background-position:-352px -224px}.exactmetrics-flag.exactmetrics-flag-li{background-position:-384px -224px}.exactmetrics-flag.exactmetrics-flag-lk{background-position:-416px -224px}.exactmetrics-flag.exactmetrics-flag-lr{background-position:-448px -224px}.exactmetrics-flag.exactmetrics-flag-ls{background-position:-480px -224px}.exactmetrics-flag.exactmetrics-flag-lt{background-position:0 -256px}.exactmetrics-flag.exactmetrics-flag-lu{background-position:-32px -256px}.exactmetrics-flag.exactmetrics-flag-lv{background-position:-64px -256px}.exactmetrics-flag.exactmetrics-flag-ly{background-position:-96px -256px}.exactmetrics-flag.exactmetrics-flag-ma{background-position:-128px -256px}.exactmetrics-flag.exactmetrics-flag-mc{background-position:-160px -256px}.exactmetrics-flag.exactmetrics-flag-md{background-position:-192px -256px}.exactmetrics-flag.exactmetrics-flag-me{background-position:-224px -256px}.exactmetrics-flag.exactmetrics-flag-mf{background-position:-256px -256px}.exactmetrics-flag.exactmetrics-flag-mg{background-position:-288px -256px}.exactmetrics-flag.exactmetrics-flag-mh{background-position:-320px -256px}.exactmetrics-flag.exactmetrics-flag-mk{background-position:-352px -256px}.exactmetrics-flag.exactmetrics-flag-ml{background-position:-384px -256px}.exactmetrics-flag.exactmetrics-flag-mm{background-position:-416px -256px}.exactmetrics-flag.exactmetrics-flag-mn{background-position:-448px -256px}.exactmetrics-flag.exactmetrics-flag-mo{background-position:-480px -256px}.exactmetrics-flag.exactmetrics-flag-mp{background-position:0 -288px}.exactmetrics-flag.exactmetrics-flag-mq{background-position:-32px -288px}.exactmetrics-flag.exactmetrics-flag-mr{background-position:-64px -288px}.exactmetrics-flag.exactmetrics-flag-ms{background-position:-96px -288px}.exactmetrics-flag.exactmetrics-flag-mt{background-position:-128px -288px}.exactmetrics-flag.exactmetrics-flag-mu{background-position:-160px -288px}.exactmetrics-flag.exactmetrics-flag-mv{background-position:-192px -288px}.exactmetrics-flag.exactmetrics-flag-mw{background-position:-224px -288px}.exactmetrics-flag.exactmetrics-flag-mx{background-position:-256px -288px}.exactmetrics-flag.exactmetrics-flag-my{background-position:-288px -288px}.exactmetrics-flag.exactmetrics-flag-mz{background-position:-320px -288px}.exactmetrics-flag.exactmetrics-flag-na{background-position:-352px -288px}.exactmetrics-flag.exactmetrics-flag-nc{background-position:-384px -288px}.exactmetrics-flag.exactmetrics-flag-ne{background-position:-416px -288px}.exactmetrics-flag.exactmetrics-flag-nf{background-position:-448px -288px}.exactmetrics-flag.exactmetrics-flag-ng{background-position:-480px -288px}.exactmetrics-flag.exactmetrics-flag-ni{background-position:0 -320px}.exactmetrics-flag.exactmetrics-flag-nl{background-position:-32px -320px}.exactmetrics-flag.exactmetrics-flag-no{background-position:-64px -320px}.exactmetrics-flag.exactmetrics-flag-np{background-position:-96px -320px}.exactmetrics-flag.exactmetrics-flag-nr{background-position:-128px -320px}.exactmetrics-flag.exactmetrics-flag-nu{background-position:-160px -320px}.exactmetrics-flag.exactmetrics-flag-nz{background-position:-192px -320px}.exactmetrics-flag.exactmetrics-flag-om{background-position:-224px -320px}.exactmetrics-flag.exactmetrics-flag-pa{background-position:-256px -320px}.exactmetrics-flag.exactmetrics-flag-pe{background-position:-288px -320px}.exactmetrics-flag.exactmetrics-flag-pf{background-position:-320px -320px}.exactmetrics-flag.exactmetrics-flag-pg{background-position:-352px -320px}.exactmetrics-flag.exactmetrics-flag-ph{background-position:-384px -320px}.exactmetrics-flag.exactmetrics-flag-pk{background-position:-416px -320px}.exactmetrics-flag.exactmetrics-flag-pl{background-position:-448px -320px}.exactmetrics-flag.exactmetrics-flag-pn{background-position:-480px -320px}.exactmetrics-flag.exactmetrics-flag-pr{background-position:0 -352px}.exactmetrics-flag.exactmetrics-flag-ps{background-position:-32px -352px}.exactmetrics-flag.exactmetrics-flag-pt{background-position:-64px -352px}.exactmetrics-flag.exactmetrics-flag-pw{background-position:-96px -352px}.exactmetrics-flag.exactmetrics-flag-py{background-position:-128px -352px}.exactmetrics-flag.exactmetrics-flag-qa{background-position:-160px -352px}.exactmetrics-flag.exactmetrics-flag-re{background-position:-192px -352px}.exactmetrics-flag.exactmetrics-flag-ro{background-position:-224px -352px}.exactmetrics-flag.exactmetrics-flag-rs{background-position:-256px -352px}.exactmetrics-flag.exactmetrics-flag-ru{background-position:-288px -352px}.exactmetrics-flag.exactmetrics-flag-rw{background-position:-320px -352px}.exactmetrics-flag.exactmetrics-flag-sa{background-position:-352px -352px}.exactmetrics-flag.exactmetrics-flag-sb{background-position:-384px -352px}.exactmetrics-flag.exactmetrics-flag-sc{background-position:-416px -352px}.exactmetrics-flag.exactmetrics-flag-sd{background-position:-448px -352px}.exactmetrics-flag.exactmetrics-flag-se{background-position:-480px -352px}.exactmetrics-flag.exactmetrics-flag-sg{background-position:0 -384px}.exactmetrics-flag.exactmetrics-flag-sh{background-position:-32px -384px}.exactmetrics-flag.exactmetrics-flag-si{background-position:-64px -384px}.exactmetrics-flag.exactmetrics-flag-sk{background-position:-96px -384px}.exactmetrics-flag.exactmetrics-flag-sl{background-position:-128px -384px}.exactmetrics-flag.exactmetrics-flag-sm{background-position:-160px -384px}.exactmetrics-flag.exactmetrics-flag-sn{background-position:-192px -384px}.exactmetrics-flag.exactmetrics-flag-so{background-position:-224px -384px}.exactmetrics-flag.exactmetrics-flag-sr{background-position:-256px -384px}.exactmetrics-flag.exactmetrics-flag-ss{background-position:-288px -384px}.exactmetrics-flag.exactmetrics-flag-st{background-position:-320px -384px}.exactmetrics-flag.exactmetrics-flag-sv{background-position:-352px -384px}.exactmetrics-flag.exactmetrics-flag-sy{background-position:-384px -384px}.exactmetrics-flag.exactmetrics-flag-sz{background-position:-416px -384px}.exactmetrics-flag.exactmetrics-flag-tc{background-position:-448px -384px}.exactmetrics-flag.exactmetrics-flag-td{background-position:-480px -384px}.exactmetrics-flag.exactmetrics-flag-tf{background-position:0 -416px}.exactmetrics-flag.exactmetrics-flag-tg{background-position:-32px -416px}.exactmetrics-flag.exactmetrics-flag-th{background-position:-64px -416px}.exactmetrics-flag.exactmetrics-flag-tj{background-position:-96px -416px}.exactmetrics-flag.exactmetrics-flag-tk{background-position:-128px -416px}.exactmetrics-flag.exactmetrics-flag-tl{background-position:-160px -416px}.exactmetrics-flag.exactmetrics-flag-tm{background-position:-192px -416px}.exactmetrics-flag.exactmetrics-flag-tn{background-position:-224px -416px}.exactmetrics-flag.exactmetrics-flag-to{background-position:-256px -416px}.exactmetrics-flag.exactmetrics-flag-tr{background-position:-288px -416px}.exactmetrics-flag.exactmetrics-flag-tt{background-position:-320px -416px}.exactmetrics-flag.exactmetrics-flag-tv{background-position:-352px -416px}.exactmetrics-flag.exactmetrics-flag-tw{background-position:-384px -416px}.exactmetrics-flag.exactmetrics-flag-tz{background-position:-416px -416px}.exactmetrics-flag.exactmetrics-flag-ua{background-position:-448px -416px}.exactmetrics-flag.exactmetrics-flag-ug{background-position:-480px -416px}.exactmetrics-flag.exactmetrics-flag-us{background-position:0 -448px}.exactmetrics-flag.exactmetrics-flag-uy{background-position:-32px -448px}.exactmetrics-flag.exactmetrics-flag-uz{background-position:-64px -448px}.exactmetrics-flag.exactmetrics-flag-va{background-position:-96px -448px}.exactmetrics-flag.exactmetrics-flag-vc{background-position:-128px -448px}.exactmetrics-flag.exactmetrics-flag-ve{background-position:-160px -448px}.exactmetrics-flag.exactmetrics-flag-vg{background-position:-192px -448px}.exactmetrics-flag.exactmetrics-flag-vi{background-position:-224px -448px}.exactmetrics-flag.exactmetrics-flag-vn{background-position:-256px -448px}.exactmetrics-flag.exactmetrics-flag-vu{background-position:-288px -448px}.exactmetrics-flag.exactmetrics-flag-wf{background-position:-320px -448px}.exactmetrics-flag.exactmetrics-flag-ws{background-position:-352px -448px}.exactmetrics-flag.exactmetrics-flag-ye{background-position:-384px -448px}.exactmetrics-flag.exactmetrics-flag-yt{background-position:-416px -448px}.exactmetrics-flag.exactmetrics-flag-za{background-position:-448px -448px}.exactmetrics-flag.exactmetrics-flag-zm{background-position:-480px -448px}.exactmetrics-flag.exactmetrics-flag-zw{background-position:0 -480px}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner,.exactmetrics-upsell-row .exactmetrics-upsell-row-inner,.exactmetrics-upsell .exactmetrics-upsell-title .exactmetrics-upsell-title-inner{max-width:1400px;margin:0 auto}.exactmetrics-reports-page .exactmetrics-upsell{border-bottom:1px solid #d6e2ed}.exactmetrics-upsell-row{width:100%;background:rgba(101,40,245,.05)}.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 96px}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 24px}}.exactmetrics-upsell-row h3{margin:0 0 60px;font-size:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 31%;flex:1 0 31%;margin-bottom:45px}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item{-webkit-box-flex:1;-ms-flex:1 0 21%;flex:1 0 21%}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-list-item{width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}.exactmetrics-upsell-row .exactmetrics-upsell-list-item i{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;color:#6528f5;font-size:23px;margin-right:18px;margin-top:6px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{line-height:1.7;color:#37276a;max-width:232px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;font-weight:500;text-decoration:none}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{max-width:170px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text{cursor:pointer}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:focus,.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:hover{color:#6528f5}.exactmetrics-full-width-upsell{background:#f7f3fe;min-height:445px;margin-bottom:116px}.exactmetrics-reports-page .exactmetrics-full-width-upsell{margin-bottom:0}@media (max-width:959px){.exactmetrics-full-width-upsell{margin-bottom:48px}}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space{margin-bottom:0;min-height:380px}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space+.exactmetrics-full-width-upsell{margin-top:-100px}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;position:relative}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner .exactmetrics-upsell-left{padding-left:0;padding-top:100px}.exactmetrics-full-width-upsell h2{color:#210f59;font-size:24px;line-height:1.4}.exactmetrics-full-width-upsell p{font-size:15px;line-height:1.7;color:#210f59;margin:11px 0 0}.exactmetrics-full-width-upsell p.exactmetrics-upsell-pbold{font-weight:700;margin-top:0}.exactmetrics-full-width-upsell a.exactmetrics-green-text{color:#32a27a;font-weight:400}.exactmetrics-full-width-upsell a.exactmetrics-green-text:focus,.exactmetrics-full-width-upsell a.exactmetrics-green-text:hover{color:#19865f;text-decoration:none}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-top:20px;margin-bottom:72px}@media (max-width:1099px){.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-bottom:48px}}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button:first-child{margin-right:18px}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button-text .monstericon-arrow-right{font-size:12px;vertical-align:text-top;margin-left:10px}.exactmetrics-upsell-half{position:relative;padding-top:56px}.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-left:96px;padding-top:56px;width:40%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:50%;padding-left:24px}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-top:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{max-width:100%;left:0;height:auto;padding-top:67%}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image:after{background-position:50%;left:-16%;right:-16%;top:-10%;bottom:-10%}@media (min-width:960px){.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{display:none}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%;padding-right:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:96px;padding-top:0;width:60%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-right{width:50%}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-right{display:none}}.exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{position:absolute;bottom:-140px;left:68px}.exactmetrics-upsell-half h3{color:#6528f5;font-size:20px;line-height:1.3;font-weight:400;margin:0 0 15px}.exactmetrics-upsell a{color:#6528f5}.exactmetrics-upsell a:focus,.exactmetrics-upsell a:hover{color:#37276a}.exactmetrics-upsell .exactmetrics-upsell-title{border-bottom:1px solid #e9e7ee}.exactmetrics-upsell .exactmetrics-upsell-title h2{color:#210f59;font-size:32px;margin-left:100px;margin-top:45px;margin-bottom:35px}@media (max-width:782px){.exactmetrics-upsell .exactmetrics-upsell-title h2{margin-left:24px;line-height:1.4;margin-top:24px;margin-bottom:24px}}.exactmetrics-upsell .exactmetrics-upsell-half h3{font-size:24px;color:#210f59;font-weight:700}.exactmetrics-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.exactmetrics-upsell-bottom{padding-left:20px;padding-right:20px}}.exactmetrics-upsell-bottom .exactmetrics-button-top{position:absolute;top:0;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}@media (max-width:767px){.exactmetrics-upsell-bottom .exactmetrics-button-top{min-width:288px}}.exactmetrics-upsell-bottom img{max-width:100%}.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{width:848px;padding-top:0;height:566px}@media (max-width:1099px){.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{left:20px}}.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-upsell-screen:after,.exactmetrics-screen-image:after{background-position:100% 100%;background-image:url(../img/upsell-screen.png)}.exactmetrics-em-logo-text{width:432px;height:56px;margin-bottom:28px;padding-top:0;max-width:100%}@media (max-width:1400px){.exactmetrics-em-logo-text{padding-top:13%;height:auto}}@media (max-width:959px){.exactmetrics-em-logo-text{padding-top:8%}}.exactmetrics-em-logo-text:after{background-image:url(../img/exactmetrics.png)}.exactmetrics-em-addons-upsell-screen,.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-publishers-upsell-screen{bottom:auto;top:-90px}.exactmetrics-em-addons-upsell-screen:after,.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-publishers-upsell-screen:after{background-position:100% 0;background-image:url(../img/ecommerce-screen.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-forms-upsell-screen{width:758px;max-width:100%;margin-top:-75px}.exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-em-optimize-upsell-screen{width:758px;max-width:100%;margin-left:-10%}.exactmetrics-em-optimize-upsell-screen:after{background-position:50%;background-image:url(../img/optimize-screen.png)}.exactmetrics-em-dimensions-upsell-screen{width:758px;max-width:100%}.exactmetrics-em-dimensions-upsell-screen:after{background-position:50%;background-image:url(../img/custom-dimensions-screen.png)}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:0}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half p{max-width:400px;margin-bottom:28px}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:96px}.exactmetrics-icon-background-large{position:absolute;font-size:130px;color:rgba(101,40,245,.05);left:25px;top:25px;line-height:1;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator{font-size:13px;color:#fff;background-color:#32a27a;border-radius:3px;font-weight:500;padding:4px 8px;vertical-align:top;margin-left:10px;display:inline-block;margin-top:-4px;cursor:pointer;text-decoration:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:hover,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:hover{color:#fff;background:#19865f}.exactmetrics-report .exactmetrics-upsell-dismissable{margin-left:-32px;margin-right:-32px;padding-left:32px;padding-right:32px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable{text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable h3{font-size:17px;color:#210f59;line-height:1.5;font-weight:700}.exactmetrics-report .exactmetrics-upsell-dismissable p{font-size:15px;margin-bottom:25px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{width:50%;padding-top:38px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{padding-left:32px;padding-right:32px;width:100%;text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half:first-child p{max-width:524px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:40px;color:#9087ac}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:0;margin-top:20px}}.exactmetrics-report .exactmetrics-upsell-dismiss{position:absolute;right:20px;top:20px;z-index:10}.exactmetrics-forms-image-wpf-upsell{margin-bottom:-140px;padding-top:85%}@media (max-width:782px){.exactmetrics-forms-image-wpf-upsell{margin-bottom:0}}.exactmetrics-forms-image-wpf-upsell:after{background-position:100% 100%;background-image:url(../img/forms-wpforms-upsell.png)}.exactmetrics-admin-page{overflow:hidden}.exactmetrics-report{padding:30px 32px;position:relative}@media (max-width:991px){.exactmetrics-report{padding-left:24px;padding-right:24px}}.exactmetrics-reports-page{margin-bottom:100px}.exactmetrics-reports-page .exactmetrics-header{padding-top:21px;padding-bottom:21px}@media (max-width:782px){.exactmetrics-reports-page .exactmetrics-report-top{margin-bottom:25px}}.exactmetrics_page.exactmetrics-downloading-pdf-report #wpbody{-webkit-filter:blur(15px);filter:blur(15px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-header{min-height:85px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report{width:1120px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation{border-bottom:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{border:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button:first-child{border-right:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-row.exactmetrics-report-row-border-top{border-top:0;margin-bottom:25px}@media (max-width:782px){.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title{padding-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title.exactmetrics-has-pagination{margin-bottom:25px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title:before{position:inherit;left:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button{font-size:18px;padding:23px 20px 25px;text-align:left}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row{padding:24px 60px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-left:1px solid #bcb7cd;border-top:0;padding:0 10px 0 80px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-left:none;padding-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-ecommerce-pie-chart{width:40%;padding-top:130px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit;-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit;margin-left:20px;-webkit-box-orient:inherit;-webkit-box-direction:inherit;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-report-box{width:calc(50% - 12.5px);margin-top:0}}@media (max-width:991px){.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-left:-32px;margin-right:-32px;padding-left:32px;padding-right:32px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex{-ms-flex-flow:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart{width:50%;border:none;padding-left:32px;padding-right:20px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart:first-child{border-right:1px solid #e9e7ee}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box{margin-left:20px;margin-top:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box:first-child{margin-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-report-2-columns .exactmetrics-table-box{width:calc(50% - 12.5px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex.exactmetrics-interests-scroll-report .exactmetrics-table-box{width:100%}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-pie-chart{width:calc(50% - 12.5px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-pie-chart:first-child{margin:0 25px 0 0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px;margin-top:0}}body.exactmetrics-reporting-page #wpbody-content{padding-bottom:0}body.exactmetrics-reporting-page .exactmetrics-red{color:#d73638}body.exactmetrics-reporting-page .exactmetrics-green{color:#5cc0a5}body.exactmetrics-reporting-page .exactmetrics-report-top{margin-top:14px;margin-bottom:24px}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-report-top{margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-report-top h2{margin:12px 0;display:inline-block;color:#210f59;font-size:32px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:none}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:block;margin:0 0 25px}}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:right;margin-right:25px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-right:0;margin-bottom:0;text-align:center;padding-top:20px}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-bottom:0}}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button{background:#e9e7ee;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button:hover{background:#bcb7cd}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button[disabled=disabled]{cursor:not-allowed}body.exactmetrics-reporting-page .exactmetrics-report-realtime .exactmetrics-export-pdf-report{margin-right:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:right}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle{width:100%;margin-right:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle .exactmetrics-button{width:50%}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:right}}body.exactmetrics-reporting-page .exactmetrics-datepicker{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{position:relative}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{max-width:100%}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container.exactmetrics-hide,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .exactmetrics-hide{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-wrapper{display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day{max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#6528f5;border-color:#6528f5}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer{padding:0 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#f4f3f7;padding:14px 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 10px 0 5px;min-height:25px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{background:#e9e7ee;border-radius:3px;font-size:15px;color:#210f59;line-height:1.75;padding:8px 28px 8px 20px;border:none;position:relative;text-align:left}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{max-width:100%;line-height:1.4}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info>span{overflow:hidden;white-space:pre;text-overflow:ellipsis;max-width:calc(100% - 40px);display:inline-block}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-left:38px;margin-right:12px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-left:10px;margin-right:10px;vertical-align:super}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info:after{width:0;height:0;border-color:#9087ac rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-2px;right:20px}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown{position:absolute;z-index:100;background:#fff;border:1px solid #f4f3f7;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;left:0;top:100%}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button{display:block;border:none;padding:8px 12px;font-size:15px;line-height:1.75;color:#210f59;width:100%;text-align:left;border-radius:2px;background:#fff}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button.exactmetrics-interval-active,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:focus,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:hover{background:#e9e7ee}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button i{margin-right:10px}body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{width:100%;margin-bottom:0;margin-top:10px;margin-left:0;font-weight:700}@media (min-width:783px){body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{display:none}}body.exactmetrics-reporting-page .exactmetrics-info{color:#9087ac;cursor:help;font-size:15px;position:relative;display:inline-block;vertical-align:top;margin-left:10px}body.exactmetrics-reporting-page .exactmetrics-report-row{margin-bottom:25px}body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-bottom:0;margin-left:-32px;margin-right:-32px;padding:0 32px;border-top:1px solid #e9e7ee}@media (max-width:991px){body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-left:-24px;margin-right:-24px;padding-left:24px;padding-right:24px}}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-right:0;margin:0}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#fff}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:focus{z-index:10;position:relative}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval{background:#fff;color:#6528f5;font-weight:700}.exactmetrics-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border:1px solid #bcb7cd;-webkit-box-shadow:0 10px 20px rgba(57,15,157,.15);box-shadow:0 10px 20px rgba(57,15,157,.15);border-radius:5px;display:block}.exactmetrics-pie-chart-tooltip{left:20px;top:20px;padding:0}@media (max-width:782px){.exactmetrics-pie-chart-tooltip{left:50%;margin-left:-97px}}.exactmetrics-reports-doughnut-tooltip{-webkit-box-shadow:none;box-shadow:none;border:none;width:172px;border-radius:50%;height:172px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-title{font-size:30px;color:#6528f5;margin-bottom:18px;font-weight:700}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number{color:#6528f5;font-size:15px;font-weight:500}#exactmetrics-chartjs-line-overview-tooltip{min-width:100px}.exactmetrics-reports-overview-datagraph-tooltip-number{color:#210f59;font-size:24px;font-weight:400;margin-bottom:5px;display:inline-block;margin-right:5px}.exactmetrics-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:14px;font-weight:400;display:inline-block}.exactmetrics-reports-overview-datagraph-tooltip-descriptor{color:#9087ac;font-size:12px;font-weight:400;width:100%;clear:both}.exactmetrics-reports-overview-datagraph-tooltip-title{color:#210f59;font-size:12px;font-weight:400;width:100%}#exactmetrics-chartjs-bar-tooltip,.exactmetrics-line-chart-tooltip{opacity:1;position:absolute;-webkit-transform:translate(-50%,-100%);-ms-transform:translate(-50%,-100%);transform:translate(-50%,-100%);margin-top:-20px}#exactmetrics-chartjs-bar-tooltip:after,.exactmetrics-line-chart-tooltip:after{position:absolute;top:100%;width:0;height:0;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 9.5px 0;content:"";left:50%;margin-left:-9px;margin-top:-7px}#exactmetrics-chartjs-bar-tooltip:before,.exactmetrics-line-chart-tooltip:before{position:absolute;top:100%;width:0;height:0;border-color:#bcb7cd rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 10.5px 0;content:"";left:50%;margin-left:-10px;margin-top:-6px}#exactmetrics-chartjs-line-age-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number:after{content:"%"}.exactmetrics-report-tabs-navigation{border-bottom:1px solid #e9e7ee}.exactmetrics-report-tabs-navigation button{color:#4d3f7a;font-weight:700;text-align:left;font-size:15px;padding:15px 24px 17px;cursor:pointer;margin:0 0 -1px;position:relative;line-height:1;border-radius:5px 5px 0 0;background:#fff;border:1px solid;border-color:#fff #fff #e9e7ee}@media (max-width:782px){.exactmetrics-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.exactmetrics-report-tabs-navigation button:focus{z-index:10}.exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{background:#fff;color:#6528f5;border-color:#e9e7ee #e9e7ee #fff}.exactmetrics-report-tabs{background:#fff}.exactmetrics-report-tabs .exactmetrics-report-tabs-content{padding-top:20px}#mi-custom-line{max-height:330px}.exactmetrics-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;background:#f4f3f7;border-radius:10px;padding:24px 60px}@media (max-width:782px){.exactmetrics-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap;padding:20px}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-left:1px solid #bcb7cd;padding:0 10px 0 60px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-info{display:inline-block;font-size:12px;margin-left:6px;vertical-align:middle}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-left:none;padding-left:0}@media (max-width:782px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%;border-left:none;border-top:1px solid #bcb7cd;padding:24px 0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-top:0;padding-top:0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:last-child{padding-bottom:0}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2;color:#4d3f7a;font-size:13px;display:inline-block;vertical-align:middle;padding-left:0}@media (max-width:991px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{padding-left:0}}.exactmetrics-report-title{font-size:24px;color:#210f59;font-weight:700;margin-top:0;line-height:1.4;display:inline-block}@media (max-width:762px){.exactmetrics-report-title{padding-left:60px}.exactmetrics-report-title.exactmetrics-has-pagination{margin-bottom:80px}}.exactmetrics-report-title:before{width:40px;height:40px;border-radius:50%;background:rgba(33,15,89,.1);right:100%;margin-right:30px;color:#210f59;text-align:center;line-height:40px;font-size:15px;-webkit-transition:background .2s ease 0ms,color .2s ease 0ms;transition:background .2s ease 0ms,color .2s ease 0ms;vertical-align:middle;margin-top:-2px}@media (max-width:762px){.exactmetrics-report-title:before{position:absolute;left:0}}.exactmetrics-reports-infobox-number{font-size:32px;font-weight:500;line-height:1;margin-top:4px;color:#210f59;width:100%;display:block}@media (max-width:782px){.exactmetrics-reports-infobox-number{font-size:36px;float:none}}.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{display:inline-block}@media (max-width:1280px){.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{float:none;clear:both}}.exactmetrics-reports-infobox-prev{font-size:14px;margin-top:4px;margin-right:5px}.exactmetrics-reports-infobox-prev .exactmetrics-arrow{vertical-align:middle}.exactmetrics-reports-infobox-compare{font-size:12px;color:#9087ac;display:inline-block}.exactmetrics-buttons-toggle{margin-right:25px}.exactmetrics-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.exactmetrics-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.exactmetrics-reports-pie-chart{width:50%;padding:32px 20px 32px 32px;background:#fff;position:relative}.exactmetrics-reports-pie-chart:first-child{border-right:1px solid #e9e7ee;padding-left:0}@media (max-width:991px){.exactmetrics-reports-pie-chart:first-child{border-right:0}}@media (max-width:991px){.exactmetrics-reports-pie-chart{width:100%;border:none;padding-left:0;padding-right:0}}.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;margin-left:20px}@media (max-width:781px){.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:0 12px 0 0}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend{margin:24px 12px;-ms-flex-negative:0;flex-shrink:0;-ms-flex-item-align:center;align-self:center}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend li{background:#f4f3f7;border-radius:10px;padding:10px 20px}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-tooltip{position:absolute;pointer-events:none}.exactmetrics-pie-chart-legend-color{width:25px;height:25px;display:inline-block;border-radius:50%;margin:7px 17px 7px 0;float:left}.exactmetrics-pie-chart-legend-text{display:inline-block;font-size:15px;color:#9087ac;width:calc(100% - 50px)}.exactmetrics-pie-chart-legend-value{color:#210f59;font-size:18px;font-weight:500;display:inline-block;width:calc(100% - 50px)}.exactmetrics-table-box{background:#fff;width:100%;padding-top:32px;position:relative}.exactmetrics-table-box:first-child{margin-left:0;margin-top:0}@media (max-width:991px){.exactmetrics-table-box{margin-left:0;margin-top:20px}}.exactmetrics-table-box-footer{background:#fff;padding:20px 0 21px;text-align:right}.exactmetrics-report-row-border-top .exactmetrics-table-box-footer{padding-bottom:46px}.exactmetrics-table-box-footer:after{display:table;clear:both;content:""}.exactmetrics-table-box-footer .exactmetrics-button [class*=monstericon-]{margin-left:18px}@media (max-width:782px){.exactmetrics-table-box-footer>.exactmetrics-button{width:100%;text-align:center}}.exactmetrics-table-list-item{padding:12px 20px;min-height:42px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:3px}table .exactmetrics-table-list-item{display:table-row}.exactmetrics-table-list-item:nth-child(odd){background-color:#f4f3f7}.exactmetrics-table-list-item .exactmetrics-reports-list-text{color:#210f59;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px;font-weight:500}.exactmetrics-table-list-item .exactmetrics-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;color:#210f59}.exactmetrics-table-list-item .exactmetrics-reports-list-text img{display:inline-block;margin-right:10px;vertical-align:middle}.exactmetrics-table-list-item .exactmetrics-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-6px 0 -10px -8px}.exactmetrics-table-list-item a{text-decoration:none;color:#393f4c}.exactmetrics-table-list-item a:focus,.exactmetrics-table-list-item a:hover{color:#777}.exactmetrics-table-list-item .exactmetrics-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.exactmetrics-table-list-item .exactmetrics-reports-list-number{color:#393f4c;font-size:15px;text-align:right;display:block;padding-left:5px}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;top:32px;right:0}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;top:65px}}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination span{color:#9087ac}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle{position:absolute;top:100%;background:#fff;border:1px solid #f4f3f7;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;left:0}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button{width:100%;border-radius:3px;border:none;background:#fff}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval,body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#f4f3f7}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-pagination-selector span{color:#37276a}.exactmetrics-pagination-selector{background:#f4f3f7;padding:8px 35px 8px 20px;border:none;border-radius:3px;font-size:15px;line-height:1.7;cursor:pointer}.exactmetrics-pagination-selector:after{width:0;height:0;border-color:#9087ac rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-1px;right:20px}@media (max-width:792px){.exactmetrics-pagination-selector{width:100%;text-align:left;top:65px}}.exactmetrics-table-box-list{min-height:calc(100% - 147px);position:relative}.exactmetrics-table-box-list .exactmetrics-table-no-data{top:0;bottom:0;left:0;right:0}.exactmetrics-table-box-table .exactmetrics-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.exactmetrics-table-box-table .exactmetrics-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.exactmetrics-table-box-mobile .exactmetrics-table-box-table{overflow:auto}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;padding:0}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;padding-left:0;margin-left:50px;border-top:1px solid #d6e2ed;font-size:13px;color:#657086;padding-top:8px;padding-bottom:8px}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td.exactmetrics-table-cell-1{margin-left:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-left:20px;font-size:15px;color:#210f59;padding-top:12px;padding-bottom:12px;border-top:none}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th{display:none;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1{display:block;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1 .exactmetrics-table-item-content,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1 .exactmetrics-table-item-content{padding-right:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after{content:"\F01F";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;position:absolute;right:10px;top:50%;-webkit-transform:translateY(-50%) rotate(180deg);-ms-transform:translateY(-50%) rotate(180deg);transform:translateY(-50%) rotate(180deg);color:#9087ac;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table .exactmetrics-table-mobile-heading{min-width:125px}.exactmetrics-table-box-mobile .exactmetrics-table-box-table .exactmetrics-table-list-item-empty td:first-child .exactmetrics-table-item-content:after{display:none}.exactmetrics-table-box-table table{width:100%;border-collapse:collapse}.exactmetrics-table-box-mobile .exactmetrics-table-box-table table{table-layout:fixed}.exactmetrics-table-box-table th{text-align:left;font-size:12px;color:#9087ac;text-transform:uppercase;letter-spacing:.08em}.exactmetrics-table-box-table td,.exactmetrics-table-box-table th{border:none;padding:12px 10px;line-height:19px}.exactmetrics-table-box-table td:first-child,.exactmetrics-table-box-table th:first-child{padding-left:20px}.exactmetrics-table-box-table td:last-child,.exactmetrics-table-box-table th:last-child{padding-right:20px}.exactmetrics-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-report-2-columns .exactmetrics-table-box{width:50%}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box{width:100%}}.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:50%}@media (max-width:782px){.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%}}.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(odd){padding-right:32px;border-right:1px solid #e9e7ee}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(odd){padding-right:0;border-right:none}}.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-left:32px}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-left:0}}.exactmetrics-report-dimensions .exactmetrics-table-box{border-top:1px solid #e9e7ee;padding-left:32px;padding-right:32px}.exactmetrics-report-dimensions .exactmetrics-report-2-columns{margin-left:-32px;margin-right:-32px}.exactmetrics-report-flex .exactmetrics-report-box{width:50%}@media (max-width:782px){.exactmetrics-report-flex .exactmetrics-report-box{width:100%;margin-top:20px}.exactmetrics-report-flex .exactmetrics-report-box:first-child{margin-top:0}}.exactmetrics-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.exactmetrics-arrow{width:10px;height:11px;display:inline-block;background-size:contain;background-repeat:no-repeat}.exactmetrics-arrow.exactmetrics-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}.exactmetrics-arrow.exactmetrics-down.exactmetrics-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}.exactmetrics-arrow.exactmetrics-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}.exactmetrics-arrow.exactmetrics-up.exactmetrics-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}.exactmetrics-reports-overview-datagraph-tooltip-trend{font-weight:700}.exactmetrics-report-box{background:#fff;padding:32px 0;position:relative}.exactmetrics-realtime-large{font-size:120px;text-align:center;line-height:1.4;color:#32a27a}.exactmetrics-realtime-active{text-align:center;width:100%;font-size:17px;line-height:1;margin-top:-2px;color:#210f59;font-weight:500}.exactmetrics-realtime-box-content .exactmetrics-line-chart-tooltip{max-width:115px}.exactmetrics-realtime-count-box{width:357px;height:357px;margin:50px auto;border-radius:50%;border:15px solid #e9e7ee;text-align:center;padding-top:52px}@media (max-width:782px){.exactmetrics-realtime-count-box{width:300px;height:300px;padding-top:40px}}.exactmetrics-realtime-count-box h3{display:inline-block;font-size:24px;color:#210f59;line-height:1.4;margin:0}#exactmetrics-chartjs-pie-age-tooltip{margin-left:23px;min-width:95px}.exactmetrics-blur .exactmetrics-report-top{pointer-events:none}.exactmetrics-blur .exactmetrics-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-blur .exactmetrics-report{min-height:850px}.exactmetrics-reports-referral-icon{vertical-align:middle;margin-right:10px;margin-left:2px}.exactmetrics-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:100% 0;background-color:#fff;background-size:452px}@media (max-width:991px){.exactmetrics-upsell-inline .exactmetrics-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.exactmetrics-upsell-content{max-width:750px}.exactmetrics-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.exactmetrics-upsell-content .exactmetrics-light{color:#657086}.exactmetrics-upsell-content .exactmetrics-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.exactmetrics-upsell-content .exactmetrics-button{font-size:15px}}.exactmetrics-upsell-overlay{position:absolute;top:125px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:750px;max-width:100%;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);background-color:#fff;border:1px solid #d6e2ed}.exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0 40px}@media (max-width:782px){.exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0 20px}}@media (max-width:782px){.exactmetrics-upsell-overlay{top:70px;width:calc(100% - 40px)}}.exactmetrics-upsell-overlay h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.exactmetrics-upsell-overlay .exactmetrics-upsell-subtitle{color:#4c6577;font-size:16px;text-align:center}.exactmetrics-upsell-overlay p{margin:20px 0}.exactmetrics-upsell-overlay .exactmetrics-upsell-content{border-top:1px solid #d6e2ed;background:#f9fbff;padding:40px}@media (max-width:782px){.exactmetrics-upsell-overlay .exactmetrics-upsell-content{padding-left:20px;padding-right:20px}}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul{margin:0 auto;max-width:520px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul li{color:#4c6577;font-size:16px;margin:0 0 30px;padding-left:40px;position:relative;line-height:1.2}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul li:before{position:absolute;content:"\f015";width:20px;height:20px;background:#5cc0a5;left:0;border-radius:50%;display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#210f59;font-size:14px;text-align:center;line-height:20px;top:-1px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content .exactmetrics-button{font-weight:400;font-size:16px;margin-top:10px}.exactmetrics-upsell-overlay a{color:#393f4c}.exactmetrics-upsell-overlay a:hover{text-decoration:none}.exactmetrics-center,.exactmetrics-mobile-upsell{text-align:center}.exactmetrics-mobile-upsell .exactmetrics-notice{border-top:1px solid #d6e2ed;border-right:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.exactmetrics-mobile-upsell .exactmetrics-notice-inner{margin-top:0}@media (min-width:783px){.exactmetrics-mobile-upsell{display:none}}.exactmetrics-mobile-upsell .exactmetrics-notice-success .exactmetrics-notice-button{margin-right:0}.exactmetrics-overview-upsell-desktop{margin:0 -32px}@media (max-width:782px){.exactmetrics-overview-upsell-desktop{display:none}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:55%}@media (max-width:969px){.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right{width:45%}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{bottom:auto;height:490px;width:779px;left:0}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text{width:376px;margin-right:142px}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text:before{content:"";height:48px;width:127px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAP4AAABgCAMAAAAKJD9QAAAAV1BMVEUAAAAgD1ghD1kgC1ghD1khD1ogD1ggEFEgDlkgDlggDlghDlkgDlkiDlkgEFghD1kgDlggEF0gDlggD1ogD1chD1kgD1kgDVgiDlkgD1ggEFogEFUhD1k1ONBfAAAAHHRSTlMAv98g/u9AEHCAYI+vnyHPUBGggDDuvkF/vjExfxARwwAABb9JREFUeNrlnO3O2yAMhfkIhAJp0y7tuo37v85p0qRqC+XENm+Wbed3hXhiY4NNUf+ElpgmbUz5IXPRU5it2ia9VVMKfsugSW9Tnk6zl5OPPmlX1nI5LAqrkGRytOh7Fop08iL27FqzTQvEJ0tHgE+UmSwP3ieHB48jGR+PCfCp4nwAr3t83cKSmQE+/QOw4bGSBfh0pRHg8z0Ky956DV64MrYrfhmem+mD6zbbwpZbAD5Vj3ET/Fl3/LqlN78ubF228M+OO7rF+HJ+XQT8mP5U2DILxJevKF0ESgD+OhWBhoDw5ebSsgm26S8FiBoAikyf+uKXu20FPUDP4C9C2b745dGwvSlFzt8XX3fGHzzw/L78RSrfF7+Yd/hT6aIhAnyzFsH8esOADpifl/GM0VobB8PL0sQ39ZN1MO/MD/FtrT6Taat/bmegFO34mmo2W9M1wftifdCE8UnnlmGpBf0GkD6td4v+5kB4JeMrW13Xjoj/kjUwmeKIov2bwaPBuwuMj2fhMT7gh3up8NbrPWeDfLc8/NEA78f4mH8YN7v+iXk4fPDwlQexn4ivfCM1vXQDZxiyAwyRgA/o3EjCx2TpdyOCEyzjfHwfefixrLUI8O2Gxa8b1QGor3X+Tzz8sTJaJOFjtrv6RZ8BPYv/PjbwadM9SfBjLfZh4xtE/1Ksm5+Hn8pKkwT/XMG3qx+AQgsj/t15+KEzvnJg239DyQFL14aYWfgRZD4y/qWNf3UFfHCsc22MBwvf98bXbfzIc328axzGvwFfV8MWVaY2Sifnzx+If61XRLBw8nxw8E+9Q59p4s/A+ALzDyMDP3fO+9d24ruBvChIfkOs4pM/Y0D4RLccVnmBGfZBApno+As48GN8fOa5tH1jVhzpKinGxye0EeOTTvy57RsjACVsrqn4FgRiMv6z3ek6kRoh1BjjMT42fhbgW1DqBoEWCGWYQMR/lopi52KXQZuChmiWSxgfVxytpNQJNvROsPTx5DMFf0ygzUPF9wa2eUAtBAg1Si7b8e3TlaoiE99r3OQ716bM1Leykqngu9NaaTKgJUnCH5eY3JYW5Fka+Ntj3VWR6tNHdng/A3xp5hPjG9sXf4gAf1JcfQR+VH3xv6i/Cd90v9uDwlU+EL6zAJ/j+n9P6AuqL/4nPGXTN/ExhTvx8vHk2x6YRbrfwdRy+j02vXL8pBC+/EbnZY8jj9xWcnyzoDnje6/Udkpg4xuveuK7yvWk/csd8v+yKN31rzxztTXN0QyKXQTpxvrTQsvj/q/vtfSNYuC7ySvVDd8kT62rp16F7kzGdzkC39Mk+BEarZP3R9DmgOAmp7iw6unR/1AAyQ5Nu3+Ty4I6P0W43JHRDdaXdmlxXtSu+KPjuL8GPsM3ftgXX82cfy+Fwlr9eAkNdj/8hvt7GLLFwf9sRJdb5PgC90+Flfvx7agd8Vvu/wBRS3yxLVRHUDviN90/wBFFO/+vsmuNcnywku+Wbv4yiRZ+MXZP/Lb7X8CQgB/R142/J37b/UtimL9M4xbPN63d9v74V0eP5LkUZvwLrllR3h9fzfSzz9nxXrwYE2hP7IUvdP/AevIkvm2j2p3xsfvPYFTyB/AalCl3xMfuf7fY/evKc8Xtnwb0EXfDH1Zgmb6RmdtFmOBfwcPOSYOm9O742JZDkD3aYbSepklfHOonLOoP46uA5oXPLYJuyh/HB39PAs8XCPuSB8A/O3r2u5ou9EfAf+P+Hm3f5fTHwAfuD/yfT38U/Lr7Z1D5ysKodxh8FcAM+z9a5dWB8JUGmz/whAZVX6w6FH7d/R+9H6x73YM/Fv6bc1z6iOcKL4s6HL7SIPv1eqzyHpQ6IP7ZgewnXAGv+wOHxG+4P5TXBPiD4r9x/3nje604CegwKnVc/LNrZD+s2H6k+uTpT5TfZPhpNeCXlgGCrulEeapav6mAWPWfaJlP+ecD9c6YfNv8QP13jdUZgGL72MYAAAAASUVORK5CYII=);background-size:contain;position:absolute;left:100%;top:0;margin-left:15px}.exactmetrics-report-realtime .exactmetrics-table-box th:first-child{width:auto}.exactmetrics-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.exactmetrics-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.exactmetrics-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;padding-top:32px}.exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px}@media (max-width:991px){.exactmetrics-report-scroll:nth-child(2){width:100%;margin-left:0;margin-top:25px}}@media (max-width:782px){.exactmetrics-report-scroll{width:100%;margin-left:0}}.exactmetrics-report-scroll>h3{position:absolute;top:0}.exactmetrics-report-scroll .exactmetrics-realtime-active{margin:0 0 50px}.exactmetrics-report-scroll .exactmetrics-realtime-box-content{margin:25px 0}.exactmetrics-report-scroll .exactmetrics-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}@media (max-width:782px){.exactmetrics-report-scroll .exactmetrics-realtime-large{margin-top:25px}}.exactmetrics-not-authenticated-notice{position:fixed;top:40%;left:50%;width:750px;max-width:100%;margin-left:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .exactmetrics-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.exactmetrics-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.exactmetrics-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.exactmetrics-not-authenticated-notice{margin-left:-375px}}.exactmetrics-not-authenticated-notice .exactmetrics-auth-manual-connect-paragraph{display:none}.exactmetrics-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate{text-align:center}.exactmetrics-not-authenticated-notice .exactmetrics-license-button{line-height:1;margin-top:20px}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#e9e7ee;border-color:#e9e7ee;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:hover{background-color:#f4f3f7;border-color:#f4f3f7;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt{background:#6528f5;border-color:#6528f5;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:hover{background-color:#37276a;border-color:#37276a;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;border-color:#e9e7ee;color:#9087ac}.exactmetrics-reports-list-has-overflow{cursor:pointer}.exactmetrics-reports-ecommerce-pie-chart{padding:130px 0 0;width:40%;max-width:100%}@media (max-width:792px){.exactmetrics-reports-ecommerce-pie-chart{width:100%;padding-top:32px}}.exactmetrics-reports-ecommerce-pie-chart .exactmetrics-reports-pie-chart{position:relative;width:225px;text-align:center;padding:0;margin:0 auto;border:none}.exactmetrics-table-no-data{background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;height:100%;min-height:300px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background-size:cover;border-radius:10px;padding:20px}.exactmetrics-table-no-data h3{font-size:17px;line-height:1.5;color:#210f59}.exactmetrics-product-color{display:inline-block;width:14px;height:14px;margin-right:11px;vertical-align:middle;border-radius:50%}.exactmetrics-report-row-icon-left{position:relative;padding-left:170px}.exactmetrics-report-row-icon-left:before{font-size:50px;position:absolute;left:50px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);color:#9087ac}@media (max-width:782px){.exactmetrics-report-row-icon-left{padding-left:20px}.exactmetrics-report-row-icon-left:before{display:none}}.exactmetrics-admin-page .exactmetrics-lite-datepicker{text-align:center;padding:12px 12px 27px}.exactmetrics-admin-page .exactmetrics-lite-datepicker p{color:#210f59;font-size:15px;line-height:1.5;font-weight:700}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text{color:#32a27a;display:inline-block;width:auto}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:hover{color:#1
|