Version Description
Download this release
Release Info
Developer | chriscct7 |
Plugin | Google Analytics Dashboard for WP (GADWP) |
Version | 6.0.1 |
Comparing to | |
See all releases |
Code changes from version 6.0.0 to 6.0.1
- gadwp.php +5 -5
- includes/admin/admin.php +1 -1
- includes/admin/tracking.php +1 -1
- includes/em-install.php +21 -2
- includes/frontend/tracking/class-tracking-analytics.php +7 -7
- includes/helpers.php +1 -1
- languages/google-analytics-dashboard-for-wp.pot +1250 -1218
- languages/vue.php +1146 -1165
- lite/assets/vue/css/chunk-common.css +1 -1
- lite/assets/vue/css/chunk-common.rtl.css +1 -1
- lite/assets/vue/css/widget.css +1 -1
- lite/assets/vue/css/widget.rtl.css +1 -1
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.
|
@@ -179,8 +179,8 @@ final class ExactMetrics_Lite {
|
|
179 |
self::$instance->require_files();
|
180 |
|
181 |
// This does the version to version background upgrade routines and initial install
|
182 |
-
$
|
183 |
-
if ( version_compare( $
|
184 |
exactmetrics_lite_call_install_and_upgrade();
|
185 |
}
|
186 |
|
@@ -656,7 +656,7 @@ function exactmetrics_lite_install_and_upgrade() {
|
|
656 |
}
|
657 |
}
|
658 |
|
659 |
-
// Don't run if
|
660 |
if ( class_exists( 'ExactMetrics' ) ) {
|
661 |
if ( is_plugin_active( plugin_basename( __FILE__ ) ) ) {
|
662 |
return;
|
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.1
|
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.0.1';
|
46 |
|
47 |
/**
|
48 |
* Plugin file.
|
179 |
self::$instance->require_files();
|
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.0.0', '<' ) ) {
|
184 |
exactmetrics_lite_call_install_and_upgrade();
|
185 |
}
|
186 |
|
656 |
}
|
657 |
}
|
658 |
|
659 |
+
// Don't run if ExactMetrics Pro is installed
|
660 |
if ( class_exists( 'ExactMetrics' ) ) {
|
661 |
if ( is_plugin_active( plugin_basename( __FILE__ ) ) ) {
|
662 |
return;
|
includes/admin/admin.php
CHANGED
@@ -279,7 +279,7 @@ function exactmetrics_admin_setup_notices() {
|
|
279 |
$urlone = is_network_admin() ? network_admin_url( 'admin.php?page=exactmetrics-onboarding' ) : admin_url( 'admin.php?page=exactmetrics-onboarding' );
|
280 |
$secondary = esc_html__( 'Learn More', 'google-analytics-dashboard-for-wp' );
|
281 |
$urltwo = $submenu_base . '#/about/getting-started';
|
282 |
-
$message = esc_html__( 'ExactMetrics, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over
|
283 |
echo '<div class="notice notice-info"><p style="font-weight:700">'. $title .'</p><p>'. $message.'</p><p><a href="'. $urlone .'" class="button-primary">'. $primary .'</a> <a href="'. $urltwo .'" class="button-secondary">'. $secondary .'</a></p></div>';
|
284 |
return;
|
285 |
}
|
279 |
$urlone = is_network_admin() ? network_admin_url( 'admin.php?page=exactmetrics-onboarding' ) : admin_url( 'admin.php?page=exactmetrics-onboarding' );
|
280 |
$secondary = esc_html__( 'Learn More', 'google-analytics-dashboard-for-wp' );
|
281 |
$urltwo = $submenu_base . '#/about/getting-started';
|
282 |
+
$message = esc_html__( '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' );
|
283 |
echo '<div class="notice notice-info"><p style="font-weight:700">'. $title .'</p><p>'. $message.'</p><p><a href="'. $urlone .'" class="button-primary">'. $primary .'</a> <a href="'. $urltwo .'" class="button-secondary">'. $secondary .'</a></p></div>';
|
284 |
return;
|
285 |
}
|
includes/admin/tracking.php
CHANGED
@@ -73,7 +73,7 @@ class ExactMetrics_Tracking {
|
|
73 |
}
|
74 |
|
75 |
$data['php_version'] = phpversion();
|
76 |
-
$data['
|
77 |
$data['wp_version'] = get_bloginfo( 'version' );
|
78 |
$data['server'] = isset( $_SERVER['SERVER_SOFTWARE'] ) ? $_SERVER['SERVER_SOFTWARE'] : '';
|
79 |
$data['over_time'] = get_option( 'exactmetrics_over_time', array() );
|
73 |
}
|
74 |
|
75 |
$data['php_version'] = phpversion();
|
76 |
+
$data['em_version'] = EXACTMETRICS_VERSION;
|
77 |
$data['wp_version'] = get_bloginfo( 'version' );
|
78 |
$data['server'] = isset( $_SERVER['SERVER_SOFTWARE'] ) ? $_SERVER['SERVER_SOFTWARE'] : '';
|
79 |
$data['over_time'] = get_option( 'exactmetrics_over_time', array() );
|
includes/em-install.php
CHANGED
@@ -363,8 +363,13 @@ class ExactMetrics_Install {
|
|
363 |
}
|
364 |
|
365 |
// Transfer enhanced eCommerce
|
366 |
-
if ( ! empty( $em_legacy_options['ecommerce_mode'] )
|
367 |
-
$
|
|
|
|
|
|
|
|
|
|
|
368 |
}
|
369 |
|
370 |
// Transfer Demographics
|
@@ -376,6 +381,20 @@ class ExactMetrics_Install {
|
|
376 |
|
377 |
$settings['gadwp_migrated'] = time();
|
378 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
379 |
// Add transient to trigger redirect.
|
380 |
set_transient( '_exactmetrics_activation_redirect', 1, 60 );
|
381 |
|
363 |
}
|
364 |
|
365 |
// Transfer enhanced eCommerce
|
366 |
+
if ( ! empty( $em_legacy_options['ecommerce_mode'] ) ) {
|
367 |
+
if ( 'disabled' !== $em_legacy_options['ecommerce_mode'] ) {
|
368 |
+
$settings['gadwp_ecommerce'] = true;
|
369 |
+
}
|
370 |
+
if ( 'enhanced' === $em_legacy_options['ecommerce_mode'] ) {
|
371 |
+
$settings['enhanced_ecommerce'] = true;
|
372 |
+
}
|
373 |
}
|
374 |
|
375 |
// Transfer Demographics
|
381 |
|
382 |
$settings['gadwp_migrated'] = time();
|
383 |
|
384 |
+
// Hide the dashboard widget reports for migrating users.
|
385 |
+
if ( ! exactmetrics_is_pro_version() ) {
|
386 |
+
$dashboard_settings = array(
|
387 |
+
'reports' => array(
|
388 |
+
'overview' => array(
|
389 |
+
'toppages' => false,
|
390 |
+
'newvsreturn' => false,
|
391 |
+
'devices' => false,
|
392 |
+
),
|
393 |
+
),
|
394 |
+
);
|
395 |
+
update_user_meta( get_current_user_id(), 'exactmetrics_user_preferences', $dashboard_settings );
|
396 |
+
}
|
397 |
+
|
398 |
// Add transient to trigger redirect.
|
399 |
set_transient( '_exactmetrics_activation_redirect', 1, 60 );
|
400 |
|
includes/frontend/tracking/class-tracking-analytics.php
CHANGED
@@ -228,10 +228,10 @@ class ExactMetrics_Tracking_Analytics extends ExactMetrics_Tracking_Abstract {
|
|
228 |
} ?>
|
229 |
<?php if ( $ua ) { ?>
|
230 |
<script<?php echo $attr_string;?>>
|
231 |
-
var
|
232 |
-
var
|
233 |
-
var
|
234 |
-
<?php do_action( '
|
235 |
|
236 |
<?php if ( $this->should_do_optout() ) { ?>
|
237 |
var disableStr = 'ga-disable-<?php echo exactmetrics_get_ua(); ?>';
|
@@ -259,7 +259,7 @@ class ExactMetrics_Tracking_Analytics extends ExactMetrics_Tracking_Abstract {
|
|
259 |
}
|
260 |
<?php } ?>
|
261 |
|
262 |
-
if (
|
263 |
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
264 |
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
265 |
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
@@ -307,7 +307,7 @@ class ExactMetrics_Tracking_Analytics extends ExactMetrics_Tracking_Abstract {
|
|
307 |
}
|
308 |
var f = arguments[len-1];
|
309 |
if ( typeof f !== 'object' || f === null || typeof f.hitCallback !== 'function' ) {
|
310 |
-
console.log( '<?php echo esc_js( __("Not running function", "google-analytics-dashboard-for-wp" ) );?> __gaTracker(' + arguments[0] + " ....) <?php echo esc_js( __( "because you are not being tracked.", 'google-analytics-dashboard-for-wp' ) );?> " +
|
311 |
return;
|
312 |
}
|
313 |
try {
|
@@ -341,6 +341,6 @@ class ExactMetrics_Tracking_Analytics extends ExactMetrics_Tracking_Abstract {
|
|
341 |
}
|
342 |
|
343 |
public function should_do_optout() {
|
344 |
-
return ! ( defined( '
|
345 |
}
|
346 |
}
|
228 |
} ?>
|
229 |
<?php if ( $ua ) { ?>
|
230 |
<script<?php echo $attr_string;?>>
|
231 |
+
var em_version = '<?php echo EXACTMETRICS_VERSION; ?>';
|
232 |
+
var em_track_user = <?php echo ( $track_user ? 'true' : 'false' ); ?>;
|
233 |
+
var em_no_track_reason = <?php echo ( $reason ? "'" . esc_js( $reason) . "'": "''" ); ?>;
|
234 |
+
<?php do_action( 'exactmetrics_tracking_analytics_frontend_output_after_em_track_user' ); ?>
|
235 |
|
236 |
<?php if ( $this->should_do_optout() ) { ?>
|
237 |
var disableStr = 'ga-disable-<?php echo exactmetrics_get_ua(); ?>';
|
259 |
}
|
260 |
<?php } ?>
|
261 |
|
262 |
+
if ( em_track_user ) {
|
263 |
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
264 |
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
265 |
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
307 |
}
|
308 |
var f = arguments[len-1];
|
309 |
if ( typeof f !== 'object' || f === null || typeof f.hitCallback !== 'function' ) {
|
310 |
+
console.log( '<?php echo esc_js( __("Not running function", "google-analytics-dashboard-for-wp" ) );?> __gaTracker(' + arguments[0] + " ....) <?php echo esc_js( __( "because you are not being tracked.", 'google-analytics-dashboard-for-wp' ) );?> " + em_no_track_reason );
|
311 |
return;
|
312 |
}
|
313 |
try {
|
341 |
}
|
342 |
|
343 |
public function should_do_optout() {
|
344 |
+
return ! ( defined( 'EM_NO_TRACKING_OPTOUT' ) && EM_NO_TRACKING_OPTOUT );
|
345 |
}
|
346 |
}
|
includes/helpers.php
CHANGED
@@ -1115,7 +1115,7 @@ function exactmetrics_get_shareasale_url( $shareasale_id, $shareasale_redirect )
|
|
1115 |
|
1116 |
// Whether we have an ID or not, filter the ID.
|
1117 |
$shareasale_redirect = apply_filters( 'exactmetrics_shareasale_redirect_url', $shareasale_redirect, $custom );
|
1118 |
-
$shareasale_url = sprintf( 'https://www.shareasale.com/r.cfm?B=
|
1119 |
$shareasale_url = apply_filters( 'exactmetrics_shareasale_redirect_entire_url', $shareasale_url, $shareasale_id, $shareasale_redirect );
|
1120 |
return $shareasale_url;
|
1121 |
}
|
1115 |
|
1116 |
// Whether we have an ID or not, filter the ID.
|
1117 |
$shareasale_redirect = apply_filters( 'exactmetrics_shareasale_redirect_url', $shareasale_redirect, $custom );
|
1118 |
+
$shareasale_url = sprintf( 'https://www.shareasale.com/r.cfm?B=1494714&U=%s&M=94980&urllink=%s', $shareasale_id, $shareasale_redirect );
|
1119 |
$shareasale_url = apply_filters( 'exactmetrics_shareasale_redirect_entire_url', $shareasale_url, $shareasale_id, $shareasale_redirect );
|
1120 |
return $shareasale_url;
|
1121 |
}
|
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-02-
|
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"
|
@@ -152,7 +152,7 @@ msgstr ""
|
|
152 |
#: lite/includes/admin/wp-site-health.php:298
|
153 |
#: lite/includes/admin/wp-site-health.php:324
|
154 |
#: lite/includes/admin/wp-site-health.php:351
|
155 |
-
#: languages/vue.php:
|
156 |
msgid "View Addons"
|
157 |
msgstr ""
|
158 |
|
@@ -288,25 +288,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,17 +319,17 @@ 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 |
|
@@ -600,7 +600,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 +629,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 |
|
@@ -657,7 +657,7 @@ msgstr ""
|
|
657 |
|
658 |
#: includes/admin/admin.php:175
|
659 |
#: includes/admin/admin.php:178
|
660 |
-
#: languages/vue.php:
|
661 |
msgid "Support"
|
662 |
msgstr ""
|
663 |
|
@@ -667,23 +667,23 @@ msgid "Please rate %1$sExactMetrics%2$s on %3$s %4$sWordPress.org%5$s to help us
|
|
667 |
msgstr ""
|
668 |
|
669 |
#: includes/admin/admin.php:277
|
670 |
-
#: languages/vue.php:
|
671 |
msgid "Please Setup Website Analytics to See Audience Insights"
|
672 |
msgstr ""
|
673 |
|
674 |
#: includes/admin/admin.php:278
|
675 |
-
#: languages/vue.php:
|
676 |
msgid "Connect ExactMetrics and Setup Website Analytics"
|
677 |
msgstr ""
|
678 |
|
679 |
#: includes/admin/admin.php:280
|
680 |
-
#: languages/vue.php:
|
681 |
msgid "Learn More"
|
682 |
msgstr ""
|
683 |
|
684 |
#: includes/admin/admin.php:282
|
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
|
687 |
msgstr ""
|
688 |
|
689 |
#. Translators: Adds a link to retrieve the license.
|
@@ -693,17 +693,17 @@ msgstr ""
|
|
693 |
|
694 |
#. Translators: Adds a link to the license renewal.
|
695 |
#: includes/admin/admin.php:303
|
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:305
|
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:307
|
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 |
|
@@ -784,7 +784,7 @@ msgid "View supported browsers"
|
|
784 |
msgstr ""
|
785 |
|
786 |
#: includes/admin/reports/overview.php:34
|
787 |
-
#: languages/vue.php:
|
788 |
msgid "Overview"
|
789 |
msgstr ""
|
790 |
|
@@ -876,7 +876,7 @@ msgid "Upgrading is easy! To upgrade, navigate to %1$ssour pricing page%2$s, pur
|
|
876 |
msgstr ""
|
877 |
|
878 |
#: includes/admin/reports/abstract-report.php:375
|
879 |
-
#: languages/vue.php:
|
880 |
msgid "Upgrade Now"
|
881 |
msgstr ""
|
882 |
|
@@ -1957,2702 +1957,2734 @@ msgstr ""
|
|
1957 |
msgid "%1$s is %3$sdeprecated%4$s since ExactMetrics version %2$s."
|
1958 |
msgstr ""
|
1959 |
|
1960 |
-
#: languages/vue.php:
|
1961 |
msgid "Error"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#: languages/vue.php:
|
1965 |
msgid "Please try again."
|
1966 |
msgstr ""
|
1967 |
|
1968 |
-
#: languages/vue.php:
|
1969 |
-
msgid "Loading settings"
|
1970 |
-
msgstr ""
|
1971 |
-
|
1972 |
-
#: languages/vue.php:14
|
1973 |
msgid "Loading Settings"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: languages/vue.php:
|
1977 |
msgid "Please wait..."
|
1978 |
msgstr ""
|
1979 |
|
1980 |
-
#: languages/vue.php:
|
1981 |
msgid "Saving Changes..."
|
1982 |
msgstr ""
|
1983 |
|
1984 |
-
#: languages/vue.php:
|
1985 |
msgid "Settings Updated"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
#. Translators: Add a link to the onboarding wizard.
|
1989 |
-
#: languages/vue.php:
|
1990 |
msgid "You need to %1$sconnect ExactMetrics%2$s first"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: languages/vue.php:
|
1994 |
msgid "Could Not Save Changes"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
-
#: languages/vue.php:
|
1998 |
msgid "Loading new report data"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
-
#. Translators:
|
2002 |
-
#: languages/vue.php:
|
2003 |
msgid "Continue %s"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
-
#: languages/vue.php:
|
2007 |
msgid "Unlock the Publishers Report and Focus on the Content that Matters"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
-
#: languages/vue.php:
|
2011 |
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."
|
2012 |
msgstr ""
|
2013 |
|
2014 |
-
#: languages/vue.php:
|
2015 |
msgid "Unlock the Publishers Report and Focus on the Content That Matters"
|
2016 |
msgstr ""
|
2017 |
|
2018 |
-
#: languages/vue.php:
|
2019 |
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."
|
2020 |
msgstr ""
|
2021 |
|
2022 |
-
#: languages/vue.php:
|
2023 |
msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
-
#: languages/vue.php:
|
2027 |
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."
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#: languages/vue.php:
|
2031 |
msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
|
2032 |
msgstr ""
|
2033 |
|
2034 |
-
#: languages/vue.php:
|
2035 |
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."
|
2036 |
msgstr ""
|
2037 |
|
2038 |
-
#: languages/vue.php:
|
2039 |
msgid "Unlock the Forms Report and Improve Conversions"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
-
#: languages/vue.php:
|
2043 |
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."
|
2044 |
msgstr ""
|
2045 |
|
2046 |
-
#: languages/vue.php:
|
2047 |
msgid "Unlock the Search Console Report and See How People Find Your Website"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#: languages/vue.php:
|
2051 |
msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
|
2052 |
msgstr ""
|
2053 |
|
2054 |
-
#: languages/vue.php:
|
2055 |
msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
-
#: languages/vue.php:
|
2059 |
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."
|
2060 |
msgstr ""
|
2061 |
|
|
|
|
|
|
|
|
|
2062 |
#: languages/vue.php:84
|
2063 |
-
msgid "
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#. Translators:
|
2067 |
#: languages/vue.php:88
|
2068 |
-
msgid "
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
|
2072 |
-
|
2073 |
-
msgid "Your website was visited by %s users in the last 30 days."
|
2074 |
msgstr ""
|
2075 |
|
|
|
2076 |
#: languages/vue.php:95
|
2077 |
-
msgid "
|
2078 |
msgstr ""
|
2079 |
|
2080 |
#: languages/vue.php:98
|
2081 |
-
msgid "
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
|
2085 |
-
|
|
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#. Translators: Placeholder gets replaced with an arrow icon.
|
2089 |
#: languages/vue.php:105
|
2090 |
-
msgid "
|
2091 |
msgstr ""
|
2092 |
|
2093 |
-
|
2094 |
-
|
2095 |
-
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."
|
2096 |
msgstr ""
|
2097 |
|
|
|
2098 |
#: languages/vue.php:112
|
2099 |
-
msgid "
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
|
2103 |
-
|
2104 |
-
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."
|
2105 |
msgstr ""
|
2106 |
|
|
|
2107 |
#: languages/vue.php:119
|
2108 |
-
msgid "
|
2109 |
msgstr ""
|
2110 |
|
2111 |
-
|
2112 |
-
|
|
|
2113 |
msgstr ""
|
2114 |
|
2115 |
-
#. Translators:
|
2116 |
-
#: languages/vue.php:
|
2117 |
-
msgid "
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
|
2121 |
-
|
|
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
|
2125 |
-
|
|
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
|
2129 |
-
|
|
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
|
2133 |
-
|
|
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
|
2137 |
-
|
|
|
2138 |
msgstr ""
|
2139 |
|
2140 |
-
|
2141 |
-
|
|
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: languages/vue.php:
|
2145 |
-
msgid "
|
2146 |
msgstr ""
|
2147 |
|
2148 |
-
#: languages/vue.php:
|
2149 |
-
msgid "
|
2150 |
msgstr ""
|
2151 |
|
2152 |
-
#: languages/vue.php:
|
2153 |
-
msgid "
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#: languages/vue.php:
|
2157 |
-
msgid "
|
2158 |
msgstr ""
|
2159 |
|
2160 |
-
#: languages/vue.php:
|
2161 |
-
msgid "
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#: languages/vue.php:
|
2165 |
-
msgid "
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: languages/vue.php:
|
2169 |
-
msgid "
|
2170 |
msgstr ""
|
2171 |
|
2172 |
-
|
2173 |
-
|
2174 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2175 |
msgstr ""
|
2176 |
|
2177 |
#: languages/vue.php:198
|
2178 |
-
msgid "
|
2179 |
msgstr ""
|
2180 |
|
2181 |
-
#. Translators: Error status and error text.
|
2182 |
#: languages/vue.php:202
|
2183 |
-
msgid "
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#: languages/vue.php:
|
2187 |
-
msgid "
|
2188 |
msgstr ""
|
2189 |
|
2190 |
-
#: languages/vue.php:
|
2191 |
-
msgid "
|
2192 |
msgstr ""
|
2193 |
|
2194 |
-
#: languages/vue.php:
|
2195 |
-
msgid "
|
2196 |
msgstr ""
|
2197 |
|
2198 |
-
#: languages/vue.php:
|
2199 |
-
|
2200 |
-
msgid "Reconnect ExactMetrics"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
#: languages/vue.php:218
|
2204 |
-
msgid "
|
2205 |
msgstr ""
|
2206 |
|
2207 |
#: languages/vue.php:221
|
2208 |
-
msgid "
|
2209 |
msgstr ""
|
2210 |
|
2211 |
#: languages/vue.php:224
|
2212 |
-
msgid "
|
2213 |
-
msgstr ""
|
2214 |
-
|
2215 |
-
#: languages/vue.php:227
|
2216 |
-
msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
|
2217 |
msgstr ""
|
2218 |
|
2219 |
#: languages/vue.php:230
|
2220 |
-
msgid "
|
2221 |
msgstr ""
|
2222 |
|
2223 |
#: languages/vue.php:233
|
2224 |
-
msgid "
|
|
|
|
|
|
|
|
|
2225 |
msgstr ""
|
2226 |
|
2227 |
#: languages/vue.php:239
|
2228 |
-
msgid "
|
2229 |
msgstr ""
|
2230 |
|
2231 |
-
|
2232 |
-
|
2233 |
-
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"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
|
2237 |
-
|
2238 |
-
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"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
-
#: languages/vue.php:
|
2242 |
-
msgid "
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
|
2246 |
-
|
|
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#. Translators:
|
2250 |
-
#: languages/vue.php:
|
2251 |
-
msgid "
|
|
|
|
|
|
|
|
|
2252 |
msgstr ""
|
2253 |
|
2254 |
-
#. Translators: Adds link to activate/install plugin and documentation.
|
2255 |
#: languages/vue.php:263
|
2256 |
-
msgid "
|
2257 |
msgstr ""
|
2258 |
|
2259 |
-
|
2260 |
-
#: languages/vue.php:
|
2261 |
-
msgid "
|
2262 |
msgstr ""
|
2263 |
|
2264 |
-
|
2265 |
-
|
|
|
2266 |
msgstr ""
|
2267 |
|
2268 |
-
|
2269 |
-
|
2270 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2271 |
msgstr ""
|
2272 |
|
2273 |
#. Translators: Placeholder is replaced with WPForms.
|
2274 |
-
#: languages/vue.php:
|
2275 |
msgid "Recommended Plugin: %s"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
#: languages/vue.php:
|
2279 |
-
msgid "
|
2280 |
msgstr ""
|
2281 |
|
2282 |
-
#: languages/vue.php:
|
2283 |
-
msgid "
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
|
2287 |
-
|
|
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: languages/vue.php:
|
2291 |
-
msgid "
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: languages/vue.php:
|
2295 |
-
msgid "
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: languages/vue.php:
|
2299 |
-
|
|
|
2300 |
msgstr ""
|
2301 |
|
2302 |
-
|
2303 |
-
|
2304 |
-
|
|
|
|
|
|
|
2305 |
msgstr ""
|
2306 |
|
2307 |
#: languages/vue.php:316
|
2308 |
-
msgid "
|
2309 |
msgstr ""
|
2310 |
|
|
|
2311 |
#: languages/vue.php:320
|
2312 |
-
msgid "
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: languages/vue.php:
|
2316 |
-
msgid "
|
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 |
-
msgid "
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: languages/vue.php:
|
2332 |
-
msgid "
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: languages/vue.php:
|
2336 |
-
msgid "
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: languages/vue.php:
|
2340 |
-
msgid "
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: languages/vue.php:
|
2344 |
-
msgid "
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: languages/vue.php:
|
2348 |
-
msgid "
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: languages/vue.php:
|
2352 |
-
msgid "
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
|
2356 |
-
|
|
|
2357 |
msgstr ""
|
2358 |
|
2359 |
-
#: languages/vue.php:
|
2360 |
-
msgid "
|
2361 |
msgstr ""
|
2362 |
|
2363 |
-
#: languages/vue.php:
|
2364 |
-
msgid "
|
2365 |
msgstr ""
|
2366 |
|
2367 |
-
#: languages/vue.php:
|
2368 |
-
msgid "
|
2369 |
msgstr ""
|
2370 |
|
2371 |
#: languages/vue.php:390
|
2372 |
-
msgid "
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: languages/vue.php:
|
2376 |
-
msgid "
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: languages/vue.php:
|
2380 |
-
msgid "
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: languages/vue.php:
|
2384 |
-
msgid "
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: languages/vue.php:
|
2388 |
-
msgid "
|
2389 |
msgstr ""
|
2390 |
|
2391 |
-
#: languages/vue.php:
|
2392 |
-
msgid "
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: languages/vue.php:
|
2396 |
-
msgid "
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: languages/vue.php:
|
2400 |
-
msgid "
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: languages/vue.php:
|
2404 |
-
msgid "
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: languages/vue.php:
|
2408 |
-
msgid "
|
2409 |
msgstr ""
|
2410 |
|
2411 |
-
#: languages/vue.php:
|
2412 |
-
msgid "
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: languages/vue.php:
|
2416 |
-
msgid "
|
2417 |
msgstr ""
|
2418 |
|
2419 |
-
|
2420 |
-
|
2421 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2422 |
msgstr ""
|
2423 |
|
2424 |
#: languages/vue.php:441
|
2425 |
-
msgid "
|
2426 |
msgstr ""
|
2427 |
|
2428 |
#: languages/vue.php:444
|
2429 |
-
msgid "
|
2430 |
msgstr ""
|
2431 |
|
2432 |
#: languages/vue.php:447
|
2433 |
-
msgid "
|
2434 |
msgstr ""
|
2435 |
|
2436 |
#: languages/vue.php:450
|
2437 |
-
msgid "
|
2438 |
msgstr ""
|
2439 |
|
2440 |
#: languages/vue.php:453
|
2441 |
-
msgid "
|
2442 |
msgstr ""
|
2443 |
|
2444 |
#: languages/vue.php:456
|
2445 |
-
msgid "
|
2446 |
msgstr ""
|
2447 |
|
2448 |
#: languages/vue.php:459
|
2449 |
-
msgid "
|
2450 |
msgstr ""
|
2451 |
|
2452 |
#: languages/vue.php:462
|
2453 |
-
msgid "
|
2454 |
msgstr ""
|
2455 |
|
2456 |
#: languages/vue.php:465
|
2457 |
-
msgid "
|
2458 |
msgstr ""
|
2459 |
|
2460 |
#: languages/vue.php:468
|
2461 |
-
msgid "
|
2462 |
-
msgstr ""
|
2463 |
-
|
2464 |
-
#. Translators: Example path (/go/).
|
2465 |
-
#: languages/vue.php:473
|
2466 |
-
msgid "Path (example: %s)"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
-
#: languages/vue.php:
|
2470 |
-
msgid "
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
|
2474 |
-
|
2475 |
-
msgid "Label (example: %s)"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
-
#: languages/vue.php:
|
2479 |
-
msgid "
|
2480 |
msgstr ""
|
2481 |
|
2482 |
-
#: languages/vue.php:
|
2483 |
-
msgid "
|
2484 |
msgstr ""
|
2485 |
|
2486 |
-
#. Translators: Add links to documentation.
|
2487 |
#: languages/vue.php:493
|
2488 |
-
msgid "
|
2489 |
msgstr ""
|
2490 |
|
2491 |
#: languages/vue.php:496
|
2492 |
-
msgid "
|
2493 |
msgstr ""
|
2494 |
|
2495 |
#: languages/vue.php:499
|
2496 |
-
msgid "
|
2497 |
msgstr ""
|
2498 |
|
2499 |
#: languages/vue.php:502
|
2500 |
-
msgid "
|
2501 |
-
msgstr ""
|
2502 |
-
|
2503 |
-
#: languages/vue.php:506
|
2504 |
-
msgid "Connect Google Analytics + WordPress"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
|
2508 |
-
|
|
|
2509 |
msgstr ""
|
2510 |
|
|
|
2511 |
#: languages/vue.php:513
|
2512 |
-
msgid "
|
2513 |
-
msgstr ""
|
2514 |
-
|
2515 |
-
#: languages/vue.php:516
|
2516 |
-
msgid "Manually enter your UA code"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
|
2520 |
-
|
|
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
|
2524 |
-
|
|
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
|
2528 |
-
|
|
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: languages/vue.php:
|
2532 |
-
msgid "
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#: languages/vue.php:
|
2536 |
-
msgid "
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
|
2540 |
-
|
2541 |
-
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."
|
2542 |
msgstr ""
|
2543 |
|
2544 |
-
#: languages/vue.php:
|
2545 |
-
msgid "
|
2546 |
msgstr ""
|
2547 |
|
2548 |
-
#: languages/vue.php:
|
2549 |
-
msgid "
|
2550 |
msgstr ""
|
2551 |
|
2552 |
-
#: languages/vue.php:
|
2553 |
-
msgid "
|
2554 |
msgstr ""
|
2555 |
|
2556 |
-
#: languages/vue.php:
|
2557 |
-
msgid "
|
2558 |
msgstr ""
|
2559 |
|
2560 |
-
#: languages/vue.php:
|
2561 |
-
msgid "
|
2562 |
msgstr ""
|
2563 |
|
2564 |
-
#: languages/vue.php:
|
2565 |
-
msgid "
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#: languages/vue.php:
|
2569 |
-
msgid "
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#: languages/vue.php:
|
2573 |
-
msgid "
|
2574 |
msgstr ""
|
2575 |
|
2576 |
-
#: languages/vue.php:
|
2577 |
-
msgid "
|
2578 |
msgstr ""
|
2579 |
|
2580 |
-
#: languages/vue.php:
|
2581 |
-
msgid "
|
2582 |
msgstr ""
|
2583 |
|
2584 |
-
#: languages/vue.php:
|
2585 |
-
msgid "
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: languages/vue.php:
|
2589 |
-
msgid "
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
|
2593 |
-
|
2594 |
-
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."
|
2595 |
msgstr ""
|
2596 |
|
2597 |
-
|
2598 |
-
|
2599 |
-
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."
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
|
2603 |
-
|
2604 |
-
msgid "Add %1$sEnhanced Link Attribution%2$s to your tracking code."
|
2605 |
msgstr ""
|
2606 |
|
2607 |
-
#: languages/vue.php:
|
2608 |
-
msgid "
|
2609 |
msgstr ""
|
2610 |
|
2611 |
-
|
2612 |
-
|
2613 |
-
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."
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
|
2617 |
-
|
2618 |
-
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."
|
2619 |
msgstr ""
|
2620 |
|
2621 |
-
|
2622 |
-
|
2623 |
-
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."
|
2624 |
msgstr ""
|
2625 |
|
2626 |
-
#: languages/vue.php:
|
2627 |
-
msgid "
|
2628 |
msgstr ""
|
2629 |
|
2630 |
-
#. Translators: Domain name example.
|
2631 |
#: languages/vue.php:606
|
2632 |
-
msgid "
|
2633 |
msgstr ""
|
2634 |
|
2635 |
-
|
2636 |
-
|
2637 |
-
msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
|
2638 |
msgstr ""
|
2639 |
|
2640 |
-
#: languages/vue.php:
|
2641 |
-
msgid "
|
2642 |
msgstr ""
|
2643 |
|
2644 |
-
#: languages/vue.php:
|
2645 |
-
msgid "
|
2646 |
msgstr ""
|
2647 |
|
2648 |
-
#: languages/vue.php:
|
2649 |
-
msgid "
|
2650 |
msgstr ""
|
2651 |
|
2652 |
-
#: languages/vue.php:
|
2653 |
-
msgid "
|
2654 |
msgstr ""
|
2655 |
|
2656 |
-
#: languages/vue.php:
|
2657 |
-
msgid "
|
2658 |
msgstr ""
|
2659 |
|
2660 |
-
#: languages/vue.php:
|
2661 |
-
msgid "
|
2662 |
msgstr ""
|
2663 |
|
2664 |
-
#: languages/vue.php:
|
2665 |
-
msgid "
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: languages/vue.php:
|
2669 |
-
msgid "
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: languages/vue.php:
|
2673 |
-
msgid "
|
2674 |
msgstr ""
|
2675 |
|
2676 |
-
#: languages/vue.php:
|
2677 |
-
msgid "
|
2678 |
msgstr ""
|
2679 |
|
2680 |
-
#: languages/vue.php:
|
2681 |
-
msgid "
|
2682 |
msgstr ""
|
2683 |
|
2684 |
-
#: languages/vue.php:
|
2685 |
-
msgid "
|
2686 |
msgstr ""
|
2687 |
|
2688 |
-
#: languages/vue.php:
|
2689 |
-
msgid "
|
2690 |
msgstr ""
|
2691 |
|
2692 |
-
|
2693 |
-
|
|
|
2694 |
msgstr ""
|
2695 |
|
2696 |
-
#: languages/vue.php:
|
2697 |
-
msgid "
|
2698 |
msgstr ""
|
2699 |
|
2700 |
-
|
2701 |
-
|
|
|
2702 |
msgstr ""
|
2703 |
|
2704 |
-
#: languages/vue.php:
|
2705 |
-
msgid "
|
2706 |
msgstr ""
|
2707 |
|
2708 |
-
#: languages/vue.php:
|
2709 |
-
msgid "
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: languages/vue.php:
|
2713 |
-
msgid "
|
2714 |
msgstr ""
|
2715 |
|
2716 |
-
#: languages/vue.php:
|
2717 |
-
msgid "
|
2718 |
msgstr ""
|
2719 |
|
2720 |
-
#: languages/vue.php:
|
2721 |
-
msgid "
|
2722 |
msgstr ""
|
2723 |
|
2724 |
-
#: languages/vue.php:
|
2725 |
-
msgid "
|
2726 |
msgstr ""
|
2727 |
|
2728 |
-
#: languages/vue.php:
|
2729 |
-
msgid "
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#: languages/vue.php:
|
2733 |
-
msgid "
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#: languages/vue.php:
|
2737 |
-
msgid "
|
2738 |
msgstr ""
|
2739 |
|
2740 |
-
#: languages/vue.php:
|
2741 |
-
msgid "
|
2742 |
msgstr ""
|
2743 |
|
2744 |
-
#: languages/vue.php:
|
2745 |
-
msgid "
|
2746 |
msgstr ""
|
2747 |
|
2748 |
-
#: languages/vue.php:
|
2749 |
-
msgid "
|
2750 |
msgstr ""
|
2751 |
|
2752 |
-
#: languages/vue.php:
|
2753 |
-
msgid "
|
2754 |
msgstr ""
|
2755 |
|
|
|
2756 |
#: languages/vue.php:706
|
2757 |
-
msgid "
|
2758 |
-
msgstr ""
|
2759 |
-
|
2760 |
-
#: languages/vue.php:709
|
2761 |
-
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."
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
|
2765 |
-
|
|
|
2766 |
msgstr ""
|
2767 |
|
2768 |
-
#: languages/vue.php:
|
2769 |
-
msgid "
|
2770 |
msgstr ""
|
2771 |
|
2772 |
-
#: languages/vue.php:
|
2773 |
-
msgid "
|
2774 |
msgstr ""
|
2775 |
|
2776 |
-
#: languages/vue.php:
|
2777 |
-
msgid "
|
2778 |
msgstr ""
|
2779 |
|
2780 |
-
#: languages/vue.php:
|
2781 |
-
msgid "
|
2782 |
msgstr ""
|
2783 |
|
2784 |
-
#: languages/vue.php:
|
2785 |
-
msgid "
|
2786 |
msgstr ""
|
2787 |
|
2788 |
-
#: languages/vue.php:
|
2789 |
-
msgid "
|
2790 |
msgstr ""
|
2791 |
|
2792 |
-
#: languages/vue.php:
|
2793 |
-
msgid "
|
2794 |
msgstr ""
|
2795 |
|
2796 |
-
#: languages/vue.php:
|
2797 |
-
msgid "
|
2798 |
msgstr ""
|
2799 |
|
2800 |
-
#: languages/vue.php:
|
2801 |
-
msgid "
|
2802 |
msgstr ""
|
2803 |
|
2804 |
-
#: languages/vue.php:
|
2805 |
-
msgid "
|
2806 |
msgstr ""
|
2807 |
|
2808 |
-
|
2809 |
-
|
|
|
2810 |
msgstr ""
|
2811 |
|
2812 |
-
#: languages/vue.php:
|
2813 |
-
msgid "
|
2814 |
msgstr ""
|
2815 |
|
2816 |
-
#: languages/vue.php:
|
2817 |
-
msgid "
|
2818 |
msgstr ""
|
2819 |
|
2820 |
-
#: languages/vue.php:
|
2821 |
-
msgid "
|
2822 |
msgstr ""
|
2823 |
|
|
|
2824 |
#: languages/vue.php:757
|
2825 |
-
msgid "
|
2826 |
msgstr ""
|
2827 |
|
2828 |
#: languages/vue.php:760
|
2829 |
-
msgid "
|
2830 |
msgstr ""
|
2831 |
|
2832 |
#: languages/vue.php:763
|
2833 |
-
msgid "
|
2834 |
msgstr ""
|
2835 |
|
2836 |
#: languages/vue.php:766
|
2837 |
-
msgid "
|
2838 |
msgstr ""
|
2839 |
|
2840 |
#: languages/vue.php:769
|
2841 |
-
msgid "
|
2842 |
msgstr ""
|
2843 |
|
2844 |
#: languages/vue.php:772
|
2845 |
-
msgid "
|
2846 |
msgstr ""
|
2847 |
|
2848 |
#: languages/vue.php:775
|
2849 |
-
msgid "
|
2850 |
msgstr ""
|
2851 |
|
2852 |
#: languages/vue.php:778
|
2853 |
-
msgid "
|
2854 |
msgstr ""
|
2855 |
|
2856 |
#: languages/vue.php:781
|
2857 |
-
msgid "
|
2858 |
msgstr ""
|
2859 |
|
2860 |
#: languages/vue.php:784
|
2861 |
-
msgid "
|
2862 |
msgstr ""
|
2863 |
|
2864 |
#: languages/vue.php:787
|
2865 |
-
msgid "
|
2866 |
msgstr ""
|
2867 |
|
2868 |
#: languages/vue.php:790
|
2869 |
-
msgid "
|
2870 |
msgstr ""
|
2871 |
|
2872 |
-
|
2873 |
-
|
|
|
2874 |
msgstr ""
|
2875 |
|
2876 |
-
#: languages/vue.php:
|
2877 |
-
msgid "
|
2878 |
msgstr ""
|
2879 |
|
2880 |
-
#: languages/vue.php:
|
2881 |
-
msgid "
|
2882 |
msgstr ""
|
2883 |
|
2884 |
-
|
2885 |
-
|
|
|
2886 |
msgstr ""
|
2887 |
|
2888 |
-
#: languages/vue.php:
|
2889 |
-
msgid "
|
2890 |
msgstr ""
|
2891 |
|
2892 |
-
#: languages/vue.php:
|
2893 |
-
msgid "
|
2894 |
msgstr ""
|
2895 |
|
2896 |
-
#: languages/vue.php:
|
2897 |
-
msgid "
|
2898 |
msgstr ""
|
2899 |
|
2900 |
-
#: languages/vue.php:
|
2901 |
-
msgid "
|
2902 |
msgstr ""
|
2903 |
|
2904 |
#: languages/vue.php:819
|
2905 |
-
msgid "
|
2906 |
msgstr ""
|
2907 |
|
2908 |
#: languages/vue.php:822
|
2909 |
-
msgid "
|
2910 |
msgstr ""
|
2911 |
|
2912 |
#: languages/vue.php:825
|
2913 |
-
msgid "
|
2914 |
msgstr ""
|
2915 |
|
2916 |
#: languages/vue.php:828
|
2917 |
-
msgid "
|
2918 |
msgstr ""
|
2919 |
|
2920 |
#: languages/vue.php:831
|
2921 |
-
msgid "
|
2922 |
msgstr ""
|
2923 |
|
2924 |
#: languages/vue.php:834
|
2925 |
-
msgid "
|
2926 |
msgstr ""
|
2927 |
|
2928 |
#: languages/vue.php:837
|
2929 |
-
msgid "
|
2930 |
msgstr ""
|
2931 |
|
2932 |
#: languages/vue.php:840
|
2933 |
-
msgid "
|
2934 |
-
msgstr ""
|
2935 |
-
|
2936 |
-
#: languages/vue.php:843
|
2937 |
-
msgid "Ecommerce Report"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
|
2941 |
-
|
|
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
|
2945 |
-
|
|
|
2946 |
msgstr ""
|
2947 |
|
|
|
2948 |
#: languages/vue.php:852
|
2949 |
-
msgid "
|
2950 |
msgstr ""
|
2951 |
|
2952 |
#: languages/vue.php:855
|
2953 |
-
msgid "
|
2954 |
-
msgstr ""
|
2955 |
-
|
2956 |
-
#: languages/vue.php:858
|
2957 |
-
msgid "Desktop"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
-
|
2961 |
-
|
|
|
2962 |
msgstr ""
|
2963 |
|
2964 |
-
|
2965 |
-
|
|
|
2966 |
msgstr ""
|
2967 |
|
2968 |
-
|
2969 |
-
|
|
|
2970 |
msgstr ""
|
2971 |
|
2972 |
-
#: languages/vue.php:
|
2973 |
-
msgid "
|
2974 |
msgstr ""
|
2975 |
|
2976 |
-
|
2977 |
-
|
|
|
2978 |
msgstr ""
|
2979 |
|
2980 |
-
|
2981 |
-
|
|
|
2982 |
msgstr ""
|
2983 |
|
2984 |
-
#: languages/vue.php:
|
2985 |
-
msgid "
|
2986 |
msgstr ""
|
2987 |
|
2988 |
-
#: languages/vue.php:
|
2989 |
-
msgid "
|
2990 |
msgstr ""
|
2991 |
|
2992 |
-
#: languages/vue.php:
|
2993 |
-
msgid "
|
2994 |
msgstr ""
|
2995 |
|
2996 |
-
#: languages/vue.php:
|
2997 |
-
|
|
|
2998 |
msgstr ""
|
2999 |
|
|
|
3000 |
#: languages/vue.php:894
|
3001 |
-
msgid "
|
3002 |
msgstr ""
|
3003 |
|
3004 |
#: languages/vue.php:897
|
3005 |
-
msgid "
|
3006 |
msgstr ""
|
3007 |
|
3008 |
#: languages/vue.php:900
|
3009 |
-
msgid "
|
3010 |
-
msgstr ""
|
3011 |
-
|
3012 |
-
#: languages/vue.php:903
|
3013 |
-
msgid "Total duration of all sessions (in seconds) / number of sessions."
|
3014 |
msgstr ""
|
3015 |
|
3016 |
-
|
3017 |
-
|
|
|
3018 |
msgstr ""
|
3019 |
|
3020 |
-
|
3021 |
-
|
|
|
3022 |
msgstr ""
|
3023 |
|
|
|
3024 |
#: languages/vue.php:912
|
3025 |
-
msgid "
|
3026 |
-
msgstr ""
|
3027 |
-
|
3028 |
-
#: languages/vue.php:915
|
3029 |
-
msgid "Custom Dimensions Report"
|
3030 |
msgstr ""
|
3031 |
|
3032 |
-
|
3033 |
-
|
|
|
3034 |
msgstr ""
|
3035 |
|
3036 |
-
|
3037 |
-
|
|
|
3038 |
msgstr ""
|
3039 |
|
|
|
3040 |
#: languages/vue.php:924
|
3041 |
-
msgid "
|
3042 |
msgstr ""
|
3043 |
|
3044 |
#: languages/vue.php:927
|
3045 |
-
msgid "
|
3046 |
msgstr ""
|
3047 |
|
3048 |
#: languages/vue.php:930
|
3049 |
-
msgid "
|
3050 |
msgstr ""
|
3051 |
|
3052 |
#: languages/vue.php:933
|
3053 |
-
msgid "
|
3054 |
msgstr ""
|
3055 |
|
3056 |
#: languages/vue.php:936
|
3057 |
-
msgid "
|
3058 |
msgstr ""
|
3059 |
|
3060 |
#: languages/vue.php:939
|
3061 |
-
msgid "
|
3062 |
msgstr ""
|
3063 |
|
3064 |
#: languages/vue.php:942
|
3065 |
-
msgid "
|
3066 |
msgstr ""
|
3067 |
|
3068 |
#: languages/vue.php:945
|
3069 |
-
msgid "
|
3070 |
msgstr ""
|
3071 |
|
3072 |
#: languages/vue.php:948
|
3073 |
-
msgid "
|
3074 |
msgstr ""
|
3075 |
|
3076 |
-
|
3077 |
-
|
3078 |
-
msgid "Upgrade to Pro to unlock addons and other great features."
|
3079 |
msgstr ""
|
3080 |
|
3081 |
-
|
3082 |
-
|
|
|
3083 |
msgstr ""
|
3084 |
|
3085 |
#: languages/vue.php:961
|
3086 |
-
msgid "
|
3087 |
msgstr ""
|
3088 |
|
3089 |
#: languages/vue.php:964
|
3090 |
-
msgid "
|
3091 |
msgstr ""
|
3092 |
|
3093 |
#: languages/vue.php:967
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3094 |
msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
-
#: languages/vue.php:
|
3098 |
msgid "Forms Tracking"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
-
#: languages/vue.php:
|
3102 |
msgid "One-click Form Events Tracking"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
-
#: languages/vue.php:
|
3106 |
msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
-
#: languages/vue.php:
|
3110 |
msgid "WordPress Admin Area Reports"
|
3111 |
msgstr ""
|
3112 |
|
3113 |
-
#: languages/vue.php:
|
3114 |
msgid "Standard Reports"
|
3115 |
msgstr ""
|
3116 |
|
3117 |
-
#: languages/vue.php:
|
3118 |
msgid "Overview Reports for the last 30 days."
|
3119 |
msgstr ""
|
3120 |
|
3121 |
-
#: languages/vue.php:
|
3122 |
msgid "Advanced Reports"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
-
#: languages/vue.php:
|
3126 |
msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
|
3127 |
msgstr ""
|
3128 |
|
3129 |
-
#: languages/vue.php:
|
3130 |
msgid "Dashboard Widget"
|
3131 |
msgstr ""
|
3132 |
|
3133 |
-
#: languages/vue.php:
|
3134 |
msgid "Basic Widget"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
-
#: languages/vue.php:
|
3138 |
msgid "Overview Report Synopsis"
|
3139 |
msgstr ""
|
3140 |
|
3141 |
-
#: languages/vue.php:
|
3142 |
msgid "Advanced Dashboard Widget"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
-
#: languages/vue.php:
|
3146 |
msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
|
3147 |
msgstr ""
|
3148 |
|
3149 |
-
#: languages/vue.php:
|
3150 |
msgid "Publisher Reports"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
-
#: languages/vue.php:
|
3154 |
msgid "Advanced Publisher Reports & Tracking"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
-
#: languages/vue.php:
|
3158 |
msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
|
3159 |
msgstr ""
|
3160 |
|
3161 |
-
#: languages/vue.php:
|
3162 |
msgid "Not Available"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
-
#: languages/vue.php:
|
3166 |
msgid "Complete Custom Dimensions Tracking"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
-
#: languages/vue.php:
|
3170 |
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"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
-
#: languages/vue.php:
|
3174 |
msgid "Limited Support"
|
3175 |
msgstr ""
|
3176 |
|
3177 |
-
#: languages/vue.php:
|
3178 |
msgid "Priority Support"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
-
#: languages/vue.php:
|
3182 |
msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
|
3183 |
msgstr ""
|
3184 |
|
3185 |
-
#: languages/vue.php:
|
3186 |
msgid "Feature"
|
3187 |
msgstr ""
|
3188 |
|
3189 |
-
#: languages/vue.php:
|
3190 |
msgid "Lite"
|
3191 |
msgstr ""
|
3192 |
|
3193 |
-
#: languages/vue.php:
|
3194 |
msgid "Pro"
|
3195 |
msgstr ""
|
3196 |
|
3197 |
-
#: languages/vue.php:
|
3198 |
msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
|
3199 |
msgstr ""
|
3200 |
|
3201 |
-
#: languages/vue.php:
|
3202 |
msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
|
3203 |
msgstr ""
|
3204 |
|
3205 |
-
#: languages/vue.php:
|
3206 |
msgid "Upgrade to Pro"
|
3207 |
msgstr ""
|
3208 |
|
3209 |
-
#: languages/vue.php:
|
3210 |
msgid "Universal Tracking"
|
3211 |
msgstr ""
|
3212 |
|
3213 |
-
#: languages/vue.php:
|
3214 |
msgid "Included"
|
3215 |
msgstr ""
|
3216 |
|
3217 |
-
#: languages/vue.php:
|
3218 |
msgid "Custom Google Analytics Link Tracking"
|
3219 |
msgstr ""
|
3220 |
|
3221 |
-
#: languages/vue.php:
|
3222 |
msgid "Standard Tracking"
|
3223 |
msgstr ""
|
3224 |
|
3225 |
-
#: languages/vue.php:
|
3226 |
msgid "Advanced Tracking"
|
3227 |
msgstr ""
|
3228 |
|
3229 |
-
#: languages/vue.php:
|
3230 |
msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
|
3231 |
msgstr ""
|
3232 |
|
3233 |
-
#: languages/vue.php:
|
3234 |
msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
|
3235 |
msgstr ""
|
3236 |
|
3237 |
-
#: languages/vue.php:
|
3238 |
msgid "No-Code-Needed Tracking Features"
|
3239 |
msgstr ""
|
3240 |
|
3241 |
-
#: languages/vue.php:
|
3242 |
msgid "Basic Tracking Options"
|
3243 |
msgstr ""
|
3244 |
|
3245 |
-
#: languages/vue.php:
|
3246 |
msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
|
3247 |
msgstr ""
|
3248 |
|
3249 |
-
#: languages/vue.php:
|
3250 |
msgid "Advanced Tracking Options"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#: languages/vue.php:
|
3254 |
msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
-
|
3258 |
-
|
3259 |
-
msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
|
3260 |
-
msgstr ""
|
3261 |
-
|
3262 |
-
#: languages/vue.php:1097
|
3263 |
-
msgid "How to Connect to Google Analytics"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
-
|
3267 |
-
|
|
|
3268 |
msgstr ""
|
3269 |
|
3270 |
-
#: languages/vue.php:
|
3271 |
-
msgid "
|
3272 |
msgstr ""
|
3273 |
|
3274 |
-
|
3275 |
-
|
|
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: languages/vue.php:
|
3279 |
-
msgid "
|
3280 |
msgstr ""
|
3281 |
|
3282 |
-
#: languages/vue.php:
|
3283 |
-
msgid "
|
3284 |
msgstr ""
|
3285 |
|
3286 |
-
#: languages/vue.php:
|
3287 |
-
msgid "
|
3288 |
msgstr ""
|
3289 |
|
3290 |
-
#: languages/vue.php:
|
3291 |
-
msgid "
|
3292 |
msgstr ""
|
3293 |
|
3294 |
-
#: languages/vue.php:
|
3295 |
-
msgid "
|
3296 |
msgstr ""
|
3297 |
|
3298 |
-
#: languages/vue.php:
|
3299 |
-
msgid "
|
3300 |
msgstr ""
|
3301 |
|
3302 |
-
#: languages/vue.php:
|
3303 |
-
msgid "
|
3304 |
msgstr ""
|
3305 |
|
3306 |
-
#: languages/vue.php:
|
3307 |
-
msgid "
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
|
3311 |
-
|
3312 |
-
msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
-
|
3316 |
-
|
3317 |
-
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."
|
3318 |
msgstr ""
|
3319 |
|
3320 |
-
#: languages/vue.php:
|
3321 |
-
msgid "
|
3322 |
msgstr ""
|
3323 |
|
3324 |
-
#: languages/vue.php:
|
3325 |
-
msgid "
|
3326 |
msgstr ""
|
3327 |
|
3328 |
-
|
3329 |
-
|
3330 |
-
msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
|
3331 |
msgstr ""
|
3332 |
|
3333 |
-
|
3334 |
-
|
3335 |
-
msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
|
3336 |
msgstr ""
|
3337 |
|
3338 |
-
|
3339 |
-
|
3340 |
-
msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
|
3341 |
msgstr ""
|
3342 |
|
3343 |
-
|
3344 |
-
|
3345 |
-
msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
|
3346 |
msgstr ""
|
3347 |
|
3348 |
-
|
3349 |
-
|
3350 |
-
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."
|
3351 |
msgstr ""
|
3352 |
|
3353 |
-
|
3354 |
-
|
3355 |
-
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."
|
3356 |
msgstr ""
|
3357 |
|
3358 |
-
#. Translators: Makes text bold.
|
3359 |
#: languages/vue.php:1183
|
3360 |
-
msgid "
|
3361 |
msgstr ""
|
3362 |
|
3363 |
-
|
3364 |
-
|
3365 |
-
msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
|
3366 |
msgstr ""
|
3367 |
|
3368 |
-
|
3369 |
-
|
3370 |
-
msgid "%1$sSee All Features%2$s"
|
3371 |
msgstr ""
|
3372 |
|
3373 |
-
|
3374 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
3375 |
msgstr ""
|
3376 |
|
3377 |
#: languages/vue.php:1200
|
3378 |
-
msgid "
|
3379 |
msgstr ""
|
3380 |
|
3381 |
-
#: languages/vue.php:
|
3382 |
-
msgid "
|
3383 |
msgstr ""
|
3384 |
|
3385 |
-
#: languages/vue.php:
|
3386 |
-
msgid "
|
|
|
|
|
|
|
|
|
3387 |
msgstr ""
|
3388 |
|
3389 |
#: languages/vue.php:1212
|
3390 |
-
msgid "
|
3391 |
msgstr ""
|
3392 |
|
3393 |
-
#: languages/vue.php:
|
3394 |
-
msgid "
|
3395 |
msgstr ""
|
3396 |
|
3397 |
-
#: languages/vue.php:
|
3398 |
-
msgid "
|
3399 |
msgstr ""
|
3400 |
|
3401 |
-
|
3402 |
-
|
3403 |
-
|
|
|
|
|
|
|
3404 |
msgstr ""
|
3405 |
|
3406 |
#: languages/vue.php:1227
|
3407 |
-
msgid "Google
|
3408 |
msgstr ""
|
3409 |
|
3410 |
#: languages/vue.php:1230
|
3411 |
-
msgid "
|
3412 |
msgstr ""
|
3413 |
|
3414 |
-
|
3415 |
-
|
|
|
3416 |
msgstr ""
|
3417 |
|
3418 |
-
|
3419 |
-
|
|
|
3420 |
msgstr ""
|
3421 |
|
3422 |
-
#: languages/vue.php:
|
3423 |
-
msgid "
|
3424 |
msgstr ""
|
3425 |
|
3426 |
-
#: languages/vue.php:
|
3427 |
-
msgid "
|
3428 |
msgstr ""
|
3429 |
|
3430 |
-
#: languages/vue.php:
|
3431 |
-
msgid "
|
3432 |
msgstr ""
|
3433 |
|
3434 |
-
#: languages/vue.php:
|
3435 |
-
msgid "
|
3436 |
msgstr ""
|
3437 |
|
3438 |
-
#: languages/vue.php:
|
3439 |
-
msgid "
|
3440 |
msgstr ""
|
3441 |
|
3442 |
-
|
3443 |
-
|
3444 |
-
msgid "Error: %1$s, %2$s"
|
3445 |
msgstr ""
|
3446 |
|
3447 |
-
#: languages/vue.php:
|
3448 |
-
msgid "
|
3449 |
msgstr ""
|
3450 |
|
3451 |
-
#: languages/vue.php:
|
3452 |
-
msgid "
|
3453 |
msgstr ""
|
3454 |
|
3455 |
-
#: languages/vue.php:
|
3456 |
-
msgid "
|
3457 |
msgstr ""
|
3458 |
|
3459 |
-
#: languages/vue.php:
|
3460 |
-
msgid "
|
3461 |
msgstr ""
|
3462 |
|
3463 |
-
#: languages/vue.php:
|
3464 |
-
msgid "
|
3465 |
msgstr ""
|
3466 |
|
3467 |
-
#: languages/vue.php:
|
3468 |
-
msgid "
|
3469 |
msgstr ""
|
3470 |
|
3471 |
-
#: languages/vue.php:
|
3472 |
-
msgid "
|
3473 |
msgstr ""
|
3474 |
|
3475 |
-
#: languages/vue.php:
|
3476 |
-
msgid "Report
|
|
|
|
|
|
|
|
|
3477 |
msgstr ""
|
3478 |
|
3479 |
-
#. Translators: Install/Activate the addon.
|
3480 |
#: languages/vue.php:1286
|
3481 |
-
msgid "
|
3482 |
msgstr ""
|
3483 |
|
3484 |
#: languages/vue.php:1289
|
3485 |
-
msgid "
|
3486 |
msgstr ""
|
3487 |
|
3488 |
#: languages/vue.php:1292
|
3489 |
-
msgid "
|
3490 |
msgstr ""
|
3491 |
|
3492 |
#: languages/vue.php:1295
|
3493 |
-
msgid "
|
3494 |
msgstr ""
|
3495 |
|
3496 |
#: languages/vue.php:1298
|
3497 |
-
msgid "
|
3498 |
msgstr ""
|
3499 |
|
3500 |
#: languages/vue.php:1301
|
3501 |
-
msgid "
|
3502 |
msgstr ""
|
3503 |
|
3504 |
-
|
3505 |
-
|
3506 |
-
msgid "%1$sNeed%2$s to Grow FASTER??"
|
3507 |
msgstr ""
|
3508 |
|
3509 |
-
#: languages/vue.php:
|
3510 |
-
msgid "
|
3511 |
msgstr ""
|
3512 |
|
3513 |
-
#: languages/vue.php:
|
3514 |
-
msgid "
|
3515 |
msgstr ""
|
3516 |
|
3517 |
-
#: languages/vue.php:
|
3518 |
-
msgid "See
|
3519 |
msgstr ""
|
3520 |
|
3521 |
-
#: languages/vue.php:
|
3522 |
-
msgid "
|
3523 |
msgstr ""
|
3524 |
|
3525 |
-
#: languages/vue.php:
|
3526 |
-
msgid "
|
3527 |
msgstr ""
|
3528 |
|
3529 |
-
#: languages/vue.php:
|
3530 |
-
msgid "
|
3531 |
msgstr ""
|
3532 |
|
3533 |
-
#: languages/vue.php:
|
3534 |
-
msgid "
|
3535 |
msgstr ""
|
3536 |
|
3537 |
-
|
3538 |
-
|
3539 |
-
|
|
|
|
|
|
|
3540 |
msgstr ""
|
3541 |
|
3542 |
-
#. Translators: Add link to blog.
|
3543 |
#: languages/vue.php:1334
|
3544 |
-
msgid "
|
3545 |
msgstr ""
|
3546 |
|
3547 |
#: languages/vue.php:1337
|
3548 |
-
msgid "
|
3549 |
msgstr ""
|
3550 |
|
3551 |
#: languages/vue.php:1340
|
3552 |
-
msgid "
|
3553 |
msgstr ""
|
3554 |
|
3555 |
#: languages/vue.php:1343
|
3556 |
-
msgid "
|
3557 |
msgstr ""
|
3558 |
|
3559 |
#: languages/vue.php:1346
|
3560 |
-
msgid "
|
3561 |
msgstr ""
|
3562 |
|
3563 |
#: languages/vue.php:1349
|
3564 |
-
msgid "
|
3565 |
msgstr ""
|
3566 |
|
3567 |
-
|
3568 |
-
|
3569 |
-
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!"
|
3570 |
msgstr ""
|
3571 |
|
3572 |
-
#: languages/vue.php:
|
3573 |
-
msgid "
|
3574 |
msgstr ""
|
3575 |
|
3576 |
-
#: languages/vue.php:
|
3577 |
-
msgid "
|
3578 |
msgstr ""
|
3579 |
|
3580 |
-
#: languages/vue.php:
|
3581 |
-
msgid "
|
3582 |
msgstr ""
|
3583 |
|
3584 |
-
#: languages/vue.php:
|
3585 |
-
msgid "
|
3586 |
msgstr ""
|
3587 |
|
3588 |
-
#: languages/vue.php:
|
3589 |
-
msgid "
|
3590 |
msgstr ""
|
3591 |
|
3592 |
-
#: languages/vue.php:
|
3593 |
-
msgid "
|
3594 |
msgstr ""
|
3595 |
|
3596 |
-
#: languages/vue.php:
|
3597 |
-
msgid "
|
3598 |
msgstr ""
|
3599 |
|
3600 |
-
#: languages/vue.php:
|
3601 |
-
msgid "
|
3602 |
msgstr ""
|
3603 |
|
3604 |
-
#: languages/vue.php:
|
3605 |
-
msgid "
|
3606 |
msgstr ""
|
3607 |
|
3608 |
-
#: languages/vue.php:
|
3609 |
-
msgid "
|
3610 |
msgstr ""
|
3611 |
|
3612 |
-
#: languages/vue.php:
|
3613 |
-
msgid "
|
3614 |
msgstr ""
|
3615 |
|
3616 |
-
#: languages/vue.php:
|
3617 |
-
msgid "
|
3618 |
msgstr ""
|
3619 |
|
3620 |
-
#: languages/vue.php:
|
3621 |
-
msgid "
|
3622 |
msgstr ""
|
3623 |
|
|
|
3624 |
#: languages/vue.php:1395
|
3625 |
-
msgid "
|
3626 |
-
msgstr ""
|
3627 |
-
|
3628 |
-
#: languages/vue.php:1398
|
3629 |
-
msgid "Show eCommerce Reports"
|
3630 |
msgstr ""
|
3631 |
|
3632 |
-
|
3633 |
-
|
|
|
3634 |
msgstr ""
|
3635 |
|
3636 |
-
|
3637 |
-
|
|
|
3638 |
msgstr ""
|
3639 |
|
|
|
3640 |
#: languages/vue.php:1407
|
3641 |
-
msgid "
|
3642 |
-
msgstr ""
|
3643 |
-
|
3644 |
-
#: languages/vue.php:1410
|
3645 |
-
msgid "File imported"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
-
|
3649 |
-
|
|
|
3650 |
msgstr ""
|
3651 |
|
3652 |
-
|
3653 |
-
|
|
|
3654 |
msgstr ""
|
3655 |
|
3656 |
-
#: languages/vue.php:
|
3657 |
-
msgid "
|
3658 |
msgstr ""
|
3659 |
|
3660 |
-
#: languages/vue.php:
|
3661 |
-
msgid "
|
3662 |
msgstr ""
|
3663 |
|
3664 |
-
#: languages/vue.php:
|
3665 |
-
msgid "
|
3666 |
msgstr ""
|
3667 |
|
|
|
3668 |
#: languages/vue.php:1428
|
3669 |
-
msgid "
|
3670 |
msgstr ""
|
3671 |
|
3672 |
#: languages/vue.php:1431
|
3673 |
-
msgid "
|
3674 |
msgstr ""
|
3675 |
|
3676 |
#: languages/vue.php:1434
|
3677 |
-
msgid "
|
3678 |
msgstr ""
|
3679 |
|
3680 |
#: languages/vue.php:1437
|
3681 |
-
msgid "
|
3682 |
msgstr ""
|
3683 |
|
3684 |
#: languages/vue.php:1440
|
3685 |
-
msgid "
|
3686 |
msgstr ""
|
3687 |
|
3688 |
#: languages/vue.php:1443
|
3689 |
-
msgid "
|
3690 |
msgstr ""
|
3691 |
|
3692 |
#: languages/vue.php:1446
|
3693 |
-
msgid "
|
3694 |
msgstr ""
|
3695 |
|
3696 |
#: languages/vue.php:1449
|
3697 |
-
msgid "Use
|
3698 |
msgstr ""
|
3699 |
|
3700 |
#: languages/vue.php:1452
|
3701 |
-
msgid "
|
3702 |
msgstr ""
|
3703 |
|
3704 |
#: languages/vue.php:1455
|
3705 |
-
msgid "
|
3706 |
msgstr ""
|
3707 |
|
3708 |
#: languages/vue.php:1458
|
3709 |
-
msgid "
|
3710 |
msgstr ""
|
3711 |
|
3712 |
#: languages/vue.php:1461
|
3713 |
-
msgid "
|
3714 |
msgstr ""
|
3715 |
|
3716 |
#: languages/vue.php:1464
|
3717 |
-
msgid "
|
3718 |
msgstr ""
|
3719 |
|
3720 |
#: languages/vue.php:1467
|
3721 |
-
msgid "
|
3722 |
msgstr ""
|
3723 |
|
3724 |
-
|
3725 |
-
|
3726 |
-
msgid "Website URL %s"
|
3727 |
msgstr ""
|
3728 |
|
3729 |
-
|
3730 |
-
|
3731 |
-
msgid "The full website URL (e.g. %1$s %2$s%3$s)"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
-
#. Translators:
|
3735 |
-
#: languages/vue.php:
|
3736 |
-
msgid "
|
3737 |
msgstr ""
|
3738 |
|
3739 |
-
#. Translators:
|
3740 |
-
#: languages/vue.php:
|
3741 |
-
msgid "
|
|
|
|
|
|
|
|
|
3742 |
msgstr ""
|
3743 |
|
3744 |
-
#. Translators: Make the text italic.
|
3745 |
#: languages/vue.php:1487
|
3746 |
-
msgid "
|
3747 |
msgstr ""
|
3748 |
|
3749 |
-
|
3750 |
-
|
3751 |
-
msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
-
#: languages/vue.php:
|
3755 |
-
msgid "
|
3756 |
msgstr ""
|
3757 |
|
3758 |
-
#: languages/vue.php:
|
3759 |
-
msgid "
|
3760 |
msgstr ""
|
3761 |
|
3762 |
-
#: languages/vue.php:
|
3763 |
-
msgid "
|
3764 |
msgstr ""
|
3765 |
|
3766 |
-
|
3767 |
-
|
3768 |
-
msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
|
3769 |
msgstr ""
|
3770 |
|
3771 |
-
#: languages/vue.php:
|
3772 |
-
msgid "
|
3773 |
msgstr ""
|
3774 |
|
3775 |
-
#: languages/vue.php:
|
3776 |
-
msgid "
|
3777 |
msgstr ""
|
3778 |
|
3779 |
-
#: languages/vue.php:
|
3780 |
-
msgid "
|
3781 |
msgstr ""
|
3782 |
|
3783 |
-
#: languages/vue.php:
|
3784 |
-
msgid "
|
3785 |
msgstr ""
|
3786 |
|
3787 |
-
#: languages/vue.php:
|
3788 |
-
msgid "
|
3789 |
msgstr ""
|
3790 |
|
3791 |
-
#: languages/vue.php:
|
3792 |
-
msgid "
|
3793 |
msgstr ""
|
3794 |
|
3795 |
-
#: languages/vue.php:
|
3796 |
-
msgid "
|
3797 |
msgstr ""
|
3798 |
|
3799 |
-
|
3800 |
-
|
|
|
3801 |
msgstr ""
|
3802 |
|
3803 |
-
#: languages/vue.php:
|
3804 |
-
msgid "
|
3805 |
msgstr ""
|
3806 |
|
|
|
3807 |
#: languages/vue.php:1534
|
3808 |
-
msgid "
|
3809 |
msgstr ""
|
3810 |
|
3811 |
#: languages/vue.php:1537
|
3812 |
-
msgid "
|
3813 |
msgstr ""
|
3814 |
|
3815 |
#: languages/vue.php:1540
|
3816 |
-
msgid "
|
3817 |
msgstr ""
|
3818 |
|
3819 |
#: languages/vue.php:1543
|
3820 |
-
msgid "
|
3821 |
msgstr ""
|
3822 |
|
3823 |
#: languages/vue.php:1546
|
3824 |
-
msgid "
|
3825 |
msgstr ""
|
3826 |
|
3827 |
#: languages/vue.php:1549
|
3828 |
-
msgid "
|
3829 |
-
msgstr ""
|
3830 |
-
|
3831 |
-
#. Translators: Example.
|
3832 |
-
#: languages/vue.php:1553
|
3833 |
-
msgid "Example: %s"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
-
|
3837 |
-
|
3838 |
-
msgid "Examples: %s"
|
3839 |
msgstr ""
|
3840 |
|
3841 |
-
#: languages/vue.php:
|
3842 |
-
msgid "
|
3843 |
msgstr ""
|
3844 |
|
3845 |
-
#: languages/vue.php:
|
3846 |
-
msgid "
|
3847 |
msgstr ""
|
3848 |
|
3849 |
-
#: languages/vue.php:
|
3850 |
-
msgid "
|
3851 |
msgstr ""
|
3852 |
|
3853 |
-
#: languages/vue.php:
|
3854 |
-
msgid "
|
3855 |
msgstr ""
|
3856 |
|
3857 |
-
#: languages/vue.php:
|
3858 |
-
msgid "
|
3859 |
msgstr ""
|
3860 |
|
3861 |
-
#: languages/vue.php:
|
3862 |
-
msgid "
|
3863 |
msgstr ""
|
3864 |
|
3865 |
-
#: languages/vue.php:
|
3866 |
-
msgid "
|
3867 |
msgstr ""
|
3868 |
|
3869 |
-
|
3870 |
-
|
|
|
3871 |
msgstr ""
|
3872 |
|
3873 |
#. Translators: Error status and error text.
|
3874 |
-
#: languages/vue.php:
|
3875 |
-
msgid "Can't
|
3876 |
msgstr ""
|
3877 |
|
3878 |
-
#: languages/vue.php:
|
3879 |
-
msgid "You appear to be offline.
|
3880 |
msgstr ""
|
3881 |
|
3882 |
#. Translators: Error status and error text.
|
3883 |
-
#: languages/vue.php:
|
3884 |
-
msgid "Can't
|
3885 |
msgstr ""
|
3886 |
|
3887 |
-
#: languages/vue.php:
|
3888 |
-
msgid "
|
3889 |
msgstr ""
|
3890 |
|
3891 |
#. Translators: Error status and error text.
|
3892 |
-
#: languages/vue.php:
|
3893 |
-
msgid "Can't
|
3894 |
msgstr ""
|
3895 |
|
|
|
3896 |
#: languages/vue.php:1602
|
3897 |
-
msgid "
|
3898 |
msgstr ""
|
3899 |
|
3900 |
-
|
3901 |
-
|
3902 |
-
msgid "Can't install addon. Error: %1$s, %2$s"
|
3903 |
msgstr ""
|
3904 |
|
3905 |
-
#: languages/vue.php:
|
3906 |
-
msgid "
|
3907 |
msgstr ""
|
3908 |
|
3909 |
-
|
3910 |
-
|
3911 |
-
msgid "Can't install WPForms. Error: %1$s, %2$s"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
-
#: languages/vue.php:
|
3915 |
-
msgid "
|
3916 |
msgstr ""
|
3917 |
|
3918 |
-
#: languages/vue.php:
|
3919 |
-
msgid "
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
|
3923 |
-
|
3924 |
-
msgid "You can customize your %sdate range only in the PRO version."
|
3925 |
msgstr ""
|
3926 |
|
3927 |
-
|
3928 |
-
|
|
|
3929 |
msgstr ""
|
3930 |
|
3931 |
-
#: languages/vue.php:
|
3932 |
-
msgid "
|
3933 |
msgstr ""
|
3934 |
|
3935 |
-
|
3936 |
-
|
|
|
3937 |
msgstr ""
|
3938 |
|
3939 |
-
#: languages/vue.php:
|
3940 |
-
msgid "
|
3941 |
msgstr ""
|
3942 |
|
|
|
3943 |
#: languages/vue.php:1638
|
3944 |
-
msgid "
|
3945 |
msgstr ""
|
3946 |
|
3947 |
#: languages/vue.php:1641
|
3948 |
-
msgid "
|
3949 |
msgstr ""
|
3950 |
|
3951 |
-
|
3952 |
-
|
|
|
3953 |
msgstr ""
|
3954 |
|
3955 |
-
#. Translators: Line break.
|
3956 |
#: languages/vue.php:1648
|
3957 |
-
msgid "
|
3958 |
msgstr ""
|
3959 |
|
3960 |
-
#. Translators:
|
3961 |
#: languages/vue.php:1652
|
3962 |
-
msgid "
|
3963 |
msgstr ""
|
3964 |
|
3965 |
#: languages/vue.php:1655
|
3966 |
-
msgid "
|
3967 |
msgstr ""
|
3968 |
|
3969 |
#: languages/vue.php:1658
|
3970 |
-
msgid "
|
3971 |
msgstr ""
|
3972 |
|
3973 |
#: languages/vue.php:1661
|
3974 |
-
msgid "
|
3975 |
msgstr ""
|
3976 |
|
3977 |
#: languages/vue.php:1664
|
3978 |
-
msgid "
|
3979 |
msgstr ""
|
3980 |
|
3981 |
#: languages/vue.php:1667
|
3982 |
-
msgid "
|
3983 |
msgstr ""
|
3984 |
|
3985 |
-
|
3986 |
-
|
|
|
3987 |
msgstr ""
|
3988 |
|
3989 |
-
#. Translators: placeholders make text small.
|
3990 |
#: languages/vue.php:1674
|
3991 |
-
msgid "
|
3992 |
msgstr ""
|
3993 |
|
3994 |
-
|
3995 |
-
|
3996 |
-
msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
|
3997 |
msgstr ""
|
3998 |
|
3999 |
-
|
4000 |
-
|
4001 |
-
msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
|
4002 |
msgstr ""
|
4003 |
|
4004 |
-
#. Translators: placeholders make text small.
|
4005 |
#: languages/vue.php:1686
|
4006 |
-
msgid "
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
|
4010 |
-
|
4011 |
-
msgid "None %1$s- Manually update everything.%2$s"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
-
|
4015 |
-
|
4016 |
-
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."
|
4017 |
msgstr ""
|
4018 |
|
4019 |
-
#: languages/vue.php:
|
4020 |
-
msgid "
|
4021 |
msgstr ""
|
4022 |
|
4023 |
-
#: languages/vue.php:
|
4024 |
-
msgid "
|
4025 |
msgstr ""
|
4026 |
|
4027 |
-
|
4028 |
-
|
|
|
4029 |
msgstr ""
|
4030 |
|
4031 |
-
#: languages/vue.php:
|
4032 |
-
msgid "
|
4033 |
msgstr ""
|
4034 |
|
4035 |
-
#: languages/vue.php:
|
4036 |
-
msgid "
|
4037 |
msgstr ""
|
4038 |
|
4039 |
-
#: languages/vue.php:
|
4040 |
-
msgid "
|
4041 |
msgstr ""
|
4042 |
|
4043 |
-
#: languages/vue.php:
|
4044 |
-
msgid "
|
4045 |
msgstr ""
|
4046 |
|
|
|
4047 |
#: languages/vue.php:1718
|
4048 |
-
msgid "
|
4049 |
msgstr ""
|
4050 |
|
4051 |
#: languages/vue.php:1721
|
4052 |
-
msgid "
|
4053 |
msgstr ""
|
4054 |
|
4055 |
-
#. Translators:
|
4056 |
#: languages/vue.php:1725
|
4057 |
-
msgid "
|
4058 |
msgstr ""
|
4059 |
|
4060 |
-
|
4061 |
-
|
|
|
4062 |
msgstr ""
|
4063 |
|
4064 |
-
#: languages/vue.php:
|
4065 |
-
msgid "
|
4066 |
msgstr ""
|
4067 |
|
4068 |
-
#: languages/vue.php:
|
4069 |
-
|
|
|
|
|
|
|
|
|
|
|
4070 |
msgstr ""
|
4071 |
|
4072 |
-
#. Translators: placeholders make text small.
|
4073 |
#: languages/vue.php:1741
|
4074 |
-
msgid "
|
4075 |
msgstr ""
|
4076 |
|
4077 |
#: languages/vue.php:1744
|
4078 |
-
msgid "
|
4079 |
msgstr ""
|
4080 |
|
4081 |
#: languages/vue.php:1747
|
4082 |
-
msgid "
|
4083 |
msgstr ""
|
4084 |
|
4085 |
#: languages/vue.php:1750
|
4086 |
-
msgid "
|
4087 |
msgstr ""
|
4088 |
|
4089 |
#: languages/vue.php:1753
|
4090 |
-
msgid "
|
4091 |
msgstr ""
|
4092 |
|
4093 |
#: languages/vue.php:1756
|
4094 |
-
msgid "
|
4095 |
msgstr ""
|
4096 |
|
4097 |
#: languages/vue.php:1759
|
4098 |
-
msgid "
|
4099 |
msgstr ""
|
4100 |
|
4101 |
#: languages/vue.php:1762
|
4102 |
-
msgid "
|
4103 |
msgstr ""
|
4104 |
|
4105 |
#: languages/vue.php:1765
|
4106 |
-
msgid "
|
4107 |
msgstr ""
|
4108 |
|
4109 |
#: languages/vue.php:1768
|
4110 |
-
msgid "
|
4111 |
msgstr ""
|
4112 |
|
4113 |
-
|
4114 |
-
|
4115 |
-
msgid "Publisher %1$s(Blog)%2$s"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
-
|
4119 |
-
|
4120 |
-
msgid "Can't deauthenticate. Error: %1$s, %2$s"
|
4121 |
msgstr ""
|
4122 |
|
4123 |
-
#: languages/vue.php:
|
4124 |
-
msgid "
|
|
|
|
|
|
|
|
|
4125 |
msgstr ""
|
4126 |
|
4127 |
-
#. Translators: Error status and error text.
|
4128 |
#: languages/vue.php:1783
|
4129 |
-
msgid "
|
4130 |
msgstr ""
|
4131 |
|
4132 |
#: languages/vue.php:1786
|
4133 |
-
msgid "
|
4134 |
msgstr ""
|
4135 |
|
4136 |
-
|
4137 |
-
|
4138 |
-
msgid "Can't load authentication details. Error: %1$s, %2$s"
|
4139 |
msgstr ""
|
4140 |
|
4141 |
-
|
4142 |
-
|
4143 |
-
|
|
|
|
|
|
|
4144 |
msgstr ""
|
4145 |
|
4146 |
-
#. Translators: Error status and error text.
|
4147 |
#: languages/vue.php:1798
|
4148 |
-
msgid "
|
4149 |
msgstr ""
|
4150 |
|
4151 |
-
|
4152 |
-
|
4153 |
-
msgid "Can't verify credentials. Error: %1$s, %2$s"
|
4154 |
msgstr ""
|
4155 |
|
4156 |
-
|
4157 |
-
|
4158 |
-
msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
|
4159 |
msgstr ""
|
4160 |
|
4161 |
-
#. Translators:
|
4162 |
-
#: languages/vue.php:
|
4163 |
-
msgid "
|
4164 |
msgstr ""
|
4165 |
|
4166 |
-
#: languages/vue.php:
|
4167 |
-
msgid "
|
4168 |
msgstr ""
|
4169 |
|
4170 |
-
#. Translators:
|
4171 |
-
#: languages/vue.php:
|
4172 |
-
msgid "
|
4173 |
msgstr ""
|
4174 |
|
4175 |
-
#: languages/vue.php:
|
4176 |
-
msgid "
|
4177 |
msgstr ""
|
4178 |
|
4179 |
-
#: languages/vue.php:
|
4180 |
-
msgid "Add
|
4181 |
msgstr ""
|
4182 |
|
4183 |
-
#: languages/vue.php:
|
4184 |
-
msgid "
|
4185 |
msgstr ""
|
4186 |
|
4187 |
-
#: languages/vue.php:
|
4188 |
-
msgid "
|
4189 |
msgstr ""
|
4190 |
|
4191 |
-
#: languages/vue.php:
|
4192 |
-
msgid "
|
4193 |
msgstr ""
|
4194 |
|
4195 |
-
#: languages/vue.php:
|
4196 |
-
msgid "
|
4197 |
msgstr ""
|
4198 |
|
4199 |
-
#: languages/vue.php:
|
4200 |
-
msgid "
|
4201 |
msgstr ""
|
4202 |
|
4203 |
-
#: languages/vue.php:
|
4204 |
-
msgid "
|
|
|
|
|
|
|
|
|
4205 |
msgstr ""
|
4206 |
|
4207 |
-
#. Translators: Adds a link to the documentation.
|
4208 |
#: languages/vue.php:1845
|
4209 |
-
msgid "
|
|
|
|
|
|
|
|
|
4210 |
msgstr ""
|
4211 |
|
4212 |
-
|
4213 |
-
|
4214 |
-
msgid "Can't deactivate the license. Error: %1$s, %2$s"
|
4215 |
msgstr ""
|
4216 |
|
4217 |
-
|
4218 |
-
|
4219 |
-
msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
|
4220 |
msgstr ""
|
4221 |
|
4222 |
-
#. Translators: Error status and error text.
|
4223 |
#: languages/vue.php:1857
|
4224 |
-
msgid "
|
4225 |
msgstr ""
|
4226 |
|
4227 |
#: languages/vue.php:1860
|
4228 |
-
msgid "
|
4229 |
msgstr ""
|
4230 |
|
4231 |
-
|
4232 |
-
|
4233 |
-
msgid "Can't verify the license. Error: %1$s, %2$s"
|
4234 |
msgstr ""
|
4235 |
|
4236 |
-
|
4237 |
-
|
4238 |
-
|
|
|
|
|
|
|
4239 |
msgstr ""
|
4240 |
|
4241 |
-
#. Translators: The name of the field that is throwing a validation error.
|
4242 |
#: languages/vue.php:1872
|
4243 |
-
msgid "
|
4244 |
msgstr ""
|
4245 |
|
4246 |
#: languages/vue.php:1875
|
4247 |
-
msgid "
|
4248 |
msgstr ""
|
4249 |
|
4250 |
#: languages/vue.php:1878
|
4251 |
-
msgid "
|
4252 |
msgstr ""
|
4253 |
|
4254 |
#: languages/vue.php:1881
|
4255 |
-
msgid "
|
4256 |
msgstr ""
|
4257 |
|
4258 |
#: languages/vue.php:1884
|
4259 |
-
msgid "
|
4260 |
msgstr ""
|
4261 |
|
4262 |
#: languages/vue.php:1887
|
4263 |
-
msgid "
|
4264 |
msgstr ""
|
4265 |
|
4266 |
-
|
4267 |
-
|
4268 |
-
msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
|
4269 |
msgstr ""
|
4270 |
|
4271 |
-
|
4272 |
-
|
4273 |
-
msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
|
4274 |
msgstr ""
|
4275 |
|
4276 |
-
#: languages/vue.php:
|
4277 |
-
msgid "
|
4278 |
msgstr ""
|
4279 |
|
4280 |
-
#: languages/vue.php:
|
4281 |
-
|
4282 |
-
msgid "Connect ExactMetrics"
|
4283 |
msgstr ""
|
4284 |
|
4285 |
-
#: languages/vue.php:
|
4286 |
-
msgid "
|
4287 |
msgstr ""
|
4288 |
|
4289 |
-
#: languages/vue.php:
|
4290 |
-
msgid "
|
4291 |
msgstr ""
|
4292 |
|
4293 |
-
|
4294 |
-
|
|
|
4295 |
msgstr ""
|
4296 |
|
4297 |
-
#: languages/vue.php:
|
4298 |
-
msgid "
|
4299 |
msgstr ""
|
4300 |
|
4301 |
-
#: languages/vue.php:
|
4302 |
-
msgid "
|
4303 |
msgstr ""
|
4304 |
|
4305 |
-
#: languages/vue.php:
|
4306 |
-
msgid "
|
4307 |
msgstr ""
|
4308 |
|
4309 |
-
|
4310 |
-
|
4311 |
-
|
|
|
4312 |
msgstr ""
|
4313 |
|
4314 |
-
#: languages/vue.php:
|
4315 |
-
msgid "
|
4316 |
msgstr ""
|
4317 |
|
4318 |
-
|
4319 |
-
|
|
|
4320 |
msgstr ""
|
4321 |
|
|
|
4322 |
#: languages/vue.php:1935
|
4323 |
-
msgid "
|
4324 |
msgstr ""
|
4325 |
|
4326 |
-
#. Translators:
|
4327 |
#: languages/vue.php:1939
|
4328 |
-
msgid "
|
4329 |
msgstr ""
|
4330 |
|
4331 |
#: languages/vue.php:1942
|
4332 |
-
msgid "
|
4333 |
msgstr ""
|
4334 |
|
4335 |
#: languages/vue.php:1945
|
4336 |
-
msgid "
|
4337 |
msgstr ""
|
4338 |
|
4339 |
#: languages/vue.php:1948
|
4340 |
-
msgid "
|
4341 |
msgstr ""
|
4342 |
|
4343 |
#: languages/vue.php:1951
|
4344 |
-
msgid "
|
4345 |
msgstr ""
|
4346 |
|
4347 |
#: languages/vue.php:1954
|
4348 |
-
msgid "
|
4349 |
-
msgstr ""
|