Version Description
Download this release
Release Info
Developer | gripgrip |
Plugin | Google Analytics Dashboard for WP (GADWP) |
Version | 6.3.2 |
Comparing to | |
See all releases |
Code changes from version 6.3.0 to 6.3.2
- gadwp.php +2 -2
- includes/admin/notification-event.php +6 -2
- includes/admin/notifications/notification-audience.php +5 -0
- includes/admin/notifications/notification-bounce-rate.php +5 -0
- includes/admin/notifications/notification-mobile-device.php +5 -0
- includes/admin/notifications/notification-returning-visitors.php +5 -0
- includes/admin/notifications/notification-traffic-dropping.php +5 -0
- includes/admin/notifications/notification-visitors.php +5 -0
- includes/admin/reports/abstract-report.php +19 -0
- includes/em-install.php +12 -0
- languages/google-analytics-dashboard-for-wp.pot +1637 -1637
- languages/vue.php +1690 -1675
- lite/includes/popular-posts/class-popular-posts-inline.php +2 -2
- readme.txt +5 -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.3.
|
8 |
* Requires at least: 3.8.0
|
9 |
* Requires PHP: 5.2
|
10 |
* Author URI: https://exactmetrics.com
|
@@ -44,7 +44,7 @@ final class ExactMetrics_Lite {
|
|
44 |
* @access public
|
45 |
* @var string $version Plugin version.
|
46 |
*/
|
47 |
-
public $version = '6.3.
|
48 |
|
49 |
/**
|
50 |
* Plugin file.
|
4 |
* Plugin URI: https://exactmetrics.com
|
5 |
* Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
|
6 |
* Author: ExactMetrics
|
7 |
+
* Version: 6.3.2
|
8 |
* Requires at least: 3.8.0
|
9 |
* Requires PHP: 5.2
|
10 |
* Author URI: https://exactmetrics.com
|
44 |
* @access public
|
45 |
* @var string $version Plugin version.
|
46 |
*/
|
47 |
+
public $version = '6.3.2';
|
48 |
|
49 |
/**
|
50 |
* Plugin file.
|
includes/admin/notification-event.php
CHANGED
@@ -286,8 +286,12 @@ class ExactMetrics_Notification_Event {
|
|
286 |
*/
|
287 |
public function get_report( $report_name="overview", $report_start_from="-30 day", $report_end_to="-1 day" ) {
|
288 |
// get overview report data
|
289 |
-
$data
|
290 |
-
$report
|
|
|
|
|
|
|
|
|
291 |
$isnetwork = ! empty( $_REQUEST['isnetwork'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['isnetwork'] ) ) : '';
|
292 |
$args = array(
|
293 |
'start' => $this->get_formatted_date( $report_start_from ),
|
286 |
*/
|
287 |
public function get_report( $report_name="overview", $report_start_from="-30 day", $report_end_to="-1 day" ) {
|
288 |
// get overview report data
|
289 |
+
$data = array();
|
290 |
+
$report = ExactMetrics()->reporting->get_report( $report_name );
|
291 |
+
if ( $report ) {
|
292 |
+
// Mark the report request as coming from Notifications.
|
293 |
+
$report->set_report_source( 'notifications' );
|
294 |
+
}
|
295 |
$isnetwork = ! empty( $_REQUEST['isnetwork'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['isnetwork'] ) ) : '';
|
296 |
$args = array(
|
297 |
'start' => $this->get_formatted_date( $report_start_from ),
|
includes/admin/notifications/notification-audience.php
CHANGED
@@ -18,6 +18,11 @@ final class ExactMetrics_Notification_Audience extends ExactMetrics_Notification
|
|
18 |
* @since 7.12.3
|
19 |
*/
|
20 |
public function get_notification_data() {
|
|
|
|
|
|
|
|
|
|
|
21 |
require_once( ABSPATH . 'wp-admin/includes/translation-install.php' );
|
22 |
|
23 |
$data = array();
|
18 |
* @since 7.12.3
|
19 |
*/
|
20 |
public function get_notification_data() {
|
21 |
+
if ( ! exactmetrics_is_pro_version() ) {
|
22 |
+
// Improve performance for lite users by disabling external API calls they can’t access.
|
23 |
+
// Since lite users can’t access this feature return early.
|
24 |
+
return false;
|
25 |
+
}
|
26 |
require_once( ABSPATH . 'wp-admin/includes/translation-install.php' );
|
27 |
|
28 |
$data = array();
|
includes/admin/notifications/notification-bounce-rate.php
CHANGED
@@ -20,6 +20,11 @@ final class ExactMetrics_Notification_Bounce_Rate extends ExactMetrics_Notificat
|
|
20 |
* @since 7.12.3
|
21 |
*/
|
22 |
public function prepare_notification_data( $notification ) {
|
|
|
|
|
|
|
|
|
|
|
23 |
$data = array();
|
24 |
$report = $this->get_report( 'overview', $this->report_start_from, $this->report_end_to );
|
25 |
$data['bounce_rate'] = isset( $report['data']['infobox']['bounce']['value'] ) ? $report['data']['infobox']['bounce']['value'] : 0;
|
20 |
* @since 7.12.3
|
21 |
*/
|
22 |
public function prepare_notification_data( $notification ) {
|
23 |
+
if ( ! exactmetrics_is_pro_version() ) {
|
24 |
+
// Improve performance for lite users by disabling external API calls they can’t access.
|
25 |
+
// Since lite users can’t access this feature return early.
|
26 |
+
return false;
|
27 |
+
}
|
28 |
$data = array();
|
29 |
$report = $this->get_report( 'overview', $this->report_start_from, $this->report_end_to );
|
30 |
$data['bounce_rate'] = isset( $report['data']['infobox']['bounce']['value'] ) ? $report['data']['infobox']['bounce']['value'] : 0;
|
includes/admin/notifications/notification-mobile-device.php
CHANGED
@@ -19,6 +19,11 @@ final class ExactMetrics_Notification_Mobile_Device extends ExactMetrics_Notific
|
|
19 |
* @since 7.12.3
|
20 |
*/
|
21 |
public function prepare_notification_data( $notification ) {
|
|
|
|
|
|
|
|
|
|
|
22 |
$data = array();
|
23 |
$report = $this->get_report( 'overview', $this->report_start_from, $this->report_end_to );
|
24 |
$data['percentage_of_mobile_visitors'] = isset( $report['data']['devices']['mobile'] ) ? $report['data']['devices']['mobile'] : 0;
|
19 |
* @since 7.12.3
|
20 |
*/
|
21 |
public function prepare_notification_data( $notification ) {
|
22 |
+
if ( ! exactmetrics_is_pro_version() ) {
|
23 |
+
// Improve performance for lite users by disabling external API calls they can’t access.
|
24 |
+
// Since lite users can’t access this feature return early.
|
25 |
+
return false;
|
26 |
+
}
|
27 |
$data = array();
|
28 |
$report = $this->get_report( 'overview', $this->report_start_from, $this->report_end_to );
|
29 |
$data['percentage_of_mobile_visitors'] = isset( $report['data']['devices']['mobile'] ) ? $report['data']['devices']['mobile'] : 0;
|
includes/admin/notifications/notification-returning-visitors.php
CHANGED
@@ -20,6 +20,11 @@ final class ExactMetrics_Notification_Returning_Visitors extends ExactMetrics_No
|
|
20 |
* @since 7.12.3
|
21 |
*/
|
22 |
public function prepare_notification_data( $notification ) {
|
|
|
|
|
|
|
|
|
|
|
23 |
$data = array();
|
24 |
$report = $this->get_report( 'overview', $this->report_start_from, $this->report_end_to );
|
25 |
$data['returning'] = isset( $report['data']['newvsreturn']['returning'] ) ? $report['data']['newvsreturn']['returning'] : 0;
|
20 |
* @since 7.12.3
|
21 |
*/
|
22 |
public function prepare_notification_data( $notification ) {
|
23 |
+
if ( ! exactmetrics_is_pro_version() ) {
|
24 |
+
// Improve performance for lite users by disabling external API calls they can’t access.
|
25 |
+
// Since lite users can’t access this feature return early.
|
26 |
+
return false;
|
27 |
+
}
|
28 |
$data = array();
|
29 |
$report = $this->get_report( 'overview', $this->report_start_from, $this->report_end_to );
|
30 |
$data['returning'] = isset( $report['data']['newvsreturn']['returning'] ) ? $report['data']['newvsreturn']['returning'] : 0;
|
includes/admin/notifications/notification-traffic-dropping.php
CHANGED
@@ -20,6 +20,11 @@ final class ExactMetrics_Notification_Traffic_Dropping extends ExactMetrics_Noti
|
|
20 |
* @since 7.12.3
|
21 |
*/
|
22 |
public function prepare_notification_data( $notification ) {
|
|
|
|
|
|
|
|
|
|
|
23 |
$data = array();
|
24 |
$report = $this->get_report();
|
25 |
$data['prev_sessions_difference'] = isset( $report['data']['infobox']['sessions']['prev'] ) ? $report['data']['infobox']['sessions']['prev'] : 0;
|
20 |
* @since 7.12.3
|
21 |
*/
|
22 |
public function prepare_notification_data( $notification ) {
|
23 |
+
if ( ! exactmetrics_is_pro_version() ) {
|
24 |
+
// Improve performance for lite users by disabling external API calls they can’t access.
|
25 |
+
// Since lite users can’t access this feature return early.
|
26 |
+
return false;
|
27 |
+
}
|
28 |
$data = array();
|
29 |
$report = $this->get_report();
|
30 |
$data['prev_sessions_difference'] = isset( $report['data']['infobox']['sessions']['prev'] ) ? $report['data']['infobox']['sessions']['prev'] : 0;
|
includes/admin/notifications/notification-visitors.php
CHANGED
@@ -26,6 +26,11 @@ final class ExactMetrics_Notification_Visitors extends ExactMetrics_Notification
|
|
26 |
* @since 7.12.3
|
27 |
*/
|
28 |
public function prepare_notification_data( $notification ) {
|
|
|
|
|
|
|
|
|
|
|
29 |
$report = $this->get_report();
|
30 |
|
31 |
if ( ! is_array( $report ) || empty( $report ) ) {
|
26 |
* @since 7.12.3
|
27 |
*/
|
28 |
public function prepare_notification_data( $notification ) {
|
29 |
+
if ( ! exactmetrics_is_pro_version() ) {
|
30 |
+
// Improve performance for lite users by disabling external API calls they can’t access.
|
31 |
+
// Since lite users can’t access this feature return early.
|
32 |
+
return false;
|
33 |
+
}
|
34 |
$report = $this->get_report();
|
35 |
|
36 |
if ( ! is_array( $report ) || empty( $report ) ) {
|
includes/admin/reports/abstract-report.php
CHANGED
@@ -22,6 +22,7 @@ class ExactMetrics_Report {
|
|
22 |
public $class;
|
23 |
public $name;
|
24 |
public $version = '1.0.0';
|
|
|
25 |
|
26 |
/**
|
27 |
* Primary class constructor.
|
@@ -218,6 +219,13 @@ class ExactMetrics_Report {
|
|
218 |
|
219 |
$api = new ExactMetrics_API_Request( 'analytics/reports/' . $this->name . '/', $api_options, 'GET' );
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
$additional_data = $this->additional_data();
|
222 |
|
223 |
if ( ! empty( $additional_data ) ) {
|
@@ -438,6 +446,17 @@ class ExactMetrics_Report {
|
|
438 |
public function prepare_report_data( $data ) {
|
439 |
return $data;
|
440 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
441 |
}
|
442 |
|
443 |
if ( ! class_exists( 'ExactMetricsDateTime' ) ) {
|
22 |
public $class;
|
23 |
public $name;
|
24 |
public $version = '1.0.0';
|
25 |
+
public $source = 'reports';
|
26 |
|
27 |
/**
|
28 |
* Primary class constructor.
|
219 |
|
220 |
$api = new ExactMetrics_API_Request( 'analytics/reports/' . $this->name . '/', $api_options, 'GET' );
|
221 |
|
222 |
+
// Use a report source indicator for requests.
|
223 |
+
if ( ! empty( $this->source ) ) {
|
224 |
+
$api->set_additional_data( array(
|
225 |
+
'source' => $this->source,
|
226 |
+
) );
|
227 |
+
}
|
228 |
+
|
229 |
$additional_data = $this->additional_data();
|
230 |
|
231 |
if ( ! empty( $additional_data ) ) {
|
446 |
public function prepare_report_data( $data ) {
|
447 |
return $data;
|
448 |
}
|
449 |
+
|
450 |
+
/**
|
451 |
+
* Set a report source to be sent with the request.
|
452 |
+
*
|
453 |
+
* @param string $source The source where the report is called from, defaults to reports.
|
454 |
+
*/
|
455 |
+
public function set_report_source( $source ) {
|
456 |
+
if ( ! empty( $source ) && is_string( $source ) ) {
|
457 |
+
$this->source = $source;
|
458 |
+
}
|
459 |
+
}
|
460 |
}
|
461 |
|
462 |
if ( ! class_exists( 'ExactMetricsDateTime' ) ) {
|
includes/em-install.php
CHANGED
@@ -85,6 +85,10 @@ class ExactMetrics_Install {
|
|
85 |
$this->v630_upgrades();
|
86 |
}
|
87 |
|
|
|
|
|
|
|
|
|
88 |
// Do not use. See exactmetrics_after_install_routine comment below.
|
89 |
do_action( 'exactmetrics_after_existing_upgrade_routine', $version );
|
90 |
$version = get_option( 'exactmetrics_current_version', $version );
|
@@ -627,4 +631,12 @@ class ExactMetrics_Install {
|
|
627 |
);
|
628 |
}
|
629 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
630 |
}
|
85 |
$this->v630_upgrades();
|
86 |
}
|
87 |
|
88 |
+
if ( version_compare( $version, '6.3.1', '<' ) ) {
|
89 |
+
$this->v631_upgrades();
|
90 |
+
}
|
91 |
+
|
92 |
// Do not use. See exactmetrics_after_install_routine comment below.
|
93 |
do_action( 'exactmetrics_after_existing_upgrade_routine', $version );
|
94 |
$version = get_option( 'exactmetrics_current_version', $version );
|
631 |
);
|
632 |
}
|
633 |
}
|
634 |
+
|
635 |
+
/**
|
636 |
+
* Upgrade routine for version 6.3.1
|
637 |
+
*/
|
638 |
+
public function v631_upgrades() {
|
639 |
+
// Delete transient for GA data with wrong expiration date.
|
640 |
+
delete_transient( 'exactmetrics_popular_posts_ga_data' );
|
641 |
+
}
|
642 |
}
|
languages/google-analytics-dashboard-for-wp.pot
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the same license as the Google Analytics Dashboard for WP (GADWP) plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Google Analytics Dashboard for WP (GADWP) 6.3.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
|
7 |
"Last-Translator: ExactMetrics Team <support@exactmetrics.com>\n"
|
8 |
"Language-Team: ExactMetrics Team <support@exactmetrics.com>\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-11-
|
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"
|
@@ -75,7 +75,7 @@ msgid "Theme:"
|
|
75 |
msgstr ""
|
76 |
|
77 |
#: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:258
|
78 |
-
#: languages/vue.php:
|
79 |
msgid "Theme Preview"
|
80 |
msgstr ""
|
81 |
|
@@ -228,7 +228,7 @@ msgstr ""
|
|
228 |
#: lite/includes/admin/wp-site-health.php:372
|
229 |
#: lite/includes/admin/wp-site-health.php:398
|
230 |
#: lite/includes/admin/wp-site-health.php:425
|
231 |
-
#: languages/vue.php:
|
232 |
msgid "View Addons"
|
233 |
msgstr ""
|
234 |
|
@@ -379,12 +379,12 @@ msgid "You are not allowed to install plugins"
|
|
379 |
msgstr ""
|
380 |
|
381 |
#: lite/includes/admin/reports/report-queries.php:22
|
382 |
-
#: languages/vue.php:
|
383 |
msgid "Search Console"
|
384 |
msgstr ""
|
385 |
|
386 |
#: lite/includes/admin/reports/report-ecommerce.php:22
|
387 |
-
#: languages/vue.php:
|
388 |
msgid "eCommerce"
|
389 |
msgstr ""
|
390 |
|
@@ -397,17 +397,17 @@ msgid "Real Time"
|
|
397 |
msgstr ""
|
398 |
|
399 |
#: lite/includes/admin/reports/report-publisher.php:22
|
400 |
-
#: languages/vue.php:
|
401 |
msgid "Publishers"
|
402 |
msgstr ""
|
403 |
|
404 |
#: lite/includes/admin/reports/report-dimensions.php:22
|
405 |
-
#: languages/vue.php:
|
406 |
msgid "Dimensions"
|
407 |
msgstr ""
|
408 |
|
409 |
#: lite/includes/admin/reports/report-forms.php:22
|
410 |
-
#: languages/vue.php:
|
411 |
msgid "Forms"
|
412 |
msgstr ""
|
413 |
|
@@ -665,7 +665,7 @@ msgid "Question"
|
|
665 |
msgstr ""
|
666 |
|
667 |
#: includes/gutenberg/headline-tool/headline-tool.php:302
|
668 |
-
#: languages/vue.php:
|
669 |
msgid "General"
|
670 |
msgstr ""
|
671 |
|
@@ -2947,7 +2947,7 @@ msgstr ""
|
|
2947 |
msgid "%s Days"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
-
#: includes/admin/notification-event.php:
|
2951 |
#: includes/admin/routes.php:614
|
2952 |
#: includes/admin/routes.php:948
|
2953 |
msgid "You don't have permission to view ExactMetrics reports."
|
@@ -3173,7 +3173,7 @@ msgstr ""
|
|
3173 |
#: includes/admin/admin.php:34
|
3174 |
#: includes/admin/admin.php:42
|
3175 |
#: includes/admin/admin.php:188
|
3176 |
-
#: languages/vue.php:
|
3177 |
msgid "Settings"
|
3178 |
msgstr ""
|
3179 |
|
@@ -3189,7 +3189,7 @@ msgstr ""
|
|
3189 |
|
3190 |
#: includes/admin/admin.php:39
|
3191 |
#: includes/admin/admin.php:98
|
3192 |
-
#: languages/vue.php:
|
3193 |
msgid "Reports"
|
3194 |
msgstr ""
|
3195 |
|
@@ -3227,7 +3227,7 @@ msgstr ""
|
|
3227 |
|
3228 |
#: includes/admin/admin.php:63
|
3229 |
#: includes/admin/admin.php:106
|
3230 |
-
#: languages/vue.php:
|
3231 |
msgid "About Us"
|
3232 |
msgstr ""
|
3233 |
|
@@ -3254,13 +3254,13 @@ msgstr ""
|
|
3254 |
#: includes/admin/notifications/notification-upgrade-for-email-summaries.php:33
|
3255 |
#: includes/admin/notifications/notification-upgrade-for-search-console.php:33
|
3256 |
#: includes/admin/notifications/notification-upgrade-for-form-conversion.php:33
|
3257 |
-
#: includes/admin/reports/abstract-report.php:
|
3258 |
msgid "Get ExactMetrics Pro"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
#: includes/admin/admin.php:178
|
3262 |
#: includes/admin/admin.php:181
|
3263 |
-
#: languages/vue.php:
|
3264 |
msgid "Support"
|
3265 |
msgstr ""
|
3266 |
|
@@ -3270,28 +3270,28 @@ msgid "Please rate %1$sExactMetrics%2$s on %3$s %4$sWordPress.org%5$s to help us
|
|
3270 |
msgstr ""
|
3271 |
|
3272 |
#: includes/admin/admin.php:284
|
3273 |
-
#: languages/vue.php:
|
3274 |
msgid "Please Setup Website Analytics to See Audience Insights"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
#: includes/admin/admin.php:285
|
3278 |
-
#: languages/vue.php:
|
3279 |
msgid "Connect ExactMetrics and Setup Website Analytics"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
#: includes/admin/admin.php:287
|
3283 |
-
#: includes/admin/notifications/notification-mobile-device.php:
|
3284 |
-
#: includes/admin/notifications/notification-returning-visitors.php:
|
3285 |
-
#: includes/admin/notifications/notification-traffic-dropping.php:
|
3286 |
-
#: includes/admin/notifications/notification-bounce-rate.php:
|
3287 |
#: includes/admin/notifications/notification-headline-analyzer.php:30
|
3288 |
-
#: includes/admin/notifications/notification-audience.php:
|
3289 |
-
#: languages/vue.php:
|
3290 |
msgid "Learn More"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
#: includes/admin/admin.php:289
|
3294 |
-
#: languages/vue.php:
|
3295 |
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."
|
3296 |
msgstr ""
|
3297 |
|
@@ -3302,17 +3302,17 @@ msgstr ""
|
|
3302 |
|
3303 |
#. Translators: Adds a link to the license renewal.
|
3304 |
#: includes/admin/admin.php:310
|
3305 |
-
#: languages/vue.php:
|
3306 |
msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
#: includes/admin/admin.php:312
|
3310 |
-
#: languages/vue.php:
|
3311 |
msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
|
3312 |
msgstr ""
|
3313 |
|
3314 |
#: includes/admin/admin.php:314
|
3315 |
-
#: languages/vue.php:
|
3316 |
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."
|
3317 |
msgstr ""
|
3318 |
|
@@ -3407,31 +3407,31 @@ msgid "%sGoogle Optimize%s is a free A/B testing and personalization product by
|
|
3407 |
msgstr ""
|
3408 |
|
3409 |
#. Translators: Mobile device notification title
|
3410 |
-
#: includes/admin/notifications/notification-mobile-device.php:
|
3411 |
msgid "Traffic from Mobile Devices is %s%%"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
#. Translators: Mobile device notification content
|
3415 |
-
#: includes/admin/notifications/notification-mobile-device.php:
|
3416 |
msgid "Traffic from mobile devices is considerably lower on your site compared to desktop devices. This could be an indicator that your site is not optimised for mobile devices.<br><br>Take a look now at %show your site looks%s on mobile and make sure all your content can be accessed correctly."
|
3417 |
msgstr ""
|
3418 |
|
3419 |
-
#: includes/admin/notifications/notification-mobile-device.php:
|
3420 |
-
#: includes/admin/notifications/notification-returning-visitors.php:
|
3421 |
-
#: includes/admin/notifications/notification-traffic-dropping.php:
|
3422 |
-
#: includes/admin/notifications/notification-visitors.php:
|
3423 |
-
#: includes/admin/notifications/notification-bounce-rate.php:
|
3424 |
-
#: includes/admin/notifications/notification-audience.php:
|
3425 |
msgid "View Report"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
#. Translators: Returning visitors notification title
|
3429 |
-
#: includes/admin/notifications/notification-returning-visitors.php:
|
3430 |
msgid "Only %s%% of your visitors return to your site"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
#. Translators: Returning visitors notification content
|
3434 |
-
#: includes/admin/notifications/notification-returning-visitors.php:
|
3435 |
msgid "For any website, returning visitors are important because they indicate how successful your marketing campaigns are, who are your loyal customers, and how powerful your brand is. %sIn this article%s, we’ll show you 7 proven ways to increase your returning visitor rate."
|
3436 |
msgstr ""
|
3437 |
|
@@ -3444,24 +3444,24 @@ msgstr ""
|
|
3444 |
msgid "Wouldn’t it be easy if you could get your website’s performance report in your email inbox every week? With our new feature, Email Summaries, you can now view all your important stats in a simple report that’s delivered straight to your inbox. <br><br>You get an overview of your site's performance without logging in to WordPress or going through different Analytics reports. %sUpgrade to ExactMetrics Pro%s to enable the Email Summaries feature."
|
3445 |
msgstr ""
|
3446 |
|
3447 |
-
#: includes/admin/notifications/notification-traffic-dropping.php:
|
3448 |
msgid "Your Website Traffic Is Dropping"
|
3449 |
msgstr ""
|
3450 |
|
3451 |
#. Translators: Traffic dropping notification content
|
3452 |
-
#: includes/admin/notifications/notification-traffic-dropping.php:
|
3453 |
msgid "Your website traffic is decreasing and that’s a reason to take action now. Less traffic means less opportunities to make your brand known, make relationships and ultimately sell your service or product. <br><br>Follow the marketing hacks of %sthis article%s to start growing your traffic again."
|
3454 |
msgstr ""
|
3455 |
|
3456 |
#. Translators: visitors notification title
|
3457 |
#. Translators: Number of visitors.
|
3458 |
-
#: includes/admin/notifications/notification-visitors.php:
|
3459 |
-
#: languages/vue.php:
|
3460 |
msgid "See how %s visitors found your site!"
|
3461 |
msgstr ""
|
3462 |
|
3463 |
#. Translators: visitors notification content
|
3464 |
-
#: includes/admin/notifications/notification-visitors.php:
|
3465 |
msgid "Your website has been visited by %s visitors in the past 30 days. Click the button below to view the full analytics report."
|
3466 |
msgstr ""
|
3467 |
|
@@ -3496,12 +3496,12 @@ msgstr ""
|
|
3496 |
msgid "Forms are one of the most important points of interaction on your website. When a visitor fills out a form on your site, they’re taking the next step in their customer journey. That’s why it’s so crucial that your WordPress forms are optimized for conversions. Upgrade to %sExactMetrics Pro%s to track %sform conversions in Google Analytics.%s"
|
3497 |
msgstr ""
|
3498 |
|
3499 |
-
#: includes/admin/notifications/notification-bounce-rate.php:
|
3500 |
msgid "Your website bounce rate is higher than 70%"
|
3501 |
msgstr ""
|
3502 |
|
3503 |
#. Translators: Bounce rate notification content
|
3504 |
-
#: includes/admin/notifications/notification-bounce-rate.php:
|
3505 |
msgid "Your website bounce rate is %s. High bounce rates can hurt your site’s conversions rates. A high bounce rate might mean that people aren’t finding what they’re looking for on your site. %sHere%s are some points to remember and steps to follow to get your bounce rates back to manageable levels."
|
3506 |
msgstr ""
|
3507 |
|
@@ -3515,12 +3515,12 @@ msgid "Did you know that 36%% of SEO experts think the headline is the most impo
|
|
3515 |
msgstr ""
|
3516 |
|
3517 |
#. Translators: Audience notification title
|
3518 |
-
#: includes/admin/notifications/notification-audience.php:
|
3519 |
msgid "%s%% of your Audience is from %s"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
#. Translators: Audience notification content
|
3523 |
-
#: includes/admin/notifications/notification-audience.php:
|
3524 |
msgid "Is your site properly translated? By adding translated content specific to your audience you could gain big boosts in pageviews, time spent on page and a reduced bounce rate.<br><br>If you need help choosing a translation plugin to get you started take a look at %sthis article%s for the best options available."
|
3525 |
msgstr ""
|
3526 |
|
@@ -3547,108 +3547,108 @@ msgid "By upgrading to ExactMetrics Pro you get access to additional reports rig
|
|
3547 |
msgstr ""
|
3548 |
|
3549 |
#: includes/admin/notifications/notification-upgrade-to-pro.php:34
|
3550 |
-
#: languages/vue.php:
|
3551 |
msgid "Upgrade to Pro"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
#: includes/admin/reports/overview.php:34
|
3555 |
-
#: languages/vue.php:
|
3556 |
msgid "Overview"
|
3557 |
msgstr ""
|
3558 |
|
3559 |
-
#: includes/admin/reports/abstract-report.php:
|
3560 |
msgid "Access denied"
|
3561 |
msgstr ""
|
3562 |
|
3563 |
#. Translators: Placeholders add a link to the settings panel.
|
3564 |
-
#: includes/admin/reports/abstract-report.php:
|
3565 |
msgid "Please %1$senable the dashboard%2$s to see report data."
|
3566 |
msgstr ""
|
3567 |
|
3568 |
-
#: includes/admin/reports/abstract-report.php:
|
3569 |
msgid "The dashboard is disabled."
|
3570 |
msgstr ""
|
3571 |
|
3572 |
#. Translators: Placeholders add a link to the settings panel.
|
3573 |
-
#: includes/admin/reports/abstract-report.php:
|
3574 |
msgid "You do not have an active license. Please %1$scheck your license configuration.%2$s"
|
3575 |
msgstr ""
|
3576 |
|
3577 |
#. Translators: Placeholders add a link to the settings panel.
|
3578 |
-
#: includes/admin/reports/abstract-report.php:
|
3579 |
msgid "Please %1$sauthenticate %2$swith Google Analytics to allow the plugin to fetch data."
|
3580 |
msgstr ""
|
3581 |
|
3582 |
-
#: includes/admin/reports/abstract-report.php:
|
3583 |
msgid "The Google oAuth authentication needs to be re-authenticated to view data."
|
3584 |
msgstr ""
|
3585 |
|
3586 |
-
#: includes/admin/reports/abstract-report.php:
|
3587 |
msgid "No data found"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
-
#: includes/admin/reports/abstract-report.php:
|
3591 |
msgid "Invalid date range."
|
3592 |
msgstr ""
|
3593 |
|
3594 |
-
#: includes/admin/reports/abstract-report.php:
|
3595 |
msgid "You must authenticate with ExactMetrics to use reports."
|
3596 |
msgstr ""
|
3597 |
|
3598 |
#. Translators: Placeholders add the license level and the report title.
|
3599 |
-
#: includes/admin/reports/abstract-report.php:
|
3600 |
msgid "You currently have a %1$s level license, but this report requires at least a %2$s level license to view the %3$s. Please upgrade to view this report."
|
3601 |
msgstr ""
|
3602 |
|
3603 |
-
#: includes/admin/reports/abstract-report.php:
|
3604 |
msgid "Ready to Get Analytics Super-Powers?"
|
3605 |
msgstr ""
|
3606 |
|
3607 |
-
#: includes/admin/reports/abstract-report.php:
|
3608 |
msgid "(And Crush Your Competition?)"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
#. Translators: License level and smiley.
|
3612 |
-
#: includes/admin/reports/abstract-report.php:
|
3613 |
msgid "Hey there! It looks like you've got the %1$s license installed on your site. That's awesome! %s"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
#. Translators: Placeholders add the report title and license level.
|
3617 |
-
#: includes/admin/reports/abstract-report.php:
|
3618 |
msgid "Do you want to access to %1$s reporting right now%2$s in your WordPress Dashboard? That comes with the %3$s level%4$s of our paid packages. You'll need to upgrade your license to get instant access."
|
3619 |
msgstr ""
|
3620 |
|
3621 |
#. Translators: Placeholdes add links to the account area and a guide.
|
3622 |
-
#: includes/admin/reports/abstract-report.php:
|
3623 |
msgid "It's easy! To upgrade, navigate to %1$sMy Account%2$s on ExactMetrics.com, go to the licenses tab, and click upgrade. We also have a %3$sstep by step guide%4$s with pictures of this process."
|
3624 |
msgstr ""
|
3625 |
|
3626 |
-
#: includes/admin/reports/abstract-report.php:
|
3627 |
-
#: includes/admin/reports/abstract-report.php:
|
3628 |
msgid "If you have any questions, don't hesitate to reach out. We're here to help."
|
3629 |
msgstr ""
|
3630 |
|
3631 |
#. Translators: Placeholder adds a smiley face.
|
3632 |
-
#: includes/admin/reports/abstract-report.php:
|
3633 |
msgid "Hey there! %s It looks like you've got the free version of ExactMetrics installed on your site. That's awesome!"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
#. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
|
3637 |
-
#: includes/admin/reports/abstract-report.php:
|
3638 |
msgid "Do you you want to access to %1$s reporting right now%2$s in your WordPress Dashboard? That comes with %3$s level%4$s of our paid packages. To get instant access, you'll want to buy a ExactMetrics license, which also gives you access to powerful addons, expanded reporting (including the ability to use custom date ranges), comprehensive tracking features (like UserID tracking) and access to our world-class support team."
|
3639 |
msgstr ""
|
3640 |
|
3641 |
#. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
|
3642 |
-
#: includes/admin/reports/abstract-report.php:
|
3643 |
msgid "Upgrading is easy! To upgrade, navigate to %1$ssour pricing page%2$s, purchase the required license, and then follow the %3$sinstructions in the email receipt%4$s to upgrade. It only takes a few minutes to unlock the most powerful, yet easy to use analytics tracking system for WordPress."
|
3644 |
msgstr ""
|
3645 |
|
3646 |
-
#: includes/admin/reports/abstract-report.php:
|
3647 |
-
#: languages/vue.php:
|
3648 |
msgid "Upgrade Now"
|
3649 |
msgstr ""
|
3650 |
|
3651 |
-
#: includes/admin/reports/abstract-report.php:
|
3652 |
msgid "Please ask your webmaster to enable this addon."
|
3653 |
msgstr ""
|
3654 |
|
@@ -4839,7 +4839,7 @@ msgid "Theme"
|
|
4839 |
msgstr ""
|
4840 |
|
4841 |
#: languages/gutenberg.php:77
|
4842 |
-
#: languages/vue.php:
|
4843 |
msgid "Inline Popular Posts"
|
4844 |
msgstr ""
|
4845 |
|
@@ -4876,7 +4876,7 @@ msgid "Comment Color"
|
|
4876 |
msgstr ""
|
4877 |
|
4878 |
#: languages/gutenberg.php:107
|
4879 |
-
#: languages/vue.php:
|
4880 |
msgid "Wide-Layout Options"
|
4881 |
msgstr ""
|
4882 |
|
@@ -4885,12 +4885,12 @@ msgid "Choose Layout"
|
|
4885 |
msgstr ""
|
4886 |
|
4887 |
#: languages/gutenberg.php:113
|
4888 |
-
#: languages/vue.php:
|
4889 |
msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
|
4890 |
msgstr ""
|
4891 |
|
4892 |
#: languages/gutenberg.php:116
|
4893 |
-
#: languages/vue.php:
|
4894 |
msgid "Post Count"
|
4895 |
msgstr ""
|
4896 |
|
@@ -4899,7 +4899,7 @@ msgid "Number of posts displayed."
|
|
4899 |
msgstr ""
|
4900 |
|
4901 |
#: languages/gutenberg.php:122
|
4902 |
-
#: languages/vue.php:
|
4903 |
msgid "Display Options"
|
4904 |
msgstr ""
|
4905 |
|
@@ -4912,7 +4912,7 @@ msgid "Display Widget Title"
|
|
4912 |
msgstr ""
|
4913 |
|
4914 |
#: languages/gutenberg.php:131
|
4915 |
-
#: languages/vue.php:
|
4916 |
msgid "Widget Title"
|
4917 |
msgstr ""
|
4918 |
|
@@ -4921,17 +4921,17 @@ msgid "Only Show Posts From These Categories"
|
|
4921 |
msgstr ""
|
4922 |
|
4923 |
#: languages/gutenberg.php:137
|
4924 |
-
#: languages/vue.php:
|
4925 |
msgid "Display Author"
|
4926 |
msgstr ""
|
4927 |
|
4928 |
#: languages/gutenberg.php:140
|
4929 |
-
#: languages/vue.php:
|
4930 |
msgid "Display Date"
|
4931 |
msgstr ""
|
4932 |
|
4933 |
#: languages/gutenberg.php:143
|
4934 |
-
#: languages/vue.php:
|
4935 |
msgid "Display Comments"
|
4936 |
msgstr ""
|
4937 |
|
@@ -5152,7 +5152,7 @@ msgid "Goal: "
|
|
5152 |
msgstr ""
|
5153 |
|
5154 |
#: languages/gutenberg.php:312
|
5155 |
-
#: languages/vue.php:
|
5156 |
msgid "Headline Analyzer"
|
5157 |
msgstr ""
|
5158 |
|
@@ -5172,3391 +5172,3391 @@ msgstr ""
|
|
5172 |
msgid "2"
|
5173 |
msgstr ""
|
5174 |
|
5175 |
-
#: languages/vue.php:
|
5176 |
msgid "Error"
|
5177 |
msgstr ""
|
5178 |
|
5179 |
-
#: languages/vue.php:
|
5180 |
msgid "Please try again."
|
5181 |
msgstr ""
|
5182 |
|
5183 |
-
#: languages/vue.php:
|
5184 |
-
msgid "
|
|
|
|
|
|
|
|
|
5185 |
msgstr ""
|
5186 |
|
5187 |
#: languages/vue.php:24
|
5188 |
-
msgid "
|
5189 |
msgstr ""
|
5190 |
|
5191 |
#: languages/vue.php:27
|
5192 |
-
msgid "
|
5193 |
msgstr ""
|
5194 |
|
5195 |
#: languages/vue.php:30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5196 |
msgid "Settings Updated"
|
5197 |
msgstr ""
|
5198 |
|
5199 |
#. Translators: Add a link to the onboarding wizard.
|
5200 |
-
#: languages/vue.php:
|
5201 |
msgid "You need to %1$sconnect ExactMetrics%2$s first"
|
5202 |
msgstr ""
|
5203 |
|
5204 |
-
#: languages/vue.php:
|
5205 |
msgid "Could Not Save Changes"
|
5206 |
msgstr ""
|
5207 |
|
5208 |
-
#: languages/vue.php:
|
5209 |
msgid "Loading new report data"
|
5210 |
msgstr ""
|
5211 |
|
5212 |
#. Translators: Adds an arrow icon.
|
5213 |
-
#: languages/vue.php:
|
5214 |
msgid "Continue %s"
|
5215 |
msgstr ""
|
5216 |
|
5217 |
-
#: languages/vue.php:
|
5218 |
msgid "Unlock the Publishers Report and Focus on the Content that Matters"
|
5219 |
msgstr ""
|
5220 |
|
5221 |
-
#: languages/vue.php:
|
5222 |
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."
|
5223 |
msgstr ""
|
5224 |
|
5225 |
-
#: languages/vue.php:
|
5226 |
msgid "Unlock the Publishers Report and Focus on the Content That Matters"
|
5227 |
msgstr ""
|
5228 |
|
5229 |
-
#: languages/vue.php:
|
5230 |
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."
|
5231 |
msgstr ""
|
5232 |
|
5233 |
-
#: languages/vue.php:
|
5234 |
msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
|
5235 |
msgstr ""
|
5236 |
|
5237 |
-
#: languages/vue.php:
|
5238 |
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."
|
5239 |
msgstr ""
|
5240 |
|
5241 |
-
#: languages/vue.php:
|
5242 |
msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
|
5243 |
msgstr ""
|
5244 |
|
5245 |
-
#: languages/vue.php:
|
5246 |
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."
|
5247 |
msgstr ""
|
5248 |
|
5249 |
-
#: languages/vue.php:
|
5250 |
msgid "Unlock the Forms Report and Improve Conversions"
|
5251 |
msgstr ""
|
5252 |
|
5253 |
-
#: languages/vue.php:
|
5254 |
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."
|
5255 |
msgstr ""
|
5256 |
|
5257 |
-
#: languages/vue.php:
|
5258 |
msgid "Unlock the Search Console Report and See How People Find Your Website"
|
5259 |
msgstr ""
|
5260 |
|
5261 |
-
#: languages/vue.php:
|
5262 |
msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
|
5263 |
msgstr ""
|
5264 |
|
5265 |
-
#: languages/vue.php:
|
5266 |
msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
|
5267 |
msgstr ""
|
5268 |
|
5269 |
-
#: languages/vue.php:
|
5270 |
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."
|
5271 |
msgstr ""
|
5272 |
|
5273 |
-
#: languages/vue.php:
|
5274 |
-
msgid "
|
5275 |
-
msgstr ""
|
5276 |
-
|
5277 |
-
#: languages/vue.php:95
|
5278 |
-
msgid "Yesterday"
|
5279 |
-
msgstr ""
|
5280 |
-
|
5281 |
-
#: languages/vue.php:98
|
5282 |
-
msgid "Last Week"
|
5283 |
-
msgstr ""
|
5284 |
-
|
5285 |
-
#: languages/vue.php:101
|
5286 |
-
msgid "Last Month"
|
5287 |
msgstr ""
|
5288 |
|
5289 |
-
#: languages/vue.php:
|
5290 |
-
msgid "
|
5291 |
msgstr ""
|
5292 |
|
5293 |
-
|
5294 |
-
|
|
|
5295 |
msgstr ""
|
5296 |
|
5297 |
-
|
5298 |
-
|
|
|
5299 |
msgstr ""
|
5300 |
|
5301 |
-
#: languages/vue.php:
|
5302 |
-
msgid "
|
5303 |
msgstr ""
|
5304 |
|
5305 |
-
|
5306 |
-
|
|
|
5307 |
msgstr ""
|
5308 |
|
5309 |
-
|
5310 |
-
|
5311 |
-
msgid "Get Started %s"
|
5312 |
msgstr ""
|
5313 |
|
5314 |
-
#: languages/vue.php:
|
5315 |
-
msgid "
|
5316 |
msgstr ""
|
5317 |
|
5318 |
-
#. Translators:
|
5319 |
-
#: languages/vue.php:
|
5320 |
-
msgid "
|
5321 |
msgstr ""
|
5322 |
|
5323 |
-
#: languages/vue.php:
|
5324 |
-
msgid "
|
5325 |
msgstr ""
|
5326 |
|
5327 |
-
#: languages/vue.php:
|
5328 |
msgid "Getting Started"
|
5329 |
msgstr ""
|
5330 |
|
5331 |
-
#: languages/vue.php:
|
5332 |
msgid "Lite vs Pro"
|
5333 |
msgstr ""
|
5334 |
|
5335 |
-
|
5336 |
-
|
5337 |
-
|
5338 |
-
|
5339 |
-
#: languages/vue.php:149
|
5340 |
-
msgid "PrettyLinks Integration"
|
5341 |
-
msgstr ""
|
5342 |
-
|
5343 |
-
#: languages/vue.php:155
|
5344 |
-
msgid "Popular Posts Widget"
|
5345 |
-
msgstr ""
|
5346 |
-
|
5347 |
-
#: languages/vue.php:158
|
5348 |
-
msgid "Popular Products"
|
5349 |
-
msgstr ""
|
5350 |
-
|
5351 |
-
#: languages/vue.php:167
|
5352 |
-
msgid "Engagement"
|
5353 |
msgstr ""
|
5354 |
|
5355 |
-
#: languages/vue.php:
|
5356 |
-
msgid "
|
5357 |
msgstr ""
|
5358 |
|
5359 |
-
#: languages/vue.php:
|
5360 |
-
msgid "
|
5361 |
msgstr ""
|
5362 |
|
5363 |
-
#: languages/vue.php:
|
5364 |
-
msgid "
|
5365 |
msgstr ""
|
5366 |
|
5367 |
-
#: languages/vue.php:
|
5368 |
-
msgid "
|
5369 |
msgstr ""
|
5370 |
|
5371 |
-
|
5372 |
-
|
5373 |
-
msgid "Can't load report data. Error: %1$s, %2$s"
|
5374 |
msgstr ""
|
5375 |
|
5376 |
-
#: languages/vue.php:
|
5377 |
-
msgid "
|
5378 |
msgstr ""
|
5379 |
|
5380 |
-
#: languages/vue.php:
|
5381 |
msgid "ExactMetrics encountered an error loading your report data"
|
5382 |
msgstr ""
|
5383 |
|
5384 |
-
#: languages/vue.php:
|
5385 |
msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
|
5386 |
msgstr ""
|
5387 |
|
5388 |
-
#: languages/vue.php:
|
5389 |
-
#: languages/vue.php:
|
5390 |
msgid "Reconnect ExactMetrics"
|
5391 |
msgstr ""
|
5392 |
|
5393 |
-
#: languages/vue.php:
|
5394 |
msgid "Re-Authenticating"
|
5395 |
msgstr ""
|
5396 |
|
5397 |
-
#: languages/vue.php:
|
5398 |
msgid "Ok"
|
5399 |
msgstr ""
|
5400 |
|
5401 |
-
#: languages/vue.php:
|
5402 |
-
msgid "
|
5403 |
-
msgstr ""
|
5404 |
-
|
5405 |
-
#: languages/vue.php:210
|
5406 |
-
msgid "Inbox"
|
5407 |
-
msgstr ""
|
5408 |
-
|
5409 |
-
#: languages/vue.php:213
|
5410 |
-
msgid "Back to Inbox"
|
5411 |
msgstr ""
|
5412 |
|
5413 |
-
#: languages/vue.php:
|
5414 |
-
msgid "
|
5415 |
msgstr ""
|
5416 |
|
5417 |
-
#: languages/vue.php:
|
5418 |
-
msgid "
|
5419 |
msgstr ""
|
5420 |
|
5421 |
-
#: languages/vue.php:
|
5422 |
-
msgid "
|
5423 |
msgstr ""
|
5424 |
|
5425 |
-
#: languages/vue.php:
|
5426 |
-
msgid "
|
5427 |
msgstr ""
|
5428 |
|
5429 |
-
#: languages/vue.php:
|
5430 |
-
msgid "
|
5431 |
msgstr ""
|
5432 |
|
5433 |
-
#: languages/vue.php:
|
5434 |
msgid "Dimensions Report"
|
5435 |
msgstr ""
|
5436 |
|
5437 |
-
#: languages/vue.php:
|
5438 |
-
|
|
|
5439 |
msgstr ""
|
5440 |
|
5441 |
-
#: languages/vue.php:
|
5442 |
-
msgid "
|
5443 |
msgstr ""
|
5444 |
|
5445 |
-
#: languages/vue.php:
|
5446 |
msgid "Go back"
|
5447 |
msgstr ""
|
5448 |
|
5449 |
-
|
5450 |
-
|
5451 |
-
msgid "Recommended Plugin: %s"
|
5452 |
-
msgstr ""
|
5453 |
-
|
5454 |
-
#: languages/vue.php:260
|
5455 |
-
msgid "Install"
|
5456 |
-
msgstr ""
|
5457 |
-
|
5458 |
-
#: languages/vue.php:263
|
5459 |
-
msgid "Activate"
|
5460 |
msgstr ""
|
5461 |
|
5462 |
-
#: languages/vue.php:
|
5463 |
-
|
5464 |
-
msgid "ExactMetrics Addons"
|
5465 |
msgstr ""
|
5466 |
|
5467 |
-
|
5468 |
-
|
|
|
5469 |
msgstr ""
|
5470 |
|
5471 |
-
|
5472 |
-
|
|
|
5473 |
msgstr ""
|
5474 |
|
5475 |
-
|
5476 |
-
|
|
|
5477 |
msgstr ""
|
5478 |
|
5479 |
-
|
5480 |
-
|
|
|
5481 |
msgstr ""
|
5482 |
|
5483 |
-
#: languages/vue.php:
|
5484 |
-
msgid "
|
5485 |
msgstr ""
|
5486 |
|
5487 |
-
#: languages/vue.php:
|
5488 |
-
msgid "
|
5489 |
msgstr ""
|
5490 |
|
5491 |
-
#: languages/vue.php:
|
5492 |
-
msgid "
|
5493 |
msgstr ""
|
5494 |
|
5495 |
-
#: languages/vue.php:
|
5496 |
-
msgid "
|
5497 |
msgstr ""
|
5498 |
|
5499 |
-
#: languages/vue.php:
|
5500 |
-
msgid "
|
5501 |
msgstr ""
|
5502 |
|
5503 |
-
#: languages/vue.php:
|
5504 |
-
msgid "
|
5505 |
msgstr ""
|
5506 |
|
5507 |
-
|
5508 |
-
|
5509 |
-
msgid "Step %1$s of %2$s"
|
5510 |
msgstr ""
|
5511 |
|
5512 |
#: languages/vue.php:309
|
5513 |
-
msgid "
|
5514 |
-
msgstr ""
|
5515 |
-
|
5516 |
-
#: languages/vue.php:312
|
5517 |
-
msgid "This list shows how many days from first visit it took users to purchase products from your site."
|
5518 |
msgstr ""
|
5519 |
|
5520 |
-
|
5521 |
-
|
|
|
5522 |
msgstr ""
|
5523 |
|
5524 |
-
#: languages/vue.php:
|
5525 |
-
msgid "
|
5526 |
msgstr ""
|
5527 |
|
5528 |
-
#: languages/vue.php:
|
5529 |
-
msgid "
|
5530 |
msgstr ""
|
5531 |
|
5532 |
-
#: languages/vue.php:
|
5533 |
-
msgid "
|
5534 |
msgstr ""
|
5535 |
|
5536 |
-
#: languages/vue.php:
|
5537 |
-
msgid "
|
5538 |
msgstr ""
|
5539 |
|
5540 |
-
#: languages/vue.php:
|
5541 |
-
msgid "This
|
5542 |
msgstr ""
|
5543 |
|
5544 |
-
#: languages/vue.php:
|
5545 |
-
msgid "
|
5546 |
msgstr ""
|
5547 |
|
5548 |
-
#: languages/vue.php:
|
5549 |
-
msgid "
|
5550 |
msgstr ""
|
5551 |
|
|
|
5552 |
#: languages/vue.php:339
|
5553 |
-
msgid "
|
5554 |
msgstr ""
|
5555 |
|
5556 |
#: languages/vue.php:342
|
5557 |
-
msgid "
|
5558 |
-
msgstr ""
|
5559 |
-
|
5560 |
-
#: languages/vue.php:345
|
5561 |
-
msgid "Top Exit Pages"
|
5562 |
msgstr ""
|
5563 |
|
5564 |
#: languages/vue.php:348
|
5565 |
-
msgid "
|
5566 |
msgstr ""
|
5567 |
|
5568 |
#: languages/vue.php:351
|
5569 |
-
msgid "
|
5570 |
msgstr ""
|
5571 |
|
5572 |
#: languages/vue.php:354
|
5573 |
-
msgid "
|
5574 |
msgstr ""
|
5575 |
|
5576 |
#: languages/vue.php:357
|
5577 |
-
msgid "
|
5578 |
msgstr ""
|
5579 |
|
5580 |
#: languages/vue.php:360
|
5581 |
-
msgid "
|
5582 |
-
msgstr ""
|
5583 |
-
|
5584 |
-
#: languages/vue.php:363
|
5585 |
-
msgid "Top Download Links"
|
5586 |
msgstr ""
|
5587 |
|
5588 |
-
#: languages/vue.php:
|
5589 |
-
msgid "
|
5590 |
msgstr ""
|
5591 |
|
5592 |
-
#: languages/vue.php:
|
5593 |
-
msgid "
|
5594 |
msgstr ""
|
5595 |
|
5596 |
#: languages/vue.php:372
|
5597 |
-
msgid "
|
5598 |
msgstr ""
|
5599 |
|
5600 |
#: languages/vue.php:375
|
5601 |
-
msgid "
|
5602 |
msgstr ""
|
5603 |
|
5604 |
-
|
5605 |
-
|
|
|
5606 |
msgstr ""
|
5607 |
|
5608 |
-
#: languages/vue.php:
|
5609 |
-
msgid "
|
5610 |
msgstr ""
|
5611 |
|
5612 |
#: languages/vue.php:385
|
5613 |
-
msgid "
|
5614 |
msgstr ""
|
5615 |
|
5616 |
-
|
5617 |
-
|
5618 |
-
msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
|
5619 |
msgstr ""
|
5620 |
|
5621 |
-
#: languages/vue.php:
|
5622 |
-
msgid "
|
5623 |
msgstr ""
|
5624 |
|
5625 |
-
#: languages/vue.php:
|
5626 |
-
msgid "
|
5627 |
msgstr ""
|
5628 |
|
5629 |
-
#: languages/vue.php:
|
5630 |
-
msgid "
|
5631 |
msgstr ""
|
5632 |
|
5633 |
-
#: languages/vue.php:
|
5634 |
-
msgid "
|
5635 |
-
msgstr ""
|
5636 |
-
|
5637 |
-
#: languages/vue.php:404
|
5638 |
-
msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
|
5639 |
msgstr ""
|
5640 |
|
5641 |
-
#: languages/vue.php:
|
5642 |
-
msgid "
|
5643 |
msgstr ""
|
5644 |
|
5645 |
-
#: languages/vue.php:
|
5646 |
-
msgid "
|
5647 |
msgstr ""
|
5648 |
|
5649 |
-
|
5650 |
-
|
5651 |
-
msgid "To unlock more features consider %1$supgrading to PRO%2$s."
|
5652 |
msgstr ""
|
5653 |
|
5654 |
-
#: languages/vue.php:
|
5655 |
-
msgid "
|
5656 |
msgstr ""
|
5657 |
|
5658 |
-
#: languages/vue.php:
|
5659 |
-
msgid "
|
5660 |
msgstr ""
|
5661 |
|
5662 |
-
|
5663 |
-
|
|
|
5664 |
msgstr ""
|
5665 |
|
5666 |
-
|
5667 |
-
|
|
|
5668 |
msgstr ""
|
5669 |
|
5670 |
-
#: languages/vue.php:
|
5671 |
-
msgid "
|
5672 |
msgstr ""
|
5673 |
|
5674 |
-
#: languages/vue.php:
|
5675 |
-
msgid "
|
5676 |
msgstr ""
|
5677 |
|
5678 |
#. Translators: Makes text bold.
|
5679 |
-
#: languages/vue.php:
|
5680 |
msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
|
5681 |
msgstr ""
|
5682 |
|
5683 |
#. Translators: Makes text bold.
|
5684 |
-
#: languages/vue.php:
|
5685 |
msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
|
5686 |
msgstr ""
|
5687 |
|
5688 |
#. Translators: Makes text bold.
|
5689 |
-
#: languages/vue.php:
|
5690 |
msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
|
5691 |
msgstr ""
|
5692 |
|
5693 |
-
#. Translators: Makes text bold.
|
5694 |
-
#: languages/vue.php:
|
5695 |
-
msgid "%1$sEnhanced
|
5696 |
msgstr ""
|
5697 |
|
5698 |
#. Translators: Makes text bold.
|
5699 |
-
#: languages/vue.php:
|
5700 |
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."
|
5701 |
msgstr ""
|
5702 |
|
5703 |
#. Translators: Makes text bold.
|
5704 |
-
#: languages/vue.php:
|
5705 |
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."
|
5706 |
msgstr ""
|
5707 |
|
5708 |
#. Translators: Makes text bold.
|
5709 |
-
#: languages/vue.php:
|
5710 |
msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
|
5711 |
msgstr ""
|
5712 |
|
5713 |
-
#. Translators: Makes text bold.
|
5714 |
-
#: languages/vue.php:
|
5715 |
-
msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post
|
5716 |
msgstr ""
|
5717 |
|
5718 |
#. Translators: Adds link to the features page.
|
5719 |
-
#: languages/vue.php:
|
5720 |
msgid "%1$sSee All Features%2$s"
|
5721 |
msgstr ""
|
5722 |
|
5723 |
-
#: languages/vue.php:
|
5724 |
msgid "Pro Plan"
|
5725 |
msgstr ""
|
5726 |
|
5727 |
-
#: languages/vue.php:
|
5728 |
msgid "per year"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
-
#: languages/vue.php:
|
5732 |
-
msgid "Upgrade to ExactMetrics Pro Now"
|
5733 |
-
msgstr ""
|
5734 |
-
|
5735 |
-
#: languages/vue.php:490
|
5736 |
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!"
|
5737 |
msgstr ""
|
5738 |
|
5739 |
-
#: languages/vue.php:
|
5740 |
msgid "Daniel Monaghan - Experienced"
|
5741 |
msgstr ""
|
5742 |
|
5743 |
-
#: languages/vue.php:
|
5744 |
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."
|
5745 |
msgstr ""
|
5746 |
|
5747 |
-
#: languages/vue.php:
|
5748 |
msgid "Naomi Spirit - From This Day"
|
5749 |
msgstr ""
|
5750 |
|
5751 |
-
#: languages/vue.php:
|
5752 |
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!"
|
5753 |
msgstr ""
|
5754 |
|
5755 |
-
#: languages/vue.php:
|
5756 |
msgid "Julie Dupuis - Faraway Land Travel"
|
5757 |
msgstr ""
|
5758 |
|
5759 |
-
#: languages/vue.php:
|
5760 |
msgid "Guides and Documentation:"
|
5761 |
msgstr ""
|
5762 |
|
5763 |
-
#: languages/vue.php:
|
5764 |
-
msgid "
|
5765 |
msgstr ""
|
5766 |
|
5767 |
-
#: languages/vue.php:
|
5768 |
-
msgid "
|
5769 |
msgstr ""
|
5770 |
|
5771 |
-
#: languages/vue.php:
|
5772 |
-
msgid "
|
5773 |
msgstr ""
|
5774 |
|
5775 |
-
#: languages/vue.php:
|
5776 |
-
msgid "
|
5777 |
msgstr ""
|
5778 |
|
5779 |
-
#: languages/vue.php:
|
5780 |
-
msgid "
|
5781 |
msgstr ""
|
5782 |
|
5783 |
-
#: languages/vue.php:
|
5784 |
-
msgid "
|
5785 |
msgstr ""
|
5786 |
|
5787 |
-
#: languages/vue.php:
|
5788 |
-
msgid "
|
5789 |
msgstr ""
|
5790 |
|
5791 |
-
#: languages/vue.php:
|
5792 |
-
msgid "
|
5793 |
msgstr ""
|
5794 |
|
5795 |
-
#: languages/vue.php:
|
5796 |
-
msgid "
|
5797 |
msgstr ""
|
5798 |
|
5799 |
-
#: languages/vue.php:
|
5800 |
-
msgid "
|
5801 |
msgstr ""
|
5802 |
|
5803 |
-
#: languages/vue.php:
|
5804 |
-
msgid "
|
5805 |
msgstr ""
|
5806 |
|
5807 |
-
#: languages/vue.php:
|
5808 |
-
msgid "
|
|
|
|
|
|
|
|
|
5809 |
msgstr ""
|
5810 |
|
|
|
5811 |
#: languages/vue.php:547
|
5812 |
-
msgid "
|
5813 |
msgstr ""
|
5814 |
|
5815 |
-
|
5816 |
-
|
|
|
5817 |
msgstr ""
|
5818 |
|
5819 |
-
#: languages/vue.php:
|
5820 |
-
msgid "
|
5821 |
msgstr ""
|
5822 |
|
5823 |
-
#. Translators: Adds a line break.
|
5824 |
#: languages/vue.php:557
|
5825 |
-
msgid "
|
5826 |
msgstr ""
|
5827 |
|
5828 |
-
|
5829 |
-
|
5830 |
-
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."
|
5831 |
msgstr ""
|
5832 |
|
5833 |
-
#: languages/vue.php:
|
5834 |
-
msgid "
|
5835 |
msgstr ""
|
5836 |
|
|
|
5837 |
#: languages/vue.php:567
|
5838 |
-
msgid "
|
5839 |
msgstr ""
|
5840 |
|
5841 |
-
|
5842 |
-
|
|
|
5843 |
msgstr ""
|
5844 |
|
5845 |
-
|
5846 |
-
|
|
|
5847 |
msgstr ""
|
5848 |
|
5849 |
-
#: languages/vue.php:
|
5850 |
-
msgid "
|
5851 |
msgstr ""
|
5852 |
|
5853 |
-
#: languages/vue.php:
|
5854 |
-
msgid "
|
5855 |
msgstr ""
|
5856 |
|
5857 |
-
#: languages/vue.php:
|
5858 |
-
msgid "
|
5859 |
msgstr ""
|
5860 |
|
5861 |
-
#: languages/vue.php:
|
5862 |
-
msgid "
|
5863 |
msgstr ""
|
5864 |
|
5865 |
-
#: languages/vue.php:
|
5866 |
-
msgid "
|
5867 |
msgstr ""
|
5868 |
|
5869 |
-
#: languages/vue.php:
|
5870 |
-
msgid "
|
5871 |
msgstr ""
|
5872 |
|
5873 |
-
#: languages/vue.php:
|
5874 |
-
msgid "
|
5875 |
msgstr ""
|
5876 |
|
5877 |
-
#: languages/vue.php:
|
5878 |
-
msgid "
|
5879 |
msgstr ""
|
5880 |
|
5881 |
-
#: languages/vue.php:
|
5882 |
-
msgid "
|
5883 |
msgstr ""
|
5884 |
|
5885 |
-
#: languages/vue.php:
|
5886 |
-
msgid "
|
5887 |
msgstr ""
|
5888 |
|
5889 |
-
#: languages/vue.php:
|
5890 |
-
msgid "
|
5891 |
msgstr ""
|
5892 |
|
5893 |
-
#: languages/vue.php:
|
5894 |
-
msgid "
|
5895 |
msgstr ""
|
5896 |
|
5897 |
-
#: languages/vue.php:
|
5898 |
-
msgid "
|
5899 |
msgstr ""
|
5900 |
|
5901 |
-
#: languages/vue.php:
|
5902 |
-
msgid "
|
5903 |
msgstr ""
|
5904 |
|
5905 |
-
#: languages/vue.php:
|
5906 |
-
msgid "
|
5907 |
msgstr ""
|
5908 |
|
5909 |
-
|
5910 |
-
|
|
|
5911 |
msgstr ""
|
5912 |
|
5913 |
-
#: languages/vue.php:
|
5914 |
-
msgid "
|
5915 |
msgstr ""
|
5916 |
|
5917 |
-
|
5918 |
-
|
|
|
5919 |
msgstr ""
|
5920 |
|
5921 |
-
#: languages/vue.php:
|
5922 |
-
msgid "
|
5923 |
msgstr ""
|
5924 |
|
5925 |
-
#: languages/vue.php:
|
5926 |
-
msgid "
|
5927 |
msgstr ""
|
5928 |
|
5929 |
-
#: languages/vue.php:
|
5930 |
-
msgid "
|
5931 |
msgstr ""
|
5932 |
|
5933 |
-
#: languages/vue.php:
|
5934 |
-
msgid "
|
5935 |
msgstr ""
|
5936 |
|
5937 |
-
#: languages/vue.php:
|
5938 |
-
msgid "
|
5939 |
msgstr ""
|
5940 |
|
5941 |
-
#: languages/vue.php:
|
5942 |
-
msgid "
|
5943 |
msgstr ""
|
5944 |
|
5945 |
-
#: languages/vue.php:
|
5946 |
-
msgid "
|
5947 |
msgstr ""
|
5948 |
|
5949 |
-
#: languages/vue.php:
|
5950 |
-
msgid "
|
5951 |
msgstr ""
|
5952 |
|
5953 |
-
#: languages/vue.php:
|
5954 |
-
msgid "
|
|
|
|
|
|
|
|
|
5955 |
msgstr ""
|
5956 |
|
5957 |
#: languages/vue.php:666
|
5958 |
-
msgid "
|
5959 |
msgstr ""
|
5960 |
|
5961 |
-
|
5962 |
-
|
5963 |
-
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."
|
5964 |
msgstr ""
|
5965 |
|
5966 |
-
#. Translators:
|
5967 |
#: languages/vue.php:674
|
5968 |
-
msgid "
|
5969 |
msgstr ""
|
5970 |
|
5971 |
#: languages/vue.php:677
|
5972 |
-
msgid "
|
5973 |
msgstr ""
|
5974 |
|
5975 |
-
|
5976 |
-
|
5977 |
-
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. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
|
5978 |
msgstr ""
|
5979 |
|
5980 |
-
#: languages/vue.php:
|
5981 |
-
msgid "
|
5982 |
msgstr ""
|
5983 |
|
5984 |
-
#: languages/vue.php:
|
5985 |
-
msgid "
|
5986 |
msgstr ""
|
5987 |
|
5988 |
-
|
5989 |
-
|
5990 |
-
msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
5991 |
msgstr ""
|
5992 |
|
5993 |
-
#: languages/vue.php:
|
5994 |
-
msgid "
|
5995 |
msgstr ""
|
5996 |
|
5997 |
-
#: languages/vue.php:
|
5998 |
-
msgid "
|
5999 |
msgstr ""
|
6000 |
|
6001 |
-
|
6002 |
-
|
|
|
6003 |
msgstr ""
|
6004 |
|
6005 |
-
#: languages/vue.php:
|
6006 |
-
msgid "
|
6007 |
msgstr ""
|
6008 |
|
6009 |
-
|
6010 |
-
|
6011 |
-
|
|
|
|
|
|
|
6012 |
msgstr ""
|
6013 |
|
6014 |
-
#. Translators: Display the current website url in italic.
|
6015 |
#: languages/vue.php:711
|
6016 |
-
msgid "
|
6017 |
msgstr ""
|
6018 |
|
6019 |
-
|
6020 |
-
|
6021 |
-
msgid "Campaign Source %s"
|
6022 |
msgstr ""
|
6023 |
|
6024 |
-
|
6025 |
-
|
6026 |
-
|
|
|
|
|
|
|
6027 |
msgstr ""
|
6028 |
|
6029 |
-
#. Translators: Make the text italic.
|
6030 |
#: languages/vue.php:723
|
6031 |
-
msgid "
|
6032 |
msgstr ""
|
6033 |
|
6034 |
-
|
6035 |
-
|
6036 |
-
msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
|
6037 |
msgstr ""
|
6038 |
|
6039 |
-
#: languages/vue.php:
|
6040 |
-
msgid "
|
6041 |
msgstr ""
|
6042 |
|
6043 |
-
#: languages/vue.php:
|
6044 |
-
msgid "
|
6045 |
msgstr ""
|
6046 |
|
6047 |
-
#: languages/vue.php:
|
6048 |
-
msgid "
|
6049 |
msgstr ""
|
6050 |
|
6051 |
-
|
6052 |
-
|
6053 |
-
msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
|
6054 |
msgstr ""
|
6055 |
|
6056 |
-
#: languages/vue.php:
|
6057 |
-
msgid "
|
6058 |
msgstr ""
|
6059 |
|
6060 |
-
#: languages/vue.php:
|
6061 |
-
msgid "
|
6062 |
msgstr ""
|
6063 |
|
6064 |
-
|
6065 |
-
|
|
|
6066 |
msgstr ""
|
6067 |
|
6068 |
-
#: languages/vue.php:
|
6069 |
-
msgid "
|
6070 |
msgstr ""
|
6071 |
|
6072 |
-
#: languages/vue.php:
|
6073 |
-
msgid "
|
6074 |
msgstr ""
|
6075 |
|
6076 |
-
#: languages/vue.php:
|
6077 |
-
msgid "
|
6078 |
msgstr ""
|
6079 |
|
6080 |
-
#: languages/vue.php:
|
6081 |
-
msgid "
|
6082 |
msgstr ""
|
6083 |
|
6084 |
-
#: languages/vue.php:
|
6085 |
-
msgid "
|
6086 |
msgstr ""
|
6087 |
|
6088 |
#: languages/vue.php:767
|
6089 |
-
msgid "
|
6090 |
msgstr ""
|
6091 |
|
6092 |
#: languages/vue.php:770
|
6093 |
-
msgid "
|
6094 |
msgstr ""
|
6095 |
|
6096 |
#: languages/vue.php:773
|
6097 |
-
msgid "
|
6098 |
msgstr ""
|
6099 |
|
6100 |
#: languages/vue.php:776
|
6101 |
-
msgid "
|
6102 |
msgstr ""
|
6103 |
|
6104 |
#: languages/vue.php:779
|
6105 |
-
msgid "
|
6106 |
msgstr ""
|
6107 |
|
6108 |
#: languages/vue.php:782
|
6109 |
-
msgid "
|
6110 |
msgstr ""
|
6111 |
|
6112 |
#: languages/vue.php:785
|
6113 |
-
msgid "
|
6114 |
msgstr ""
|
6115 |
|
6116 |
#: languages/vue.php:788
|
6117 |
-
msgid "
|
6118 |
msgstr ""
|
6119 |
|
6120 |
#: languages/vue.php:791
|
6121 |
-
msgid "
|
6122 |
msgstr ""
|
6123 |
|
6124 |
#: languages/vue.php:794
|
6125 |
-
msgid "
|
6126 |
msgstr ""
|
6127 |
|
6128 |
-
|
6129 |
-
|
6130 |
-
msgid "Example: %s"
|
6131 |
msgstr ""
|
6132 |
|
6133 |
-
|
6134 |
-
|
6135 |
-
msgid "Examples: %s"
|
6136 |
msgstr ""
|
6137 |
|
6138 |
-
#: languages/vue.php:
|
6139 |
-
msgid "
|
6140 |
msgstr ""
|
6141 |
|
6142 |
-
#: languages/vue.php:
|
6143 |
-
msgid "
|
6144 |
msgstr ""
|
6145 |
|
6146 |
-
#: languages/vue.php:
|
6147 |
-
msgid "
|
6148 |
msgstr ""
|
6149 |
|
6150 |
-
#: languages/vue.php:
|
6151 |
-
msgid "
|
6152 |
msgstr ""
|
6153 |
|
6154 |
-
#: languages/vue.php:
|
6155 |
-
msgid "
|
6156 |
msgstr ""
|
6157 |
|
6158 |
-
#: languages/vue.php:
|
6159 |
-
msgid "
|
6160 |
msgstr ""
|
6161 |
|
6162 |
-
#: languages/vue.php:
|
6163 |
-
msgid "
|
6164 |
msgstr ""
|
6165 |
|
6166 |
-
#: languages/vue.php:
|
6167 |
-
msgid "
|
6168 |
msgstr ""
|
6169 |
|
6170 |
-
#: languages/vue.php:
|
6171 |
-
msgid "
|
6172 |
msgstr ""
|
6173 |
|
6174 |
-
#: languages/vue.php:
|
6175 |
-
msgid "
|
6176 |
msgstr ""
|
6177 |
|
6178 |
-
|
6179 |
-
|
6180 |
-
msgid "Last %s days"
|
6181 |
msgstr ""
|
6182 |
|
6183 |
-
#: languages/vue.php:
|
6184 |
-
msgid "
|
6185 |
msgstr ""
|
6186 |
|
6187 |
-
|
6188 |
-
|
6189 |
-
msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
|
6190 |
msgstr ""
|
6191 |
|
6192 |
-
#: languages/vue.php:
|
6193 |
-
msgid "
|
6194 |
msgstr ""
|
6195 |
|
6196 |
-
#: languages/vue.php:
|
6197 |
-
msgid "
|
6198 |
msgstr ""
|
6199 |
|
6200 |
-
#: languages/vue.php:
|
6201 |
-
msgid "
|
6202 |
msgstr ""
|
6203 |
|
6204 |
-
#: languages/vue.php:
|
6205 |
-
msgid "
|
6206 |
msgstr ""
|
6207 |
|
6208 |
-
#: languages/vue.php:
|
6209 |
-
msgid "
|
6210 |
msgstr ""
|
6211 |
|
6212 |
-
#: languages/vue.php:
|
6213 |
-
msgid "
|
6214 |
msgstr ""
|
6215 |
|
6216 |
-
#: languages/vue.php:
|
6217 |
-
msgid "
|
6218 |
msgstr ""
|
6219 |
|
6220 |
-
#: languages/vue.php:
|
6221 |
-
msgid "
|
6222 |
msgstr ""
|
6223 |
|
6224 |
-
#: languages/vue.php:
|
6225 |
-
msgid "
|
6226 |
msgstr ""
|
6227 |
|
6228 |
-
#: languages/vue.php:
|
6229 |
-
msgid "
|
6230 |
msgstr ""
|
6231 |
|
6232 |
-
#: languages/vue.php:
|
6233 |
-
msgid "
|
6234 |
msgstr ""
|
6235 |
|
6236 |
-
|
6237 |
-
|
6238 |
-
msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
|
6239 |
msgstr ""
|
6240 |
|
6241 |
-
#. Translators: Makes the text bold.
|
6242 |
#: languages/vue.php:884
|
6243 |
-
msgid "
|
6244 |
msgstr ""
|
6245 |
|
6246 |
#: languages/vue.php:887
|
6247 |
-
msgid "
|
6248 |
msgstr ""
|
6249 |
|
6250 |
#: languages/vue.php:890
|
6251 |
-
msgid "
|
6252 |
msgstr ""
|
6253 |
|
6254 |
#: languages/vue.php:893
|
6255 |
-
msgid "
|
6256 |
msgstr ""
|
6257 |
|
6258 |
#: languages/vue.php:896
|
6259 |
-
msgid "
|
6260 |
msgstr ""
|
6261 |
|
6262 |
#: languages/vue.php:899
|
6263 |
-
msgid "
|
6264 |
msgstr ""
|
6265 |
|
6266 |
#: languages/vue.php:902
|
6267 |
-
msgid "
|
6268 |
msgstr ""
|
6269 |
|
6270 |
#: languages/vue.php:905
|
6271 |
-
msgid "
|
6272 |
msgstr ""
|
6273 |
|
6274 |
#: languages/vue.php:908
|
6275 |
-
msgid "
|
6276 |
msgstr ""
|
6277 |
|
6278 |
#: languages/vue.php:911
|
6279 |
-
msgid "
|
6280 |
msgstr ""
|
6281 |
|
6282 |
#: languages/vue.php:914
|
6283 |
-
msgid "
|
6284 |
msgstr ""
|
6285 |
|
6286 |
-
#: languages/vue.php:
|
6287 |
-
msgid "
|
6288 |
msgstr ""
|
6289 |
|
6290 |
-
#: languages/vue.php:
|
6291 |
-
msgid "
|
6292 |
msgstr ""
|
6293 |
|
6294 |
-
|
6295 |
-
|
6296 |
-
msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
|
6297 |
msgstr ""
|
6298 |
|
6299 |
-
|
6300 |
-
|
6301 |
-
msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
|
6302 |
msgstr ""
|
6303 |
|
6304 |
-
#: languages/vue.php:
|
6305 |
-
msgid "
|
6306 |
msgstr ""
|
6307 |
|
6308 |
-
#: languages/vue.php:
|
6309 |
-
msgid "
|
6310 |
msgstr ""
|
6311 |
|
6312 |
-
#: languages/vue.php:
|
6313 |
-
msgid "
|
6314 |
msgstr ""
|
6315 |
|
6316 |
-
#: languages/vue.php:
|
6317 |
-
msgid "
|
6318 |
msgstr ""
|
6319 |
|
6320 |
-
#. Translators: placeholders make text small.
|
6321 |
#: languages/vue.php:944
|
6322 |
-
msgid "
|
6323 |
msgstr ""
|
6324 |
|
6325 |
-
|
6326 |
-
|
6327 |
-
msgid "No Styles %1$s- Use your own CSS.%2$s"
|
6328 |
msgstr ""
|
6329 |
|
6330 |
-
|
6331 |
-
|
6332 |
-
|
|
|
|
|
|
|
6333 |
msgstr ""
|
6334 |
|
6335 |
-
#. Translators: placeholders make text small.
|
6336 |
#: languages/vue.php:956
|
6337 |
-
msgid "
|
6338 |
msgstr ""
|
6339 |
|
6340 |
-
|
6341 |
-
|
6342 |
-
msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
|
6343 |
msgstr ""
|
6344 |
|
6345 |
-
|
6346 |
-
|
6347 |
-
|
|
|
|
|
|
|
6348 |
msgstr ""
|
6349 |
|
6350 |
-
#. Translators: placeholders make text small.
|
6351 |
#: languages/vue.php:968
|
6352 |
-
msgid "
|
6353 |
msgstr ""
|
6354 |
|
6355 |
#: languages/vue.php:971
|
6356 |
-
msgid "
|
6357 |
msgstr ""
|
6358 |
|
6359 |
#: languages/vue.php:974
|
6360 |
-
msgid "
|
6361 |
msgstr ""
|
6362 |
|
6363 |
#: languages/vue.php:977
|
6364 |
-
msgid "
|
6365 |
msgstr ""
|
6366 |
|
6367 |
#: languages/vue.php:980
|
6368 |
-
msgid "
|
6369 |
msgstr ""
|
6370 |
|
6371 |
#: languages/vue.php:983
|
6372 |
-
msgid "
|
6373 |
-
msgstr ""
|
6374 |
-
|
6375 |
-
#: languages/vue.php:986
|
6376 |
-
msgid "WordPress Admin Area Reports"
|
6377 |
msgstr ""
|
6378 |
|
6379 |
-
|
6380 |
-
|
|
|
6381 |
msgstr ""
|
6382 |
|
6383 |
-
#: languages/vue.php:
|
6384 |
-
msgid "
|
6385 |
msgstr ""
|
6386 |
|
6387 |
-
|
6388 |
-
|
|
|
6389 |
msgstr ""
|
6390 |
|
6391 |
-
#: languages/vue.php:
|
6392 |
-
msgid "
|
6393 |
msgstr ""
|
6394 |
|
6395 |
-
#: languages/vue.php:
|
6396 |
-
msgid "
|
6397 |
msgstr ""
|
6398 |
|
6399 |
-
#: languages/vue.php:
|
6400 |
-
msgid "
|
6401 |
msgstr ""
|
6402 |
|
6403 |
-
#: languages/vue.php:
|
6404 |
-
msgid "
|
6405 |
msgstr ""
|
6406 |
|
6407 |
-
#: languages/vue.php:
|
6408 |
-
msgid "
|
6409 |
msgstr ""
|
6410 |
|
6411 |
-
#: languages/vue.php:
|
6412 |
-
msgid "
|
6413 |
msgstr ""
|
6414 |
|
|
|
6415 |
#: languages/vue.php:1016
|
6416 |
-
msgid "
|
6417 |
msgstr ""
|
6418 |
|
6419 |
#: languages/vue.php:1019
|
6420 |
-
msgid "
|
6421 |
-
msgstr ""
|
6422 |
-
|
6423 |
-
#: languages/vue.php:1022
|
6424 |
-
msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
|
6425 |
msgstr ""
|
6426 |
|
6427 |
-
|
6428 |
-
|
|
|
6429 |
msgstr ""
|
6430 |
|
6431 |
-
|
6432 |
-
|
|
|
6433 |
msgstr ""
|
6434 |
|
6435 |
-
|
6436 |
-
|
|
|
6437 |
msgstr ""
|
6438 |
|
6439 |
-
|
6440 |
-
|
|
|
6441 |
msgstr ""
|
6442 |
|
6443 |
-
|
6444 |
-
|
|
|
6445 |
msgstr ""
|
6446 |
|
6447 |
-
|
6448 |
-
|
|
|
6449 |
msgstr ""
|
6450 |
|
|
|
6451 |
#: languages/vue.php:1047
|
6452 |
-
msgid "
|
6453 |
msgstr ""
|
6454 |
|
6455 |
#: languages/vue.php:1050
|
6456 |
-
msgid "
|
6457 |
msgstr ""
|
6458 |
|
6459 |
-
|
6460 |
-
|
|
|
6461 |
msgstr ""
|
6462 |
|
6463 |
-
|
6464 |
-
|
|
|
6465 |
msgstr ""
|
6466 |
|
6467 |
-
#: languages/vue.php:
|
6468 |
-
msgid "
|
6469 |
msgstr ""
|
6470 |
|
6471 |
-
|
6472 |
-
|
|
|
6473 |
msgstr ""
|
6474 |
|
6475 |
-
#: languages/vue.php:
|
6476 |
-
msgid "
|
6477 |
msgstr ""
|
6478 |
|
|
|
6479 |
#: languages/vue.php:1072
|
6480 |
-
msgid "
|
6481 |
msgstr ""
|
6482 |
|
6483 |
#: languages/vue.php:1075
|
6484 |
-
msgid "
|
6485 |
-
msgstr ""
|
6486 |
-
|
6487 |
-
#: languages/vue.php:1078
|
6488 |
-
msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
|
6489 |
msgstr ""
|
6490 |
|
6491 |
-
|
6492 |
-
|
|
|
6493 |
msgstr ""
|
6494 |
|
6495 |
-
#: languages/vue.php:
|
6496 |
-
msgid "
|
6497 |
msgstr ""
|
6498 |
|
6499 |
-
|
6500 |
-
|
|
|
6501 |
msgstr ""
|
6502 |
|
6503 |
-
#: languages/vue.php:
|
6504 |
-
msgid "
|
6505 |
msgstr ""
|
6506 |
|
|
|
6507 |
#: languages/vue.php:1093
|
6508 |
-
msgid "
|
6509 |
msgstr ""
|
6510 |
|
6511 |
#: languages/vue.php:1096
|
6512 |
-
msgid "
|
6513 |
msgstr ""
|
6514 |
|
6515 |
-
|
6516 |
-
|
6517 |
-
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."
|
6518 |
msgstr ""
|
6519 |
|
6520 |
-
#: languages/vue.php:
|
6521 |
-
msgid "
|
6522 |
msgstr ""
|
6523 |
|
6524 |
-
#: languages/vue.php:
|
6525 |
-
msgid "
|
6526 |
msgstr ""
|
6527 |
|
6528 |
-
#: languages/vue.php:
|
6529 |
-
msgid "
|
6530 |
msgstr ""
|
6531 |
|
6532 |
-
#. Translators:
|
6533 |
-
#: languages/vue.php:
|
6534 |
-
msgid "
|
6535 |
msgstr ""
|
6536 |
|
6537 |
-
|
6538 |
-
|
6539 |
-
msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
|
6540 |
msgstr ""
|
6541 |
|
6542 |
-
|
6543 |
-
|
6544 |
-
msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
|
6545 |
msgstr ""
|
6546 |
|
6547 |
-
|
6548 |
-
|
6549 |
-
msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
|
6550 |
msgstr ""
|
6551 |
|
6552 |
-
|
6553 |
-
|
6554 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6555 |
msgstr ""
|
6556 |
|
6557 |
-
#. Translators: placeholders make text small.
|
6558 |
#: languages/vue.php:1137
|
6559 |
-
msgid "
|
6560 |
msgstr ""
|
6561 |
|
6562 |
#: languages/vue.php:1140
|
6563 |
-
msgid "
|
6564 |
msgstr ""
|
6565 |
|
6566 |
-
|
6567 |
-
|
6568 |
-
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."
|
6569 |
msgstr ""
|
6570 |
|
6571 |
-
#: languages/vue.php:
|
6572 |
-
msgid "
|
6573 |
msgstr ""
|
6574 |
|
6575 |
-
#: languages/vue.php:
|
6576 |
-
msgid "
|
6577 |
msgstr ""
|
6578 |
|
6579 |
-
#: languages/vue.php:
|
6580 |
-
msgid "
|
6581 |
msgstr ""
|
6582 |
|
6583 |
-
#: languages/vue.php:
|
6584 |
-
msgid "
|
6585 |
msgstr ""
|
6586 |
|
6587 |
-
#: languages/vue.php:
|
6588 |
-
msgid "
|
6589 |
msgstr ""
|
6590 |
|
6591 |
-
#: languages/vue.php:
|
6592 |
-
msgid "
|
6593 |
msgstr ""
|
6594 |
|
6595 |
-
#: languages/vue.php:
|
6596 |
-
msgid "
|
6597 |
msgstr ""
|
6598 |
|
6599 |
-
#: languages/vue.php:
|
6600 |
-
msgid "
|
6601 |
msgstr ""
|
6602 |
|
6603 |
-
#: languages/vue.php:
|
6604 |
-
msgid "
|
6605 |
msgstr ""
|
6606 |
|
6607 |
-
#: languages/vue.php:
|
6608 |
-
msgid "
|
6609 |
msgstr ""
|
6610 |
|
6611 |
-
#: languages/vue.php:
|
6612 |
-
msgid "
|
6613 |
msgstr ""
|
6614 |
|
6615 |
-
#: languages/vue.php:
|
6616 |
-
msgid "
|
6617 |
msgstr ""
|
6618 |
|
6619 |
#: languages/vue.php:1183
|
6620 |
-
msgid "
|
6621 |
-
msgstr ""
|
6622 |
-
|
6623 |
-
#: languages/vue.php:1186
|
6624 |
-
msgid "Installing Addon"
|
6625 |
msgstr ""
|
6626 |
|
6627 |
-
#: languages/vue.php:
|
6628 |
-
msgid "
|
6629 |
msgstr ""
|
6630 |
|
6631 |
-
#: languages/vue.php:
|
6632 |
-
msgid "
|
6633 |
msgstr ""
|
6634 |
|
6635 |
#: languages/vue.php:1195
|
6636 |
-
msgid "
|
6637 |
msgstr ""
|
6638 |
|
6639 |
-
#: languages/vue.php:
|
6640 |
-
msgid "
|
6641 |
msgstr ""
|
6642 |
|
6643 |
-
#. Translators: Adds the error status and status text.
|
6644 |
#: languages/vue.php:1202
|
6645 |
-
msgid "
|
6646 |
msgstr ""
|
6647 |
|
6648 |
-
#: languages/vue.php:
|
6649 |
-
msgid "
|
6650 |
msgstr ""
|
6651 |
|
6652 |
-
#: languages/vue.php:
|
6653 |
-
msgid "
|
6654 |
msgstr ""
|
6655 |
|
6656 |
-
#: languages/vue.php:
|
6657 |
-
msgid "
|
6658 |
msgstr ""
|
6659 |
|
6660 |
-
#: languages/vue.php:
|
6661 |
-
msgid "
|
|
|
|
|
|
|
|
|
6662 |
msgstr ""
|
6663 |
|
6664 |
#: languages/vue.php:1222
|
6665 |
-
msgid "
|
6666 |
msgstr ""
|
6667 |
|
6668 |
-
#: languages/vue.php:
|
6669 |
-
msgid "
|
6670 |
msgstr ""
|
6671 |
|
6672 |
-
#: languages/vue.php:
|
6673 |
-
msgid "
|
6674 |
msgstr ""
|
6675 |
|
6676 |
-
|
6677 |
-
|
6678 |
-
msgid "%s Addon"
|
6679 |
msgstr ""
|
6680 |
|
6681 |
-
#: languages/vue.php:
|
6682 |
-
msgid "
|
6683 |
msgstr ""
|
6684 |
|
6685 |
-
#: languages/vue.php:
|
6686 |
-
msgid "
|
6687 |
msgstr ""
|
6688 |
|
6689 |
-
#: languages/vue.php:
|
6690 |
-
msgid "
|
6691 |
msgstr ""
|
6692 |
|
6693 |
-
#: languages/vue.php:
|
6694 |
-
msgid "
|
6695 |
msgstr ""
|
6696 |
|
6697 |
-
#: languages/vue.php:
|
6698 |
-
msgid "
|
6699 |
msgstr ""
|
6700 |
|
6701 |
-
#. Translators:
|
6702 |
-
#: languages/vue.php:
|
6703 |
-
msgid "
|
6704 |
msgstr ""
|
6705 |
|
6706 |
-
#: languages/vue.php:
|
6707 |
-
msgid "
|
6708 |
msgstr ""
|
6709 |
|
6710 |
-
#: languages/vue.php:
|
6711 |
-
msgid "
|
6712 |
msgstr ""
|
6713 |
|
6714 |
-
#: languages/vue.php:
|
6715 |
-
msgid "
|
6716 |
msgstr ""
|
6717 |
|
6718 |
-
#: languages/vue.php:
|
6719 |
-
msgid "
|
6720 |
msgstr ""
|
6721 |
|
6722 |
-
#: languages/vue.php:
|
6723 |
-
msgid "
|
6724 |
msgstr ""
|
6725 |
|
6726 |
-
#: languages/vue.php:
|
6727 |
-
msgid "
|
6728 |
msgstr ""
|
6729 |
|
6730 |
-
#: languages/vue.php:
|
6731 |
-
msgid "
|
6732 |
msgstr ""
|
6733 |
|
6734 |
-
|
6735 |
-
|
|
|
6736 |
msgstr ""
|
6737 |
|
6738 |
-
#: languages/vue.php:
|
6739 |
-
msgid "
|
6740 |
msgstr ""
|
6741 |
|
6742 |
-
#: languages/vue.php:
|
6743 |
-
msgid "
|
6744 |
msgstr ""
|
6745 |
|
6746 |
-
#: languages/vue.php:
|
6747 |
-
msgid "
|
6748 |
msgstr ""
|
6749 |
|
6750 |
-
#: languages/vue.php:
|
6751 |
-
msgid "
|
6752 |
msgstr ""
|
6753 |
|
6754 |
-
|
6755 |
-
|
6756 |
-
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."
|
6757 |
msgstr ""
|
6758 |
|
6759 |
-
#. Translators:
|
6760 |
-
#: languages/vue.php:
|
6761 |
-
msgid "
|
6762 |
msgstr ""
|
6763 |
|
6764 |
-
|
6765 |
-
|
6766 |
-
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."
|
6767 |
msgstr ""
|
6768 |
|
6769 |
-
#: languages/vue.php:
|
6770 |
-
msgid "
|
6771 |
msgstr ""
|
6772 |
|
6773 |
-
#. Translators: Add links to documentation.
|
6774 |
#: languages/vue.php:1310
|
6775 |
-
msgid "
|
6776 |
msgstr ""
|
6777 |
|
6778 |
-
#. Translators:
|
6779 |
#: languages/vue.php:1314
|
6780 |
-
msgid "
|
6781 |
msgstr ""
|
6782 |
|
6783 |
-
|
6784 |
-
|
6785 |
-
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."
|
6786 |
msgstr ""
|
6787 |
|
6788 |
-
#: languages/vue.php:
|
6789 |
-
msgid "
|
6790 |
msgstr ""
|
6791 |
|
6792 |
-
#. Translators:
|
6793 |
-
#: languages/vue.php:
|
6794 |
-
msgid "
|
6795 |
msgstr ""
|
6796 |
|
6797 |
-
|
6798 |
-
|
6799 |
-
msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
|
6800 |
msgstr ""
|
6801 |
|
6802 |
-
#: languages/vue.php:
|
6803 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
6804 |
msgstr ""
|
6805 |
|
6806 |
-
#. Translators: Adds an arrow icon.
|
6807 |
#: languages/vue.php:1336
|
6808 |
-
msgid "
|
6809 |
msgstr ""
|
6810 |
|
6811 |
#: languages/vue.php:1339
|
6812 |
-
msgid "
|
6813 |
msgstr ""
|
6814 |
|
6815 |
#: languages/vue.php:1342
|
6816 |
-
msgid "
|
6817 |
msgstr ""
|
6818 |
|
6819 |
#: languages/vue.php:1345
|
6820 |
-
msgid "
|
6821 |
msgstr ""
|
6822 |
|
6823 |
#: languages/vue.php:1348
|
6824 |
-
msgid "
|
6825 |
msgstr ""
|
6826 |
|
6827 |
#: languages/vue.php:1351
|
6828 |
-
msgid "
|
6829 |
msgstr ""
|
6830 |
|
6831 |
#: languages/vue.php:1354
|
6832 |
-
msgid "
|
6833 |
msgstr ""
|
6834 |
|
6835 |
#: languages/vue.php:1357
|
6836 |
-
msgid "
|
6837 |
msgstr ""
|
6838 |
|
6839 |
#: languages/vue.php:1360
|
6840 |
-
msgid "
|
6841 |
msgstr ""
|
6842 |
|
6843 |
#: languages/vue.php:1363
|
6844 |
-
msgid "
|
6845 |
-
msgstr ""
|
6846 |
-
|
6847 |
-
#: languages/vue.php:1366
|
6848 |
-
msgid "Top 10 Countries"
|
6849 |
msgstr ""
|
6850 |
|
6851 |
-
|
6852 |
-
|
|
|
6853 |
msgstr ""
|
6854 |
|
6855 |
#: languages/vue.php:1372
|
6856 |
-
msgid "
|
6857 |
-
msgstr ""
|
6858 |
-
|
6859 |
-
#: languages/vue.php:1375
|
6860 |
-
msgid "View All Referral Sources"
|
6861 |
msgstr ""
|
6862 |
|
6863 |
-
|
6864 |
-
|
|
|
6865 |
msgstr ""
|
6866 |
|
6867 |
-
|
6868 |
-
|
|
|
6869 |
msgstr ""
|
6870 |
|
6871 |
-
#: languages/vue.php:
|
6872 |
-
msgid "
|
6873 |
msgstr ""
|
6874 |
|
6875 |
-
#: languages/vue.php:
|
6876 |
-
msgid "
|
6877 |
msgstr ""
|
6878 |
|
|
|
6879 |
#: languages/vue.php:1390
|
6880 |
-
msgid "
|
6881 |
msgstr ""
|
6882 |
|
6883 |
#: languages/vue.php:1393
|
6884 |
-
msgid "
|
6885 |
msgstr ""
|
6886 |
|
6887 |
#: languages/vue.php:1396
|
6888 |
-
msgid "
|
6889 |
msgstr ""
|
6890 |
|
6891 |
#: languages/vue.php:1399
|
6892 |
-
msgid "
|
6893 |
msgstr ""
|
6894 |
|
6895 |
#: languages/vue.php:1402
|
6896 |
-
msgid "Your
|
6897 |
msgstr ""
|
6898 |
|
6899 |
#: languages/vue.php:1405
|
6900 |
-
msgid "
|
6901 |
msgstr ""
|
6902 |
|
6903 |
#: languages/vue.php:1408
|
6904 |
-
msgid "
|
6905 |
msgstr ""
|
6906 |
|
6907 |
#: languages/vue.php:1411
|
6908 |
-
msgid "
|
6909 |
msgstr ""
|
6910 |
|
6911 |
#: languages/vue.php:1414
|
6912 |
-
msgid "
|
6913 |
msgstr ""
|
6914 |
|
6915 |
-
|
6916 |
-
|
6917 |
-
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!"
|
6918 |
msgstr ""
|
6919 |
|
6920 |
-
#: languages/vue.php:
|
6921 |
-
msgid "
|
6922 |
msgstr ""
|
6923 |
|
6924 |
-
#: languages/vue.php:
|
6925 |
-
msgid "
|
6926 |
msgstr ""
|
6927 |
|
6928 |
-
#: languages/vue.php:
|
6929 |
-
msgid "
|
6930 |
msgstr ""
|
6931 |
|
6932 |
-
#: languages/vue.php:
|
6933 |
-
msgid "
|
6934 |
msgstr ""
|
6935 |
|
6936 |
-
#: languages/vue.php:
|
6937 |
-
msgid "
|
6938 |
msgstr ""
|
6939 |
|
6940 |
-
#: languages/vue.php:
|
6941 |
-
msgid "
|
6942 |
msgstr ""
|
6943 |
|
6944 |
-
#: languages/vue.php:
|
6945 |
-
msgid "
|
6946 |
msgstr ""
|
6947 |
|
6948 |
-
#: languages/vue.php:
|
6949 |
-
msgid "
|
6950 |
msgstr ""
|
6951 |
|
6952 |
-
#: languages/vue.php:
|
6953 |
-
msgid "
|
6954 |
msgstr ""
|
6955 |
|
6956 |
-
#: languages/vue.php:
|
6957 |
-
msgid "
|
6958 |
msgstr ""
|
6959 |
|
6960 |
-
#: languages/vue.php:
|
6961 |
-
msgid "
|
6962 |
msgstr ""
|
6963 |
|
6964 |
-
#: languages/vue.php:
|
6965 |
-
msgid "
|
6966 |
msgstr ""
|
6967 |
|
6968 |
-
#: languages/vue.php:
|
6969 |
-
msgid "
|
6970 |
msgstr ""
|
6971 |
|
|
|
6972 |
#: languages/vue.php:1460
|
6973 |
-
msgid "
|
6974 |
msgstr ""
|
6975 |
|
6976 |
-
|
6977 |
-
|
|
|
6978 |
msgstr ""
|
6979 |
|
6980 |
-
#: languages/vue.php:
|
6981 |
-
msgid "
|
6982 |
msgstr ""
|
6983 |
|
6984 |
-
#: languages/vue.php:
|
6985 |
-
msgid "
|
6986 |
msgstr ""
|
6987 |
|
6988 |
-
#: languages/vue.php:
|
6989 |
-
msgid "
|
6990 |
msgstr ""
|
6991 |
|
6992 |
-
#: languages/vue.php:
|
6993 |
-
msgid "
|
6994 |
msgstr ""
|
6995 |
|
6996 |
-
#: languages/vue.php:
|
6997 |
-
msgid "
|
6998 |
msgstr ""
|
6999 |
|
7000 |
-
#: languages/vue.php:
|
7001 |
-
msgid "
|
7002 |
msgstr ""
|
7003 |
|
7004 |
-
#: languages/vue.php:
|
7005 |
-
msgid "
|
7006 |
msgstr ""
|
7007 |
|
7008 |
-
#: languages/vue.php:
|
7009 |
-
msgid "
|
7010 |
msgstr ""
|
7011 |
|
7012 |
-
#: languages/vue.php:
|
7013 |
-
msgid "
|
7014 |
msgstr ""
|
7015 |
|
7016 |
-
#: languages/vue.php:
|
7017 |
-
msgid "
|
7018 |
msgstr ""
|
7019 |
|
7020 |
-
#: languages/vue.php:
|
7021 |
-
msgid "
|
7022 |
msgstr ""
|
7023 |
|
7024 |
-
#: languages/vue.php:
|
7025 |
-
msgid "
|
7026 |
msgstr ""
|
7027 |
|
7028 |
-
#: languages/vue.php:
|
7029 |
-
msgid "
|
7030 |
msgstr ""
|
7031 |
|
7032 |
-
#: languages/vue.php:
|
7033 |
-
msgid "
|
7034 |
msgstr ""
|
7035 |
|
7036 |
-
#: languages/vue.php:
|
7037 |
-
msgid "
|
7038 |
msgstr ""
|
7039 |
|
7040 |
-
#: languages/vue.php:
|
7041 |
-
msgid "
|
7042 |
msgstr ""
|
7043 |
|
7044 |
-
#: languages/vue.php:
|
7045 |
-
msgid "
|
7046 |
msgstr ""
|
7047 |
|
7048 |
#: languages/vue.php:1524
|
7049 |
-
msgid "
|
7050 |
msgstr ""
|
7051 |
|
7052 |
#: languages/vue.php:1527
|
7053 |
-
msgid "
|
7054 |
msgstr ""
|
7055 |
|
7056 |
-
#: languages/vue.php:
|
7057 |
-
msgid "
|
7058 |
msgstr ""
|
7059 |
|
7060 |
-
#: languages/vue.php:
|
7061 |
-
msgid "
|
|
|
|
|
|
|
|
|
7062 |
msgstr ""
|
7063 |
|
7064 |
-
#. Translators: Adds a link to documentation.
|
7065 |
#: languages/vue.php:1539
|
7066 |
-
msgid "
|
7067 |
msgstr ""
|
7068 |
|
7069 |
-
|
7070 |
-
|
7071 |
-
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"
|
7072 |
msgstr ""
|
7073 |
|
7074 |
-
|
7075 |
-
|
7076 |
-
|
|
|
|
|
|
|
7077 |
msgstr ""
|
7078 |
|
7079 |
-
#. Translators: Adds link to activate/install plugin and documentation.
|
7080 |
#: languages/vue.php:1551
|
7081 |
-
msgid "
|
7082 |
msgstr ""
|
7083 |
|
7084 |
#: languages/vue.php:1554
|
7085 |
-
msgid "
|
7086 |
msgstr ""
|
7087 |
|
7088 |
#: languages/vue.php:1557
|
7089 |
-
msgid "
|
7090 |
msgstr ""
|
7091 |
|
7092 |
#: languages/vue.php:1560
|
7093 |
-
msgid "
|
7094 |
-
msgstr ""
|
7095 |
-
|
7096 |
-
#: languages/vue.php:1563
|
7097 |
-
msgid "Author tracking to see which author’s posts generate the most traffic"
|
7098 |
msgstr ""
|
7099 |
|
7100 |
#: languages/vue.php:1566
|
7101 |
-
msgid "
|
7102 |
msgstr ""
|
7103 |
|
7104 |
#: languages/vue.php:1569
|
7105 |
-
msgid "
|
7106 |
-
msgstr ""
|
7107 |
-
|
7108 |
-
#: languages/vue.php:1572
|
7109 |
-
msgid "SEO score tracking to see which blog SEO scores are the most popular"
|
7110 |
-
msgstr ""
|
7111 |
-
|
7112 |
-
#: languages/vue.php:1575
|
7113 |
-
msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
|
7114 |
msgstr ""
|
7115 |
|
7116 |
#: languages/vue.php:1578
|
7117 |
-
msgid "
|
7118 |
msgstr ""
|
7119 |
|
7120 |
#: languages/vue.php:1581
|
7121 |
-
msgid "
|
7122 |
msgstr ""
|
7123 |
|
7124 |
#: languages/vue.php:1584
|
7125 |
-
msgid "
|
7126 |
msgstr ""
|
7127 |
|
7128 |
#: languages/vue.php:1587
|
7129 |
-
msgid "
|
7130 |
msgstr ""
|
7131 |
|
7132 |
#: languages/vue.php:1590
|
7133 |
-
msgid "
|
7134 |
msgstr ""
|
7135 |
|
7136 |
#: languages/vue.php:1593
|
7137 |
-
msgid "
|
7138 |
msgstr ""
|
7139 |
|
7140 |
#: languages/vue.php:1596
|
7141 |
-
msgid "
|
7142 |
msgstr ""
|
7143 |
|
7144 |
-
|
7145 |
-
|
7146 |
-
msgid "Can't load settings. Error: %1$s, %2$s"
|
7147 |
msgstr ""
|
7148 |
|
7149 |
-
#: languages/vue.php:
|
7150 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7151 |
msgstr ""
|
7152 |
|
7153 |
#. Translators: Error status and error text.
|
7154 |
-
#: languages/vue.php:
|
7155 |
-
msgid "Can't
|
7156 |
msgstr ""
|
7157 |
|
7158 |
-
#: languages/vue.php:
|
7159 |
-
msgid "
|
7160 |
msgstr ""
|
7161 |
|
7162 |
-
|
7163 |
-
|
|
|
7164 |
msgstr ""
|
7165 |
|
7166 |
-
|
7167 |
-
|
|
|
7168 |
msgstr ""
|
7169 |
|
7170 |
-
#: languages/vue.php:
|
7171 |
-
msgid "
|
7172 |
msgstr ""
|
7173 |
|
7174 |
-
#. Translators:
|
7175 |
-
#: languages/vue.php:
|
7176 |
-
msgid "
|
7177 |
msgstr ""
|
7178 |
|
7179 |
-
#: languages/vue.php:
|
7180 |
-
msgid "
|
7181 |
msgstr ""
|
7182 |
|
7183 |
-
#: languages/vue.php:
|
7184 |
-
msgid "
|
7185 |
msgstr ""
|
7186 |
|
7187 |
-
#: languages/vue.php:
|
7188 |
-
msgid "
|
7189 |
msgstr ""
|
7190 |
|
7191 |
-
#: languages/vue.php:
|
7192 |
-
msgid "
|
7193 |
msgstr ""
|
7194 |
|
7195 |
-
#: languages/vue.php:
|
7196 |
-
msgid "
|
7197 |
msgstr ""
|
7198 |
|
7199 |
-
#: languages/vue.php:
|
7200 |
-
msgid "
|
7201 |
msgstr ""
|
7202 |
|
7203 |
-
#: languages/vue.php:
|
7204 |
-
msgid "
|
7205 |
msgstr ""
|
7206 |
|
7207 |
-
#: languages/vue.php:
|
7208 |
-
msgid "
|
7209 |
msgstr ""
|
7210 |
|
7211 |
-
|
7212 |
-
|
7213 |
-
msgid "Please enter a value between %1$s and %2$s"
|
7214 |
msgstr ""
|
7215 |
|
7216 |
-
#. Translators:
|
7217 |
-
#: languages/vue.php:
|
7218 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7219 |
msgstr ""
|
7220 |
|
7221 |
-
#. Translators: The maximum set value.
|
7222 |
#: languages/vue.php:1672
|
7223 |
-
msgid "
|
7224 |
msgstr ""
|
7225 |
|
7226 |
#: languages/vue.php:1675
|
7227 |
-
msgid "
|
7228 |
msgstr ""
|
7229 |
|
7230 |
#: languages/vue.php:1678
|
7231 |
-
msgid "
|
|
|
|
|
|
|
|
|
7232 |
msgstr ""
|
7233 |
|
7234 |
#: languages/vue.php:1684
|
7235 |
-
msgid "
|
7236 |
msgstr ""
|
7237 |
|
7238 |
#: languages/vue.php:1687
|
7239 |
-
msgid "
|
7240 |
msgstr ""
|
7241 |
|
7242 |
#: languages/vue.php:1690
|
7243 |
-
msgid "
|
7244 |
msgstr ""
|
7245 |
|
7246 |
#: languages/vue.php:1693
|
7247 |
-
msgid "
|
7248 |
msgstr ""
|
7249 |
|
7250 |
#: languages/vue.php:1696
|
7251 |
-
msgid "
|
7252 |
msgstr ""
|
7253 |
|
7254 |
#: languages/vue.php:1699
|
7255 |
-
msgid "
|
7256 |
-
msgstr ""
|
7257 |
-
|
7258 |
-
#: languages/vue.php:1702
|
7259 |
-
msgid "Background"
|
7260 |
msgstr ""
|
7261 |
|
7262 |
-
|
7263 |
-
|
|
|
7264 |
msgstr ""
|
7265 |
|
7266 |
-
#: languages/vue.php:
|
7267 |
-
msgid "
|
7268 |
msgstr ""
|
7269 |
|
7270 |
-
#. Translators: Error status and error text.
|
7271 |
#: languages/vue.php:1712
|
7272 |
-
msgid "
|
7273 |
msgstr ""
|
7274 |
|
7275 |
#: languages/vue.php:1715
|
7276 |
-
msgid "
|
7277 |
msgstr ""
|
7278 |
|
7279 |
#: languages/vue.php:1718
|
7280 |
-
msgid "
|
7281 |
msgstr ""
|
7282 |
|
7283 |
#: languages/vue.php:1721
|
7284 |
-
msgid "
|
7285 |
msgstr ""
|
7286 |
|
7287 |
#: languages/vue.php:1724
|
7288 |
-
msgid "
|
7289 |
msgstr ""
|
7290 |
|
7291 |
#: languages/vue.php:1727
|
7292 |
-
msgid "
|
7293 |
msgstr ""
|
7294 |
|
7295 |
-
|
7296 |
-
|
|
|
7297 |
msgstr ""
|
7298 |
|
7299 |
-
#: languages/vue.php:
|
7300 |
-
msgid "
|
7301 |
msgstr ""
|
7302 |
|
7303 |
-
#: languages/vue.php:
|
7304 |
-
msgid "
|
7305 |
msgstr ""
|
7306 |
|
7307 |
-
#: languages/vue.php:
|
7308 |
-
msgid "
|
7309 |
msgstr ""
|
7310 |
|
7311 |
-
#: languages/vue.php:
|
7312 |
-
msgid "
|
7313 |
msgstr ""
|
7314 |
|
7315 |
-
#: languages/vue.php:
|
7316 |
-
msgid "
|
7317 |
msgstr ""
|
7318 |
|
7319 |
-
#: languages/vue.php:
|
7320 |
-
msgid "
|
7321 |
msgstr ""
|
7322 |
|
7323 |
-
#: languages/vue.php:
|
7324 |
-
msgid "
|
7325 |
msgstr ""
|
7326 |
|
7327 |
-
#: languages/vue.php:
|
7328 |
-
msgid "
|
7329 |
msgstr ""
|
7330 |
|
7331 |
-
#: languages/vue.php:
|
7332 |
-
msgid "You
|
7333 |
msgstr ""
|
7334 |
|
7335 |
-
#: languages/vue.php:
|
7336 |
-
|
7337 |
-
msgid "Connect ExactMetrics"
|
7338 |
msgstr ""
|
7339 |
|
7340 |
-
|
7341 |
-
|
|
|
7342 |
msgstr ""
|
7343 |
|
|
|
7344 |
#: languages/vue.php:1769
|
7345 |
-
msgid "
|
7346 |
-
msgstr ""
|
7347 |
-
|
7348 |
-
#: languages/vue.php:1772
|
7349 |
-
msgid "Active Profile"
|
7350 |
msgstr ""
|
7351 |
|
7352 |
-
|
7353 |
-
|
|
|
7354 |
msgstr ""
|
7355 |
|
7356 |
-
#: languages/vue.php:
|
7357 |
-
msgid "
|
7358 |
msgstr ""
|
7359 |
|
7360 |
-
#: languages/vue.php:
|
7361 |
-
msgid "
|
7362 |
msgstr ""
|
7363 |
|
7364 |
-
#: languages/vue.php:
|
7365 |
-
msgid "
|
7366 |
msgstr ""
|
7367 |
|
7368 |
-
|
7369 |
-
|
|
|
7370 |
msgstr ""
|
7371 |
|
7372 |
-
#: languages/vue.php:
|
7373 |
-
msgid "
|
7374 |
msgstr ""
|
7375 |
|
7376 |
-
#: languages/vue.php:
|
7377 |
-
msgid "
|
7378 |
msgstr ""
|
7379 |
|
|
|
7380 |
#: languages/vue.php:1796
|
7381 |
-
msgid "
|
7382 |
msgstr ""
|
7383 |
|
7384 |
#: languages/vue.php:1799
|
7385 |
-
msgid "
|
7386 |
msgstr ""
|
7387 |
|
7388 |
-
#: languages/vue.php:
|
7389 |
-
msgid "
|
7390 |
msgstr ""
|
7391 |
|
7392 |
-
#: languages/vue.php:
|
7393 |
-
msgid "
|
7394 |
msgstr ""
|
7395 |
|
7396 |
-
|
7397 |
-
|
7398 |
-
msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
|
7399 |
msgstr ""
|
7400 |
|
7401 |
-
|
7402 |
-
|
|
|
7403 |
msgstr ""
|
7404 |
|
7405 |
-
|
7406 |
-
|
7407 |
-
msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using %1$sCustom Dimensions%2$s. Also requires Sort By - Curated to be selected. Setup steps can be found in our %3$sknowledge base%4$s."
|
7408 |
msgstr ""
|
7409 |
|
7410 |
-
|
7411 |
-
|
7412 |
-
msgid "Pro version is required. Your current license level is: %s"
|
7413 |
msgstr ""
|
7414 |
|
7415 |
-
#: languages/vue.php:
|
7416 |
-
msgid "
|
7417 |
msgstr ""
|
7418 |
|
7419 |
-
#: languages/vue.php:
|
7420 |
-
msgid "
|
7421 |
msgstr ""
|
7422 |
|
7423 |
-
#: languages/vue.php:
|
7424 |
-
msgid "
|
7425 |
msgstr ""
|
7426 |
|
7427 |
-
#: languages/vue.php:
|
7428 |
-
msgid "
|
7429 |
msgstr ""
|
7430 |
|
7431 |
-
#: languages/vue.php:
|
7432 |
-
msgid "
|
7433 |
msgstr ""
|
7434 |
|
7435 |
-
#: languages/vue.php:
|
7436 |
-
msgid "
|
7437 |
msgstr ""
|
7438 |
|
7439 |
-
#: languages/vue.php:
|
7440 |
-
msgid "
|
7441 |
msgstr ""
|
7442 |
|
7443 |
-
#: languages/vue.php:
|
7444 |
-
msgid "
|
7445 |
msgstr ""
|
7446 |
|
7447 |
-
#: languages/vue.php:
|
7448 |
-
msgid "
|
7449 |
msgstr ""
|
7450 |
|
7451 |
-
#. Translators: Replaced with the number of days
|
7452 |
#: languages/vue.php:1851
|
7453 |
-
msgid "
|
7454 |
-
msgstr ""
|
7455 |
-
|
7456 |
-
#: languages/vue.php:1854
|
7457 |
-
msgid "No change"
|
7458 |
msgstr ""
|
7459 |
|
7460 |
-
#. Translators:
|
7461 |
-
#: languages/vue.php:
|
7462 |
-
msgid "%s
|
7463 |
msgstr ""
|
7464 |
|
7465 |
-
|
7466 |
-
|
|
|
7467 |
msgstr ""
|
7468 |
|
7469 |
-
|
7470 |
-
|
|
|
7471 |
msgstr ""
|
7472 |
|
7473 |
-
#: languages/vue.php:
|
7474 |
-
msgid "
|
7475 |
msgstr ""
|
7476 |
|
|
|
7477 |
#: languages/vue.php:1870
|
7478 |
-
msgid "
|
7479 |
msgstr ""
|
7480 |
|
7481 |
-
|
7482 |
-
|
|
|
7483 |
msgstr ""
|
7484 |
|
7485 |
-
#. Translators:
|
7486 |
#: languages/vue.php:1878
|
7487 |
-
msgid "
|
7488 |
msgstr ""
|
7489 |
|
7490 |
#: languages/vue.php:1881
|
7491 |
-
msgid "
|
7492 |
msgstr ""
|
7493 |
|
7494 |
-
#. Translators:
|
7495 |
#: languages/vue.php:1885
|
7496 |
-
msgid "
|
7497 |
-
msgstr ""
|
7498 |
-
|
7499 |
-
#: languages/vue.php:1888
|
7500 |
-
msgid "Forms Report"
|
7501 |
-
msgstr ""
|
7502 |
-
|
7503 |
-
#: languages/vue.php:1891
|
7504 |
-
msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
|
7505 |
msgstr ""
|
7506 |
|
7507 |
-
|
7508 |
-
|
|
|
7509 |
msgstr ""
|
7510 |
|
7511 |
-
|
7512 |
-
|
|
|
7513 |
msgstr ""
|
7514 |
|
7515 |
-
|
7516 |
-
|
7517 |
-
msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
|
7518 |
msgstr ""
|
7519 |
|
7520 |
-
#: languages/vue.php:
|
7521 |
-
msgid "
|
7522 |
msgstr ""
|
7523 |
|
7524 |
-
#: languages/vue.php:
|
7525 |
-
msgid "
|
7526 |
msgstr ""
|
7527 |
|
7528 |
-
|
7529 |
-
|
|
|
7530 |
msgstr ""
|
7531 |
|
7532 |
-
#. Translators:
|
7533 |
-
#: languages/vue.php:
|
7534 |
-
msgid "
|
7535 |
msgstr ""
|
7536 |
|
|
|
7537 |
#: languages/vue.php:1917
|
7538 |
-
msgid "
|
7539 |
-
msgstr ""
|
7540 |
-
|
7541 |
-
#: languages/vue.php:1920
|
7542 |
-
msgid "This feature requires ExactMetrics Pro"
|
7543 |
msgstr ""
|
7544 |
|
7545 |
-
|
7546 |
-
|
|
|
7547 |
msgstr ""
|
7548 |
|
7549 |
-
|
7550 |
-
|
|
|
7551 |
msgstr ""
|
7552 |
|
|
|
7553 |
#: languages/vue.php:1929
|
7554 |
-
msgid "
|
7555 |
msgstr ""
|
7556 |
|
7557 |
-
#. Translators: Adds link to the
|
7558 |
#: languages/vue.php:1933
|
7559 |
-
msgid "
|
7560 |
msgstr ""
|
7561 |
|
7562 |
#: languages/vue.php:1936
|
7563 |
-
msgid "
|
7564 |
msgstr ""
|
7565 |
|
7566 |
#: languages/vue.php:1939
|
7567 |
-
msgid "
|
7568 |
msgstr ""
|
7569 |
|
7570 |
#: languages/vue.php:1942
|
7571 |
-
msgid "
|
7572 |
msgstr ""
|
7573 |
|
7574 |
#: languages/vue.php:1945
|
7575 |
-
msgid "
|
7576 |
msgstr ""
|
7577 |
|
7578 |
#: languages/vue.php:1948
|
7579 |
-
msgid "
|
7580 |
msgstr ""
|
7581 |
|
7582 |
-
|
7583 |
-
|
7584 |
-
msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
|
7585 |
msgstr ""
|
7586 |
|
7587 |
-
#: languages/vue.php:
|
7588 |
-
msgid "
|
7589 |
msgstr ""
|
7590 |
|
7591 |
-
#: languages/vue.php:
|
7592 |
-
msgid "
|
7593 |
msgstr ""
|
7594 |
|
7595 |
-
#: languages/vue.php:
|
7596 |
-
msgid "
|
7597 |
msgstr ""
|
7598 |
|
7599 |
-
#: languages/vue.php:
|
7600 |
-
msgid "
|
7601 |
msgstr ""
|
7602 |
|
7603 |
-
#: languages/vue.php:
|
7604 |
-
msgid "
|
7605 |
msgstr ""
|
7606 |
|
7607 |
-
#: languages/vue.php:
|
7608 |
-
msgid "
|
7609 |
msgstr ""
|
7610 |
|
7611 |
-
|
7612 |
-
|
7613 |
-
msgid "Complete documentation on usage tracking is available %1$shere%2$s."
|
7614 |
msgstr ""
|
7615 |
|
7616 |
-
#: languages/vue.php:
|
7617 |
-
msgid "
|
7618 |
msgstr ""
|
7619 |
|
7620 |
-
#: languages/vue.php:
|
7621 |
-
msgid "
|
7622 |
msgstr ""
|
7623 |
|
7624 |
-
#: languages/vue.php:
|
7625 |
-
msgid "
|
7626 |
msgstr ""
|
7627 |
|
7628 |
-
#: languages/vue.php:
|
7629 |
-
msgid "
|
7630 |
msgstr ""
|
7631 |
|
7632 |
-
#: languages/vue.php:
|
7633 |
-
msgid "
|
7634 |
msgstr ""
|
7635 |
|
7636 |
-
#: languages/vue.php:
|
7637 |
-
msgid "
|
7638 |
msgstr ""
|
7639 |
|
7640 |
-
#: languages/vue.php:
|
7641 |
-
msgid "
|
|
|
|
|
|
|
|
|
7642 |
msgstr ""
|
7643 |
|
7644 |
-
#. Translators: Add line break.
|
7645 |
#: languages/vue.php:1999
|
7646 |
-
msgid "
|
7647 |
msgstr ""
|
7648 |
|
7649 |
#: languages/vue.php:2002
|
7650 |
-
msgid "
|
7651 |
msgstr ""
|
7652 |
|
7653 |
#: languages/vue.php:2005
|
7654 |
-
msgid "
|
7655 |
msgstr ""
|
7656 |
|
7657 |
-
|
7658 |
-
|
7659 |
-
msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
|
7660 |
msgstr ""
|
7661 |
|
7662 |
-
|
7663 |
-
|
7664 |
-
msgid "Path (example: %s)"
|
7665 |
msgstr ""
|
7666 |
|
7667 |
-
#: languages/vue.php:
|
7668 |
-
msgid "
|
|
|
|
|
|
|
|
|
7669 |
msgstr ""
|
7670 |
|
7671 |
-
#. Translators: Example label (aff).
|
7672 |
#: languages/vue.php:2020
|
7673 |
-
msgid "
|
7674 |
msgstr ""
|
7675 |
|
7676 |
#: languages/vue.php:2023
|
7677 |
-
msgid "
|
7678 |
msgstr ""
|
7679 |
|
7680 |
#: languages/vue.php:2026
|
7681 |
-
msgid "
|
7682 |
msgstr ""
|
7683 |
|
7684 |
-
|
7685 |
-
|
7686 |
-
msgid "This allows you to track custom affiliate links. A path of /go/ would match urls that start with that. The label is appended onto the end of the string \"outbound-link-\", to provide unique labels for these links in Google Analytics. Complete documentation on affiliate links is available %1$shere%2$s."
|
7687 |
msgstr ""
|
7688 |
|
7689 |
-
#: languages/vue.php:
|
7690 |
-
msgid "
|
7691 |
msgstr ""
|
7692 |
|
7693 |
-
#: languages/vue.php:
|
7694 |
-
msgid "
|
7695 |
msgstr ""
|
7696 |
|
7697 |
-
#: languages/vue.php:
|
7698 |
-
msgid "
|
7699 |
msgstr ""
|
7700 |
|
7701 |
-
#: languages/vue.php:
|
7702 |
-
msgid "
|
7703 |
msgstr ""
|
7704 |
|
7705 |
-
#: languages/vue.php:
|
7706 |
-
msgid "
|
7707 |
msgstr ""
|
7708 |
|
7709 |
-
#: languages/vue.php:
|
7710 |
-
msgid "
|
7711 |
msgstr ""
|
7712 |
|
7713 |
-
#: languages/vue.php:
|
7714 |
-
msgid "
|
7715 |
msgstr ""
|
7716 |
|
7717 |
-
#: languages/vue.php:
|
7718 |
-
msgid "
|
7719 |
msgstr ""
|
7720 |
|
7721 |
-
#: languages/vue.php:
|
7722 |
-
msgid "
|
7723 |
msgstr ""
|
7724 |
|
7725 |
-
#: languages/vue.php:
|
7726 |
-
msgid "
|
7727 |
msgstr ""
|
7728 |
|
7729 |
-
#: languages/vue.php:
|
7730 |
-
msgid "
|
7731 |
msgstr ""
|
7732 |
|
7733 |
-
#: languages/vue.php:
|
7734 |
-
msgid "
|
7735 |
msgstr ""
|
7736 |
|
7737 |
-
#: languages/vue.php:
|
7738 |
-
msgid "
|
7739 |
msgstr ""
|
7740 |
|
7741 |
-
|
7742 |
-
|
7743 |
-
msgid "%1$sNeed%2$s to Grow FASTER??"
|
7744 |
msgstr ""
|
7745 |
|
7746 |
-
#: languages/vue.php:
|
7747 |
-
msgid "
|
7748 |
msgstr ""
|
7749 |
|
7750 |
-
#: languages/vue.php:
|
7751 |
-
msgid "
|
7752 |
msgstr ""
|
7753 |
|
7754 |
-
#: languages/vue.php:
|
7755 |
-
msgid "
|
7756 |
msgstr ""
|
7757 |
|
7758 |
-
#: languages/vue.php:
|
7759 |
-
msgid "
|
7760 |
msgstr ""
|
7761 |
|
7762 |
-
#: languages/vue.php:
|
7763 |
-
msgid "
|
7764 |
msgstr ""
|
7765 |
|
7766 |
-
#: languages/vue.php:
|
7767 |
-
msgid "
|
7768 |
msgstr ""
|
7769 |
|
7770 |
-
#: languages/vue.php:
|
7771 |
-
msgid "
|
7772 |
msgstr ""
|
7773 |
|
7774 |
-
#: languages/vue.php:
|
7775 |
-
msgid "
|
7776 |
msgstr ""
|
7777 |
|
7778 |
-
#: languages/vue.php:
|
7779 |
-
msgid "
|
7780 |
msgstr ""
|
7781 |
|
7782 |
-
#: languages/vue.php:
|
7783 |
-
msgid "
|
7784 |
msgstr ""
|
7785 |
|
7786 |
-
#: languages/vue.php:
|
7787 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7788 |
msgstr ""
|
7789 |
|
7790 |
-
#. Translators: Make text bold.
|
7791 |
#: languages/vue.php:2113
|
7792 |
-
msgid "
|
7793 |
msgstr ""
|
7794 |
|
7795 |
#: languages/vue.php:2116
|
7796 |
-
msgid "
|
7797 |
msgstr ""
|
7798 |
|
7799 |
#: languages/vue.php:2119
|
7800 |
-
msgid "
|
7801 |
msgstr ""
|
7802 |
|
7803 |
#: languages/vue.php:2122
|
7804 |
-
msgid "
|
7805 |
msgstr ""
|
7806 |
|
7807 |
#: languages/vue.php:2125
|
7808 |
-
msgid "
|
7809 |
msgstr ""
|
7810 |
|
7811 |
#: languages/vue.php:2128
|
7812 |
-
msgid "
|
7813 |
msgstr ""
|
7814 |
|
7815 |
#: languages/vue.php:2131
|
7816 |
-
msgid "
|
7817 |
msgstr ""
|
7818 |
|
7819 |
#: languages/vue.php:2134
|
7820 |
-
msgid "
|
7821 |
-
msgstr ""
|
7822 |
-
|
7823 |
-
#: languages/vue.php:2137
|
7824 |
-
msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
|
7825 |
msgstr ""
|
7826 |
|
7827 |
-
|
7828 |
-
|
|
|
7829 |
msgstr ""
|
7830 |
|
7831 |
-
|
7832 |
-
|
|
|
7833 |
msgstr ""
|
7834 |
|
7835 |
-
#: languages/vue.php:
|
7836 |
-
msgid "
|
7837 |
msgstr ""
|
7838 |
|
7839 |
-
#: languages/vue.php:
|
7840 |
-
msgid "
|
7841 |
msgstr ""
|
7842 |
|
7843 |
-
#: languages/vue.php:
|
7844 |
-
msgid "
|
7845 |
msgstr ""
|
7846 |
|
7847 |
-
#: languages/vue.php:
|
7848 |
-
msgid "
|
7849 |
msgstr ""
|
7850 |
|
|
|
7851 |
#: languages/vue.php:2158
|
7852 |
-
msgid "
|
7853 |
-
msgstr ""
|
7854 |
-
|
7855 |
-
#: languages/vue.php:2161
|
7856 |
-
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."
|
7857 |
msgstr ""
|
7858 |
|
7859 |
-
#. Translators:
|
7860 |
-
#: languages/vue.php:
|
7861 |
-
msgid "
|
7862 |
msgstr ""
|
7863 |
|
7864 |
-
|
7865 |
-
|
|
|
7866 |
msgstr ""
|
7867 |
|
7868 |
-
|
7869 |
-
|
|
|
7870 |
msgstr ""
|
7871 |
|
|
|
7872 |
#: languages/vue.php:2174
|
7873 |
-
msgid "
|
7874 |
-
msgstr ""
|
7875 |
-
|
7876 |
-
#: languages/vue.php:2177
|
7877 |
-
msgid "See Your Traffic Demographics"
|
7878 |
-
msgstr ""
|
7879 |
-
|
7880 |
-
#: languages/vue.php:2180
|
7881 |
-
msgid "Get Fresh Reports Data Every 60 Seconds"
|
7882 |
msgstr ""
|
7883 |
|
7884 |
-
|
7885 |
-
|
|
|
7886 |
msgstr ""
|
7887 |
|
7888 |
-
|
7889 |
-
|
|
|
7890 |
msgstr ""
|
7891 |
|
7892 |
-
#: languages/vue.php:
|
7893 |
-
msgid "
|
7894 |
msgstr ""
|
7895 |
|
7896 |
-
#: languages/vue.php:
|
7897 |
-
msgid "
|
7898 |
msgstr ""
|
7899 |
|
7900 |
-
#: languages/vue.php:
|
7901 |
-
msgid "
|
7902 |
msgstr ""
|
7903 |
|
7904 |
-
#: languages/vue.php:
|
7905 |
-
msgid "
|
7906 |
msgstr ""
|
7907 |
|
7908 |
-
#: languages/vue.php:
|
7909 |
-
msgid "
|
7910 |
msgstr ""
|
7911 |
|
|
|
7912 |
#: languages/vue.php:2204
|
7913 |
-
msgid "
|
7914 |
-
msgstr ""
|
7915 |
-
|
7916 |
-
#: languages/vue.php:2207
|
7917 |
-
msgid "Connection Type"
|
7918 |
msgstr ""
|
7919 |
|
7920 |
-
|
7921 |
-
|
|
|
7922 |
msgstr ""
|
7923 |
|
7924 |
-
|
7925 |
-
|
7926 |
-
"
|
7927 |
-
" and other privacy regulations."
|
7928 |
msgstr ""
|
7929 |
|
7930 |
-
|
7931 |
-
|
|
|
7932 |
msgstr ""
|
7933 |
|
|
|
7934 |
#: languages/vue.php:2220
|
7935 |
-
msgid "
|
7936 |
msgstr ""
|
7937 |
|
7938 |
-
|
7939 |
-
|
|
|
7940 |
msgstr ""
|
7941 |
|
7942 |
-
#: languages/vue.php:
|
7943 |
-
msgid "
|
7944 |
msgstr ""
|
7945 |
|
7946 |
-
#: languages/vue.php:
|
7947 |
-
msgid "
|
7948 |
msgstr ""
|
7949 |
|
7950 |
-
#. Translators: Make text green and add smiley face.
|
7951 |
#: languages/vue.php:2233
|
7952 |
-
msgid "
|
7953 |
msgstr ""
|
7954 |
|
7955 |
-
#. Translators: Make text
|
7956 |
#: languages/vue.php:2237
|
7957 |
-
msgid "
|
7958 |
msgstr ""
|
7959 |
|
7960 |
#: languages/vue.php:2240
|
7961 |
-
msgid "
|
7962 |
msgstr ""
|
7963 |
|
7964 |
-
|
7965 |
-
|
7966 |
-
msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
|
7967 |
msgstr ""
|
7968 |
|
7969 |
-
#: languages/vue.php:
|
7970 |
-
msgid "
|
7971 |
msgstr ""
|
7972 |
|
7973 |
-
#: languages/vue.php:
|
7974 |
-
msgid "
|
7975 |
msgstr ""
|
7976 |
|
7977 |
-
|
7978 |
-
|
7979 |
-
msgid "Can't activate addon. Error: %1$s, %2$s"
|
7980 |
msgstr ""
|
7981 |
|
7982 |
-
#: languages/vue.php:
|
7983 |
-
msgid "
|
|
|
|
|
|
|
|
|
7984 |
msgstr ""
|
7985 |
|
7986 |
-
#. Translators: Error status and error text.
|
7987 |
#: languages/vue.php:2261
|
7988 |
-
msgid "
|
7989 |
msgstr ""
|
7990 |
|
7991 |
#: languages/vue.php:2264
|
7992 |
-
msgid "
|
7993 |
msgstr ""
|
7994 |
|
7995 |
-
|
7996 |
-
|
7997 |
-
msgid "Can't install plugin. Error: %1$s, %2$s"
|
7998 |
msgstr ""
|
7999 |
|
8000 |
-
#: languages/vue.php:
|
8001 |
-
msgid "
|
8002 |
msgstr ""
|
8003 |
|
8004 |
-
|
8005 |
-
|
8006 |
-
msgid "Can't install addon. Error: %1$s, %2$s"
|
8007 |
msgstr ""
|
8008 |
|
8009 |
-
#: languages/vue.php:
|
8010 |
-
msgid "
|
|
|
|
|
|
|
|
|
8011 |
msgstr ""
|
8012 |
|
8013 |
-
#. Translators: Error status and error text.
|
8014 |
#: languages/vue.php:2282
|
8015 |
-
msgid "
|
8016 |
msgstr ""
|
8017 |
|
8018 |
#: languages/vue.php:2285
|
8019 |
-
msgid "
|
8020 |
msgstr ""
|
8021 |
|
8022 |
#: languages/vue.php:2288
|
8023 |
-
msgid "
|
8024 |
msgstr ""
|
8025 |
|
8026 |
#: languages/vue.php:2291
|
8027 |
-
msgid "
|
8028 |
msgstr ""
|
8029 |
|
8030 |
-
|
8031 |
-
|
|
|
8032 |
msgstr ""
|
8033 |
|
8034 |
-
|
8035 |
-
|
|
|
8036 |
msgstr ""
|
8037 |
|
8038 |
-
#: languages/vue.php:
|
8039 |
-
msgid "
|
8040 |
msgstr ""
|
8041 |
|
8042 |
-
#: languages/vue.php:
|
8043 |
-
msgid "
|
8044 |
msgstr ""
|
8045 |
|
8046 |
-
|
8047 |
-
|
8048 |
-
msgid "Can't deactivate the license. Error: %1$s, %2$s"
|
8049 |
msgstr ""
|
8050 |
|
8051 |
-
#. Translators: Error status and error text.
|
8052 |
#: languages/vue.php:2311
|
8053 |
-
msgid "
|
8054 |
msgstr ""
|
8055 |
|
8056 |
-
|
8057 |
-
|
8058 |
-
msgid "Can't load license details. Error: %1$s, %2$s"
|
8059 |
msgstr ""
|
8060 |
|
8061 |
-
#: languages/vue.php:
|
8062 |
-
msgid "
|
8063 |
msgstr ""
|
8064 |
|
8065 |
-
|
8066 |
-
|
8067 |
-
|
|
|
|
|
|
|
8068 |
msgstr ""
|
8069 |
|
8070 |
-
#. Translators: Error status and error text.
|
8071 |
#: languages/vue.php:2326
|
8072 |
-
msgid "
|
8073 |
msgstr ""
|
8074 |
|
8075 |
#: languages/vue.php:2329
|
8076 |
-
msgid "
|
8077 |
msgstr ""
|
8078 |
|
8079 |
#: languages/vue.php:2332
|
8080 |
-
msgid "
|
8081 |
msgstr ""
|
8082 |
|
8083 |
-
#. Translators:
|
8084 |
#: languages/vue.php:2336
|
8085 |
-
msgid "
|
8086 |
msgstr ""
|
8087 |
|
8088 |
#: languages/vue.php:2339
|
8089 |
-
msgid "
|
8090 |
msgstr ""
|
8091 |
|
8092 |
-
|
8093 |
-
|
8094 |
-
msgid "Can't load authentication details. Error: %1$s, %2$s"
|
8095 |
msgstr ""
|
8096 |
|
8097 |
-
|
8098 |
-
|
8099 |
-
msgid "Can't authenticate. Error: %1$s, %2$s"
|
8100 |
msgstr ""
|
8101 |
|
8102 |
-
|
8103 |
-
|
8104 |
-
msgid "Can't reauthenticate. Error: %1$s, %2$s"
|
8105 |
msgstr ""
|
8106 |
|
8107 |
-
|
8108 |
-
|
8109 |
-
msgid "Can't verify credentials. Error: %1$s, %2$s"
|
8110 |
msgstr ""
|
8111 |
|
8112 |
-
#: languages/vue.php:
|
8113 |
-
msgid "
|
8114 |
msgstr ""
|
8115 |
|
8116 |
-
|
8117 |
-
|
|
|
8118 |
msgstr ""
|
8119 |
|
8120 |
-
|
8121 |
-
|
|
|
8122 |
msgstr ""
|
8123 |
|
8124 |
-
|
8125 |
-
|
|
|
8126 |
msgstr ""
|
8127 |
|
8128 |
-
#: languages/vue.php:
|
8129 |
-
msgid "
|
8130 |
msgstr ""
|
8131 |
|
8132 |
-
#: languages/vue.php:
|
8133 |
-
msgid "
|
8134 |
msgstr ""
|
8135 |
|
8136 |
-
#: languages/vue.php:
|
8137 |
-
msgid "
|
8138 |
msgstr ""
|
8139 |
|
|
|
8140 |
#: languages/vue.php:2379
|
8141 |
-
msgid "
|
8142 |
msgstr ""
|
8143 |
|
8144 |
#: languages/vue.php:2382
|
8145 |
-
msgid "
|
8146 |
msgstr ""
|
8147 |
|
8148 |
#: languages/vue.php:2385
|
8149 |
-
msgid "
|
8150 |
msgstr ""
|
8151 |
|
8152 |
#: languages/vue.php:2388
|
8153 |
-
msgid "
|
8154 |
msgstr ""
|
8155 |
|
8156 |
#: languages/vue.php:2391
|
8157 |
-
msgid "
|
8158 |
msgstr ""
|
8159 |
|
8160 |
#: languages/vue.php:2394
|
8161 |
-
msgid "
|
8162 |
msgstr ""
|
8163 |
|
8164 |
-
|
8165 |
-
|
|
|
8166 |
msgstr ""
|
8167 |
|
8168 |
-
#: languages/vue.php:
|
8169 |
-
msgid "
|
8170 |
msgstr ""
|
8171 |
|
8172 |
-
#. Translators: Make the text bold.
|
8173 |
#: languages/vue.php:2404
|
8174 |
-
msgid "
|
8175 |
msgstr ""
|
8176 |
|
8177 |
-
|
8178 |
-
|
8179 |
-
msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
|
8180 |
msgstr ""
|
8181 |
|
8182 |
-
#: languages/vue.php:
|
8183 |
-
msgid "
|
8184 |
msgstr ""
|
8185 |
|
8186 |
-
#: languages/vue.php:
|
8187 |
-
msgid "
|
8188 |
msgstr ""
|
8189 |
|
|
|
8190 |
#: languages/vue.php:2417
|
8191 |
-
msgid "
|
8192 |
msgstr ""
|
8193 |
|
8194 |
#: languages/vue.php:2420
|
8195 |
-
msgid "
|
8196 |
msgstr ""
|
8197 |
|
8198 |
#: languages/vue.php:2423
|
8199 |
-
msgid "
|
8200 |
msgstr ""
|
8201 |
|
8202 |
#: languages/vue.php:2426
|
8203 |
-
msgid "
|
8204 |
msgstr ""
|
8205 |
|
8206 |
#: languages/vue.php:2429
|
8207 |
-
msgid "
|
8208 |
msgstr ""
|
8209 |
|
8210 |
#: languages/vue.php:2432
|
8211 |
-
msgid "
|
8212 |
msgstr ""
|
8213 |
|
8214 |
#: languages/vue.php:2435
|
8215 |
-
msgid "
|
8216 |
msgstr ""
|
8217 |
|
8218 |
#: languages/vue.php:2438
|
8219 |
-
msgid "
|
8220 |
msgstr ""
|
8221 |
|
8222 |
#: languages/vue.php:2441
|
8223 |
-
msgid "
|
8224 |
msgstr ""
|
8225 |
|
8226 |
#: languages/vue.php:2444
|
8227 |
-
msgid "
|
8228 |
msgstr ""
|
8229 |
|
8230 |
#: languages/vue.php:2447
|
8231 |
-
msgid "
|
8232 |
msgstr ""
|
8233 |
|
8234 |
#: languages/vue.php:2450
|
8235 |
-
msgid "
|
8236 |
-
msgstr ""
|
8237 |
-
|
8238 |
-
#: languages/vue.php:2453
|
8239 |
-
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."
|
8240 |
-
msgstr ""
|
8241 |
-
|
8242 |
-
#: languages/vue.php:2456
|
8243 |
-
msgid "File Download Tracking"
|
8244 |
msgstr ""
|
8245 |
|
8246 |
-
#: languages/vue.php:
|
8247 |
-
msgid "
|
8248 |
msgstr ""
|
8249 |
|
8250 |
-
#: languages/vue.php:
|
8251 |
-
msgid "
|
8252 |
msgstr ""
|
8253 |
|
8254 |
-
#: languages/vue.php:
|
8255 |
-
msgid "
|
8256 |
msgstr ""
|
8257 |
|
8258 |
-
#: languages/vue.php:
|
8259 |
-
msgid "
|
8260 |
msgstr ""
|
8261 |
|
8262 |
-
#: languages/vue.php:
|
8263 |
-
msgid "
|
8264 |
msgstr ""
|
8265 |
|
8266 |
-
#: languages/vue.php:
|
8267 |
-
msgid "
|
8268 |
msgstr ""
|
8269 |
|
8270 |
-
#: languages/vue.php:
|
8271 |
-
msgid "
|
8272 |
msgstr ""
|
8273 |
|
8274 |
-
#: languages/vue.php:
|
8275 |
-
msgid "
|
8276 |
msgstr ""
|
8277 |
|
8278 |
-
#: languages/vue.php:
|
8279 |
-
msgid "
|
8280 |
msgstr ""
|
8281 |
|
8282 |
-
#: languages/vue.php:
|
8283 |
-
msgid "
|
8284 |
msgstr ""
|
8285 |
|
8286 |
-
#: languages/vue.php:
|
8287 |
-
msgid "
|
8288 |
msgstr ""
|
8289 |
|
8290 |
-
#: languages/vue.php:
|
8291 |
-
msgid "
|
8292 |
msgstr ""
|
8293 |
|
8294 |
-
#: languages/vue.php:
|
8295 |
-
msgid "
|
8296 |
msgstr ""
|
8297 |
|
8298 |
-
#: languages/vue.php:
|
8299 |
-
msgid "
|
8300 |
msgstr ""
|
8301 |
|
8302 |
-
|
8303 |
-
|
|
|
8304 |
msgstr ""
|
8305 |
|
|
|
8306 |
#: languages/vue.php:2504
|
8307 |
-
msgid "
|
8308 |
-
msgstr ""
|
8309 |
-
|
8310 |
-
#: languages/vue.php:2507
|
8311 |
-
msgid "Empty Cache"
|
8312 |
-
msgstr ""
|
8313 |
-
|
8314 |
-
#: languages/vue.php:2510
|
8315 |
-
msgid "Click to manually wipe the cache right now."
|
8316 |
msgstr ""
|
8317 |
|
8318 |
-
|
8319 |
-
|
|
|
8320 |
msgstr ""
|
8321 |
|
8322 |
-
#: languages/vue.php:
|
8323 |
-
msgid "
|
8324 |
msgstr ""
|
8325 |
|
8326 |
-
#: languages/vue.php:
|
8327 |
msgid "Only Show Posts from These Categories"
|
8328 |
msgstr ""
|
8329 |
|
8330 |
-
#: languages/vue.php:
|
8331 |
msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
|
8332 |
msgstr ""
|
8333 |
|
8334 |
-
#: languages/vue.php:
|
8335 |
msgid "Author/Date"
|
8336 |
msgstr ""
|
8337 |
|
8338 |
-
#: languages/vue.php:
|
8339 |
msgid "Choose which content you would like displayed in the widget."
|
8340 |
msgstr ""
|
8341 |
|
8342 |
-
#: languages/vue.php:
|
8343 |
msgid "Comments"
|
8344 |
msgstr ""
|
8345 |
|
8346 |
-
#: languages/vue.php:
|
8347 |
msgid "Choose how many posts you’d like displayed in the widget."
|
8348 |
msgstr ""
|
8349 |
|
8350 |
-
#: languages/vue.php:
|
8351 |
msgid "Wide"
|
8352 |
msgstr ""
|
8353 |
|
8354 |
-
#: languages/vue.php:
|
8355 |
msgid "Narrow"
|
8356 |
msgstr ""
|
8357 |
|
8358 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8359 |
#: languages/vue.php:2565
|
8360 |
-
msgid "
|
8361 |
msgstr ""
|
8362 |
|
8363 |
#: languages/vue.php:2568
|
8364 |
-
msgid "
|
8365 |
msgstr ""
|
8366 |
|
8367 |
#: languages/vue.php:2571
|
8368 |
-
msgid "
|
8369 |
msgstr ""
|
8370 |
|
8371 |
#: languages/vue.php:2574
|
8372 |
-
msgid "
|
8373 |
msgstr ""
|
8374 |
|
8375 |
#: languages/vue.php:2577
|
8376 |
-
msgid "
|
8377 |
msgstr ""
|
8378 |
|
8379 |
#: languages/vue.php:2580
|
8380 |
-
msgid "
|
8381 |
msgstr ""
|
8382 |
|
8383 |
-
|
8384 |
-
|
8385 |
-
|
|
|
8386 |
msgstr ""
|
8387 |
|
8388 |
-
|
8389 |
-
|
8390 |
-
msgid "Unique %s Pageviews"
|
8391 |
msgstr ""
|
8392 |
|
8393 |
-
#: languages/vue.php:
|
8394 |
-
msgid "
|
8395 |
msgstr ""
|
8396 |
|
8397 |
-
#: languages/vue.php:
|
8398 |
-
msgid "
|
8399 |
msgstr ""
|
8400 |
|
8401 |
-
|
8402 |
-
|
8403 |
-
msgid "%s results"
|
8404 |
msgstr ""
|
8405 |
|
8406 |
-
#: languages/vue.php:
|
8407 |
-
msgid "
|
|
|
|
|
|
|
|
|
8408 |
msgstr ""
|
8409 |
|
8410 |
-
#. Translators: placeholders make text small.
|
8411 |
#: languages/vue.php:2605
|
8412 |
-
msgid "
|
8413 |
msgstr ""
|
8414 |
|
8415 |
#: languages/vue.php:2608
|
8416 |
-
msgid "
|
8417 |
msgstr ""
|
8418 |
|
8419 |
-
|
8420 |
-
|
|
|
8421 |
msgstr ""
|
8422 |
|
8423 |
-
#: languages/vue.php:
|
8424 |
-
msgid "
|
8425 |
msgstr ""
|
8426 |
|
8427 |
-
#: languages/vue.php:
|
8428 |
-
msgid "
|
8429 |
msgstr ""
|
8430 |
|
8431 |
-
#. Translators: Adds a link to the documentation.
|
8432 |
#: languages/vue.php:2621
|
8433 |
-
msgid "
|
|
|
|
|
|
|
|
|
8434 |
msgstr ""
|
8435 |
|
8436 |
#: languages/vue.php:2627
|
8437 |
-
msgid "
|
8438 |
msgstr ""
|
8439 |
|
8440 |
#: languages/vue.php:2630
|
8441 |
-
msgid "
|
8442 |
msgstr ""
|
8443 |
|
8444 |
#: languages/vue.php:2633
|
8445 |
-
msgid "
|
8446 |
msgstr ""
|
8447 |
|
8448 |
#: languages/vue.php:2636
|
8449 |
-
msgid "
|
8450 |
msgstr ""
|
8451 |
|
8452 |
#: languages/vue.php:2639
|
8453 |
-
msgid "
|
8454 |
msgstr ""
|
8455 |
|
8456 |
#: languages/vue.php:2642
|
8457 |
-
msgid "
|
8458 |
msgstr ""
|
8459 |
|
8460 |
#: languages/vue.php:2645
|
8461 |
-
msgid "
|
8462 |
msgstr ""
|
8463 |
|
8464 |
#: languages/vue.php:2648
|
8465 |
-
msgid "
|
8466 |
msgstr ""
|
8467 |
|
8468 |
#: languages/vue.php:2651
|
8469 |
-
msgid "
|
8470 |
msgstr ""
|
8471 |
|
8472 |
#: languages/vue.php:2654
|
8473 |
-
msgid "
|
8474 |
msgstr ""
|
8475 |
|
8476 |
#: languages/vue.php:2657
|
8477 |
-
msgid "
|
8478 |
msgstr ""
|
8479 |
|
8480 |
#: languages/vue.php:2660
|
8481 |
-
msgid "%1$
|
8482 |
msgstr ""
|
8483 |
|
8484 |
#: languages/vue.php:2663
|
8485 |
-
msgid "%1$sStep
|
8486 |
msgstr ""
|
8487 |
|
8488 |
#: languages/vue.php:2666
|
8489 |
-
msgid "
|
8490 |
msgstr ""
|
8491 |
|
8492 |
#: languages/vue.php:2669
|
8493 |
-
msgid "
|
8494 |
msgstr ""
|
8495 |
|
8496 |
#: languages/vue.php:2672
|
8497 |
-
msgid "
|
8498 |
msgstr ""
|
8499 |
|
8500 |
#: languages/vue.php:2675
|
8501 |
-
msgid "
|
8502 |
msgstr ""
|
8503 |
|
8504 |
#: languages/vue.php:2678
|
8505 |
-
msgid "
|
8506 |
msgstr ""
|
8507 |
|
8508 |
#: languages/vue.php:2681
|
8509 |
-
msgid "
|
8510 |
msgstr ""
|
8511 |
|
8512 |
#: languages/vue.php:2684
|
8513 |
-
msgid "
|
8514 |
msgstr ""
|
8515 |
|
8516 |
#: languages/vue.php:2687
|
8517 |
-
msgid "
|
8518 |
msgstr ""
|
8519 |
|
8520 |
-
|
8521 |
-
|
|
|
8522 |
msgstr ""
|
8523 |
|
8524 |
-
#: languages/vue.php:
|
8525 |
-
msgid "
|
8526 |
msgstr ""
|
8527 |
|
8528 |
-
#: languages/vue.php:
|
8529 |
-
msgid "
|
8530 |
msgstr ""
|
8531 |
|
8532 |
-
#: languages/vue.php:
|
8533 |
-
msgid "
|
8534 |
msgstr ""
|
8535 |
|
8536 |
-
|
8537 |
-
|
|
|
8538 |
msgstr ""
|
8539 |
|
8540 |
-
#: languages/vue.php:
|
8541 |
-
msgid "
|
8542 |
msgstr ""
|
8543 |
|
8544 |
-
#: languages/vue.php:
|
8545 |
-
msgid "
|
8546 |
msgstr ""
|
8547 |
|
8548 |
-
|
8549 |
-
|
8550 |
-
msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
|
8551 |
msgstr ""
|
8552 |
|
8553 |
-
#. Translators: Makes text green.
|
8554 |
#: languages/vue.php:2716
|
8555 |
-
msgid "
|
8556 |
msgstr ""
|
8557 |
|
8558 |
#: languages/vue.php:2719
|
8559 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8560 |
msgstr ""
|
8561 |
|
8562 |
#: gadwp.php:250
|
2 |
# This file is distributed under the same license as the Google Analytics Dashboard for WP (GADWP) plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Google Analytics Dashboard for WP (GADWP) 6.3.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
|
7 |
"Last-Translator: ExactMetrics Team <support@exactmetrics.com>\n"
|
8 |
"Language-Team: ExactMetrics Team <support@exactmetrics.com>\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-11-24T11:44:15+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"
|
75 |
msgstr ""
|
76 |
|
77 |
#: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:258
|
78 |
+
#: languages/vue.php:2454
|
79 |
msgid "Theme Preview"
|
80 |
msgstr ""
|
81 |
|
228 |
#: lite/includes/admin/wp-site-health.php:372
|
229 |
#: lite/includes/admin/wp-site-health.php:398
|
230 |
#: lite/includes/admin/wp-site-health.php:425
|
231 |
+
#: languages/vue.php:1709
|
232 |
msgid "View Addons"
|
233 |
msgstr ""
|
234 |
|
379 |
msgstr ""
|
380 |
|
381 |
#: lite/includes/admin/reports/report-queries.php:22
|
382 |
+
#: languages/vue.php:208
|
383 |
msgid "Search Console"
|
384 |
msgstr ""
|
385 |
|
386 |
#: lite/includes/admin/reports/report-ecommerce.php:22
|
387 |
+
#: languages/vue.php:203
|
388 |
msgid "eCommerce"
|
389 |
msgstr ""
|
390 |
|
397 |
msgstr ""
|
398 |
|
399 |
#: lite/includes/admin/reports/report-publisher.php:22
|
400 |
+
#: languages/vue.php:199
|
401 |
msgid "Publishers"
|
402 |
msgstr ""
|
403 |
|
404 |
#: lite/includes/admin/reports/report-dimensions.php:22
|
405 |
+
#: languages/vue.php:211
|
406 |
msgid "Dimensions"
|
407 |
msgstr ""
|
408 |
|
409 |
#: lite/includes/admin/reports/report-forms.php:22
|
410 |
+
#: languages/vue.php:214
|
411 |
msgid "Forms"
|
412 |
msgstr ""
|
413 |
|
665 |
msgstr ""
|
666 |
|
667 |
#: includes/gutenberg/headline-tool/headline-tool.php:302
|
668 |
+
#: languages/vue.php:1575
|
669 |
msgid "General"
|
670 |
msgstr ""
|
671 |
|
2947 |
msgid "%s Days"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: includes/admin/notification-event.php:308
|
2951 |
#: includes/admin/routes.php:614
|
2952 |
#: includes/admin/routes.php:948
|
2953 |
msgid "You don't have permission to view ExactMetrics reports."
|
3173 |
#: includes/admin/admin.php:34
|
3174 |
#: includes/admin/admin.php:42
|
3175 |
#: includes/admin/admin.php:188
|
3176 |
+
#: languages/vue.php:1572
|
3177 |
msgid "Settings"
|
3178 |
msgstr ""
|
3179 |
|
3189 |
|
3190 |
#: includes/admin/admin.php:39
|
3191 |
#: includes/admin/admin.php:98
|
3192 |
+
#: languages/vue.php:1896
|
3193 |
msgid "Reports"
|
3194 |
msgstr ""
|
3195 |
|
3227 |
|
3228 |
#: includes/admin/admin.php:63
|
3229 |
#: includes/admin/admin.php:106
|
3230 |
+
#: languages/vue.php:142
|
3231 |
msgid "About Us"
|
3232 |
msgstr ""
|
3233 |
|
3254 |
#: includes/admin/notifications/notification-upgrade-for-email-summaries.php:33
|
3255 |
#: includes/admin/notifications/notification-upgrade-for-search-console.php:33
|
3256 |
#: includes/admin/notifications/notification-upgrade-for-form-conversion.php:33
|
3257 |
+
#: includes/admin/reports/abstract-report.php:386
|
3258 |
msgid "Get ExactMetrics Pro"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
#: includes/admin/admin.php:178
|
3262 |
#: includes/admin/admin.php:181
|
3263 |
+
#: languages/vue.php:839
|
3264 |
msgid "Support"
|
3265 |
msgstr ""
|
3266 |
|
3270 |
msgstr ""
|
3271 |
|
3272 |
#: includes/admin/admin.php:284
|
3273 |
+
#: languages/vue.php:300
|
3274 |
msgid "Please Setup Website Analytics to See Audience Insights"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
#: includes/admin/admin.php:285
|
3278 |
+
#: languages/vue.php:306
|
3279 |
msgid "Connect ExactMetrics and Setup Website Analytics"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
#: includes/admin/admin.php:287
|
3283 |
+
#: includes/admin/notifications/notification-mobile-device.php:43
|
3284 |
+
#: includes/admin/notifications/notification-returning-visitors.php:44
|
3285 |
+
#: includes/admin/notifications/notification-traffic-dropping.php:39
|
3286 |
+
#: includes/admin/notifications/notification-bounce-rate.php:43
|
3287 |
#: includes/admin/notifications/notification-headline-analyzer.php:30
|
3288 |
+
#: includes/admin/notifications/notification-audience.php:95
|
3289 |
+
#: languages/vue.php:163
|
3290 |
msgid "Learn More"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
#: includes/admin/admin.php:289
|
3294 |
+
#: languages/vue.php:303
|
3295 |
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."
|
3296 |
msgstr ""
|
3297 |
|
3302 |
|
3303 |
#. Translators: Adds a link to the license renewal.
|
3304 |
#: includes/admin/admin.php:310
|
3305 |
+
#: languages/vue.php:270
|
3306 |
msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
#: includes/admin/admin.php:312
|
3310 |
+
#: languages/vue.php:273
|
3311 |
msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
|
3312 |
msgstr ""
|
3313 |
|
3314 |
#: includes/admin/admin.php:314
|
3315 |
+
#: languages/vue.php:276
|
3316 |
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."
|
3317 |
msgstr ""
|
3318 |
|
3407 |
msgstr ""
|
3408 |
|
3409 |
#. Translators: Mobile device notification title
|
3410 |
+
#: includes/admin/notifications/notification-mobile-device.php:33
|
3411 |
msgid "Traffic from Mobile Devices is %s%%"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
#. Translators: Mobile device notification content
|
3415 |
+
#: includes/admin/notifications/notification-mobile-device.php:35
|
3416 |
msgid "Traffic from mobile devices is considerably lower on your site compared to desktop devices. This could be an indicator that your site is not optimised for mobile devices.<br><br>Take a look now at %show your site looks%s on mobile and make sure all your content can be accessed correctly."
|
3417 |
msgstr ""
|
3418 |
|
3419 |
+
#: includes/admin/notifications/notification-mobile-device.php:39
|
3420 |
+
#: includes/admin/notifications/notification-returning-visitors.php:40
|
3421 |
+
#: includes/admin/notifications/notification-traffic-dropping.php:43
|
3422 |
+
#: includes/admin/notifications/notification-visitors.php:48
|
3423 |
+
#: includes/admin/notifications/notification-bounce-rate.php:39
|
3424 |
+
#: includes/admin/notifications/notification-audience.php:91
|
3425 |
msgid "View Report"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
#. Translators: Returning visitors notification title
|
3429 |
+
#: includes/admin/notifications/notification-returning-visitors.php:34
|
3430 |
msgid "Only %s%% of your visitors return to your site"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
#. Translators: Returning visitors notification content
|
3434 |
+
#: includes/admin/notifications/notification-returning-visitors.php:36
|
3435 |
msgid "For any website, returning visitors are important because they indicate how successful your marketing campaigns are, who are your loyal customers, and how powerful your brand is. %sIn this article%s, we’ll show you 7 proven ways to increase your returning visitor rate."
|
3436 |
msgstr ""
|
3437 |
|
3444 |
msgid "Wouldn’t it be easy if you could get your website’s performance report in your email inbox every week? With our new feature, Email Summaries, you can now view all your important stats in a simple report that’s delivered straight to your inbox. <br><br>You get an overview of your site's performance without logging in to WordPress or going through different Analytics reports. %sUpgrade to ExactMetrics Pro%s to enable the Email Summaries feature."
|
3445 |
msgstr ""
|
3446 |
|
3447 |
+
#: includes/admin/notifications/notification-traffic-dropping.php:33
|
3448 |
msgid "Your Website Traffic Is Dropping"
|
3449 |
msgstr ""
|
3450 |
|
3451 |
#. Translators: Traffic dropping notification content
|
3452 |
+
#: includes/admin/notifications/notification-traffic-dropping.php:35
|
3453 |
msgid "Your website traffic is decreasing and that’s a reason to take action now. Less traffic means less opportunities to make your brand known, make relationships and ultimately sell your service or product. <br><br>Follow the marketing hacks of %sthis article%s to start growing your traffic again."
|
3454 |
msgstr ""
|
3455 |
|
3456 |
#. Translators: visitors notification title
|
3457 |
#. Translators: Number of visitors.
|
3458 |
+
#: includes/admin/notifications/notification-visitors.php:42
|
3459 |
+
#: languages/vue.php:1297
|
3460 |
msgid "See how %s visitors found your site!"
|
3461 |
msgstr ""
|
3462 |
|
3463 |
#. Translators: visitors notification content
|
3464 |
+
#: includes/admin/notifications/notification-visitors.php:44
|
3465 |
msgid "Your website has been visited by %s visitors in the past 30 days. Click the button below to view the full analytics report."
|
3466 |
msgstr ""
|
3467 |
|
3496 |
msgid "Forms are one of the most important points of interaction on your website. When a visitor fills out a form on your site, they’re taking the next step in their customer journey. That’s why it’s so crucial that your WordPress forms are optimized for conversions. Upgrade to %sExactMetrics Pro%s to track %sform conversions in Google Analytics.%s"
|
3497 |
msgstr ""
|
3498 |
|
3499 |
+
#: includes/admin/notifications/notification-bounce-rate.php:33
|
3500 |
msgid "Your website bounce rate is higher than 70%"
|
3501 |
msgstr ""
|
3502 |
|
3503 |
#. Translators: Bounce rate notification content
|
3504 |
+
#: includes/admin/notifications/notification-bounce-rate.php:35
|
3505 |
msgid "Your website bounce rate is %s. High bounce rates can hurt your site’s conversions rates. A high bounce rate might mean that people aren’t finding what they’re looking for on your site. %sHere%s are some points to remember and steps to follow to get your bounce rates back to manageable levels."
|
3506 |
msgstr ""
|
3507 |
|
3515 |
msgstr ""
|
3516 |
|
3517 |
#. Translators: Audience notification title
|
3518 |
+
#: includes/admin/notifications/notification-audience.php:85
|
3519 |
msgid "%s%% of your Audience is from %s"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
#. Translators: Audience notification content
|
3523 |
+
#: includes/admin/notifications/notification-audience.php:87
|
3524 |
msgid "Is your site properly translated? By adding translated content specific to your audience you could gain big boosts in pageviews, time spent on page and a reduced bounce rate.<br><br>If you need help choosing a translation plugin to get you started take a look at %sthis article%s for the best options available."
|
3525 |
msgstr ""
|
3526 |
|
3547 |
msgstr ""
|
3548 |
|
3549 |
#: includes/admin/notifications/notification-upgrade-to-pro.php:34
|
3550 |
+
#: languages/vue.php:863
|
3551 |
msgid "Upgrade to Pro"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
#: includes/admin/reports/overview.php:34
|
3555 |
+
#: languages/vue.php:195
|
3556 |
msgid "Overview"
|
3557 |
msgstr ""
|
3558 |
|
3559 |
+
#: includes/admin/reports/abstract-report.php:55
|
3560 |
msgid "Access denied"
|
3561 |
msgstr ""
|
3562 |
|
3563 |
#. Translators: Placeholders add a link to the settings panel.
|
3564 |
+
#: includes/admin/reports/abstract-report.php:62
|
3565 |
msgid "Please %1$senable the dashboard%2$s to see report data."
|
3566 |
msgstr ""
|
3567 |
|
3568 |
+
#: includes/admin/reports/abstract-report.php:64
|
3569 |
msgid "The dashboard is disabled."
|
3570 |
msgstr ""
|
3571 |
|
3572 |
#. Translators: Placeholders add a link to the settings panel.
|
3573 |
+
#: includes/admin/reports/abstract-report.php:72
|
3574 |
msgid "You do not have an active license. Please %1$scheck your license configuration.%2$s"
|
3575 |
msgstr ""
|
3576 |
|
3577 |
#. Translators: Placeholders add a link to the settings panel.
|
3578 |
+
#: includes/admin/reports/abstract-report.php:82
|
3579 |
msgid "Please %1$sauthenticate %2$swith Google Analytics to allow the plugin to fetch data."
|
3580 |
msgstr ""
|
3581 |
|
3582 |
+
#: includes/admin/reports/abstract-report.php:84
|
3583 |
msgid "The Google oAuth authentication needs to be re-authenticated to view data."
|
3584 |
msgstr ""
|
3585 |
|
3586 |
+
#: includes/admin/reports/abstract-report.php:111
|
3587 |
msgid "No data found"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
+
#: includes/admin/reports/abstract-report.php:157
|
3591 |
msgid "Invalid date range."
|
3592 |
msgstr ""
|
3593 |
|
3594 |
+
#: includes/admin/reports/abstract-report.php:266
|
3595 |
msgid "You must authenticate with ExactMetrics to use reports."
|
3596 |
msgstr ""
|
3597 |
|
3598 |
#. Translators: Placeholders add the license level and the report title.
|
3599 |
+
#: includes/admin/reports/abstract-report.php:316
|
3600 |
msgid "You currently have a %1$s level license, but this report requires at least a %2$s level license to view the %3$s. Please upgrade to view this report."
|
3601 |
msgstr ""
|
3602 |
|
3603 |
+
#: includes/admin/reports/abstract-report.php:328
|
3604 |
msgid "Ready to Get Analytics Super-Powers?"
|
3605 |
msgstr ""
|
3606 |
|
3607 |
+
#: includes/admin/reports/abstract-report.php:330
|
3608 |
msgid "(And Crush Your Competition?)"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
#. Translators: License level and smiley.
|
3612 |
+
#: includes/admin/reports/abstract-report.php:336
|
3613 |
msgid "Hey there! It looks like you've got the %1$s license installed on your site. That's awesome! %s"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
#. Translators: Placeholders add the report title and license level.
|
3617 |
+
#: includes/admin/reports/abstract-report.php:343
|
3618 |
msgid "Do you want to access to %1$s reporting right now%2$s in your WordPress Dashboard? That comes with the %3$s level%4$s of our paid packages. You'll need to upgrade your license to get instant access."
|
3619 |
msgstr ""
|
3620 |
|
3621 |
#. Translators: Placeholdes add links to the account area and a guide.
|
3622 |
+
#: includes/admin/reports/abstract-report.php:350
|
3623 |
msgid "It's easy! To upgrade, navigate to %1$sMy Account%2$s on ExactMetrics.com, go to the licenses tab, and click upgrade. We also have a %3$sstep by step guide%4$s with pictures of this process."
|
3624 |
msgstr ""
|
3625 |
|
3626 |
+
#: includes/admin/reports/abstract-report.php:354
|
3627 |
+
#: includes/admin/reports/abstract-report.php:377
|
3628 |
msgid "If you have any questions, don't hesitate to reach out. We're here to help."
|
3629 |
msgstr ""
|
3630 |
|
3631 |
#. Translators: Placeholder adds a smiley face.
|
3632 |
+
#: includes/admin/reports/abstract-report.php:359
|
3633 |
msgid "Hey there! %s It looks like you've got the free version of ExactMetrics installed on your site. That's awesome!"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
#. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
|
3637 |
+
#: includes/admin/reports/abstract-report.php:366
|
3638 |
msgid "Do you you want to access to %1$s reporting right now%2$s in your WordPress Dashboard? That comes with %3$s level%4$s of our paid packages. To get instant access, you'll want to buy a ExactMetrics license, which also gives you access to powerful addons, expanded reporting (including the ability to use custom date ranges), comprehensive tracking features (like UserID tracking) and access to our world-class support team."
|
3639 |
msgstr ""
|
3640 |
|
3641 |
#. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
|
3642 |
+
#: includes/admin/reports/abstract-report.php:373
|
3643 |
msgid "Upgrading is easy! To upgrade, navigate to %1$ssour pricing page%2$s, purchase the required license, and then follow the %3$sinstructions in the email receipt%4$s to upgrade. It only takes a few minutes to unlock the most powerful, yet easy to use analytics tracking system for WordPress."
|
3644 |
msgstr ""
|
3645 |
|
3646 |
+
#: includes/admin/reports/abstract-report.php:383
|
3647 |
+
#: languages/vue.php:477
|
3648 |
msgid "Upgrade Now"
|
3649 |
msgstr ""
|
3650 |
|
3651 |
+
#: includes/admin/reports/abstract-report.php:420
|
3652 |
msgid "Please ask your webmaster to enable this addon."
|
3653 |
msgstr ""
|
3654 |
|
4839 |
msgstr ""
|
4840 |
|
4841 |
#: languages/gutenberg.php:77
|
4842 |
+
#: languages/vue.php:1563
|
4843 |
msgid "Inline Popular Posts"
|
4844 |
msgstr ""
|
4845 |
|
4876 |
msgstr ""
|
4877 |
|
4878 |
#: languages/gutenberg.php:107
|
4879 |
+
#: languages/vue.php:2523
|
4880 |
msgid "Wide-Layout Options"
|
4881 |
msgstr ""
|
4882 |
|
4885 |
msgstr ""
|
4886 |
|
4887 |
#: languages/gutenberg.php:113
|
4888 |
+
#: languages/vue.php:2526
|
4889 |
msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
|
4890 |
msgstr ""
|
4891 |
|
4892 |
#: languages/gutenberg.php:116
|
4893 |
+
#: languages/vue.php:2547
|
4894 |
msgid "Post Count"
|
4895 |
msgstr ""
|
4896 |
|
4899 |
msgstr ""
|
4900 |
|
4901 |
#: languages/gutenberg.php:122
|
4902 |
+
#: languages/vue.php:2529
|
4903 |
msgid "Display Options"
|
4904 |
msgstr ""
|
4905 |
|
4912 |
msgstr ""
|
4913 |
|
4914 |
#: languages/gutenberg.php:131
|
4915 |
+
#: languages/vue.php:2188
|
4916 |
msgid "Widget Title"
|
4917 |
msgstr ""
|
4918 |
|
4921 |
msgstr ""
|
4922 |
|
4923 |
#: languages/gutenberg.php:137
|
4924 |
+
#: languages/vue.php:2535
|
4925 |
msgid "Display Author"
|
4926 |
msgstr ""
|
4927 |
|
4928 |
#: languages/gutenberg.php:140
|
4929 |
+
#: languages/vue.php:2538
|
4930 |
msgid "Display Date"
|
4931 |
msgstr ""
|
4932 |
|
4933 |
#: languages/gutenberg.php:143
|
4934 |
+
#: languages/vue.php:2541
|
4935 |
msgid "Display Comments"
|
4936 |
msgstr ""
|
4937 |
|
5152 |
msgstr ""
|
5153 |
|
5154 |
#: languages/gutenberg.php:312
|
5155 |
+
#: languages/vue.php:1802
|
5156 |
msgid "Headline Analyzer"
|
5157 |
msgstr ""
|
5158 |
|
5172 |
msgid "2"
|
5173 |
msgstr ""
|
5174 |
|
5175 |
+
#: languages/vue.php:12
|
5176 |
msgid "Error"
|
5177 |
msgstr ""
|
5178 |
|
5179 |
+
#: languages/vue.php:15
|
5180 |
msgid "Please try again."
|
5181 |
msgstr ""
|
5182 |
|
5183 |
+
#: languages/vue.php:18
|
5184 |
+
msgid "Today"
|
5185 |
+
msgstr ""
|
5186 |
+
|
5187 |
+
#: languages/vue.php:21
|
5188 |
+
msgid "Yesterday"
|
5189 |
msgstr ""
|
5190 |
|
5191 |
#: languages/vue.php:24
|
5192 |
+
msgid "Last Week"
|
5193 |
msgstr ""
|
5194 |
|
5195 |
#: languages/vue.php:27
|
5196 |
+
msgid "Last Month"
|
5197 |
msgstr ""
|
5198 |
|
5199 |
#: languages/vue.php:30
|
5200 |
+
msgid "Last 7 days"
|
5201 |
+
msgstr ""
|
5202 |
+
|
5203 |
+
#: languages/vue.php:33
|
5204 |
+
msgid "Last 30 days"
|
5205 |
+
msgstr ""
|
5206 |
+
|
5207 |
+
#: languages/vue.php:36
|
5208 |
+
msgid "Loading Settings"
|
5209 |
+
msgstr ""
|
5210 |
+
|
5211 |
+
#: languages/vue.php:40
|
5212 |
+
msgid "Please wait..."
|
5213 |
+
msgstr ""
|
5214 |
+
|
5215 |
+
#: languages/vue.php:43
|
5216 |
+
msgid "Saving Changes..."
|
5217 |
+
msgstr ""
|
5218 |
+
|
5219 |
+
#: languages/vue.php:46
|
5220 |
msgid "Settings Updated"
|
5221 |
msgstr ""
|
5222 |
|
5223 |
#. Translators: Add a link to the onboarding wizard.
|
5224 |
+
#: languages/vue.php:50
|
5225 |
msgid "You need to %1$sconnect ExactMetrics%2$s first"
|
5226 |
msgstr ""
|
5227 |
|
5228 |
+
#: languages/vue.php:53
|
5229 |
msgid "Could Not Save Changes"
|
5230 |
msgstr ""
|
5231 |
|
5232 |
+
#: languages/vue.php:56
|
5233 |
msgid "Loading new report data"
|
5234 |
msgstr ""
|
5235 |
|
5236 |
#. Translators: Adds an arrow icon.
|
5237 |
+
#: languages/vue.php:60
|
5238 |
msgid "Continue %s"
|
5239 |
msgstr ""
|
5240 |
|
5241 |
+
#: languages/vue.php:63
|
5242 |
msgid "Unlock the Publishers Report and Focus on the Content that Matters"
|
5243 |
msgstr ""
|
5244 |
|
5245 |
+
#: languages/vue.php:66
|
5246 |
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."
|
5247 |
msgstr ""
|
5248 |
|
5249 |
+
#: languages/vue.php:69
|
5250 |
msgid "Unlock the Publishers Report and Focus on the Content That Matters"
|
5251 |
msgstr ""
|
5252 |
|
5253 |
+
#: languages/vue.php:73
|
5254 |
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."
|
5255 |
msgstr ""
|
5256 |
|
5257 |
+
#: languages/vue.php:76
|
5258 |
msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
|
5259 |
msgstr ""
|
5260 |
|
5261 |
+
#: languages/vue.php:79
|
5262 |
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."
|
5263 |
msgstr ""
|
5264 |
|
5265 |
+
#: languages/vue.php:82
|
5266 |
msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
|
5267 |
msgstr ""
|
5268 |
|
5269 |
+
#: languages/vue.php:85
|
5270 |
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."
|
5271 |
msgstr ""
|
5272 |
|
5273 |
+
#: languages/vue.php:89
|
5274 |
msgid "Unlock the Forms Report and Improve Conversions"
|
5275 |
msgstr ""
|
5276 |
|
5277 |
+
#: languages/vue.php:93
|
5278 |
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."
|
5279 |
msgstr ""
|
5280 |
|
5281 |
+
#: languages/vue.php:96
|
5282 |
msgid "Unlock the Search Console Report and See How People Find Your Website"
|
5283 |
msgstr ""
|
5284 |
|
5285 |
+
#: languages/vue.php:99
|
5286 |
msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
|
5287 |
msgstr ""
|
5288 |
|
5289 |
+
#: languages/vue.php:102
|
5290 |
msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
|
5291 |
msgstr ""
|
5292 |
|
5293 |
+
#: languages/vue.php:105
|
5294 |
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."
|
5295 |
msgstr ""
|
5296 |
|
5297 |
+
#: languages/vue.php:108
|
5298 |
+
msgid "Loading settings"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5299 |
msgstr ""
|
5300 |
|
5301 |
+
#: languages/vue.php:111
|
5302 |
+
msgid "Overview Report"
|
5303 |
msgstr ""
|
5304 |
|
5305 |
+
#. Translators: Current PHP version and recommended PHP version.
|
5306 |
+
#: languages/vue.php:115
|
5307 |
+
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."
|
5308 |
msgstr ""
|
5309 |
|
5310 |
+
#. Translators: Current WordPress version.
|
5311 |
+
#: languages/vue.php:119
|
5312 |
+
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 2020. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
5313 |
msgstr ""
|
5314 |
|
5315 |
+
#: languages/vue.php:122
|
5316 |
+
msgid "Yikes! PHP Update Required"
|
5317 |
msgstr ""
|
5318 |
|
5319 |
+
#. Translators: Current PHP version and recommended PHP version.
|
5320 |
+
#: languages/vue.php:126
|
5321 |
+
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. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
|
5322 |
msgstr ""
|
5323 |
|
5324 |
+
#: languages/vue.php:129
|
5325 |
+
msgid "Learn more about updating PHP"
|
|
|
5326 |
msgstr ""
|
5327 |
|
5328 |
+
#: languages/vue.php:132
|
5329 |
+
msgid "Yikes! WordPress Update Required"
|
5330 |
msgstr ""
|
5331 |
|
5332 |
+
#. Translators: Current WordPress version.
|
5333 |
+
#: languages/vue.php:136
|
5334 |
+
msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
5335 |
msgstr ""
|
5336 |
|
5337 |
+
#: languages/vue.php:139
|
5338 |
+
msgid "Learn more about updating WordPress"
|
5339 |
msgstr ""
|
5340 |
|
5341 |
+
#: languages/vue.php:145
|
5342 |
msgid "Getting Started"
|
5343 |
msgstr ""
|
5344 |
|
5345 |
+
#: languages/vue.php:148
|
5346 |
msgid "Lite vs Pro"
|
5347 |
msgstr ""
|
5348 |
|
5349 |
+
#. Translators: Placeholder is replaced with WPForms.
|
5350 |
+
#: languages/vue.php:152
|
5351 |
+
msgid "Recommended Plugin: %s"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5352 |
msgstr ""
|
5353 |
|
5354 |
+
#: languages/vue.php:156
|
5355 |
+
msgid "Install"
|
5356 |
msgstr ""
|
5357 |
|
5358 |
+
#: languages/vue.php:160
|
5359 |
+
msgid "Activate"
|
5360 |
msgstr ""
|
5361 |
|
5362 |
+
#: languages/vue.php:166
|
5363 |
+
msgid "You must connect with ExactMetrics before you can view reports."
|
5364 |
msgstr ""
|
5365 |
|
5366 |
+
#: languages/vue.php:169
|
5367 |
+
msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
|
5368 |
msgstr ""
|
5369 |
|
5370 |
+
#: languages/vue.php:172
|
5371 |
+
msgid "Launch Setup Wizard"
|
|
|
5372 |
msgstr ""
|
5373 |
|
5374 |
+
#: languages/vue.php:175
|
5375 |
+
msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
|
5376 |
msgstr ""
|
5377 |
|
5378 |
+
#: languages/vue.php:178
|
5379 |
msgid "ExactMetrics encountered an error loading your report data"
|
5380 |
msgstr ""
|
5381 |
|
5382 |
+
#: languages/vue.php:181
|
5383 |
msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
|
5384 |
msgstr ""
|
5385 |
|
5386 |
+
#: languages/vue.php:184
|
5387 |
+
#: languages/vue.php:1485
|
5388 |
msgid "Reconnect ExactMetrics"
|
5389 |
msgstr ""
|
5390 |
|
5391 |
+
#: languages/vue.php:188
|
5392 |
msgid "Re-Authenticating"
|
5393 |
msgstr ""
|
5394 |
|
5395 |
+
#: languages/vue.php:192
|
5396 |
msgid "Ok"
|
5397 |
msgstr ""
|
5398 |
|
5399 |
+
#: languages/vue.php:217
|
5400 |
+
msgid "Real-Time"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5401 |
msgstr ""
|
5402 |
|
5403 |
+
#: languages/vue.php:220
|
5404 |
+
msgid "See Quick Links"
|
5405 |
msgstr ""
|
5406 |
|
5407 |
+
#: languages/vue.php:223
|
5408 |
+
msgid "Suggest a Feature"
|
5409 |
msgstr ""
|
5410 |
|
5411 |
+
#: languages/vue.php:226
|
5412 |
+
msgid "Join Our Community"
|
5413 |
msgstr ""
|
5414 |
|
5415 |
+
#: languages/vue.php:229
|
5416 |
+
msgid "Support & Docs"
|
5417 |
msgstr ""
|
5418 |
|
5419 |
+
#: languages/vue.php:232
|
5420 |
+
msgid "Upgrade to Pro »"
|
5421 |
msgstr ""
|
5422 |
|
5423 |
+
#: languages/vue.php:235
|
5424 |
msgid "Dimensions Report"
|
5425 |
msgstr ""
|
5426 |
|
5427 |
+
#: languages/vue.php:238
|
5428 |
+
#: languages/vue.php:1249
|
5429 |
+
msgid "ExactMetrics Addons"
|
5430 |
msgstr ""
|
5431 |
|
5432 |
+
#: languages/vue.php:241
|
5433 |
+
msgid "Search Addons"
|
5434 |
msgstr ""
|
5435 |
|
5436 |
+
#: languages/vue.php:244
|
5437 |
msgid "Go back"
|
5438 |
msgstr ""
|
5439 |
|
5440 |
+
#: languages/vue.php:247
|
5441 |
+
msgid "Exit Setup"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5442 |
msgstr ""
|
5443 |
|
5444 |
+
#: languages/vue.php:250
|
5445 |
+
msgid "Save Changes"
|
|
|
5446 |
msgstr ""
|
5447 |
|
5448 |
+
#. Translators: Adds a link to documentation.
|
5449 |
+
#: languages/vue.php:254
|
5450 |
+
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"
|
5451 |
msgstr ""
|
5452 |
|
5453 |
+
#. Translators: Adds link to activate/install plugin and documentation.
|
5454 |
+
#: languages/vue.php:258
|
5455 |
+
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"
|
5456 |
msgstr ""
|
5457 |
|
5458 |
+
#. Translators: Adds a link to documentation.
|
5459 |
+
#: languages/vue.php:262
|
5460 |
+
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"
|
5461 |
msgstr ""
|
5462 |
|
5463 |
+
#. Translators: Adds link to activate/install plugin and documentation.
|
5464 |
+
#: languages/vue.php:266
|
5465 |
+
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"
|
5466 |
msgstr ""
|
5467 |
|
5468 |
+
#: languages/vue.php:279
|
5469 |
+
msgid "Inbox"
|
5470 |
msgstr ""
|
5471 |
|
5472 |
+
#: languages/vue.php:282
|
5473 |
+
msgid "Back to Inbox"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
+
#: languages/vue.php:285
|
5477 |
+
msgid "View Dismissed"
|
5478 |
msgstr ""
|
5479 |
|
5480 |
+
#: languages/vue.php:288
|
5481 |
+
msgid "Notifications"
|
5482 |
msgstr ""
|
5483 |
|
5484 |
+
#: languages/vue.php:291
|
5485 |
+
msgid "Dismiss All"
|
5486 |
msgstr ""
|
5487 |
|
5488 |
+
#: languages/vue.php:294
|
5489 |
+
msgid "Dismissed"
|
5490 |
msgstr ""
|
5491 |
|
5492 |
+
#: languages/vue.php:297
|
5493 |
+
msgid "No Notifications"
|
|
|
5494 |
msgstr ""
|
5495 |
|
5496 |
#: languages/vue.php:309
|
5497 |
+
msgid "License Key"
|
|
|
|
|
|
|
|
|
5498 |
msgstr ""
|
5499 |
|
5500 |
+
#. Translators: Add link to retrieve license key from account.
|
5501 |
+
#: languages/vue.php:313
|
5502 |
+
msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
|
5503 |
msgstr ""
|
5504 |
|
5505 |
+
#: languages/vue.php:316
|
5506 |
+
msgid "Google Authentication"
|
5507 |
msgstr ""
|
5508 |
|
5509 |
+
#: languages/vue.php:319
|
5510 |
+
msgid "Connect Google Analytics + WordPress"
|
5511 |
msgstr ""
|
5512 |
|
5513 |
+
#: languages/vue.php:322
|
5514 |
+
msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
|
5515 |
msgstr ""
|
5516 |
|
5517 |
+
#: languages/vue.php:325
|
5518 |
+
msgid "Miscellaneous"
|
5519 |
msgstr ""
|
5520 |
|
5521 |
+
#: languages/vue.php:328
|
5522 |
+
msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
|
5523 |
msgstr ""
|
5524 |
|
5525 |
+
#: languages/vue.php:331
|
5526 |
+
msgid "Hide Announcements"
|
5527 |
msgstr ""
|
5528 |
|
5529 |
+
#: languages/vue.php:334
|
5530 |
+
msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
|
5531 |
msgstr ""
|
5532 |
|
5533 |
+
#. Translators: Add link to upgrade.
|
5534 |
#: languages/vue.php:339
|
5535 |
+
msgid "To unlock more features consider %1$supgrading to PRO%2$s."
|
5536 |
msgstr ""
|
5537 |
|
5538 |
#: languages/vue.php:342
|
5539 |
+
msgid "Receive 50% off automatically applied at the checkout!"
|
|
|
|
|
|
|
|
|
5540 |
msgstr ""
|
5541 |
|
5542 |
#: languages/vue.php:348
|
5543 |
+
msgid "Upgrade to PRO"
|
5544 |
msgstr ""
|
5545 |
|
5546 |
#: languages/vue.php:351
|
5547 |
+
msgid "See all features"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
#: languages/vue.php:354
|
5551 |
+
msgid "Setup Wizard"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
#: languages/vue.php:357
|
5555 |
+
msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
|
5556 |
msgstr ""
|
5557 |
|
5558 |
#: languages/vue.php:360
|
5559 |
+
msgid "Relaunch Setup Wizard"
|
|
|
|
|
|
|
|
|
5560 |
msgstr ""
|
5561 |
|
5562 |
+
#: languages/vue.php:364
|
5563 |
+
msgid "Real Time Report"
|
5564 |
msgstr ""
|
5565 |
|
5566 |
+
#: languages/vue.php:368
|
5567 |
+
msgid "Google Optimize"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
#: languages/vue.php:372
|
5571 |
+
msgid "Custom Date Ranges"
|
5572 |
msgstr ""
|
5573 |
|
5574 |
#: languages/vue.php:375
|
5575 |
+
msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
|
5576 |
msgstr ""
|
5577 |
|
5578 |
+
#. Translators: Placeholders make the text green.
|
5579 |
+
#: languages/vue.php:379
|
5580 |
+
msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
|
5581 |
msgstr ""
|
5582 |
|
5583 |
+
#: languages/vue.php:382
|
5584 |
+
msgid "How to Connect to Google Analytics"
|
5585 |
msgstr ""
|
5586 |
|
5587 |
#: languages/vue.php:385
|
5588 |
+
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."
|
5589 |
msgstr ""
|
5590 |
|
5591 |
+
#: languages/vue.php:388
|
5592 |
+
msgid "Guide and Checklist for Advanced Insights"
|
|
|
5593 |
msgstr ""
|
5594 |
|
5595 |
+
#: languages/vue.php:391
|
5596 |
+
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."
|
5597 |
msgstr ""
|
5598 |
|
5599 |
+
#: languages/vue.php:394
|
5600 |
+
msgid "GDPR Guide"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
+
#: languages/vue.php:397
|
5604 |
+
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. "
|
5605 |
msgstr ""
|
5606 |
|
5607 |
+
#: languages/vue.php:400
|
5608 |
+
msgid "How to Install and Activate ExactMetrics Addons"
|
|
|
|
|
|
|
|
|
5609 |
msgstr ""
|
5610 |
|
5611 |
+
#: languages/vue.php:403
|
5612 |
+
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."
|
5613 |
msgstr ""
|
5614 |
|
5615 |
+
#: languages/vue.php:406
|
5616 |
+
msgid "Enabling eCommerce Tracking and Reports"
|
5617 |
msgstr ""
|
5618 |
|
5619 |
+
#: languages/vue.php:409
|
5620 |
+
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."
|
|
|
5621 |
msgstr ""
|
5622 |
|
5623 |
+
#: languages/vue.php:412
|
5624 |
+
msgid "Read Documentation"
|
5625 |
msgstr ""
|
5626 |
|
5627 |
+
#: languages/vue.php:416
|
5628 |
+
msgid "Welcome to"
|
5629 |
msgstr ""
|
5630 |
|
5631 |
+
#. Translators: Adds a line break.
|
5632 |
+
#: languages/vue.php:420
|
5633 |
+
msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
|
5634 |
msgstr ""
|
5635 |
|
5636 |
+
#. Translators: Makes text bold.
|
5637 |
+
#: languages/vue.php:424
|
5638 |
+
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."
|
5639 |
msgstr ""
|
5640 |
|
5641 |
+
#: languages/vue.php:427
|
5642 |
+
msgid "ExactMetrics Features & Addons"
|
5643 |
msgstr ""
|
5644 |
|
5645 |
+
#: languages/vue.php:430
|
5646 |
+
msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
|
5647 |
msgstr ""
|
5648 |
|
5649 |
#. Translators: Makes text bold.
|
5650 |
+
#: languages/vue.php:434
|
5651 |
msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
|
5652 |
msgstr ""
|
5653 |
|
5654 |
#. Translators: Makes text bold.
|
5655 |
+
#: languages/vue.php:438
|
5656 |
msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
|
5657 |
msgstr ""
|
5658 |
|
5659 |
#. Translators: Makes text bold.
|
5660 |
+
#: languages/vue.php:442
|
5661 |
msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
|
5662 |
msgstr ""
|
5663 |
|
5664 |
+
#. Translators: Makes the text bold.
|
5665 |
+
#: languages/vue.php:446
|
5666 |
+
msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
|
5667 |
msgstr ""
|
5668 |
|
5669 |
#. Translators: Makes text bold.
|
5670 |
+
#: languages/vue.php:450
|
5671 |
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."
|
5672 |
msgstr ""
|
5673 |
|
5674 |
#. Translators: Makes text bold.
|
5675 |
+
#: languages/vue.php:454
|
5676 |
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."
|
5677 |
msgstr ""
|
5678 |
|
5679 |
#. Translators: Makes text bold.
|
5680 |
+
#: languages/vue.php:458
|
5681 |
msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
|
5682 |
msgstr ""
|
5683 |
|
5684 |
+
#. Translators: Makes the text bold.
|
5685 |
+
#: languages/vue.php:462
|
5686 |
+
msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
|
5687 |
msgstr ""
|
5688 |
|
5689 |
#. Translators: Adds link to the features page.
|
5690 |
+
#: languages/vue.php:466
|
5691 |
msgid "%1$sSee All Features%2$s"
|
5692 |
msgstr ""
|
5693 |
|
5694 |
+
#: languages/vue.php:469
|
5695 |
msgid "Pro Plan"
|
5696 |
msgstr ""
|
5697 |
|
5698 |
+
#: languages/vue.php:472
|
5699 |
msgid "per year"
|
5700 |
msgstr ""
|
5701 |
|
5702 |
+
#: languages/vue.php:480
|
|
|
|
|
|
|
|
|
5703 |
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!"
|
5704 |
msgstr ""
|
5705 |
|
5706 |
+
#: languages/vue.php:483
|
5707 |
msgid "Daniel Monaghan - Experienced"
|
5708 |
msgstr ""
|
5709 |
|
5710 |
+
#: languages/vue.php:486
|
5711 |
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."
|
5712 |
msgstr ""
|
5713 |
|
5714 |
+
#: languages/vue.php:489
|
5715 |
msgid "Naomi Spirit - From This Day"
|
5716 |
msgstr ""
|
5717 |
|
5718 |
+
#: languages/vue.php:492
|
5719 |
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!"
|
5720 |
msgstr ""
|
5721 |
|
5722 |
+
#: languages/vue.php:495
|
5723 |
msgid "Julie Dupuis - Faraway Land Travel"
|
5724 |
msgstr ""
|
5725 |
|
5726 |
+
#: languages/vue.php:498
|
5727 |
msgid "Guides and Documentation:"
|
5728 |
msgstr ""
|
5729 |
|
5730 |
+
#: languages/vue.php:501
|
5731 |
+
msgid "Getting Started with ExactMetrics"
|
5732 |
msgstr ""
|
5733 |
|
5734 |
+
#: languages/vue.php:504
|
5735 |
+
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."
|
5736 |
msgstr ""
|
5737 |
|
5738 |
+
#: languages/vue.php:507
|
5739 |
+
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."
|
5740 |
msgstr ""
|
5741 |
|
5742 |
+
#: languages/vue.php:510
|
5743 |
+
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!."
|
5744 |
msgstr ""
|
5745 |
|
5746 |
+
#: languages/vue.php:513
|
5747 |
+
msgid "Launch the wizard!"
|
5748 |
msgstr ""
|
5749 |
|
5750 |
+
#: languages/vue.php:517
|
5751 |
+
msgid "eCommerce Tracking"
|
5752 |
msgstr ""
|
5753 |
|
5754 |
+
#: languages/vue.php:521
|
5755 |
+
msgid "Custom Dimensions"
|
5756 |
msgstr ""
|
5757 |
|
5758 |
+
#: languages/vue.php:525
|
5759 |
+
msgid "Form Tracking"
|
5760 |
msgstr ""
|
5761 |
|
5762 |
+
#: languages/vue.php:529
|
5763 |
+
msgid "AMP Support"
|
5764 |
msgstr ""
|
5765 |
|
5766 |
+
#: languages/vue.php:533
|
5767 |
+
msgid "Author Tracking"
|
5768 |
msgstr ""
|
5769 |
|
5770 |
+
#: languages/vue.php:537
|
5771 |
+
msgid "EU Compliance Addon"
|
5772 |
msgstr ""
|
5773 |
|
5774 |
+
#: languages/vue.php:540
|
5775 |
+
msgid "Awesome, You're All Set!"
|
5776 |
+
msgstr ""
|
5777 |
+
|
5778 |
+
#: languages/vue.php:543
|
5779 |
+
msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
|
5780 |
msgstr ""
|
5781 |
|
5782 |
+
#. Translators: Make the text bold.
|
5783 |
#: languages/vue.php:547
|
5784 |
+
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."
|
5785 |
msgstr ""
|
5786 |
|
5787 |
+
#. Translators: Add link to blog.
|
5788 |
+
#: languages/vue.php:551
|
5789 |
+
msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
|
5790 |
msgstr ""
|
5791 |
|
5792 |
+
#: languages/vue.php:554
|
5793 |
+
msgid "Finish Setup & Exit Wizard"
|
5794 |
msgstr ""
|
5795 |
|
|
|
5796 |
#: languages/vue.php:557
|
5797 |
+
msgid "Google Analytics"
|
5798 |
msgstr ""
|
5799 |
|
5800 |
+
#: languages/vue.php:560
|
5801 |
+
msgid "Subscribe"
|
|
|
5802 |
msgstr ""
|
5803 |
|
5804 |
+
#: languages/vue.php:563
|
5805 |
+
msgid "Checking your website..."
|
5806 |
msgstr ""
|
5807 |
|
5808 |
+
#. Translators: Placeholders are replaced with the current step number out of the total number of steps.
|
5809 |
#: languages/vue.php:567
|
5810 |
+
msgid "Step %1$s of %2$s"
|
5811 |
msgstr ""
|
5812 |
|
5813 |
+
#. Translators: Makes text bold.
|
5814 |
+
#: languages/vue.php:571
|
5815 |
+
msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
|
5816 |
msgstr ""
|
5817 |
|
5818 |
+
#. Translators: Makes text bold.
|
5819 |
+
#: languages/vue.php:575
|
5820 |
+
msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
|
5821 |
msgstr ""
|
5822 |
|
5823 |
+
#: languages/vue.php:578
|
5824 |
+
msgid "Upgrade to ExactMetrics Pro Now"
|
5825 |
msgstr ""
|
5826 |
|
5827 |
+
#: languages/vue.php:581
|
5828 |
+
msgid "Recommended Settings"
|
5829 |
msgstr ""
|
5830 |
|
5831 |
+
#: languages/vue.php:584
|
5832 |
+
msgid "ExactMetrics recommends the following settings based on your configuration."
|
5833 |
msgstr ""
|
5834 |
|
5835 |
+
#: languages/vue.php:587
|
5836 |
+
msgid "Events Tracking"
|
5837 |
msgstr ""
|
5838 |
|
5839 |
+
#: languages/vue.php:590
|
5840 |
+
msgid "Must have for all click tracking on site."
|
5841 |
msgstr ""
|
5842 |
|
5843 |
+
#: languages/vue.php:593
|
5844 |
+
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."
|
5845 |
msgstr ""
|
5846 |
|
5847 |
+
#: languages/vue.php:596
|
5848 |
+
msgid "Enhanced Link Attribution"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
+
#: languages/vue.php:599
|
5852 |
+
msgid "Improves the accuracy of your In-Page Analytics."
|
5853 |
msgstr ""
|
5854 |
|
5855 |
+
#: languages/vue.php:602
|
5856 |
+
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."
|
5857 |
msgstr ""
|
5858 |
|
5859 |
+
#: languages/vue.php:605
|
5860 |
+
msgid "Install Updates Automatically"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
+
#: languages/vue.php:608
|
5864 |
+
msgid "Get the latest features, bug fixes, and security updates as they are released."
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: languages/vue.php:611
|
5868 |
+
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."
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: languages/vue.php:614
|
5872 |
+
msgid "File Download Tracking"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
+
#: languages/vue.php:617
|
5876 |
+
msgid "Helps you see file downloads data."
|
5877 |
msgstr ""
|
5878 |
|
5879 |
+
#: languages/vue.php:620
|
5880 |
+
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."
|
5881 |
msgstr ""
|
5882 |
|
5883 |
+
#. Translators: Example path (/go/).
|
5884 |
+
#: languages/vue.php:624
|
5885 |
+
msgid "Path (example: %s)"
|
5886 |
msgstr ""
|
5887 |
|
5888 |
+
#: languages/vue.php:627
|
5889 |
+
msgid "Path has to start with a / and have no spaces"
|
5890 |
msgstr ""
|
5891 |
|
5892 |
+
#. Translators: Example label (aff).
|
5893 |
+
#: languages/vue.php:631
|
5894 |
+
msgid "Label (example: %s)"
|
5895 |
msgstr ""
|
5896 |
|
5897 |
+
#: languages/vue.php:634
|
5898 |
+
msgid "Label can't contain any spaces"
|
5899 |
msgstr ""
|
5900 |
|
5901 |
+
#: languages/vue.php:637
|
5902 |
+
msgid "Helps you increase affiliate revenue."
|
5903 |
msgstr ""
|
5904 |
|
5905 |
+
#: languages/vue.php:640
|
5906 |
+
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."
|
5907 |
msgstr ""
|
5908 |
|
5909 |
+
#: languages/vue.php:643
|
5910 |
+
msgid "Affiliate Link Tracking"
|
5911 |
msgstr ""
|
5912 |
|
5913 |
+
#: languages/vue.php:646
|
5914 |
+
msgid "Who Can See Reports"
|
5915 |
msgstr ""
|
5916 |
|
5917 |
+
#: languages/vue.php:649
|
5918 |
+
msgid "These user roles will be able to access ExactMetrics's reports in the WordPress admin area."
|
5919 |
msgstr ""
|
5920 |
|
5921 |
+
#: languages/vue.php:653
|
5922 |
+
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."
|
5923 |
msgstr ""
|
5924 |
|
5925 |
+
#: languages/vue.php:656
|
5926 |
+
msgid "Save and continue"
|
5927 |
msgstr ""
|
5928 |
|
5929 |
+
#: languages/vue.php:659
|
5930 |
+
msgid "Events Tracking is enabled the moment you set up ExactMetrics"
|
5931 |
+
msgstr ""
|
5932 |
+
|
5933 |
+
#: languages/vue.php:662
|
5934 |
+
msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
|
5935 |
msgstr ""
|
5936 |
|
5937 |
#: languages/vue.php:666
|
5938 |
+
msgid "+ Add Role"
|
5939 |
msgstr ""
|
5940 |
|
5941 |
+
#: languages/vue.php:669
|
5942 |
+
msgid "Analytics"
|
|
|
5943 |
msgstr ""
|
5944 |
|
5945 |
+
#. Translators: Adds an arrow icon.
|
5946 |
#: languages/vue.php:674
|
5947 |
+
msgid "View All Reports %s"
|
5948 |
msgstr ""
|
5949 |
|
5950 |
#: languages/vue.php:677
|
5951 |
+
msgid "ExactMetrics Recommends WPForms"
|
5952 |
msgstr ""
|
5953 |
|
5954 |
+
#: languages/vue.php:680
|
5955 |
+
msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
|
|
|
5956 |
msgstr ""
|
5957 |
|
5958 |
+
#: languages/vue.php:683
|
5959 |
+
msgid "Used on over 3,000,000 websites!"
|
5960 |
msgstr ""
|
5961 |
|
5962 |
+
#: languages/vue.php:686
|
5963 |
+
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!"
|
5964 |
msgstr ""
|
5965 |
|
5966 |
+
#: languages/vue.php:689
|
5967 |
+
msgid "Skip this Step"
|
|
|
5968 |
msgstr ""
|
5969 |
|
5970 |
+
#: languages/vue.php:692
|
5971 |
+
msgid "Continue & Install WPForms"
|
5972 |
msgstr ""
|
5973 |
|
5974 |
+
#: languages/vue.php:695
|
5975 |
+
msgid "Installing..."
|
5976 |
msgstr ""
|
5977 |
|
5978 |
+
#. Translators: Placeholders make the text highlighted.
|
5979 |
+
#: languages/vue.php:699
|
5980 |
+
msgid "%1$sNeed%2$s to Grow FASTER??"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
+
#: languages/vue.php:702
|
5984 |
+
msgid "Get additional, actionable insights by going Pro."
|
5985 |
msgstr ""
|
5986 |
|
5987 |
+
#: languages/vue.php:705
|
5988 |
+
msgid "Skip"
|
5989 |
+
msgstr ""
|
5990 |
+
|
5991 |
+
#: languages/vue.php:708
|
5992 |
+
msgid "See All Features"
|
5993 |
msgstr ""
|
5994 |
|
|
|
5995 |
#: languages/vue.php:711
|
5996 |
+
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."
|
5997 |
msgstr ""
|
5998 |
|
5999 |
+
#: languages/vue.php:714
|
6000 |
+
msgid "Our Pro plan includes:"
|
|
|
6001 |
msgstr ""
|
6002 |
|
6003 |
+
#: languages/vue.php:717
|
6004 |
+
msgid "Welcome to the all-new ExactMetrics"
|
6005 |
+
msgstr ""
|
6006 |
+
|
6007 |
+
#: languages/vue.php:720
|
6008 |
+
msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
|
6009 |
msgstr ""
|
6010 |
|
|
|
6011 |
#: languages/vue.php:723
|
6012 |
+
msgid "The New & Improved ExactMetrics includes:"
|
6013 |
msgstr ""
|
6014 |
|
6015 |
+
#: languages/vue.php:726
|
6016 |
+
msgid "All-New Design"
|
|
|
6017 |
msgstr ""
|
6018 |
|
6019 |
+
#: languages/vue.php:729
|
6020 |
+
msgid "Better Reporting"
|
6021 |
msgstr ""
|
6022 |
|
6023 |
+
#: languages/vue.php:732
|
6024 |
+
msgid "Better Tracking"
|
6025 |
msgstr ""
|
6026 |
|
6027 |
+
#: languages/vue.php:735
|
6028 |
+
msgid "Better Support"
|
6029 |
msgstr ""
|
6030 |
|
6031 |
+
#: languages/vue.php:738
|
6032 |
+
msgid "Continue"
|
|
|
6033 |
msgstr ""
|
6034 |
|
6035 |
+
#: languages/vue.php:741
|
6036 |
+
msgid "Your settings have been automatically transferred."
|
6037 |
msgstr ""
|
6038 |
|
6039 |
+
#: languages/vue.php:744
|
6040 |
+
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."
|
6041 |
msgstr ""
|
6042 |
|
6043 |
+
#. Translators: Number of days.
|
6044 |
+
#: languages/vue.php:748
|
6045 |
+
msgid "Last %s days"
|
6046 |
msgstr ""
|
6047 |
|
6048 |
+
#: languages/vue.php:751
|
6049 |
+
msgid "Connect ExactMetrics to Your Website"
|
6050 |
msgstr ""
|
6051 |
|
6052 |
+
#: languages/vue.php:754
|
6053 |
+
msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
|
6054 |
msgstr ""
|
6055 |
|
6056 |
+
#: languages/vue.php:757
|
6057 |
+
msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
|
6058 |
msgstr ""
|
6059 |
|
6060 |
+
#: languages/vue.php:760
|
6061 |
+
msgid "Manually enter your UA code"
|
6062 |
msgstr ""
|
6063 |
|
6064 |
+
#: languages/vue.php:763
|
6065 |
+
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."
|
6066 |
msgstr ""
|
6067 |
|
6068 |
#: languages/vue.php:767
|
6069 |
+
msgid "Save and Continue"
|
6070 |
msgstr ""
|
6071 |
|
6072 |
#: languages/vue.php:770
|
6073 |
+
msgid "UA code can't be empty"
|
6074 |
msgstr ""
|
6075 |
|
6076 |
#: languages/vue.php:773
|
6077 |
+
msgid "Saving UA code..."
|
6078 |
msgstr ""
|
6079 |
|
6080 |
#: languages/vue.php:776
|
6081 |
+
msgid "One-click Complete eCommerce tracking"
|
6082 |
msgstr ""
|
6083 |
|
6084 |
#: languages/vue.php:779
|
6085 |
+
msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
|
6086 |
msgstr ""
|
6087 |
|
6088 |
#: languages/vue.php:782
|
6089 |
+
msgid "Forms Tracking"
|
6090 |
msgstr ""
|
6091 |
|
6092 |
#: languages/vue.php:785
|
6093 |
+
msgid "One-click Form Events Tracking"
|
6094 |
msgstr ""
|
6095 |
|
6096 |
#: languages/vue.php:788
|
6097 |
+
msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
|
6098 |
msgstr ""
|
6099 |
|
6100 |
#: languages/vue.php:791
|
6101 |
+
msgid "WordPress Admin Area Reports"
|
6102 |
msgstr ""
|
6103 |
|
6104 |
#: languages/vue.php:794
|
6105 |
+
msgid "Standard Reports"
|
6106 |
msgstr ""
|
6107 |
|
6108 |
+
#: languages/vue.php:797
|
6109 |
+
msgid "Overview Reports for the last 30 days."
|
|
|
6110 |
msgstr ""
|
6111 |
|
6112 |
+
#: languages/vue.php:800
|
6113 |
+
msgid "Advanced Reports"
|
|
|
6114 |
msgstr ""
|
6115 |
|
6116 |
+
#: languages/vue.php:803
|
6117 |
+
msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
|
6118 |
msgstr ""
|
6119 |
|
6120 |
+
#: languages/vue.php:806
|
6121 |
+
msgid "Dashboard Widget"
|
6122 |
msgstr ""
|
6123 |
|
6124 |
+
#: languages/vue.php:809
|
6125 |
+
msgid "Basic Widget"
|
6126 |
msgstr ""
|
6127 |
|
6128 |
+
#: languages/vue.php:812
|
6129 |
+
msgid "Overview Report Synopsis"
|
6130 |
msgstr ""
|
6131 |
|
6132 |
+
#: languages/vue.php:815
|
6133 |
+
msgid "Advanced Dashboard Widget"
|
6134 |
msgstr ""
|
6135 |
|
6136 |
+
#: languages/vue.php:818
|
6137 |
+
msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
|
6138 |
msgstr ""
|
6139 |
|
6140 |
+
#: languages/vue.php:821
|
6141 |
+
msgid "Publisher Reports"
|
6142 |
msgstr ""
|
6143 |
|
6144 |
+
#: languages/vue.php:824
|
6145 |
+
msgid "Advanced Publisher Reports & Tracking"
|
6146 |
msgstr ""
|
6147 |
|
6148 |
+
#: languages/vue.php:827
|
6149 |
+
msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
|
6150 |
msgstr ""
|
6151 |
|
6152 |
+
#: languages/vue.php:830
|
6153 |
+
msgid "Not Available"
|
6154 |
msgstr ""
|
6155 |
|
6156 |
+
#: languages/vue.php:833
|
6157 |
+
msgid "Complete Custom Dimensions Tracking"
|
|
|
6158 |
msgstr ""
|
6159 |
|
6160 |
+
#: languages/vue.php:836
|
6161 |
+
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"
|
6162 |
msgstr ""
|
6163 |
|
6164 |
+
#: languages/vue.php:842
|
6165 |
+
msgid "Limited Support"
|
|
|
6166 |
msgstr ""
|
6167 |
|
6168 |
+
#: languages/vue.php:845
|
6169 |
+
msgid "Priority Support"
|
6170 |
msgstr ""
|
6171 |
|
6172 |
+
#: languages/vue.php:848
|
6173 |
+
msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
|
6174 |
msgstr ""
|
6175 |
|
6176 |
+
#: languages/vue.php:851
|
6177 |
+
msgid "Feature"
|
6178 |
msgstr ""
|
6179 |
|
6180 |
+
#: languages/vue.php:854
|
6181 |
+
msgid "Lite"
|
6182 |
msgstr ""
|
6183 |
|
6184 |
+
#: languages/vue.php:857
|
6185 |
+
msgid "Pro"
|
6186 |
msgstr ""
|
6187 |
|
6188 |
+
#: languages/vue.php:860
|
6189 |
+
msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
|
6190 |
msgstr ""
|
6191 |
|
6192 |
+
#: languages/vue.php:866
|
6193 |
+
msgid "Universal Tracking"
|
6194 |
msgstr ""
|
6195 |
|
6196 |
+
#: languages/vue.php:869
|
6197 |
+
msgid "Included"
|
6198 |
msgstr ""
|
6199 |
|
6200 |
+
#: languages/vue.php:872
|
6201 |
+
msgid "Custom Google Analytics Link Tracking"
|
6202 |
msgstr ""
|
6203 |
|
6204 |
+
#: languages/vue.php:875
|
6205 |
+
msgid "Standard Tracking"
|
6206 |
msgstr ""
|
6207 |
|
6208 |
+
#: languages/vue.php:878
|
6209 |
+
msgid "Advanced Tracking"
|
6210 |
msgstr ""
|
6211 |
|
6212 |
+
#: languages/vue.php:881
|
6213 |
+
msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
|
|
|
6214 |
msgstr ""
|
6215 |
|
|
|
6216 |
#: languages/vue.php:884
|
6217 |
+
msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
|
6218 |
msgstr ""
|
6219 |
|
6220 |
#: languages/vue.php:887
|
6221 |
+
msgid "No-Code-Needed Tracking Features"
|
6222 |
msgstr ""
|
6223 |
|
6224 |
#: languages/vue.php:890
|
6225 |
+
msgid "Basic Tracking Options"
|
6226 |
msgstr ""
|
6227 |
|
6228 |
#: languages/vue.php:893
|
6229 |
+
msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
|
6230 |
msgstr ""
|
6231 |
|
6232 |
#: languages/vue.php:896
|
6233 |
+
msgid "Advanced Tracking Options"
|
6234 |
msgstr ""
|
6235 |
|
6236 |
#: languages/vue.php:899
|
6237 |
+
msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
|
6238 |
msgstr ""
|
6239 |
|
6240 |
#: languages/vue.php:902
|
6241 |
+
msgid "New"
|
6242 |
msgstr ""
|
6243 |
|
6244 |
#: languages/vue.php:905
|
6245 |
+
msgid "Returning"
|
6246 |
msgstr ""
|
6247 |
|
6248 |
#: languages/vue.php:908
|
6249 |
+
msgid "Desktop"
|
6250 |
msgstr ""
|
6251 |
|
6252 |
#: languages/vue.php:911
|
6253 |
+
msgid "Tablet"
|
6254 |
msgstr ""
|
6255 |
|
6256 |
#: languages/vue.php:914
|
6257 |
+
msgid "Mobile"
|
6258 |
msgstr ""
|
6259 |
|
6260 |
+
#: languages/vue.php:918
|
6261 |
+
msgid "Sessions"
|
6262 |
msgstr ""
|
6263 |
|
6264 |
+
#: languages/vue.php:922
|
6265 |
+
msgid "Pageviews"
|
6266 |
msgstr ""
|
6267 |
|
6268 |
+
#: languages/vue.php:925
|
6269 |
+
msgid "Avg. Session Duration"
|
|
|
6270 |
msgstr ""
|
6271 |
|
6272 |
+
#: languages/vue.php:929
|
6273 |
+
msgid "Bounce Rate"
|
|
|
6274 |
msgstr ""
|
6275 |
|
6276 |
+
#: languages/vue.php:932
|
6277 |
+
msgid "New vs. Returning Visitors"
|
6278 |
msgstr ""
|
6279 |
|
6280 |
+
#: languages/vue.php:935
|
6281 |
+
msgid "Device Breakdown"
|
6282 |
msgstr ""
|
6283 |
|
6284 |
+
#: languages/vue.php:938
|
6285 |
+
msgid "Top 10 Countries"
|
6286 |
msgstr ""
|
6287 |
|
6288 |
+
#: languages/vue.php:941
|
6289 |
+
msgid "View Countries Report"
|
6290 |
msgstr ""
|
6291 |
|
|
|
6292 |
#: languages/vue.php:944
|
6293 |
+
msgid "Top 10 Referrals"
|
6294 |
msgstr ""
|
6295 |
|
6296 |
+
#: languages/vue.php:947
|
6297 |
+
msgid "View All Referral Sources"
|
|
|
6298 |
msgstr ""
|
6299 |
|
6300 |
+
#: languages/vue.php:950
|
6301 |
+
msgid "Top Posts/Pages"
|
6302 |
+
msgstr ""
|
6303 |
+
|
6304 |
+
#: languages/vue.php:953
|
6305 |
+
msgid "View Full Posts/Pages Report"
|
6306 |
msgstr ""
|
6307 |
|
|
|
6308 |
#: languages/vue.php:956
|
6309 |
+
msgid "A session is the browsing session of a single user to your site."
|
6310 |
msgstr ""
|
6311 |
|
6312 |
+
#: languages/vue.php:959
|
6313 |
+
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."
|
|
|
6314 |
msgstr ""
|
6315 |
|
6316 |
+
#: languages/vue.php:962
|
6317 |
+
msgid "Total duration of all sessions (in seconds) / number of sessions."
|
6318 |
+
msgstr ""
|
6319 |
+
|
6320 |
+
#: languages/vue.php:965
|
6321 |
+
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."
|
6322 |
msgstr ""
|
6323 |
|
|
|
6324 |
#: languages/vue.php:968
|
6325 |
+
msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
|
6326 |
msgstr ""
|
6327 |
|
6328 |
#: languages/vue.php:971
|
6329 |
+
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."
|
6330 |
msgstr ""
|
6331 |
|
6332 |
#: languages/vue.php:974
|
6333 |
+
msgid "This list shows the top countries your website visitors are from."
|
6334 |
msgstr ""
|
6335 |
|
6336 |
#: languages/vue.php:977
|
6337 |
+
msgid "This list shows the top websites that send your website traffic, known as referral traffic."
|
6338 |
msgstr ""
|
6339 |
|
6340 |
#: languages/vue.php:980
|
6341 |
+
msgid "This list shows the most viewed posts and pages on your website."
|
6342 |
msgstr ""
|
6343 |
|
6344 |
#: languages/vue.php:983
|
6345 |
+
msgid "Dismiss"
|
|
|
|
|
|
|
|
|
6346 |
msgstr ""
|
6347 |
|
6348 |
+
#. Translators: Error status and error text.
|
6349 |
+
#: languages/vue.php:987
|
6350 |
+
msgid "Can't load settings. Error: %1$s, %2$s"
|
6351 |
msgstr ""
|
6352 |
|
6353 |
+
#: languages/vue.php:990
|
6354 |
+
msgid "You appear to be offline."
|
6355 |
msgstr ""
|
6356 |
|
6357 |
+
#. Translators: Error status and error text.
|
6358 |
+
#: languages/vue.php:994
|
6359 |
+
msgid "Can't save settings. Error: %1$s, %2$s"
|
6360 |
msgstr ""
|
6361 |
|
6362 |
+
#: languages/vue.php:997
|
6363 |
+
msgid "Network error encountered. Settings not saved."
|
6364 |
msgstr ""
|
6365 |
|
6366 |
+
#: languages/vue.php:1000
|
6367 |
+
msgid "Last 30 Days Analytics for "
|
6368 |
msgstr ""
|
6369 |
|
6370 |
+
#: languages/vue.php:1003
|
6371 |
+
msgid "Your Website"
|
6372 |
msgstr ""
|
6373 |
|
6374 |
+
#: languages/vue.php:1006
|
6375 |
+
msgid "Avg. Duration"
|
6376 |
msgstr ""
|
6377 |
|
6378 |
+
#: languages/vue.php:1009
|
6379 |
+
msgid "More data is available"
|
6380 |
msgstr ""
|
6381 |
|
6382 |
+
#: languages/vue.php:1012
|
6383 |
+
msgid "Want to see page-specific stats?"
|
6384 |
msgstr ""
|
6385 |
|
6386 |
+
#. Translators: Error status and error text.
|
6387 |
#: languages/vue.php:1016
|
6388 |
+
msgid "Can't deauthenticate. Error: %1$s, %2$s"
|
6389 |
msgstr ""
|
6390 |
|
6391 |
#: languages/vue.php:1019
|
6392 |
+
msgid "You appear to be offline. Settings not saved."
|
|
|
|
|
|
|
|
|
6393 |
msgstr ""
|
6394 |
|
6395 |
+
#. Translators: Error status and error text.
|
6396 |
+
#: languages/vue.php:1023
|
6397 |
+
msgid "Can't load authentication details. Error: %1$s, %2$s"
|
6398 |
msgstr ""
|
6399 |
|
6400 |
+
#. Translators: Error status and error text.
|
6401 |
+
#: languages/vue.php:1027
|
6402 |
+
msgid "Can't authenticate. Error: %1$s, %2$s"
|
6403 |
msgstr ""
|
6404 |
|
6405 |
+
#. Translators: Error status and error text.
|
6406 |
+
#: languages/vue.php:1031
|
6407 |
+
msgid "Can't reauthenticate. Error: %1$s, %2$s"
|
6408 |
msgstr ""
|
6409 |
|
6410 |
+
#. Translators: Error status and error text.
|
6411 |
+
#: languages/vue.php:1035
|
6412 |
+
msgid "Can't verify credentials. Error: %1$s, %2$s"
|
6413 |
msgstr ""
|
6414 |
|
6415 |
+
#. Translators: Error status and error text.
|
6416 |
+
#: languages/vue.php:1039
|
6417 |
+
msgid "Can't deactivate the license. Error: %1$s, %2$s"
|
6418 |
msgstr ""
|
6419 |
|
6420 |
+
#. Translators: Error status and error text.
|
6421 |
+
#: languages/vue.php:1043
|
6422 |
+
msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
|
6423 |
msgstr ""
|
6424 |
|
6425 |
+
#. Translators: Error status and error text.
|
6426 |
#: languages/vue.php:1047
|
6427 |
+
msgid "Can't load license details. Error: %1$s, %2$s"
|
6428 |
msgstr ""
|
6429 |
|
6430 |
#: languages/vue.php:1050
|
6431 |
+
msgid "Error loading license details"
|
6432 |
msgstr ""
|
6433 |
|
6434 |
+
#. Translators: Error status and error text.
|
6435 |
+
#: languages/vue.php:1054
|
6436 |
+
msgid "Can't verify the license. Error: %1$s, %2$s"
|
6437 |
msgstr ""
|
6438 |
|
6439 |
+
#. Translators: Error status and error text.
|
6440 |
+
#: languages/vue.php:1058
|
6441 |
+
msgid "Can't validate the license. Error: %1$s, %2$s"
|
6442 |
msgstr ""
|
6443 |
|
6444 |
+
#: languages/vue.php:1061
|
6445 |
+
msgid "You appear to be offline. WPForms not installed."
|
6446 |
msgstr ""
|
6447 |
|
6448 |
+
#. Translators: Error status and error text.
|
6449 |
+
#: languages/vue.php:1065
|
6450 |
+
msgid "Can't activate addon. Error: %1$s, %2$s"
|
6451 |
msgstr ""
|
6452 |
|
6453 |
+
#: languages/vue.php:1068
|
6454 |
+
msgid "You appear to be offline. Addon not activated."
|
6455 |
msgstr ""
|
6456 |
|
6457 |
+
#. Translators: Error status and error text.
|
6458 |
#: languages/vue.php:1072
|
6459 |
+
msgid "Can't deactivate addon. Error: %1$s, %2$s"
|
6460 |
msgstr ""
|
6461 |
|
6462 |
#: languages/vue.php:1075
|
6463 |
+
msgid "You appear to be offline. Addon not deactivated."
|
|
|
|
|
|
|
|
|
6464 |
msgstr ""
|
6465 |
|
6466 |
+
#. Translators: Error status and error text.
|
6467 |
+
#: languages/vue.php:1079
|
6468 |
+
msgid "Can't install plugin. Error: %1$s, %2$s"
|
6469 |
msgstr ""
|
6470 |
|
6471 |
+
#: languages/vue.php:1082
|
6472 |
+
msgid "You appear to be offline. Plugin not installed."
|
6473 |
msgstr ""
|
6474 |
|
6475 |
+
#. Translators: Error status and error text.
|
6476 |
+
#: languages/vue.php:1086
|
6477 |
+
msgid "Can't install addon. Error: %1$s, %2$s"
|
6478 |
msgstr ""
|
6479 |
|
6480 |
+
#: languages/vue.php:1089
|
6481 |
+
msgid "You appear to be offline. Addon not installed."
|
6482 |
msgstr ""
|
6483 |
|
6484 |
+
#. Translators: Error status and error text.
|
6485 |
#: languages/vue.php:1093
|
6486 |
+
msgid "Can't install WPForms. Error: %1$s, %2$s"
|
6487 |
msgstr ""
|
6488 |
|
6489 |
#: languages/vue.php:1096
|
6490 |
+
msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
|
6491 |
msgstr ""
|
6492 |
|
6493 |
+
#: languages/vue.php:1099
|
6494 |
+
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."
|
|
|
6495 |
msgstr ""
|
6496 |
|
6497 |
+
#: languages/vue.php:1102
|
6498 |
+
msgid "The ExactMetrics Team"
|
6499 |
msgstr ""
|
6500 |
|
6501 |
+
#: languages/vue.php:1105
|
6502 |
+
msgid "Real-Time Report"
|
6503 |
msgstr ""
|
6504 |
|
6505 |
+
#: languages/vue.php:1108
|
6506 |
+
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."
|
6507 |
msgstr ""
|
6508 |
|
6509 |
+
#. Translators: add link to blog.
|
6510 |
+
#: languages/vue.php:1112
|
6511 |
+
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."
|
6512 |
msgstr ""
|
6513 |
|
6514 |
+
#: languages/vue.php:1116
|
6515 |
+
msgid "Here's what you get:"
|
|
|
6516 |
msgstr ""
|
6517 |
|
6518 |
+
#: languages/vue.php:1119
|
6519 |
+
msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
|
|
|
6520 |
msgstr ""
|
6521 |
|
6522 |
+
#: languages/vue.php:1122
|
6523 |
+
msgid "See Your Top Pages Immediately After Making Changes"
|
|
|
6524 |
msgstr ""
|
6525 |
|
6526 |
+
#: languages/vue.php:1125
|
6527 |
+
msgid "See Your Top Referral Sources and Adapt Faster"
|
6528 |
+
msgstr ""
|
6529 |
+
|
6530 |
+
#: languages/vue.php:1128
|
6531 |
+
msgid "See Your Traffic Demographics"
|
6532 |
+
msgstr ""
|
6533 |
+
|
6534 |
+
#: languages/vue.php:1131
|
6535 |
+
msgid "Get Fresh Reports Data Every 60 Seconds"
|
6536 |
+
msgstr ""
|
6537 |
+
|
6538 |
+
#: languages/vue.php:1134
|
6539 |
+
msgid "See Where Your Visitors are Connecting From (country & city)"
|
6540 |
msgstr ""
|
6541 |
|
|
|
6542 |
#: languages/vue.php:1137
|
6543 |
+
msgid "Unlock the Publisher Report and Focus on the Content That Matters"
|
6544 |
msgstr ""
|
6545 |
|
6546 |
#: languages/vue.php:1140
|
6547 |
+
msgid "See Your Top Landing Pages to Improve Engagement"
|
6548 |
msgstr ""
|
6549 |
|
6550 |
+
#: languages/vue.php:1143
|
6551 |
+
msgid "See Your Top Exit Pages to Reduce Abandonment"
|
|
|
6552 |
msgstr ""
|
6553 |
|
6554 |
+
#: languages/vue.php:1146
|
6555 |
+
msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
|
6556 |
msgstr ""
|
6557 |
|
6558 |
+
#: languages/vue.php:1149
|
6559 |
+
msgid "See Your Top Affiliate Links and Focus on what’s working"
|
6560 |
msgstr ""
|
6561 |
|
6562 |
+
#: languages/vue.php:1152
|
6563 |
+
msgid "See Your Top Downloads and Improve Conversions"
|
6564 |
msgstr ""
|
6565 |
|
6566 |
+
#: languages/vue.php:1155
|
6567 |
+
msgid "See Audience Demographic Report (Age / Gender / Interests)"
|
6568 |
msgstr ""
|
6569 |
|
6570 |
+
#: languages/vue.php:1158
|
6571 |
+
msgid "Search Console Report"
|
6572 |
msgstr ""
|
6573 |
|
6574 |
+
#: languages/vue.php:1161
|
6575 |
+
msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
|
6576 |
msgstr ""
|
6577 |
|
6578 |
+
#: languages/vue.php:1164
|
6579 |
+
msgid "See Your Top Google Search Terms and Optimize Content"
|
6580 |
msgstr ""
|
6581 |
|
6582 |
+
#: languages/vue.php:1167
|
6583 |
+
msgid "See The Number of Clicks and Track Interests"
|
6584 |
msgstr ""
|
6585 |
|
6586 |
+
#: languages/vue.php:1170
|
6587 |
+
msgid "See The Click-Through-Ratio and Improve SEO"
|
6588 |
msgstr ""
|
6589 |
|
6590 |
+
#: languages/vue.php:1173
|
6591 |
+
msgid "See The Average Results Position and Focus on what works."
|
6592 |
msgstr ""
|
6593 |
|
6594 |
+
#: languages/vue.php:1176
|
6595 |
+
msgid "Ecommerce Report"
|
6596 |
msgstr ""
|
6597 |
|
6598 |
+
#: languages/vue.php:1179
|
6599 |
+
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."
|
6600 |
msgstr ""
|
6601 |
|
6602 |
#: languages/vue.php:1183
|
6603 |
+
msgid "See Your Conversion Rate to Improve Funnel"
|
|
|
|
|
|
|
|
|
6604 |
msgstr ""
|
6605 |
|
6606 |
+
#: languages/vue.php:1187
|
6607 |
+
msgid "See The Number of Transactions and Make Data-Driven Decisions"
|
6608 |
msgstr ""
|
6609 |
|
6610 |
+
#: languages/vue.php:1191
|
6611 |
+
msgid "See The Total Revenue to Track Growth"
|
6612 |
msgstr ""
|
6613 |
|
6614 |
#: languages/vue.php:1195
|
6615 |
+
msgid "See Average Order Value to Find Offer Opportunities"
|
6616 |
msgstr ""
|
6617 |
|
6618 |
+
#: languages/vue.php:1199
|
6619 |
+
msgid "See Your Top Products to See Individual Performance"
|
6620 |
msgstr ""
|
6621 |
|
|
|
6622 |
#: languages/vue.php:1202
|
6623 |
+
msgid "See Your Top Conversion Sources and Focus on what's Working"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
+
#: languages/vue.php:1206
|
6627 |
+
msgid "See The Time it Takes for Customers to Purchase"
|
6628 |
msgstr ""
|
6629 |
|
6630 |
+
#: languages/vue.php:1210
|
6631 |
+
msgid "See How Many Sessions are Needed for a Purchase"
|
6632 |
msgstr ""
|
6633 |
|
6634 |
+
#: languages/vue.php:1213
|
6635 |
+
msgid "Custom Dimensions Report"
|
6636 |
msgstr ""
|
6637 |
|
6638 |
+
#: languages/vue.php:1216
|
6639 |
+
msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
|
6640 |
+
msgstr ""
|
6641 |
+
|
6642 |
+
#: languages/vue.php:1219
|
6643 |
+
msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
|
6644 |
msgstr ""
|
6645 |
|
6646 |
#: languages/vue.php:1222
|
6647 |
+
msgid "Author tracking to see which author’s posts generate the most traffic"
|
6648 |
msgstr ""
|
6649 |
|
6650 |
+
#: languages/vue.php:1225
|
6651 |
+
msgid "Post Type tracking to see which WordPress post types perform better"
|
6652 |
msgstr ""
|
6653 |
|
6654 |
+
#: languages/vue.php:1228
|
6655 |
+
msgid "Category tracking to see which sections of your sites are the most popular"
|
6656 |
msgstr ""
|
6657 |
|
6658 |
+
#: languages/vue.php:1231
|
6659 |
+
msgid "SEO score tracking to see which blog SEO scores are the most popular"
|
|
|
6660 |
msgstr ""
|
6661 |
|
6662 |
+
#: languages/vue.php:1234
|
6663 |
+
msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
|
6664 |
msgstr ""
|
6665 |
|
6666 |
+
#: languages/vue.php:1237
|
6667 |
+
msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
|
6668 |
msgstr ""
|
6669 |
|
6670 |
+
#: languages/vue.php:1240
|
6671 |
+
msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
|
6672 |
msgstr ""
|
6673 |
|
6674 |
+
#: languages/vue.php:1243
|
6675 |
+
msgid "No addons found."
|
6676 |
msgstr ""
|
6677 |
|
6678 |
+
#: languages/vue.php:1246
|
6679 |
+
msgid "Refresh Addons"
|
6680 |
msgstr ""
|
6681 |
|
6682 |
+
#. Translators: Adds a line break.
|
6683 |
+
#: languages/vue.php:1253
|
6684 |
+
msgid "Upgrade to Pro to unlock addons and other great features."
|
6685 |
msgstr ""
|
6686 |
|
6687 |
+
#: languages/vue.php:1256
|
6688 |
+
msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
|
6689 |
msgstr ""
|
6690 |
|
6691 |
+
#: languages/vue.php:1259
|
6692 |
+
msgid "Refreshing Addons"
|
6693 |
msgstr ""
|
6694 |
|
6695 |
+
#: languages/vue.php:1262
|
6696 |
+
msgid "No options available"
|
6697 |
msgstr ""
|
6698 |
|
6699 |
+
#: languages/vue.php:1265
|
6700 |
+
msgid "Reset to default"
|
6701 |
msgstr ""
|
6702 |
|
6703 |
+
#: languages/vue.php:1268
|
6704 |
+
msgid "The value entered does not match the required format"
|
6705 |
msgstr ""
|
6706 |
|
6707 |
+
#: languages/vue.php:1271
|
6708 |
+
msgid "See All Reports"
|
6709 |
msgstr ""
|
6710 |
|
6711 |
+
#: languages/vue.php:1274
|
6712 |
+
msgid "Go to the Analytics Dashboard"
|
6713 |
msgstr ""
|
6714 |
|
6715 |
+
#. Translators: The name of the field that is throwing a validation error.
|
6716 |
+
#: languages/vue.php:1278
|
6717 |
+
msgid "%s can't be empty."
|
6718 |
msgstr ""
|
6719 |
|
6720 |
+
#: languages/vue.php:1281
|
6721 |
+
msgid "Duplicate values are not allowed."
|
6722 |
msgstr ""
|
6723 |
|
6724 |
+
#: languages/vue.php:1284
|
6725 |
+
msgid "You can add maximum 5 items."
|
6726 |
msgstr ""
|
6727 |
|
6728 |
+
#: languages/vue.php:1287
|
6729 |
+
msgid "At least 0 item required."
|
6730 |
msgstr ""
|
6731 |
|
6732 |
+
#: languages/vue.php:1290
|
6733 |
+
msgid "Add Another Link Path"
|
6734 |
msgstr ""
|
6735 |
|
6736 |
+
#: languages/vue.php:1293
|
6737 |
+
msgid "Remove row"
|
|
|
6738 |
msgstr ""
|
6739 |
|
6740 |
+
#. Translators: Number of visitors.
|
6741 |
+
#: languages/vue.php:1301
|
6742 |
+
msgid "Your website was visited by %s users in the last 30 days."
|
6743 |
msgstr ""
|
6744 |
|
6745 |
+
#: languages/vue.php:1304
|
6746 |
+
msgid "See the full analytics report!"
|
|
|
6747 |
msgstr ""
|
6748 |
|
6749 |
+
#: languages/vue.php:1307
|
6750 |
+
msgid "Success! "
|
6751 |
msgstr ""
|
6752 |
|
|
|
6753 |
#: languages/vue.php:1310
|
6754 |
+
msgid "You're now using ExactMetrics Pro with all the features."
|
6755 |
msgstr ""
|
6756 |
|
6757 |
+
#. Translators: Placeholder gets replaced with an arrow icon.
|
6758 |
#: languages/vue.php:1314
|
6759 |
+
msgid "Get Started %s"
|
6760 |
msgstr ""
|
6761 |
|
6762 |
+
#: languages/vue.php:1317
|
6763 |
+
msgid "Help Us Improve"
|
|
|
6764 |
msgstr ""
|
6765 |
|
6766 |
+
#: languages/vue.php:1320
|
6767 |
+
msgid "Help us better understand our users and their website needs."
|
6768 |
msgstr ""
|
6769 |
|
6770 |
+
#. Translators: Adds a link to the documentation.
|
6771 |
+
#: languages/vue.php:1324
|
6772 |
+
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"
|
6773 |
msgstr ""
|
6774 |
|
6775 |
+
#: languages/vue.php:1327
|
6776 |
+
msgid "Show in widget mode"
|
|
|
6777 |
msgstr ""
|
6778 |
|
6779 |
+
#: languages/vue.php:1330
|
6780 |
+
msgid "Show in full-width mode"
|
6781 |
+
msgstr ""
|
6782 |
+
|
6783 |
+
#: languages/vue.php:1333
|
6784 |
+
#: languages/vue.php:1479
|
6785 |
+
msgid "Connect ExactMetrics"
|
6786 |
msgstr ""
|
6787 |
|
|
|
6788 |
#: languages/vue.php:1336
|
6789 |
+
msgid "Website profile"
|
6790 |
msgstr ""
|
6791 |
|
6792 |
#: languages/vue.php:1339
|
6793 |
+
msgid "Active profile"
|
6794 |
msgstr ""
|
6795 |
|
6796 |
#: languages/vue.php:1342
|
6797 |
+
msgid "Your website profile has been set at the network level of your WordPress Multisite."
|
6798 |
msgstr ""
|
6799 |
|
6800 |
#: languages/vue.php:1345
|
6801 |
+
msgid "If you would like to use a different profile for this subsite, you can authenticate below."
|
6802 |
msgstr ""
|
6803 |
|
6804 |
#: languages/vue.php:1348
|
6805 |
+
msgid "Skip and Keep Connection"
|
6806 |
msgstr ""
|
6807 |
|
6808 |
#: languages/vue.php:1351
|
6809 |
+
msgid "Authenticating"
|
6810 |
msgstr ""
|
6811 |
|
6812 |
#: languages/vue.php:1354
|
6813 |
+
msgid "Show Overview Reports"
|
6814 |
msgstr ""
|
6815 |
|
6816 |
#: languages/vue.php:1357
|
6817 |
+
msgid "Show Publishers Reports"
|
6818 |
msgstr ""
|
6819 |
|
6820 |
#: languages/vue.php:1360
|
6821 |
+
msgid "Show eCommerce Reports"
|
6822 |
msgstr ""
|
6823 |
|
6824 |
#: languages/vue.php:1363
|
6825 |
+
msgid "Available in PRO version"
|
|
|
|
|
|
|
|
|
6826 |
msgstr ""
|
6827 |
|
6828 |
+
#. Translators: Number of days.
|
6829 |
+
#: languages/vue.php:1368
|
6830 |
+
msgid "vs. Previous Day"
|
6831 |
msgstr ""
|
6832 |
|
6833 |
#: languages/vue.php:1372
|
6834 |
+
msgid "No change"
|
|
|
|
|
|
|
|
|
6835 |
msgstr ""
|
6836 |
|
6837 |
+
#. Translators: Error status and error text.
|
6838 |
+
#: languages/vue.php:1376
|
6839 |
+
msgid "Can't load errors. Error: %1$s, %2$s"
|
6840 |
msgstr ""
|
6841 |
|
6842 |
+
#. Translators: Make text green.
|
6843 |
+
#: languages/vue.php:1380
|
6844 |
+
msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
|
6845 |
msgstr ""
|
6846 |
|
6847 |
+
#: languages/vue.php:1383
|
6848 |
+
msgid "View notifications"
|
6849 |
msgstr ""
|
6850 |
|
6851 |
+
#: languages/vue.php:1386
|
6852 |
+
msgid "Recommended Addons"
|
6853 |
msgstr ""
|
6854 |
|
6855 |
+
#. Translators: Add a link to upgrade and make the text green.
|
6856 |
#: languages/vue.php:1390
|
6857 |
+
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!"
|
6858 |
msgstr ""
|
6859 |
|
6860 |
#: languages/vue.php:1393
|
6861 |
+
msgid "Upgrade to PRO Now"
|
6862 |
msgstr ""
|
6863 |
|
6864 |
#: languages/vue.php:1396
|
6865 |
+
msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
|
6866 |
msgstr ""
|
6867 |
|
6868 |
#: languages/vue.php:1399
|
6869 |
+
msgid "Ecommerce"
|
6870 |
msgstr ""
|
6871 |
|
6872 |
#: languages/vue.php:1402
|
6873 |
+
msgid "See All Your Important Store Metrics in One Place."
|
6874 |
msgstr ""
|
6875 |
|
6876 |
#: languages/vue.php:1405
|
6877 |
+
msgid "... and more:"
|
6878 |
msgstr ""
|
6879 |
|
6880 |
#: languages/vue.php:1408
|
6881 |
+
msgid "Dimensions- Track authors, categories, trags, searches, users and more."
|
6882 |
msgstr ""
|
6883 |
|
6884 |
#: languages/vue.php:1411
|
6885 |
+
msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
|
6886 |
msgstr ""
|
6887 |
|
6888 |
#: languages/vue.php:1414
|
6889 |
+
msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
|
6890 |
msgstr ""
|
6891 |
|
6892 |
+
#: languages/vue.php:1417
|
6893 |
+
msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
|
|
|
6894 |
msgstr ""
|
6895 |
|
6896 |
+
#: languages/vue.php:1420
|
6897 |
+
msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
|
6898 |
msgstr ""
|
6899 |
|
6900 |
+
#: languages/vue.php:1423
|
6901 |
+
msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
|
6902 |
msgstr ""
|
6903 |
|
6904 |
+
#: languages/vue.php:1426
|
6905 |
+
msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
|
6906 |
msgstr ""
|
6907 |
|
6908 |
+
#: languages/vue.php:1429
|
6909 |
+
msgid "Ads- See who’s clicking on your Google Adsense banner ads."
|
6910 |
msgstr ""
|
6911 |
|
6912 |
+
#: languages/vue.php:1432
|
6913 |
+
msgid "Forms Report"
|
6914 |
msgstr ""
|
6915 |
|
6916 |
+
#: languages/vue.php:1435
|
6917 |
+
msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
|
6918 |
msgstr ""
|
6919 |
|
6920 |
+
#: languages/vue.php:1438
|
6921 |
+
msgid "See Your Top Converting Forms and Optimize"
|
6922 |
msgstr ""
|
6923 |
|
6924 |
+
#: languages/vue.php:1441
|
6925 |
+
msgid "See Your Forms Impressions Count to Find the Best Placement"
|
6926 |
msgstr ""
|
6927 |
|
6928 |
+
#: languages/vue.php:1444
|
6929 |
+
msgid "Welcome to ExactMetrics!"
|
6930 |
msgstr ""
|
6931 |
|
6932 |
+
#: languages/vue.php:1447
|
6933 |
+
msgid "Let's get you set up."
|
6934 |
msgstr ""
|
6935 |
|
6936 |
+
#: languages/vue.php:1450
|
6937 |
+
msgid "Which category best describes your website?"
|
6938 |
msgstr ""
|
6939 |
|
6940 |
+
#: languages/vue.php:1453
|
6941 |
+
msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
|
6942 |
msgstr ""
|
6943 |
|
6944 |
+
#: languages/vue.php:1456
|
6945 |
+
msgid "Business Website"
|
6946 |
msgstr ""
|
6947 |
|
6948 |
+
#. Translators: Make text bold.
|
6949 |
#: languages/vue.php:1460
|
6950 |
+
msgid "Publisher %1$s(Blog)%2$s"
|
6951 |
msgstr ""
|
6952 |
|
6953 |
+
#. Translators: Placeholders are used for making text bold and adding a link.
|
6954 |
+
#: languages/vue.php:1464
|
6955 |
+
msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
|
6956 |
msgstr ""
|
6957 |
|
6958 |
+
#: languages/vue.php:1467
|
6959 |
+
msgid "Verifying Credentials"
|
6960 |
msgstr ""
|
6961 |
|
6962 |
+
#: languages/vue.php:1470
|
6963 |
+
msgid "Your site is connected to ExactMetrics!"
|
6964 |
msgstr ""
|
6965 |
|
6966 |
+
#: languages/vue.php:1473
|
6967 |
+
msgid "Deauthenticating"
|
6968 |
msgstr ""
|
6969 |
|
6970 |
+
#: languages/vue.php:1476
|
6971 |
+
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."
|
6972 |
msgstr ""
|
6973 |
|
6974 |
+
#: languages/vue.php:1482
|
6975 |
+
msgid "Verify Credentials"
|
6976 |
msgstr ""
|
6977 |
|
6978 |
+
#: languages/vue.php:1488
|
6979 |
+
msgid "Website Profile"
|
6980 |
msgstr ""
|
6981 |
|
6982 |
+
#: languages/vue.php:1491
|
6983 |
+
msgid "Active Profile"
|
6984 |
msgstr ""
|
6985 |
|
6986 |
+
#: languages/vue.php:1494
|
6987 |
+
msgid "Force Deauthenticate"
|
6988 |
msgstr ""
|
6989 |
|
6990 |
+
#: languages/vue.php:1497
|
6991 |
+
msgid "Disconnect ExactMetrics"
|
6992 |
msgstr ""
|
6993 |
|
6994 |
+
#: languages/vue.php:1500
|
6995 |
+
msgid "Time to Purchase"
|
6996 |
msgstr ""
|
6997 |
|
6998 |
+
#: languages/vue.php:1503
|
6999 |
+
msgid "This list shows how many days from first visit it took users to purchase products from your site."
|
7000 |
msgstr ""
|
7001 |
|
7002 |
+
#: languages/vue.php:1506
|
7003 |
+
msgid "Sessions to Purchase"
|
7004 |
msgstr ""
|
7005 |
|
7006 |
+
#: languages/vue.php:1509
|
7007 |
+
msgid "This list shows the number of sessions it took users before they purchased a product from your website."
|
7008 |
msgstr ""
|
7009 |
|
7010 |
+
#: languages/vue.php:1512
|
7011 |
+
msgid "Top Landing Pages"
|
7012 |
msgstr ""
|
7013 |
|
7014 |
+
#: languages/vue.php:1515
|
7015 |
+
msgid "This list shows the top pages users first land on when visiting your website."
|
7016 |
msgstr ""
|
7017 |
|
7018 |
+
#: languages/vue.php:1518
|
7019 |
+
msgid "Top Exit Pages"
|
7020 |
msgstr ""
|
7021 |
|
7022 |
+
#: languages/vue.php:1521
|
7023 |
+
msgid "This list shows the top pages users exit your website from."
|
7024 |
msgstr ""
|
7025 |
|
7026 |
#: languages/vue.php:1524
|
7027 |
+
msgid "Top Outbound Links"
|
7028 |
msgstr ""
|
7029 |
|
7030 |
#: languages/vue.php:1527
|
7031 |
+
msgid "This list shows the top links clicked on your website that go to another website."
|
7032 |
msgstr ""
|
7033 |
|
7034 |
+
#: languages/vue.php:1530
|
7035 |
+
msgid "Top Affiliate Links"
|
7036 |
msgstr ""
|
7037 |
|
7038 |
+
#: languages/vue.php:1533
|
7039 |
+
msgid "This list shows the top affiliate links your visitors clicked on."
|
7040 |
+
msgstr ""
|
7041 |
+
|
7042 |
+
#: languages/vue.php:1536
|
7043 |
+
msgid "Top Download Links"
|
7044 |
msgstr ""
|
7045 |
|
|
|
7046 |
#: languages/vue.php:1539
|
7047 |
+
msgid "This list shows the download links your visitors clicked the most."
|
7048 |
msgstr ""
|
7049 |
|
7050 |
+
#: languages/vue.php:1542
|
7051 |
+
msgid "Top Products"
|
|
|
7052 |
msgstr ""
|
7053 |
|
7054 |
+
#: languages/vue.php:1545
|
7055 |
+
msgid "This list shows the top selling products on your website."
|
7056 |
+
msgstr ""
|
7057 |
+
|
7058 |
+
#: languages/vue.php:1548
|
7059 |
+
msgid "Top Conversion Sources"
|
7060 |
msgstr ""
|
7061 |
|
|
|
7062 |
#: languages/vue.php:1551
|
7063 |
+
msgid "This list shows the top referral websites in terms of product revenue."
|
7064 |
msgstr ""
|
7065 |
|
7066 |
#: languages/vue.php:1554
|
7067 |
+
msgid "Total Add/Remove"
|
7068 |
msgstr ""
|
7069 |
|
7070 |
#: languages/vue.php:1557
|
7071 |
+
msgid "Import Export"
|
7072 |
msgstr ""
|
7073 |
|
7074 |
#: languages/vue.php:1560
|
7075 |
+
msgid "PrettyLinks Integration"
|
|
|
|
|
|
|
|
|
7076 |
msgstr ""
|
7077 |
|
7078 |
#: languages/vue.php:1566
|
7079 |
+
msgid "Popular Posts Widget"
|
7080 |
msgstr ""
|
7081 |
|
7082 |
#: languages/vue.php:1569
|
7083 |
+
msgid "Popular Products"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7084 |
msgstr ""
|
7085 |
|
7086 |
#: languages/vue.php:1578
|
7087 |
+
msgid "Engagement"
|
7088 |
msgstr ""
|
7089 |
|
7090 |
#: languages/vue.php:1581
|
7091 |
+
msgid "Publisher"
|
7092 |
msgstr ""
|
7093 |
|
7094 |
#: languages/vue.php:1584
|
7095 |
+
msgid "Conversions"
|
7096 |
msgstr ""
|
7097 |
|
7098 |
#: languages/vue.php:1587
|
7099 |
+
msgid "Advanced"
|
7100 |
msgstr ""
|
7101 |
|
7102 |
#: languages/vue.php:1590
|
7103 |
+
msgid "URL Builder"
|
7104 |
msgstr ""
|
7105 |
|
7106 |
#: languages/vue.php:1593
|
7107 |
+
msgid "Check out the newly added classic mode"
|
7108 |
msgstr ""
|
7109 |
|
7110 |
#: languages/vue.php:1596
|
7111 |
+
msgid "Network Active"
|
7112 |
msgstr ""
|
7113 |
|
7114 |
+
#: languages/vue.php:1599
|
7115 |
+
msgid "Active"
|
|
|
7116 |
msgstr ""
|
7117 |
|
7118 |
+
#: languages/vue.php:1602
|
7119 |
+
msgid "Inactive"
|
7120 |
+
msgstr ""
|
7121 |
+
|
7122 |
+
#. Translators: Placeholder for the addon status (installed, active, etc).
|
7123 |
+
#: languages/vue.php:1606
|
7124 |
+
msgid "Status: %s"
|
7125 |
+
msgstr ""
|
7126 |
+
|
7127 |
+
#: languages/vue.php:1609
|
7128 |
+
msgid "Not Installed"
|
7129 |
msgstr ""
|
7130 |
|
7131 |
#. Translators: Error status and error text.
|
7132 |
+
#: languages/vue.php:1613
|
7133 |
+
msgid "Can't load report data. Error: %1$s, %2$s"
|
7134 |
msgstr ""
|
7135 |
|
7136 |
+
#: languages/vue.php:1616
|
7137 |
+
msgid "Error loading report data"
|
7138 |
msgstr ""
|
7139 |
|
7140 |
+
#. Translators: Makes text bold and adds smiley.
|
7141 |
+
#: languages/vue.php:1620
|
7142 |
+
msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
|
7143 |
msgstr ""
|
7144 |
|
7145 |
+
#. Translators: Makes text green.
|
7146 |
+
#: languages/vue.php:1624
|
7147 |
+
msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
|
7148 |
msgstr ""
|
7149 |
|
7150 |
+
#: languages/vue.php:1627
|
7151 |
+
msgid "Unlock All Features and Upgrade to Pro"
|
7152 |
msgstr ""
|
7153 |
|
7154 |
+
#. Translators: Placeholder adds a line break.
|
7155 |
+
#: languages/vue.php:1631
|
7156 |
+
msgid "You can customize your %sdate range only in the PRO version."
|
7157 |
msgstr ""
|
7158 |
|
7159 |
+
#: languages/vue.php:1634
|
7160 |
+
msgid "Proceed"
|
7161 |
msgstr ""
|
7162 |
|
7163 |
+
#: languages/vue.php:1637
|
7164 |
+
msgid "Connection Information"
|
7165 |
msgstr ""
|
7166 |
|
7167 |
+
#: languages/vue.php:1640
|
7168 |
+
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."
|
7169 |
msgstr ""
|
7170 |
|
7171 |
+
#: languages/vue.php:1643
|
7172 |
+
msgid "Hostname"
|
7173 |
msgstr ""
|
7174 |
|
7175 |
+
#: languages/vue.php:1646
|
7176 |
+
msgid "FTP Username"
|
7177 |
msgstr ""
|
7178 |
|
7179 |
+
#: languages/vue.php:1649
|
7180 |
+
msgid "FTP Password"
|
7181 |
msgstr ""
|
7182 |
|
7183 |
+
#: languages/vue.php:1652
|
7184 |
+
msgid "This password will not be stored on the server."
|
7185 |
msgstr ""
|
7186 |
|
7187 |
+
#: languages/vue.php:1655
|
7188 |
+
msgid "Connection Type"
|
7189 |
msgstr ""
|
7190 |
|
7191 |
+
#: languages/vue.php:1658
|
7192 |
+
msgid "Cancel"
|
|
|
7193 |
msgstr ""
|
7194 |
|
7195 |
+
#. Translators: Line break.
|
7196 |
+
#: languages/vue.php:1662
|
7197 |
+
msgid "Unique %s Sessions"
|
7198 |
+
msgstr ""
|
7199 |
+
|
7200 |
+
#. Translators: Line break.
|
7201 |
+
#: languages/vue.php:1666
|
7202 |
+
msgid "Unique %s Pageviews"
|
7203 |
+
msgstr ""
|
7204 |
+
|
7205 |
+
#: languages/vue.php:1669
|
7206 |
+
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."
|
7207 |
msgstr ""
|
7208 |
|
|
|
7209 |
#: languages/vue.php:1672
|
7210 |
+
msgid "Export PDF Report"
|
7211 |
msgstr ""
|
7212 |
|
7213 |
#: languages/vue.php:1675
|
7214 |
+
msgid "You can export PDF reports only in the PRO version."
|
7215 |
msgstr ""
|
7216 |
|
7217 |
#: languages/vue.php:1678
|
7218 |
+
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!"
|
7219 |
+
msgstr ""
|
7220 |
+
|
7221 |
+
#: languages/vue.php:1681
|
7222 |
+
msgid "To unlock more features consider upgrading to PRO."
|
7223 |
msgstr ""
|
7224 |
|
7225 |
#: languages/vue.php:1684
|
7226 |
+
msgid "Upgrade to"
|
7227 |
msgstr ""
|
7228 |
|
7229 |
#: languages/vue.php:1687
|
7230 |
+
msgid "Installing Addon"
|
7231 |
msgstr ""
|
7232 |
|
7233 |
#: languages/vue.php:1690
|
7234 |
+
msgid "Activating Addon"
|
7235 |
msgstr ""
|
7236 |
|
7237 |
#: languages/vue.php:1693
|
7238 |
+
msgid "Addon Activated"
|
7239 |
msgstr ""
|
7240 |
|
7241 |
#: languages/vue.php:1696
|
7242 |
+
msgid "Loading report data"
|
7243 |
msgstr ""
|
7244 |
|
7245 |
#: languages/vue.php:1699
|
7246 |
+
msgid "Please activate manually"
|
|
|
|
|
|
|
|
|
7247 |
msgstr ""
|
7248 |
|
7249 |
+
#. Translators: Adds the error status and status text.
|
7250 |
+
#: languages/vue.php:1703
|
7251 |
+
msgid "Error: %1$s, %2$s"
|
7252 |
msgstr ""
|
7253 |
|
7254 |
+
#: languages/vue.php:1706
|
7255 |
+
msgid "Error Activating Addon"
|
7256 |
msgstr ""
|
7257 |
|
|
|
7258 |
#: languages/vue.php:1712
|
7259 |
+
msgid "Redirecting"
|
7260 |
msgstr ""
|
7261 |
|
7262 |
#: languages/vue.php:1715
|
7263 |
+
msgid "Please wait"
|
7264 |
msgstr ""
|
7265 |
|
7266 |
#: languages/vue.php:1718
|
7267 |
+
msgid "activate"
|
7268 |
msgstr ""
|
7269 |
|
7270 |
#: languages/vue.php:1721
|
7271 |
+
msgid "install"
|
7272 |
msgstr ""
|
7273 |
|
7274 |
#: languages/vue.php:1724
|
7275 |
+
msgid "Visit addons page"
|
7276 |
msgstr ""
|
7277 |
|
7278 |
#: languages/vue.php:1727
|
7279 |
+
msgid "Report Unavailable"
|
7280 |
msgstr ""
|
7281 |
|
7282 |
+
#. Translators: Install/Activate the addon.
|
7283 |
+
#: languages/vue.php:1731
|
7284 |
+
msgid "%s Addon"
|
7285 |
msgstr ""
|
7286 |
|
7287 |
+
#: languages/vue.php:1734
|
7288 |
+
msgid "Go Back To Reports"
|
7289 |
msgstr ""
|
7290 |
|
7291 |
+
#: languages/vue.php:1737
|
7292 |
+
msgid "Enable Enhanced eCommerce"
|
7293 |
msgstr ""
|
7294 |
|
7295 |
+
#: languages/vue.php:1740
|
7296 |
+
msgid "Classic mode"
|
7297 |
msgstr ""
|
7298 |
|
7299 |
+
#: languages/vue.php:1743
|
7300 |
+
msgid "Hide dashboard widget"
|
7301 |
msgstr ""
|
7302 |
|
7303 |
+
#: languages/vue.php:1746
|
7304 |
+
msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
|
7305 |
msgstr ""
|
7306 |
|
7307 |
+
#: languages/vue.php:1749
|
7308 |
+
msgid "Yes, hide it!"
|
7309 |
msgstr ""
|
7310 |
|
7311 |
+
#: languages/vue.php:1752
|
7312 |
+
msgid "No, cancel!"
|
7313 |
msgstr ""
|
7314 |
|
7315 |
+
#: languages/vue.php:1755
|
7316 |
+
msgid "ExactMetrics Widget Hidden"
|
7317 |
msgstr ""
|
7318 |
|
7319 |
+
#: languages/vue.php:1758
|
7320 |
+
msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
|
7321 |
msgstr ""
|
7322 |
|
7323 |
+
#: languages/vue.php:1761
|
7324 |
+
msgid "Show"
|
|
|
7325 |
msgstr ""
|
7326 |
|
7327 |
+
#. Translators: The number of results.
|
7328 |
+
#: languages/vue.php:1765
|
7329 |
+
msgid "%s results"
|
7330 |
msgstr ""
|
7331 |
|
7332 |
+
#. Translators: Make text green and add smiley face.
|
7333 |
#: languages/vue.php:1769
|
7334 |
+
msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
|
|
|
|
|
|
|
|
|
7335 |
msgstr ""
|
7336 |
|
7337 |
+
#. Translators: Make text green.
|
7338 |
+
#: languages/vue.php:1773
|
7339 |
+
msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
|
7340 |
msgstr ""
|
7341 |
|
7342 |
+
#: languages/vue.php:1776
|
7343 |
+
msgid "Unlock PRO Features Now"
|
7344 |
msgstr ""
|
7345 |
|
7346 |
+
#: languages/vue.php:1779
|
7347 |
+
msgid "Paste your license key here"
|
7348 |
msgstr ""
|
7349 |
|
7350 |
+
#: languages/vue.php:1782
|
7351 |
+
msgid "Verify"
|
7352 |
msgstr ""
|
7353 |
|
7354 |
+
#. Translators: Add link to retrieve license from account area.
|
7355 |
+
#: languages/vue.php:1786
|
7356 |
+
msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
|
7357 |
msgstr ""
|
7358 |
|
7359 |
+
#: languages/vue.php:1789
|
7360 |
+
msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
|
7361 |
msgstr ""
|
7362 |
|
7363 |
+
#: languages/vue.php:1792
|
7364 |
+
msgid "Affiliate Links"
|
7365 |
msgstr ""
|
7366 |
|
7367 |
+
#. Translators: Add links to documentation.
|
7368 |
#: languages/vue.php:1796
|
7369 |
+
msgid "This allows you to track custom affiliate links. A path of /go/ would match urls that start with that. The label is appended onto the end of the string \"outbound-link-\", to provide unique labels for these links in Google Analytics. Complete documentation on affiliate links is available %1$shere%2$s."
|
7370 |
msgstr ""
|
7371 |
|
7372 |
#: languages/vue.php:1799
|
7373 |
+
msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
|
7374 |
msgstr ""
|
7375 |
|
7376 |
+
#: languages/vue.php:1805
|
7377 |
+
msgid "The ExactMetrics Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results."
|
7378 |
msgstr ""
|
7379 |
|
7380 |
+
#: languages/vue.php:1808
|
7381 |
+
msgid "Disable the Headline Analyzer"
|
7382 |
msgstr ""
|
7383 |
|
7384 |
+
#: languages/vue.php:1811
|
7385 |
+
msgid "Cross Domain Tracking"
|
|
|
7386 |
msgstr ""
|
7387 |
|
7388 |
+
#. Translators: Add links to documentation.
|
7389 |
+
#: languages/vue.php:1815
|
7390 |
+
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."
|
7391 |
msgstr ""
|
7392 |
|
7393 |
+
#: languages/vue.php:1818
|
7394 |
+
msgid "Demographics"
|
|
|
7395 |
msgstr ""
|
7396 |
|
7397 |
+
#: languages/vue.php:1821
|
7398 |
+
msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
|
|
|
7399 |
msgstr ""
|
7400 |
|
7401 |
+
#: languages/vue.php:1824
|
7402 |
+
msgid "Anonymize IP Addresses"
|
7403 |
msgstr ""
|
7404 |
|
7405 |
+
#: languages/vue.php:1827
|
7406 |
+
msgid "Link Attribution"
|
7407 |
msgstr ""
|
7408 |
|
7409 |
+
#: languages/vue.php:1830
|
7410 |
+
msgid "Enable Enhanced Link Attribution"
|
7411 |
msgstr ""
|
7412 |
|
7413 |
+
#: languages/vue.php:1833
|
7414 |
+
msgid "Enable Anchor Tracking"
|
7415 |
msgstr ""
|
7416 |
|
7417 |
+
#: languages/vue.php:1836
|
7418 |
+
msgid "Enable allowAnchor"
|
7419 |
msgstr ""
|
7420 |
|
7421 |
+
#: languages/vue.php:1839
|
7422 |
+
msgid "Enable allowLinker"
|
7423 |
msgstr ""
|
7424 |
|
7425 |
+
#: languages/vue.php:1842
|
7426 |
+
msgid "Enable Tag Links in RSS"
|
7427 |
msgstr ""
|
7428 |
|
7429 |
+
#: languages/vue.php:1845
|
7430 |
+
msgid "File Downloads"
|
7431 |
msgstr ""
|
7432 |
|
7433 |
+
#: languages/vue.php:1848
|
7434 |
+
msgid "Extensions of Files to Track as Downloads"
|
7435 |
msgstr ""
|
7436 |
|
|
|
7437 |
#: languages/vue.php:1851
|
7438 |
+
msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
|
|
|
|
|
|
|
|
|
7439 |
msgstr ""
|
7440 |
|
7441 |
+
#. Translators: Add links to documentation.
|
7442 |
+
#: languages/vue.php:1855
|
7443 |
+
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."
|
7444 |
msgstr ""
|
7445 |
|
7446 |
+
#. Translators: Add links to documentation.
|
7447 |
+
#: languages/vue.php:1859
|
7448 |
+
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."
|
7449 |
msgstr ""
|
7450 |
|
7451 |
+
#. Translators: Add links to documentation.
|
7452 |
+
#: languages/vue.php:1863
|
7453 |
+
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."
|
7454 |
msgstr ""
|
7455 |
|
7456 |
+
#: languages/vue.php:1866
|
7457 |
+
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."
|
7458 |
msgstr ""
|
7459 |
|
7460 |
+
#. Translators: Add links to documentation.
|
7461 |
#: languages/vue.php:1870
|
7462 |
+
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."
|
7463 |
msgstr ""
|
7464 |
|
7465 |
+
#. Translators: Add links to documentation.
|
7466 |
+
#: languages/vue.php:1874
|
7467 |
+
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."
|
7468 |
msgstr ""
|
7469 |
|
7470 |
+
#. Translators: Add links to documentation.
|
7471 |
#: languages/vue.php:1878
|
7472 |
+
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."
|
7473 |
msgstr ""
|
7474 |
|
7475 |
#: languages/vue.php:1881
|
7476 |
+
msgid "Add domain"
|
7477 |
msgstr ""
|
7478 |
|
7479 |
+
#. Translators: Domain name example.
|
7480 |
#: languages/vue.php:1885
|
7481 |
+
msgid "Domain (example: %s)"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7482 |
msgstr ""
|
7483 |
|
7484 |
+
#. Translators: Current domain name that should not be used.
|
7485 |
+
#: languages/vue.php:1889
|
7486 |
+
msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
|
7487 |
msgstr ""
|
7488 |
|
7489 |
+
#. Translators: Adds a link to the Google reference.
|
7490 |
+
#: languages/vue.php:1893
|
7491 |
+
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."
|
7492 |
msgstr ""
|
7493 |
|
7494 |
+
#: languages/vue.php:1899
|
7495 |
+
msgid "Automatic Updates"
|
|
|
7496 |
msgstr ""
|
7497 |
|
7498 |
+
#: languages/vue.php:1902
|
7499 |
+
msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
|
7500 |
msgstr ""
|
7501 |
|
7502 |
+
#: languages/vue.php:1905
|
7503 |
+
msgid "Hide Admin Bar Reports"
|
7504 |
msgstr ""
|
7505 |
|
7506 |
+
#. Translators: placeholders make text small.
|
7507 |
+
#: languages/vue.php:1909
|
7508 |
+
msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
|
7509 |
msgstr ""
|
7510 |
|
7511 |
+
#. Translators: placeholders make text small.
|
7512 |
+
#: languages/vue.php:1913
|
7513 |
+
msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
|
7514 |
msgstr ""
|
7515 |
|
7516 |
+
#. Translators: placeholders make text small.
|
7517 |
#: languages/vue.php:1917
|
7518 |
+
msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
|
|
|
|
|
|
|
|
|
7519 |
msgstr ""
|
7520 |
|
7521 |
+
#. Translators: placeholders make text small.
|
7522 |
+
#: languages/vue.php:1921
|
7523 |
+
msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
|
7524 |
msgstr ""
|
7525 |
|
7526 |
+
#. Translators: placeholders make text small.
|
7527 |
+
#: languages/vue.php:1925
|
7528 |
+
msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
|
7529 |
msgstr ""
|
7530 |
|
7531 |
+
#. Translators: placeholders make text small.
|
7532 |
#: languages/vue.php:1929
|
7533 |
+
msgid "None %1$s- Manually update everything.%2$s"
|
7534 |
msgstr ""
|
7535 |
|
7536 |
+
#. Translators: Adds a link to the general settings tab.
|
7537 |
#: languages/vue.php:1933
|
7538 |
+
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."
|
7539 |
msgstr ""
|
7540 |
|
7541 |
#: languages/vue.php:1936
|
7542 |
+
msgid "Permissions"
|
7543 |
msgstr ""
|
7544 |
|
7545 |
#: languages/vue.php:1939
|
7546 |
+
msgid "Email Summaries"
|
7547 |
msgstr ""
|
7548 |
|
7549 |
#: languages/vue.php:1942
|
7550 |
+
msgid "Export PDF Reports"
|
7551 |
msgstr ""
|
7552 |
|
7553 |
#: languages/vue.php:1945
|
7554 |
+
msgid "Allow These User Roles to See Reports"
|
7555 |
msgstr ""
|
7556 |
|
7557 |
#: languages/vue.php:1948
|
7558 |
+
msgid "Users that have at least one of these roles will be able to view the reports."
|
7559 |
msgstr ""
|
7560 |
|
7561 |
+
#: languages/vue.php:1951
|
7562 |
+
msgid "Allow These User Roles to Save Settings"
|
|
|
7563 |
msgstr ""
|
7564 |
|
7565 |
+
#: languages/vue.php:1954
|
7566 |
+
msgid "Users that have at least one of these roles will be able to view and save the settings panel."
|
7567 |
msgstr ""
|
7568 |
|
7569 |
+
#: languages/vue.php:1957
|
7570 |
+
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."
|
7571 |
msgstr ""
|
7572 |
|
7573 |
+
#: languages/vue.php:1960
|
7574 |
+
msgid "Exclude These User Roles From Tracking"
|
7575 |
msgstr ""
|
7576 |
|
7577 |
+
#: languages/vue.php:1963
|
7578 |
+
msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
|
7579 |
msgstr ""
|
7580 |
|
7581 |
+
#: languages/vue.php:1966
|
7582 |
+
msgid "Custom code"
|
7583 |
msgstr ""
|
7584 |
|
7585 |
+
#: languages/vue.php:1969
|
7586 |
+
msgid "Activating..."
|
7587 |
msgstr ""
|
7588 |
|
7589 |
+
#: languages/vue.php:1972
|
7590 |
+
msgid "Deactivating..."
|
|
|
7591 |
msgstr ""
|
7592 |
|
7593 |
+
#: languages/vue.php:1975
|
7594 |
+
msgid "Deactivate"
|
7595 |
msgstr ""
|
7596 |
|
7597 |
+
#: languages/vue.php:1978
|
7598 |
+
msgid "File imported"
|
7599 |
msgstr ""
|
7600 |
|
7601 |
+
#: languages/vue.php:1981
|
7602 |
+
msgid "Settings successfully updated!"
|
7603 |
msgstr ""
|
7604 |
|
7605 |
+
#: languages/vue.php:1984
|
7606 |
+
msgid "Error importing settings"
|
7607 |
msgstr ""
|
7608 |
|
7609 |
+
#: languages/vue.php:1987
|
7610 |
+
msgid "Please choose a .json file generated by a ExactMetrics settings export."
|
7611 |
msgstr ""
|
7612 |
|
7613 |
+
#: languages/vue.php:1990
|
7614 |
+
msgid "Import/Export"
|
7615 |
msgstr ""
|
7616 |
|
7617 |
+
#: languages/vue.php:1993
|
7618 |
+
msgid "Import"
|
7619 |
+
msgstr ""
|
7620 |
+
|
7621 |
+
#: languages/vue.php:1996
|
7622 |
+
msgid "Import settings from another ExactMetrics website."
|
7623 |
msgstr ""
|
7624 |
|
|
|
7625 |
#: languages/vue.php:1999
|
7626 |
+
msgid "Export"
|
7627 |
msgstr ""
|
7628 |
|
7629 |
#: languages/vue.php:2002
|
7630 |
+
msgid "Export settings to import into another ExactMetrics install."
|
7631 |
msgstr ""
|
7632 |
|
7633 |
#: languages/vue.php:2005
|
7634 |
+
msgid "Import Settings"
|
7635 |
msgstr ""
|
7636 |
|
7637 |
+
#: languages/vue.php:2008
|
7638 |
+
msgid "Export Settings"
|
|
|
7639 |
msgstr ""
|
7640 |
|
7641 |
+
#: languages/vue.php:2011
|
7642 |
+
msgid "Please choose a file to import"
|
|
|
7643 |
msgstr ""
|
7644 |
|
7645 |
+
#: languages/vue.php:2014
|
7646 |
+
msgid "Use the filepicker below to select the settings export file from another site."
|
7647 |
+
msgstr ""
|
7648 |
+
|
7649 |
+
#: languages/vue.php:2017
|
7650 |
+
msgid "Use the button below to export a file with your ExactMetrics settings."
|
7651 |
msgstr ""
|
7652 |
|
|
|
7653 |
#: languages/vue.php:2020
|
7654 |
+
msgid "Choose file"
|
7655 |
msgstr ""
|
7656 |
|
7657 |
#: languages/vue.php:2023
|
7658 |
+
msgid "No file chosen"
|
7659 |
msgstr ""
|
7660 |
|
7661 |
#: languages/vue.php:2026
|
7662 |
+
msgid "Uploading file..."
|
7663 |
msgstr ""
|
7664 |
|
7665 |
+
#: languages/vue.php:2029
|
7666 |
+
msgid "Caching"
|
|
|
7667 |
msgstr ""
|
7668 |
|
7669 |
+
#: languages/vue.php:2032
|
7670 |
+
msgid "Enable Data Caching"
|
7671 |
msgstr ""
|
7672 |
|
7673 |
+
#: languages/vue.php:2035
|
7674 |
+
msgid "Refresh Cache Every"
|
7675 |
msgstr ""
|
7676 |
|
7677 |
+
#: languages/vue.php:2038
|
7678 |
+
msgid "Choose how often to refresh the cache."
|
7679 |
msgstr ""
|
7680 |
|
7681 |
+
#: languages/vue.php:2041
|
7682 |
+
msgid "Enable Ajaxify"
|
7683 |
msgstr ""
|
7684 |
|
7685 |
+
#: languages/vue.php:2044
|
7686 |
+
msgid "Ajaxify Widget"
|
7687 |
msgstr ""
|
7688 |
|
7689 |
+
#: languages/vue.php:2047
|
7690 |
+
msgid "Use to bypass page caching."
|
7691 |
msgstr ""
|
7692 |
|
7693 |
+
#: languages/vue.php:2050
|
7694 |
+
msgid "Empty Cache"
|
7695 |
msgstr ""
|
7696 |
|
7697 |
+
#: languages/vue.php:2053
|
7698 |
+
msgid "Click to manually wipe the cache right now."
|
7699 |
msgstr ""
|
7700 |
|
7701 |
+
#: languages/vue.php:2056
|
7702 |
+
msgid "Popular posts cache emptied"
|
7703 |
msgstr ""
|
7704 |
|
7705 |
+
#: languages/vue.php:2059
|
7706 |
+
msgid "Error emptying the popular posts cache. Please try again."
|
7707 |
msgstr ""
|
7708 |
|
7709 |
+
#: languages/vue.php:2062
|
7710 |
+
msgid "Make your ExactMetrics campaign links prettier with Pretty Links!"
|
7711 |
msgstr ""
|
7712 |
|
7713 |
+
#: languages/vue.php:2065
|
7714 |
+
msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
|
7715 |
msgstr ""
|
7716 |
|
7717 |
+
#: languages/vue.php:2068
|
7718 |
+
msgid "Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!"
|
7719 |
msgstr ""
|
7720 |
|
7721 |
+
#: languages/vue.php:2071
|
7722 |
+
msgid "Over 200,000 websites use Pretty Links!"
|
|
|
7723 |
msgstr ""
|
7724 |
|
7725 |
+
#: languages/vue.php:2074
|
7726 |
+
msgid "Install Pretty Links"
|
7727 |
msgstr ""
|
7728 |
|
7729 |
+
#: languages/vue.php:2077
|
7730 |
+
msgid "Pretty Links Installed & Activated"
|
7731 |
msgstr ""
|
7732 |
|
7733 |
+
#: languages/vue.php:2080
|
7734 |
+
msgid "Download Pretty Links"
|
7735 |
msgstr ""
|
7736 |
|
7737 |
+
#: languages/vue.php:2083
|
7738 |
+
msgid "Install Pretty Links from the WordPress.org plugin repository."
|
7739 |
msgstr ""
|
7740 |
|
7741 |
+
#: languages/vue.php:2086
|
7742 |
+
msgid "Activate Pretty Links"
|
7743 |
msgstr ""
|
7744 |
|
7745 |
+
#: languages/vue.php:2089
|
7746 |
+
msgid "Activating Pretty Links..."
|
7747 |
msgstr ""
|
7748 |
|
7749 |
+
#: languages/vue.php:2092
|
7750 |
+
msgid "Create New Pretty Link"
|
7751 |
msgstr ""
|
7752 |
|
7753 |
+
#: languages/vue.php:2095
|
7754 |
+
msgid "Create a New Pretty Link"
|
7755 |
msgstr ""
|
7756 |
|
7757 |
+
#: languages/vue.php:2098
|
7758 |
+
msgid "Grab your campaign link and paste it into the Target URL field."
|
7759 |
msgstr ""
|
7760 |
|
7761 |
+
#: languages/vue.php:2101
|
7762 |
+
msgid "Choose Theme"
|
7763 |
msgstr ""
|
7764 |
|
7765 |
+
#: languages/vue.php:2104
|
7766 |
+
msgid "Behavior"
|
7767 |
+
msgstr ""
|
7768 |
+
|
7769 |
+
#: languages/vue.php:2107
|
7770 |
+
msgid "Widget Styling"
|
7771 |
+
msgstr ""
|
7772 |
+
|
7773 |
+
#: languages/vue.php:2110
|
7774 |
+
msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
|
7775 |
msgstr ""
|
7776 |
|
|
|
7777 |
#: languages/vue.php:2113
|
7778 |
+
msgid "Sort By"
|
7779 |
msgstr ""
|
7780 |
|
7781 |
#: languages/vue.php:2116
|
7782 |
+
msgid "Choose how you'd like the widget to determine your popular posts."
|
7783 |
msgstr ""
|
7784 |
|
7785 |
#: languages/vue.php:2119
|
7786 |
+
msgid "Placement"
|
7787 |
msgstr ""
|
7788 |
|
7789 |
#: languages/vue.php:2122
|
7790 |
+
msgid "Choose how you'd like to place the widget."
|
7791 |
msgstr ""
|
7792 |
|
7793 |
#: languages/vue.php:2125
|
7794 |
+
msgid "Insert After"
|
7795 |
msgstr ""
|
7796 |
|
7797 |
#: languages/vue.php:2128
|
7798 |
+
msgid "Choose where in the post body the widget will be placed."
|
7799 |
msgstr ""
|
7800 |
|
7801 |
#: languages/vue.php:2131
|
7802 |
+
msgid "Include in Post Types"
|
7803 |
msgstr ""
|
7804 |
|
7805 |
#: languages/vue.php:2134
|
7806 |
+
msgid "Exclude from specific posts"
|
|
|
|
|
|
|
|
|
7807 |
msgstr ""
|
7808 |
|
7809 |
+
#. Translators: Placeholders make the text bold.
|
7810 |
+
#: languages/vue.php:2138
|
7811 |
+
msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
|
7812 |
msgstr ""
|
7813 |
|
7814 |
+
#. Translators: Placeholders make the text bold.
|
7815 |
+
#: languages/vue.php:2142
|
7816 |
+
msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
|
7817 |
msgstr ""
|
7818 |
|
7819 |
+
#: languages/vue.php:2145
|
7820 |
+
msgid "Customize Design"
|
7821 |
msgstr ""
|
7822 |
|
7823 |
+
#: languages/vue.php:2148
|
7824 |
+
msgid "Loading Themes"
|
7825 |
msgstr ""
|
7826 |
|
7827 |
+
#: languages/vue.php:2151
|
7828 |
+
msgid "words"
|
7829 |
msgstr ""
|
7830 |
|
7831 |
+
#: languages/vue.php:2154
|
7832 |
+
msgid "Please select at least one post to display."
|
7833 |
msgstr ""
|
7834 |
|
7835 |
+
#. Translators: placeholders make text small.
|
7836 |
#: languages/vue.php:2158
|
7837 |
+
msgid "Default Styles %1$s- As seen above.%2$s"
|
|
|
|
|
|
|
|
|
7838 |
msgstr ""
|
7839 |
|
7840 |
+
#. Translators: placeholders make text small.
|
7841 |
+
#: languages/vue.php:2162
|
7842 |
+
msgid "No Styles %1$s- Use your own CSS.%2$s"
|
7843 |
msgstr ""
|
7844 |
|
7845 |
+
#. Translators: placeholders make text small.
|
7846 |
+
#: languages/vue.php:2166
|
7847 |
+
msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
|
7848 |
msgstr ""
|
7849 |
|
7850 |
+
#. Translators: placeholders make text small.
|
7851 |
+
#: languages/vue.php:2170
|
7852 |
+
msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
|
7853 |
msgstr ""
|
7854 |
|
7855 |
+
#. Translators: placeholders make text small.
|
7856 |
#: languages/vue.php:2174
|
7857 |
+
msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7858 |
msgstr ""
|
7859 |
|
7860 |
+
#. Translators: placeholders make text small.
|
7861 |
+
#: languages/vue.php:2178
|
7862 |
+
msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
|
7863 |
msgstr ""
|
7864 |
|
7865 |
+
#. Translators: placeholders make text small.
|
7866 |
+
#: languages/vue.php:2182
|
7867 |
+
msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
|
7868 |
msgstr ""
|
7869 |
|
7870 |
+
#: languages/vue.php:2185
|
7871 |
+
msgid "Display Title"
|
7872 |
msgstr ""
|
7873 |
|
7874 |
+
#: languages/vue.php:2191
|
7875 |
+
msgid "Title your widget and set it’s display preferences."
|
7876 |
msgstr ""
|
7877 |
|
7878 |
+
#: languages/vue.php:2194
|
7879 |
+
msgid "Custom Campaign Parameters"
|
7880 |
msgstr ""
|
7881 |
|
7882 |
+
#: languages/vue.php:2197
|
7883 |
+
msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
|
7884 |
msgstr ""
|
7885 |
|
7886 |
+
#: languages/vue.php:2200
|
7887 |
+
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."
|
7888 |
msgstr ""
|
7889 |
|
7890 |
+
#. Translators: Marks the field as required.
|
7891 |
#: languages/vue.php:2204
|
7892 |
+
msgid "Website URL %s"
|
|
|
|
|
|
|
|
|
7893 |
msgstr ""
|
7894 |
|
7895 |
+
#. Translators: Display the current website url in italic.
|
7896 |
+
#: languages/vue.php:2208
|
7897 |
+
msgid "The full website URL (e.g. %1$s %2$s%3$s)"
|
7898 |
msgstr ""
|
7899 |
|
7900 |
+
#. Translators: Marks the field as required.
|
7901 |
+
#: languages/vue.php:2212
|
7902 |
+
msgid "Campaign Source %s"
|
|
|
7903 |
msgstr ""
|
7904 |
|
7905 |
+
#. Translators: Make the text italic.
|
7906 |
+
#: languages/vue.php:2216
|
7907 |
+
msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
|
7908 |
msgstr ""
|
7909 |
|
7910 |
+
#. Translators: Make the text italic.
|
7911 |
#: languages/vue.php:2220
|
7912 |
+
msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
|
7913 |
msgstr ""
|
7914 |
|
7915 |
+
#. Translators: Make the text italic.
|
7916 |
+
#: languages/vue.php:2224
|
7917 |
+
msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
|
7918 |
msgstr ""
|
7919 |
|
7920 |
+
#: languages/vue.php:2227
|
7921 |
+
msgid "Enter the paid keyword"
|
7922 |
msgstr ""
|
7923 |
|
7924 |
+
#: languages/vue.php:2230
|
7925 |
+
msgid "Enter something to differentiate ads"
|
7926 |
msgstr ""
|
7927 |
|
|
|
7928 |
#: languages/vue.php:2233
|
7929 |
+
msgid "Use Fragment"
|
7930 |
msgstr ""
|
7931 |
|
7932 |
+
#. Translators: Make the text bold.
|
7933 |
#: languages/vue.php:2237
|
7934 |
+
msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
|
7935 |
msgstr ""
|
7936 |
|
7937 |
#: languages/vue.php:2240
|
7938 |
+
msgid "URL to use"
|
7939 |
msgstr ""
|
7940 |
|
7941 |
+
#: languages/vue.php:2243
|
7942 |
+
msgid "(Updates automatically)"
|
|
|
7943 |
msgstr ""
|
7944 |
|
7945 |
+
#: languages/vue.php:2246
|
7946 |
+
msgid "Copy to Clipboard"
|
7947 |
msgstr ""
|
7948 |
|
7949 |
+
#: languages/vue.php:2249
|
7950 |
+
msgid "Copy to Pretty Links"
|
7951 |
msgstr ""
|
7952 |
|
7953 |
+
#: languages/vue.php:2252
|
7954 |
+
msgid "Make your campaign links prettier!"
|
|
|
7955 |
msgstr ""
|
7956 |
|
7957 |
+
#: languages/vue.php:2255
|
7958 |
+
msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
|
7959 |
+
msgstr ""
|
7960 |
+
|
7961 |
+
#: languages/vue.php:2258
|
7962 |
+
msgid "More Information & Examples"
|
7963 |
msgstr ""
|
7964 |
|
|
|
7965 |
#: languages/vue.php:2261
|
7966 |
+
msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
|
7967 |
msgstr ""
|
7968 |
|
7969 |
#: languages/vue.php:2264
|
7970 |
+
msgid "Campaign Source"
|
7971 |
msgstr ""
|
7972 |
|
7973 |
+
#: languages/vue.php:2267
|
7974 |
+
msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
|
|
|
7975 |
msgstr ""
|
7976 |
|
7977 |
+
#: languages/vue.php:2270
|
7978 |
+
msgid "Campaign Medium"
|
7979 |
msgstr ""
|
7980 |
|
7981 |
+
#: languages/vue.php:2273
|
7982 |
+
msgid "Use utm_medium to identify a medium such as email or cost-per-click."
|
|
|
7983 |
msgstr ""
|
7984 |
|
7985 |
+
#: languages/vue.php:2276
|
7986 |
+
msgid "Campaign Name"
|
7987 |
+
msgstr ""
|
7988 |
+
|
7989 |
+
#: languages/vue.php:2279
|
7990 |
+
msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
|
7991 |
msgstr ""
|
7992 |
|
|
|
7993 |
#: languages/vue.php:2282
|
7994 |
+
msgid "Campaign Term"
|
7995 |
msgstr ""
|
7996 |
|
7997 |
#: languages/vue.php:2285
|
7998 |
+
msgid "Used for paid search. Use utm_term to note the keywords for this ad."
|
7999 |
msgstr ""
|
8000 |
|
8001 |
#: languages/vue.php:2288
|
8002 |
+
msgid "Campaign Content"
|
8003 |
msgstr ""
|
8004 |
|
8005 |
#: languages/vue.php:2291
|
8006 |
+
msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
|
8007 |
msgstr ""
|
8008 |
|
8009 |
+
#. Translators: Example.
|
8010 |
+
#: languages/vue.php:2295
|
8011 |
+
msgid "Example: %s"
|
8012 |
msgstr ""
|
8013 |
|
8014 |
+
#. Translators: Examples.
|
8015 |
+
#: languages/vue.php:2299
|
8016 |
+
msgid "Examples: %s"
|
8017 |
msgstr ""
|
8018 |
|
8019 |
+
#: languages/vue.php:2302
|
8020 |
+
msgid "About Campaigns"
|
8021 |
msgstr ""
|
8022 |
|
8023 |
+
#: languages/vue.php:2305
|
8024 |
+
msgid "About Custom Campaigns"
|
8025 |
msgstr ""
|
8026 |
|
8027 |
+
#: languages/vue.php:2308
|
8028 |
+
msgid "Best Practices for Creating Custom Campaigns"
|
|
|
8029 |
msgstr ""
|
8030 |
|
|
|
8031 |
#: languages/vue.php:2311
|
8032 |
+
msgid "About the Referral Traffic Report"
|
8033 |
msgstr ""
|
8034 |
|
8035 |
+
#: languages/vue.php:2314
|
8036 |
+
msgid "About Traffic Source Dimensions"
|
|
|
8037 |
msgstr ""
|
8038 |
|
8039 |
+
#: languages/vue.php:2317
|
8040 |
+
msgid "AdWords Auto-Tagging"
|
8041 |
msgstr ""
|
8042 |
|
8043 |
+
#: languages/vue.php:2320
|
8044 |
+
msgid "Additional Information"
|
8045 |
+
msgstr ""
|
8046 |
+
|
8047 |
+
#: languages/vue.php:2323
|
8048 |
+
msgid "Unlock Form Tracking"
|
8049 |
msgstr ""
|
8050 |
|
|
|
8051 |
#: languages/vue.php:2326
|
8052 |
+
msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
|
8053 |
msgstr ""
|
8054 |
|
8055 |
#: languages/vue.php:2329
|
8056 |
+
msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
|
8057 |
msgstr ""
|
8058 |
|
8059 |
#: languages/vue.php:2332
|
8060 |
+
msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
|
8061 |
msgstr ""
|
8062 |
|
8063 |
+
#. Translators: Add line break.
|
8064 |
#: languages/vue.php:2336
|
8065 |
+
msgid "See All Your Important Store%s Metrics in One Place"
|
8066 |
msgstr ""
|
8067 |
|
8068 |
#: languages/vue.php:2339
|
8069 |
+
msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
|
8070 |
msgstr ""
|
8071 |
|
8072 |
+
#: languages/vue.php:2342
|
8073 |
+
msgid "See your Top Conversion Sources and Focus on what's Working"
|
|
|
8074 |
msgstr ""
|
8075 |
|
8076 |
+
#: languages/vue.php:2345
|
8077 |
+
msgid "This feature requires ExactMetrics Pro"
|
|
|
8078 |
msgstr ""
|
8079 |
|
8080 |
+
#: languages/vue.php:2348
|
8081 |
+
msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
|
|
|
8082 |
msgstr ""
|
8083 |
|
8084 |
+
#: languages/vue.php:2351
|
8085 |
+
msgid "Upgrade to Pro and Unlock Popular Products"
|
|
|
8086 |
msgstr ""
|
8087 |
|
8088 |
+
#: languages/vue.php:2354
|
8089 |
+
msgid "View all Pro features"
|
8090 |
msgstr ""
|
8091 |
|
8092 |
+
#. Translators: Minimum and maximum number that can be used.
|
8093 |
+
#: languages/vue.php:2358
|
8094 |
+
msgid "Please enter a value between %1$s and %2$s"
|
8095 |
msgstr ""
|
8096 |
|
8097 |
+
#. Translators: The minimum set value.
|
8098 |
+
#: languages/vue.php:2362
|
8099 |
+
msgid "Please enter a value higher than %s"
|
8100 |
msgstr ""
|
8101 |
|
8102 |
+
#. Translators: The maximum set value.
|
8103 |
+
#: languages/vue.php:2366
|
8104 |
+
msgid "Please enter a value lower than %s"
|
8105 |
msgstr ""
|
8106 |
|
8107 |
+
#: languages/vue.php:2369
|
8108 |
+
msgid "Please enter a number"
|
8109 |
msgstr ""
|
8110 |
|
8111 |
+
#: languages/vue.php:2372
|
8112 |
+
msgid "Value has to be a round number"
|
8113 |
msgstr ""
|
8114 |
|
8115 |
+
#: languages/vue.php:2375
|
8116 |
+
msgid "Days"
|
8117 |
msgstr ""
|
8118 |
|
8119 |
+
#. Translators: placeholders make text small.
|
8120 |
#: languages/vue.php:2379
|
8121 |
+
msgid "7 days"
|
8122 |
msgstr ""
|
8123 |
|
8124 |
#: languages/vue.php:2382
|
8125 |
+
msgid "30 days"
|
8126 |
msgstr ""
|
8127 |
|
8128 |
#: languages/vue.php:2385
|
8129 |
+
msgid "Custom"
|
8130 |
msgstr ""
|
8131 |
|
8132 |
#: languages/vue.php:2388
|
8133 |
+
msgid "Add Top 5 Posts from Google Analytics"
|
8134 |
msgstr ""
|
8135 |
|
8136 |
#: languages/vue.php:2391
|
8137 |
+
msgid "Pro version is required"
|
8138 |
msgstr ""
|
8139 |
|
8140 |
#: languages/vue.php:2394
|
8141 |
+
msgid "Automated + Curated"
|
8142 |
msgstr ""
|
8143 |
|
8144 |
+
#. Translators: Placeholder adds a link to the Custom Dimensions settings.
|
8145 |
+
#: languages/vue.php:2398
|
8146 |
+
msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using Custom Dimensions (Pro version required. %1$sUpgrade now%2$s)."
|
8147 |
msgstr ""
|
8148 |
|
8149 |
+
#: languages/vue.php:2401
|
8150 |
+
msgid "SharedCount API Key"
|
8151 |
msgstr ""
|
8152 |
|
|
|
8153 |
#: languages/vue.php:2404
|
8154 |
+
msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
|
8155 |
msgstr ""
|
8156 |
|
8157 |
+
#: languages/vue.php:2407
|
8158 |
+
msgid "Start Indexing"
|
|
|
8159 |
msgstr ""
|
8160 |
|
8161 |
+
#: languages/vue.php:2410
|
8162 |
+
msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
|
8163 |
msgstr ""
|
8164 |
|
8165 |
+
#: languages/vue.php:2413
|
8166 |
+
msgid "Indexing completed, counts will update automatically every day."
|
8167 |
msgstr ""
|
8168 |
|
8169 |
+
#. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
|
8170 |
#: languages/vue.php:2417
|
8171 |
+
msgid "%1$sPage %3$s%2$s of %4$s"
|
8172 |
msgstr ""
|
8173 |
|
8174 |
#: languages/vue.php:2420
|
8175 |
+
msgid "Select posts/search"
|
8176 |
msgstr ""
|
8177 |
|
8178 |
#: languages/vue.php:2423
|
8179 |
+
msgid "Oops! No posts found."
|
8180 |
msgstr ""
|
8181 |
|
8182 |
#: languages/vue.php:2426
|
8183 |
+
msgid "Search by post title"
|
8184 |
msgstr ""
|
8185 |
|
8186 |
#: languages/vue.php:2429
|
8187 |
+
msgid "Can't load posts."
|
8188 |
msgstr ""
|
8189 |
|
8190 |
#: languages/vue.php:2432
|
8191 |
+
msgid "Multiple Entries"
|
8192 |
msgstr ""
|
8193 |
|
8194 |
#: languages/vue.php:2435
|
8195 |
+
msgid "Total Number of Widgets to Show"
|
8196 |
msgstr ""
|
8197 |
|
8198 |
#: languages/vue.php:2438
|
8199 |
+
msgid "Choose how many widgets will be placed in a single Post."
|
8200 |
msgstr ""
|
8201 |
|
8202 |
#: languages/vue.php:2441
|
8203 |
+
msgid "Minimum Distance Between Widgets"
|
8204 |
msgstr ""
|
8205 |
|
8206 |
#: languages/vue.php:2444
|
8207 |
+
msgid "Choose the distance between widgets."
|
8208 |
msgstr ""
|
8209 |
|
8210 |
#: languages/vue.php:2447
|
8211 |
+
msgid "Minimum Word Count to Display Multiple Widgets"
|
8212 |
msgstr ""
|
8213 |
|
8214 |
#: languages/vue.php:2450
|
8215 |
+
msgid "Choose the minimum word count for a Post to have multiple entries."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8216 |
msgstr ""
|
8217 |
|
8218 |
+
#: languages/vue.php:2457
|
8219 |
+
msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
|
8220 |
msgstr ""
|
8221 |
|
8222 |
+
#: languages/vue.php:2460
|
8223 |
+
msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
|
8224 |
msgstr ""
|
8225 |
|
8226 |
+
#: languages/vue.php:2463
|
8227 |
+
msgid "Color"
|
8228 |
msgstr ""
|
8229 |
|
8230 |
+
#: languages/vue.php:2466
|
8231 |
+
msgid "Size"
|
8232 |
msgstr ""
|
8233 |
|
8234 |
+
#: languages/vue.php:2469
|
8235 |
+
msgid "Title"
|
8236 |
msgstr ""
|
8237 |
|
8238 |
+
#: languages/vue.php:2472
|
8239 |
+
msgid "Label"
|
8240 |
msgstr ""
|
8241 |
|
8242 |
+
#: languages/vue.php:2475
|
8243 |
+
msgid "Background"
|
8244 |
msgstr ""
|
8245 |
|
8246 |
+
#: languages/vue.php:2478
|
8247 |
+
msgid "Border"
|
8248 |
msgstr ""
|
8249 |
|
8250 |
+
#: languages/vue.php:2481
|
8251 |
+
msgid "Icon"
|
8252 |
msgstr ""
|
8253 |
|
8254 |
+
#: languages/vue.php:2484
|
8255 |
+
msgid "Popular Posts data can be fetched correctly"
|
8256 |
msgstr ""
|
8257 |
|
8258 |
+
#: languages/vue.php:2487
|
8259 |
+
msgid "Please note: depending on when you set up the Custom Dimensions settings, it may take up to 7 days to see relevant Popular Posts data loading from Google Analytics."
|
8260 |
msgstr ""
|
8261 |
|
8262 |
+
#: languages/vue.php:2490
|
8263 |
+
msgid "Close"
|
8264 |
msgstr ""
|
8265 |
|
8266 |
+
#: languages/vue.php:2493
|
8267 |
+
msgid "In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both ExactMetrics and Google Analytics settings. Please use the button below to confirm your configuration is correct."
|
8268 |
msgstr ""
|
8269 |
|
8270 |
+
#: languages/vue.php:2496
|
8271 |
+
msgid "Test Automated Posts"
|
8272 |
msgstr ""
|
8273 |
|
8274 |
+
#. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
|
8275 |
+
#: languages/vue.php:2500
|
8276 |
+
msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
|
8277 |
msgstr ""
|
8278 |
|
8279 |
+
#. Translators: Placeholder adds a link to the Custom Dimensions settings.
|
8280 |
#: languages/vue.php:2504
|
8281 |
+
msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using %1$sCustom Dimensions%2$s. Also requires Sort By - Curated to be selected. Setup steps can be found in our %3$sknowledge base%4$s."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8282 |
msgstr ""
|
8283 |
|
8284 |
+
#. Translators: Placeholder gets replaced with current license version.
|
8285 |
+
#: languages/vue.php:2508
|
8286 |
+
msgid "Pro version is required. Your current license level is: %s"
|
8287 |
msgstr ""
|
8288 |
|
8289 |
+
#: languages/vue.php:2511
|
8290 |
+
msgid "Verifying Popular Posts data"
|
8291 |
msgstr ""
|
8292 |
|
8293 |
+
#: languages/vue.php:2514
|
8294 |
msgid "Only Show Posts from These Categories"
|
8295 |
msgstr ""
|
8296 |
|
8297 |
+
#: languages/vue.php:2517
|
8298 |
msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
|
8299 |
msgstr ""
|
8300 |
|
8301 |
+
#: languages/vue.php:2520
|
8302 |
msgid "Author/Date"
|
8303 |
msgstr ""
|
8304 |
|
8305 |
+
#: languages/vue.php:2532
|
8306 |
msgid "Choose which content you would like displayed in the widget."
|
8307 |
msgstr ""
|
8308 |
|
8309 |
+
#: languages/vue.php:2544
|
8310 |
msgid "Comments"
|
8311 |
msgstr ""
|
8312 |
|
8313 |
+
#: languages/vue.php:2550
|
8314 |
msgid "Choose how many posts you’d like displayed in the widget."
|
8315 |
msgstr ""
|
8316 |
|
8317 |
+
#: languages/vue.php:2553
|
8318 |
msgid "Wide"
|
8319 |
msgstr ""
|
8320 |
|
8321 |
+
#: languages/vue.php:2556
|
8322 |
msgid "Narrow"
|
8323 |
msgstr ""
|
8324 |
|
8325 |
+
#: languages/vue.php:2559
|
8326 |
+
msgid "Ads Tracking"
|
8327 |
+
msgstr ""
|
8328 |
+
|
8329 |
+
#: languages/vue.php:2562
|
8330 |
+
msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
|
8331 |
+
msgstr ""
|
8332 |
+
|
8333 |
#: languages/vue.php:2565
|
8334 |
+
msgid "Facebook Instant Articles"
|
8335 |
msgstr ""
|
8336 |
|
8337 |
#: languages/vue.php:2568
|
8338 |
+
msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
|
8339 |
msgstr ""
|
8340 |
|
8341 |
#: languages/vue.php:2571
|
8342 |
+
msgid "Google AMP"
|
8343 |
msgstr ""
|
8344 |
|
8345 |
#: languages/vue.php:2574
|
8346 |
+
msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
|
8347 |
msgstr ""
|
8348 |
|
8349 |
#: languages/vue.php:2577
|
8350 |
+
msgid "Upgrade"
|
8351 |
msgstr ""
|
8352 |
|
8353 |
#: languages/vue.php:2580
|
8354 |
+
msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
|
8355 |
msgstr ""
|
8356 |
|
8357 |
+
#: languages/vue.php:2583
|
8358 |
+
msgid ""
|
8359 |
+
"The EU Compliance addon allows you to improve compliance with GDPR\n"
|
8360 |
+
" and other privacy regulations."
|
8361 |
msgstr ""
|
8362 |
|
8363 |
+
#: languages/vue.php:2587
|
8364 |
+
msgid "EU Compliance"
|
|
|
8365 |
msgstr ""
|
8366 |
|
8367 |
+
#: languages/vue.php:2590
|
8368 |
+
msgid "Scroll Tracking"
|
8369 |
msgstr ""
|
8370 |
|
8371 |
+
#: languages/vue.php:2593
|
8372 |
+
msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
|
8373 |
msgstr ""
|
8374 |
|
8375 |
+
#: languages/vue.php:2596
|
8376 |
+
msgid "Performance"
|
|
|
8377 |
msgstr ""
|
8378 |
|
8379 |
+
#: languages/vue.php:2599
|
8380 |
+
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."
|
8381 |
+
msgstr ""
|
8382 |
+
|
8383 |
+
#: languages/vue.php:2602
|
8384 |
+
msgid "Usage Tracking"
|
8385 |
msgstr ""
|
8386 |
|
|
|
8387 |
#: languages/vue.php:2605
|
8388 |
+
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."
|
8389 |
msgstr ""
|
8390 |
|
8391 |
#: languages/vue.php:2608
|
8392 |
+
msgid "Allow usage tracking"
|
8393 |
msgstr ""
|
8394 |
|
8395 |
+
#. Translators: Adds a link to the documentation.
|
8396 |
+
#: languages/vue.php:2612
|
8397 |
+
msgid "Complete documentation on usage tracking is available %1$shere%2$s."
|
8398 |
msgstr ""
|
8399 |
|
8400 |
+
#: languages/vue.php:2615
|
8401 |
+
msgid "Unlock with %s"
|
8402 |
msgstr ""
|
8403 |
|
8404 |
+
#: languages/vue.php:2618
|
8405 |
+
msgid "Automatic Placement"
|
8406 |
msgstr ""
|
8407 |
|
|
|
8408 |
#: languages/vue.php:2621
|
8409 |
+
msgid "Display using Gutenberg Blocks"
|
8410 |
+
msgstr ""
|
8411 |
+
|
8412 |
+
#: languages/vue.php:2624
|
8413 |
+
msgid "Embed Options"
|
8414 |
msgstr ""
|
8415 |
|
8416 |
#: languages/vue.php:2627
|
8417 |
+
msgid "All Embed Options can be used in conjunction with one another."
|
8418 |
msgstr ""
|
8419 |
|
8420 |
#: languages/vue.php:2630
|
8421 |
+
msgid "Using the Gutenberg Block"
|
8422 |
msgstr ""
|
8423 |
|
8424 |
#: languages/vue.php:2633
|
8425 |
+
msgid "Using Automatic Embed"
|
8426 |
msgstr ""
|
8427 |
|
8428 |
#: languages/vue.php:2636
|
8429 |
+
msgid "Learn how to insert the Popular Posts Widget into your posts and pages using Gutenberg Blocks. To style this widget, use the Gutenberg Block settings."
|
8430 |
msgstr ""
|
8431 |
|
8432 |
#: languages/vue.php:2639
|
8433 |
+
msgid "Enabling Automatic Placement will include the Popular Posts Widget after the last paragraph of any and all posts that match your Behavior settings. To style this widget use the Customize Design panel above."
|
8434 |
msgstr ""
|
8435 |
|
8436 |
#: languages/vue.php:2642
|
8437 |
+
msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
|
8438 |
msgstr ""
|
8439 |
|
8440 |
#: languages/vue.php:2645
|
8441 |
+
msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
|
8442 |
msgstr ""
|
8443 |
|
8444 |
#: languages/vue.php:2648
|
8445 |
+
msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
|
8446 |
msgstr ""
|
8447 |
|
8448 |
#: languages/vue.php:2651
|
8449 |
+
msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
|
8450 |
msgstr ""
|
8451 |
|
8452 |
#: languages/vue.php:2654
|
8453 |
+
msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
|
8454 |
msgstr ""
|
8455 |
|
8456 |
#: languages/vue.php:2657
|
8457 |
+
msgid "%1$sStep 1%2$s - Navigate to your Appearance > Widgets page using the menu on the left side your screen. Must be logged in as Admin."
|
8458 |
msgstr ""
|
8459 |
|
8460 |
#: languages/vue.php:2660
|
8461 |
+
msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - ExactMetrics widget and drag it into the desired Sidebar on the right."
|
8462 |
msgstr ""
|
8463 |
|
8464 |
#: languages/vue.php:2663
|
8465 |
+
msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
|
8466 |
msgstr ""
|
8467 |
|
8468 |
#: languages/vue.php:2666
|
8469 |
+
msgid "Display using a Shortcode"
|
8470 |
msgstr ""
|
8471 |
|
8472 |
#: languages/vue.php:2669
|
8473 |
+
msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
|
8474 |
msgstr ""
|
8475 |
|
8476 |
#: languages/vue.php:2672
|
8477 |
+
msgid "Copy Shortcode"
|
8478 |
msgstr ""
|
8479 |
|
8480 |
#: languages/vue.php:2675
|
8481 |
+
msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
|
8482 |
msgstr ""
|
8483 |
|
8484 |
#: languages/vue.php:2678
|
8485 |
+
msgid "Enable Automatic Placement"
|
8486 |
msgstr ""
|
8487 |
|
8488 |
#: languages/vue.php:2681
|
8489 |
+
msgid "Display in a Sidebar"
|
8490 |
msgstr ""
|
8491 |
|
8492 |
#: languages/vue.php:2684
|
8493 |
+
msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
|
8494 |
msgstr ""
|
8495 |
|
8496 |
#: languages/vue.php:2687
|
8497 |
+
msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
|
8498 |
msgstr ""
|
8499 |
|
8500 |
+
#. Translators: Adds link to the account area to retreive license key.
|
8501 |
+
#: languages/vue.php:2691
|
8502 |
+
msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
|
8503 |
msgstr ""
|
8504 |
|
8505 |
+
#: languages/vue.php:2694
|
8506 |
+
msgid "Connect ExactMetrics to Start Tracking Your Data"
|
8507 |
msgstr ""
|
8508 |
|
8509 |
+
#: languages/vue.php:2697
|
8510 |
+
msgid "Complete Upgrade"
|
8511 |
msgstr ""
|
8512 |
|
8513 |
+
#: languages/vue.php:2700
|
8514 |
+
msgid "Upgrade to Pro Version!"
|
8515 |
msgstr ""
|
8516 |
|
8517 |
+
#. Translators: Make text bold.
|
8518 |
+
#: languages/vue.php:2704
|
8519 |
+
msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
|
8520 |
msgstr ""
|
8521 |
|
8522 |
+
#: languages/vue.php:2707
|
8523 |
+
msgid "Display Method"
|
8524 |
msgstr ""
|
8525 |
|
8526 |
+
#: languages/vue.php:2710
|
8527 |
+
msgid "There are two ways to manual include the widget in your posts."
|
8528 |
msgstr ""
|
8529 |
|
8530 |
+
#: languages/vue.php:2713
|
8531 |
+
msgid "Using the Shortcode"
|
|
|
8532 |
msgstr ""
|
8533 |
|
|
|
8534 |
#: languages/vue.php:2716
|
8535 |
+
msgid "Learn how to insert the widget using Gutenberg blocks."
|
8536 |
msgstr ""
|
8537 |
|
8538 |
#: languages/vue.php:2719
|
8539 |
+
msgid "Learn how to insert the widget using out Shortcode."
|
8540 |
+
msgstr ""
|
8541 |
+
|
8542 |
+
#: languages/vue.php:2722
|
8543 |
+
msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
|
8544 |
+
msgstr ""
|
8545 |
+
|
8546 |
+
#: languages/vue.php:2725
|
8547 |
+
msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”."
|
8548 |
+
msgstr ""
|
8549 |
+
|
8550 |
+
#: languages/vue.php:2728
|
8551 |
+
msgid "Shortcode"
|
8552 |
+
msgstr ""
|
8553 |
+
|
8554 |
+
#: languages/vue.php:2731
|
8555 |
+
msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
|
8556 |
+
msgstr ""
|
8557 |
+
|
8558 |
+
#: languages/vue.php:2734
|
8559 |
+
msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
|
8560 |
msgstr ""
|
8561 |
|
8562 |
#: gadwp.php:250
|
languages/vue.php
CHANGED
@@ -7,19 +7,35 @@ $generated_i18n_strings = array(
|
|
7 |
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:97
|
8 |
__( '2', 'google-analytics-dashboard-for-wp' ),
|
9 |
|
10 |
-
// Reference: src/modules/settings/components/input/tab-general/
|
11 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:171
|
12 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:150
|
13 |
__( 'Error', 'google-analytics-dashboard-for-wp' ),
|
14 |
|
15 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:151
|
16 |
__( 'Please try again.', 'google-analytics-dashboard-for-wp' ),
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
// Reference: src/plugins/exactmetrics-settings-helper-plugin.js:116
|
19 |
__( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
|
20 |
|
21 |
-
// Reference: src/modules/
|
22 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:154
|
23 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:130
|
24 |
__( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
|
25 |
|
@@ -39,7 +55,6 @@ $generated_i18n_strings = array(
|
|
39 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
|
40 |
__( 'Loading new report data', 'google-analytics-dashboard-for-wp' ),
|
41 |
|
42 |
-
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:228
|
43 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:143
|
44 |
/* Translators: Adds an arrow icon. */
|
45 |
__( 'Continue %s', 'google-analytics-dashboard-for-wp' ),
|
@@ -53,10 +68,10 @@ $generated_i18n_strings = array(
|
|
53 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:185
|
54 |
__( 'Unlock the Publishers Report and Focus on the Content That Matters', 'google-analytics-dashboard-for-wp' ),
|
55 |
|
|
|
56 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:186
|
57 |
__( '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' ),
|
58 |
|
59 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:31
|
60 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:189
|
61 |
__( 'Unlock the eCommerce Report and See Your Important Store Metrics', 'google-analytics-dashboard-for-wp' ),
|
62 |
|
@@ -69,13 +84,14 @@ $generated_i18n_strings = array(
|
|
69 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:194
|
70 |
__( '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' ),
|
71 |
|
|
|
72 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:197
|
73 |
__( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-dashboard-for-wp' ),
|
74 |
|
|
|
75 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:198
|
76 |
__( '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' ),
|
77 |
|
78 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:31
|
79 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:201
|
80 |
__( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-dashboard-for-wp' ),
|
81 |
|
@@ -88,105 +104,75 @@ $generated_i18n_strings = array(
|
|
88 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:206
|
89 |
__( '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' ),
|
90 |
|
91 |
-
// Reference: src/plugins/exactmetrics-
|
92 |
-
__( '
|
93 |
-
|
94 |
-
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:225
|
95 |
-
__( 'Yesterday', 'google-analytics-dashboard-for-wp' ),
|
96 |
-
|
97 |
-
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:231
|
98 |
-
__( 'Last Week', 'google-analytics-dashboard-for-wp' ),
|
99 |
-
|
100 |
-
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:237
|
101 |
-
__( 'Last Month', 'google-analytics-dashboard-for-wp' ),
|
102 |
-
|
103 |
-
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:243
|
104 |
-
__( 'Last 7 days', 'google-analytics-dashboard-for-wp' ),
|
105 |
-
|
106 |
-
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:249
|
107 |
-
__( 'Last 30 days', 'google-analytics-dashboard-for-wp' ),
|
108 |
|
109 |
-
// Reference: src/modules/
|
110 |
__( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
|
111 |
|
112 |
-
// Reference: src/
|
113 |
-
|
|
|
114 |
|
115 |
-
// Reference: src/
|
116 |
-
|
|
|
117 |
|
118 |
-
// Reference: src/
|
119 |
-
|
120 |
-
__( 'Get Started %s', 'google-analytics-dashboard-for-wp' ),
|
121 |
|
122 |
-
// Reference: src/plugins/exactmetrics-
|
123 |
-
|
|
|
124 |
|
125 |
-
// Reference: src/
|
126 |
-
|
127 |
-
__( 'See how %s visitors found your site!', 'google-analytics-dashboard-for-wp' ),
|
128 |
|
129 |
-
// Reference: src/
|
130 |
-
|
131 |
-
__( 'Your website was visited by %s users in the last 30 days.', 'google-analytics-dashboard-for-wp' ),
|
132 |
|
133 |
-
// Reference: src/
|
134 |
-
|
|
|
135 |
|
136 |
-
// Reference: src/
|
|
|
|
|
|
|
137 |
__( 'About Us', 'google-analytics-dashboard-for-wp' ),
|
138 |
|
139 |
-
// Reference: src/modules/settings/routes/
|
140 |
__( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
|
141 |
|
142 |
-
// Reference: src/modules/settings/routes/
|
143 |
__( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
|
144 |
|
145 |
-
// Reference: src/modules/
|
146 |
-
|
147 |
-
|
148 |
-
// Reference: src/modules/settings/routes/site.js:108
|
149 |
-
__( 'PrettyLinks Integration', 'google-analytics-dashboard-for-wp' ),
|
150 |
-
|
151 |
-
// Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:22
|
152 |
-
__( 'Inline Popular Posts', 'google-analytics-dashboard-for-wp' ),
|
153 |
-
|
154 |
-
// Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:23
|
155 |
-
__( 'Popular Posts Widget', 'google-analytics-dashboard-for-wp' ),
|
156 |
-
|
157 |
-
// Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:24
|
158 |
-
__( 'Popular Products', 'google-analytics-dashboard-for-wp' ),
|
159 |
-
|
160 |
-
// Reference: src/modules/settings/routes/site.js:180
|
161 |
-
__( 'Settings', 'google-analytics-dashboard-for-wp' ),
|
162 |
-
|
163 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:61
|
164 |
-
__( 'General', 'google-analytics-dashboard-for-wp' ),
|
165 |
-
|
166 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:62
|
167 |
-
__( 'Engagement', 'google-analytics-dashboard-for-wp' ),
|
168 |
|
169 |
-
// Reference: src/modules/
|
170 |
-
|
|
|
171 |
|
172 |
-
// Reference: src/modules/
|
173 |
-
|
|
|
174 |
|
175 |
-
// Reference: src/modules/
|
176 |
-
__( '
|
177 |
|
178 |
-
// Reference: src/modules/
|
179 |
-
__( '
|
180 |
|
181 |
-
// Reference: src/modules/
|
182 |
-
__( '
|
183 |
|
184 |
-
// Reference: src/modules/
|
185 |
-
|
186 |
-
__( 'Can\'t load report data. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
187 |
|
188 |
-
// Reference: src/modules/reports/
|
189 |
-
__( '
|
190 |
|
191 |
// Reference: src/modules/reports/components/ReportReAuth.vue:19
|
192 |
__( 'ExactMetrics encountered an error loading your report data', 'google-analytics-dashboard-for-wp' ),
|
@@ -197,48 +183,32 @@ $generated_i18n_strings = array(
|
|
197 |
// Reference: src/modules/reports/components/ReportReAuth.vue:21
|
198 |
__( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
199 |
|
|
|
200 |
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:127
|
201 |
__( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
|
202 |
|
203 |
// Reference: src/modules/reports/components/ReportReAuth.vue:47
|
|
|
204 |
__( 'Ok', 'google-analytics-dashboard-for-wp' ),
|
205 |
|
206 |
-
// Reference: src/modules/settings/components/SettingsButtonSave.vue:46
|
207 |
-
__( 'Save Changes', 'google-analytics-dashboard-for-wp' ),
|
208 |
-
|
209 |
-
// Reference: src/modules/notifications/components/exactmetrics-Notifications.vue:75
|
210 |
-
__( 'Inbox', 'google-analytics-dashboard-for-wp' ),
|
211 |
-
|
212 |
-
// Reference: src/modules/notifications/components/exactmetrics-Notifications.vue:76
|
213 |
-
__( 'Back to Inbox', 'google-analytics-dashboard-for-wp' ),
|
214 |
-
|
215 |
-
// Reference: src/modules/notifications/components/exactmetrics-Notifications.vue:77
|
216 |
-
__( 'View Dismissed', 'google-analytics-dashboard-for-wp' ),
|
217 |
-
|
218 |
-
// Reference: src/modules/notifications/components/exactmetrics-Notifications.vue:78
|
219 |
-
__( 'Notifications', 'google-analytics-dashboard-for-wp' ),
|
220 |
-
|
221 |
-
// Reference: src/modules/notifications/components/exactmetrics-Notifications.vue:79
|
222 |
-
__( 'Dismiss All', 'google-analytics-dashboard-for-wp' ),
|
223 |
-
|
224 |
-
// Reference: src/modules/notifications/components/exactmetrics-Notifications.vue:80
|
225 |
-
__( 'Dismissed', 'google-analytics-dashboard-for-wp' ),
|
226 |
-
|
227 |
-
// Reference: src/modules/notifications/components/exactmetrics-Notifications.vue:81
|
228 |
-
__( 'No Notifications', 'google-analytics-dashboard-for-wp' ),
|
229 |
-
|
230 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:22
|
231 |
-
// Reference: src/modules/widget/store/index.js:76
|
232 |
__( 'Overview', 'google-analytics-dashboard-for-wp' ),
|
233 |
|
|
|
234 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:30
|
235 |
__( 'Publishers', 'google-analytics-dashboard-for-wp' ),
|
236 |
|
237 |
-
// Reference: src/modules/
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
__( 'Search Console', 'google-analytics-dashboard-for-wp' ),
|
239 |
|
240 |
-
// Reference: src/modules/reports/
|
241 |
-
__( 'Dimensions
|
242 |
|
243 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:62
|
244 |
__( 'Forms', 'google-analytics-dashboard-for-wp' ),
|
@@ -246,31 +216,6 @@ $generated_i18n_strings = array(
|
|
246 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:70
|
247 |
__( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
|
248 |
|
249 |
-
// Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24
|
250 |
-
__( 'Exit Setup', 'google-analytics-dashboard-for-wp' ),
|
251 |
-
|
252 |
-
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBelowContent.vue:17
|
253 |
-
__( 'Go back', 'google-analytics-dashboard-for-wp' ),
|
254 |
-
|
255 |
-
// Reference: src/modules/widget/components/WidgetFooter.vue:19
|
256 |
-
/* Translators: Placeholder is replaced with WPForms. */
|
257 |
-
__( 'Recommended Plugin: %s', 'google-analytics-dashboard-for-wp' ),
|
258 |
-
|
259 |
-
// Reference: src/modules/addons/components/AddonButton.vue:51
|
260 |
-
__( 'Install', 'google-analytics-dashboard-for-wp' ),
|
261 |
-
|
262 |
-
// Reference: src/modules/addons/components/AddonButton.vue:47
|
263 |
-
__( 'Activate', 'google-analytics-dashboard-for-wp' ),
|
264 |
-
|
265 |
-
// Reference: src/modules/widget/components/WidgetFooter.vue:22
|
266 |
-
__( 'Learn More', 'google-analytics-dashboard-for-wp' ),
|
267 |
-
|
268 |
-
// Reference: src/modules/addons/components/AddonsNavigation.vue:18
|
269 |
-
__( 'ExactMetrics Addons', 'google-analytics-dashboard-for-wp' ),
|
270 |
-
|
271 |
-
// Reference: src/modules/addons/components/AddonsNavigation.vue:19
|
272 |
-
__( 'Search Addons', 'google-analytics-dashboard-for-wp' ),
|
273 |
-
|
274 |
// Reference: src/components/TheQuickLinks.vue:31
|
275 |
__( 'See Quick Links', 'google-analytics-dashboard-for-wp' ),
|
276 |
|
@@ -286,156 +231,204 @@ $generated_i18n_strings = array(
|
|
286 |
// Reference: src/components/TheQuickLinks.vue:78
|
287 |
__( 'Upgrade to Pro »', 'google-analytics-dashboard-for-wp' ),
|
288 |
|
289 |
-
// Reference: src/modules/reports/
|
290 |
-
__( '
|
291 |
|
292 |
-
// Reference: src/modules/
|
293 |
-
__( 'ExactMetrics
|
294 |
|
295 |
-
// Reference: src/modules/
|
296 |
-
__( '
|
297 |
|
298 |
-
// Reference: src/modules/
|
299 |
-
__( '
|
300 |
|
301 |
-
// Reference: src/modules/
|
302 |
-
__( '
|
303 |
|
304 |
-
// Reference: src/modules/
|
305 |
-
|
306 |
-
__( 'Step %1$s of %2$s', 'google-analytics-dashboard-for-wp' ),
|
307 |
|
308 |
-
// Reference: src/modules/
|
309 |
-
|
|
|
310 |
|
311 |
-
// Reference: src/modules/
|
312 |
-
|
|
|
313 |
|
314 |
-
// Reference: src/modules/
|
315 |
-
|
|
|
316 |
|
317 |
-
// Reference: src/modules/
|
318 |
-
|
|
|
319 |
|
320 |
-
// Reference: src/modules/
|
321 |
-
|
|
|
322 |
|
323 |
-
// Reference: src/modules/
|
324 |
-
__( '
|
325 |
|
326 |
-
// Reference: src/modules/
|
327 |
-
__( '
|
328 |
|
329 |
-
// Reference: src/modules/
|
330 |
-
__( '
|
331 |
|
332 |
-
// Reference: src/modules/
|
333 |
-
__( '
|
334 |
|
335 |
-
// Reference: src/modules/
|
336 |
-
__( '
|
337 |
|
338 |
-
// Reference: src/modules/
|
339 |
-
__( '
|
340 |
|
341 |
-
// Reference: src/modules/
|
342 |
-
__( '
|
343 |
|
344 |
-
// Reference: src/modules/
|
345 |
-
__( '
|
346 |
|
347 |
-
// Reference: src/modules/
|
348 |
-
__( '
|
349 |
|
350 |
-
// Reference: src/modules/
|
351 |
-
__( '
|
352 |
-
|
353 |
-
// Reference: src/modules/widget/store/index.js:56
|
354 |
-
__( 'This list shows the top links clicked on your website that go to another website.', 'google-analytics-dashboard-for-wp' ),
|
355 |
-
|
356 |
-
// Reference: src/modules/widget/store/index.js:62
|
357 |
-
__( 'Top Affiliate Links', 'google-analytics-dashboard-for-wp' ),
|
358 |
-
|
359 |
-
// Reference: src/modules/widget/store/index.js:63
|
360 |
-
__( 'This list shows the top affiliate links your visitors clicked on.', 'google-analytics-dashboard-for-wp' ),
|
361 |
-
|
362 |
-
// Reference: src/modules/widget/store/index.js:69
|
363 |
-
__( 'Top Download Links', 'google-analytics-dashboard-for-wp' ),
|
364 |
-
|
365 |
-
// Reference: src/modules/widget/store/index.js:70
|
366 |
-
__( 'This list shows the download links your visitors clicked the most.', 'google-analytics-dashboard-for-wp' ),
|
367 |
-
|
368 |
-
// Reference: src/modules/widget/store/index.js:82
|
369 |
-
__( 'Top Products', 'google-analytics-dashboard-for-wp' ),
|
370 |
-
|
371 |
-
// Reference: src/modules/widget/store/index.js:83
|
372 |
-
__( 'This list shows the top selling products on your website.', 'google-analytics-dashboard-for-wp' ),
|
373 |
-
|
374 |
-
// Reference: src/modules/widget/store/index.js:89
|
375 |
-
__( 'Top Conversion Sources', 'google-analytics-dashboard-for-wp' ),
|
376 |
|
377 |
-
// Reference: src/modules/
|
378 |
-
__( '
|
379 |
|
380 |
-
// Reference: src/modules/
|
381 |
-
__( '
|
382 |
|
383 |
-
// Reference: src/modules/settings/components/
|
384 |
-
// Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:27
|
385 |
__( 'License Key', 'google-analytics-dashboard-for-wp' ),
|
386 |
|
387 |
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:62
|
388 |
/* Translators: Add link to retrieve license key from account. */
|
389 |
__( 'Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
|
390 |
|
391 |
-
// Reference: src/modules/settings/components/
|
392 |
__( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
|
393 |
|
394 |
-
// Reference: src/modules/settings/components/
|
395 |
__( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
|
396 |
|
397 |
-
// Reference: src/modules/settings/components/
|
398 |
__( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
|
399 |
|
400 |
-
// Reference: src/modules/settings/components/
|
401 |
__( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
|
402 |
|
403 |
-
// Reference: src/modules/settings/components/
|
404 |
__( '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' ),
|
405 |
|
406 |
-
// Reference: src/modules/settings/components/
|
407 |
__( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
|
408 |
|
409 |
-
// Reference: src/modules/settings/components/
|
410 |
__( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
|
411 |
|
412 |
-
// Reference: src/modules/settings/components/
|
413 |
-
|
|
|
414 |
__( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
|
415 |
|
416 |
-
// Reference: src/modules/settings/components/
|
417 |
__( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
|
418 |
|
419 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
420 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
421 |
-
// Reference: src/modules/settings/components/
|
422 |
-
// Reference: src/modules/
|
423 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:130
|
424 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:168
|
425 |
__( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
|
426 |
|
427 |
-
// Reference: src/modules/settings/components/
|
428 |
__( 'See all features', 'google-analytics-dashboard-for-wp' ),
|
429 |
|
430 |
-
// Reference: src/modules/settings/components/
|
431 |
__( 'Setup Wizard', 'google-analytics-dashboard-for-wp' ),
|
432 |
|
433 |
-
// Reference: src/modules/settings/components/
|
434 |
__( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-dashboard-for-wp' ),
|
435 |
|
436 |
-
// Reference: src/modules/settings/components/
|
437 |
__( 'Relaunch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
|
438 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
439 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:102
|
440 |
/* Translators: Makes text bold. */
|
441 |
__( '%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code).', 'google-analytics-dashboard-for-wp' ),
|
@@ -448,9 +441,9 @@ $generated_i18n_strings = array(
|
|
448 |
/* Translators: Makes text bold. */
|
449 |
__( '%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more.', 'google-analytics-dashboard-for-wp' ),
|
450 |
|
451 |
-
// Reference: src/modules/
|
452 |
-
/* Translators: Makes text bold. */
|
453 |
-
__( '%1$sEnhanced
|
454 |
|
455 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:122
|
456 |
/* Translators: Makes text bold. */
|
@@ -464,76 +457,46 @@ $generated_i18n_strings = array(
|
|
464 |
/* Translators: Makes text bold. */
|
465 |
__( '%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically.', 'google-analytics-dashboard-for-wp' ),
|
466 |
|
467 |
-
// Reference: src/modules/
|
468 |
-
/* Translators: Makes text bold. */
|
469 |
-
__( '%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post
|
470 |
|
471 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:142
|
472 |
/* Translators: Adds link to the features page. */
|
473 |
__( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
|
474 |
|
475 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-
|
476 |
__( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
|
477 |
|
478 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-
|
479 |
__( 'per year', 'google-analytics-dashboard-for-wp' ),
|
480 |
|
481 |
// Reference: src/modules/addons/components/AddonButton.vue:27
|
482 |
// Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:22
|
483 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-
|
484 |
__( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
|
485 |
|
486 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-
|
487 |
-
__( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
|
488 |
-
|
489 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:153
|
490 |
__( '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' ),
|
491 |
|
492 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-
|
493 |
__( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
|
494 |
|
495 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-
|
496 |
__( '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' ),
|
497 |
|
498 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-
|
499 |
__( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
|
500 |
|
501 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-
|
502 |
__( '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' ),
|
503 |
|
504 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-
|
505 |
__( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
|
506 |
|
507 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:167
|
508 |
__( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
|
509 |
|
510 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:170
|
511 |
-
__( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
|
512 |
-
|
513 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:171
|
514 |
-
__( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
|
515 |
-
|
516 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:172
|
517 |
-
__( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
|
518 |
-
|
519 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:173
|
520 |
-
__( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
|
521 |
-
|
522 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:174
|
523 |
-
__( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
|
524 |
-
|
525 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:177
|
526 |
-
__( 'EU Compliance Addon', 'google-analytics-dashboard-for-wp' ),
|
527 |
-
|
528 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:178
|
529 |
-
__( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
|
530 |
-
|
531 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:179
|
532 |
-
__( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
|
533 |
-
|
534 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:181
|
535 |
-
__( 'Custom Date Ranges', 'google-analytics-dashboard-for-wp' ),
|
536 |
-
|
537 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:84
|
538 |
__( 'Getting Started with ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
539 |
|
@@ -549,456 +512,298 @@ $generated_i18n_strings = array(
|
|
549 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:88
|
550 |
__( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
|
551 |
|
552 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-
|
553 |
-
|
554 |
-
|
555 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:92
|
556 |
-
/* Translators: Adds a line break. */
|
557 |
-
__( 'Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin', 'google-analytics-dashboard-for-wp' ),
|
558 |
|
559 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-
|
560 |
-
|
561 |
-
__( '
|
562 |
|
563 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-
|
564 |
-
|
|
|
565 |
|
566 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-
|
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/modules/
|
612 |
-
__( '
|
613 |
|
614 |
-
// Reference: src/modules/
|
615 |
-
__( '
|
616 |
|
617 |
-
// Reference: src/modules/
|
618 |
-
__( '
|
619 |
|
620 |
-
// Reference: src/modules/
|
621 |
-
__( '
|
622 |
|
623 |
-
// Reference: src/modules/
|
624 |
-
__( '
|
625 |
|
626 |
-
// Reference: src/modules/
|
627 |
-
__( '
|
628 |
|
629 |
-
// Reference: src/modules/
|
630 |
-
__( '
|
631 |
|
632 |
-
// Reference: src/modules/
|
633 |
-
__( '
|
634 |
|
635 |
-
// Reference: src/modules/
|
636 |
-
__( '
|
637 |
|
638 |
-
// Reference: src/modules/
|
639 |
-
__( '
|
640 |
|
641 |
-
// Reference: src/modules/
|
642 |
-
__( '
|
643 |
|
644 |
-
// Reference: src/modules/
|
645 |
-
__( '
|
646 |
|
647 |
-
// Reference: src/modules/
|
648 |
-
__( '
|
649 |
|
650 |
-
// Reference: src/modules/
|
651 |
-
__( '
|
652 |
|
653 |
-
// Reference: src/modules/
|
654 |
-
|
|
|
655 |
|
656 |
-
// Reference: src/modules/
|
657 |
-
__( '
|
658 |
|
659 |
-
// Reference: src/modules/
|
660 |
-
|
|
|
661 |
|
662 |
-
// Reference: src/modules/
|
663 |
-
__( '
|
664 |
|
665 |
-
// Reference: src/modules/
|
666 |
-
__( '
|
667 |
|
668 |
-
// Reference: src/
|
669 |
-
|
670 |
-
__( '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' ),
|
671 |
|
672 |
-
// Reference: src/
|
673 |
-
|
674 |
-
__( '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 2020. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.', 'google-analytics-dashboard-for-wp' ),
|
675 |
|
676 |
-
// Reference: src/
|
677 |
-
__( '
|
678 |
|
679 |
-
// Reference: src/
|
680 |
-
|
681 |
-
__( '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. 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' ),
|
682 |
|
683 |
-
// Reference: src/
|
684 |
-
|
|
|
685 |
|
686 |
-
// Reference: src/
|
687 |
-
__( '
|
688 |
|
689 |
-
// Reference: src/
|
690 |
-
|
691 |
-
__( 'ExactMetrics has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.', 'google-analytics-dashboard-for-wp' ),
|
692 |
|
693 |
-
// Reference: src/
|
694 |
-
__( '
|
695 |
|
696 |
-
// Reference: src/modules/
|
697 |
-
|
|
|
698 |
|
699 |
-
// Reference: src/modules/
|
700 |
-
__( '
|
701 |
|
702 |
-
// Reference: src/modules/
|
703 |
-
|
|
|
|
|
704 |
|
705 |
-
// Reference: src/modules/
|
706 |
-
|
707 |
-
__( 'Website URL %s', 'google-analytics-dashboard-for-wp' ),
|
708 |
|
709 |
-
// Reference: src/modules/
|
710 |
-
|
711 |
-
__( 'The full website URL (e.g. %1$s %2$s%3$s)', 'google-analytics-dashboard-for-wp' ),
|
712 |
|
713 |
-
// Reference: src/modules/
|
714 |
-
|
715 |
-
__( 'Campaign Source %s', 'google-analytics-dashboard-for-wp' ),
|
716 |
|
717 |
-
// Reference: src/modules/
|
718 |
-
|
719 |
-
__( 'Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)', 'google-analytics-dashboard-for-wp' ),
|
720 |
|
721 |
-
// Reference: src/modules/
|
722 |
-
|
723 |
-
__( 'Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)', 'google-analytics-dashboard-for-wp' ),
|
724 |
|
725 |
-
// Reference: src/modules/
|
726 |
-
|
727 |
-
__( 'Enter a name to easily identify (e.g. %1$sspring_sale%2$s)', 'google-analytics-dashboard-for-wp' ),
|
728 |
|
729 |
-
// Reference: src/modules/
|
730 |
-
__( '
|
731 |
|
732 |
-
// Reference: src/modules/
|
733 |
-
|
|
|
734 |
|
735 |
-
// Reference: src/modules/
|
736 |
-
__( '
|
737 |
|
738 |
-
// Reference: src/modules/
|
739 |
-
|
740 |
-
__( 'Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s', 'google-analytics-dashboard-for-wp' ),
|
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 |
-
__( '
|
756 |
|
757 |
-
// Reference: src/modules/
|
758 |
-
__( '
|
759 |
|
760 |
-
// Reference: src/modules/
|
761 |
-
__( '
|
762 |
|
763 |
-
// Reference: src/modules/
|
764 |
-
__( '
|
765 |
|
766 |
-
// Reference: src/modules/
|
767 |
-
__( '
|
768 |
|
769 |
-
// Reference: src/modules/
|
770 |
-
__( '
|
771 |
|
772 |
-
// Reference: src/modules/
|
773 |
-
__( '
|
774 |
|
775 |
-
// Reference: src/modules/
|
776 |
-
__( '
|
777 |
|
778 |
-
// Reference: src/modules/
|
779 |
-
__( '
|
780 |
|
781 |
-
// Reference: src/modules/
|
782 |
-
|
|
|
783 |
|
784 |
-
// Reference: src/modules/
|
785 |
-
__( '
|
786 |
|
787 |
-
// Reference: src/modules/
|
788 |
-
__( '
|
789 |
|
790 |
-
// Reference: src/modules/
|
791 |
-
__( '
|
792 |
|
793 |
-
// Reference: src/modules/
|
794 |
-
__( '
|
795 |
|
796 |
-
// Reference: src/modules/
|
797 |
-
|
798 |
-
__( 'Example: %s', 'google-analytics-dashboard-for-wp' ),
|
799 |
|
800 |
-
// Reference: src/modules/
|
801 |
-
|
802 |
-
__( '
|
803 |
|
804 |
-
// Reference: src/modules/
|
805 |
-
__( '
|
806 |
|
807 |
-
// Reference: src/modules/
|
808 |
-
__( '
|
809 |
|
810 |
-
// Reference: src/modules/
|
811 |
-
__( '
|
812 |
|
813 |
-
// Reference: src/modules/
|
814 |
-
__( '
|
815 |
|
816 |
-
// Reference: src/modules/
|
817 |
-
__( '
|
818 |
|
819 |
-
// Reference: src/modules/
|
820 |
-
__( '
|
821 |
|
822 |
-
// Reference: src/modules/
|
823 |
-
__( '
|
824 |
|
825 |
-
// Reference: src/modules/about/components/exactmetrics-
|
826 |
-
__( '
|
827 |
|
828 |
-
// Reference: src/modules/about/components/exactmetrics-
|
829 |
-
__( '
|
830 |
|
831 |
-
// Reference: src/modules/about/components/exactmetrics-
|
832 |
-
__( '
|
833 |
|
834 |
-
// Reference: src/modules/
|
835 |
-
|
836 |
-
__( 'Last %s days', 'google-analytics-dashboard-for-wp' ),
|
837 |
|
838 |
-
// Reference: src/modules/about/components/exactmetrics-
|
839 |
-
__( '
|
840 |
|
841 |
-
// Reference: src/modules/about/components/exactmetrics-
|
842 |
-
|
843 |
-
__( 'Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
|
844 |
-
|
845 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:111
|
846 |
-
__( 'How to Connect to Google Analytics', 'google-analytics-dashboard-for-wp' ),
|
847 |
-
|
848 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:112
|
849 |
-
__( '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' ),
|
850 |
-
|
851 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:117
|
852 |
-
__( 'Guide and Checklist for Advanced Insights', 'google-analytics-dashboard-for-wp' ),
|
853 |
-
|
854 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:118
|
855 |
-
__( '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' ),
|
856 |
-
|
857 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:123
|
858 |
-
__( 'GDPR Guide', 'google-analytics-dashboard-for-wp' ),
|
859 |
-
|
860 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:124
|
861 |
-
__( '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' ),
|
862 |
-
|
863 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:129
|
864 |
-
__( 'How to Install and Activate ExactMetrics Addons', 'google-analytics-dashboard-for-wp' ),
|
865 |
-
|
866 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:130
|
867 |
-
__( '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' ),
|
868 |
-
|
869 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:135
|
870 |
-
__( 'Enabling eCommerce Tracking and Reports', 'google-analytics-dashboard-for-wp' ),
|
871 |
-
|
872 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:136
|
873 |
-
__( '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' ),
|
874 |
-
|
875 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:140
|
876 |
-
__( 'Read Documentation', 'google-analytics-dashboard-for-wp' ),
|
877 |
-
|
878 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:169
|
879 |
-
/* Translators: Makes the text bold. */
|
880 |
-
__( '%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress.', 'google-analytics-dashboard-for-wp' ),
|
881 |
-
|
882 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:189
|
883 |
-
/* Translators: Makes the text bold. */
|
884 |
-
__( '%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' ),
|
885 |
-
|
886 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:105
|
887 |
-
__( 'Choose Theme', 'google-analytics-dashboard-for-wp' ),
|
888 |
-
|
889 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:106
|
890 |
-
__( 'Behavior', 'google-analytics-dashboard-for-wp' ),
|
891 |
-
|
892 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:107
|
893 |
-
__( 'Widget Styling', 'google-analytics-dashboard-for-wp' ),
|
894 |
-
|
895 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:108
|
896 |
-
__( 'Choose how you want to determine the colors, font sizes and spacing of the widget.', 'google-analytics-dashboard-for-wp' ),
|
897 |
-
|
898 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:109
|
899 |
-
__( 'Sort By', 'google-analytics-dashboard-for-wp' ),
|
900 |
-
|
901 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:110
|
902 |
-
__( 'Choose how you\'d like the widget to determine your popular posts.', 'google-analytics-dashboard-for-wp' ),
|
903 |
-
|
904 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:111
|
905 |
-
__( 'Placement', 'google-analytics-dashboard-for-wp' ),
|
906 |
-
|
907 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:112
|
908 |
-
__( 'Choose how you\'d like to place the widget.', 'google-analytics-dashboard-for-wp' ),
|
909 |
-
|
910 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:113
|
911 |
-
__( 'Insert After', 'google-analytics-dashboard-for-wp' ),
|
912 |
-
|
913 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:114
|
914 |
-
__( 'Choose where in the post body the widget will be placed.', 'google-analytics-dashboard-for-wp' ),
|
915 |
-
|
916 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:115
|
917 |
-
__( 'Include in Post Types', 'google-analytics-dashboard-for-wp' ),
|
918 |
-
|
919 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:116
|
920 |
-
__( 'Exclude from specific posts', 'google-analytics-dashboard-for-wp' ),
|
921 |
-
|
922 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:118
|
923 |
-
/* Translators: Placeholders make the text bold. */
|
924 |
-
__( 'Choose which Post Types the widget %1$sWILL%2$s be placed.', 'google-analytics-dashboard-for-wp' ),
|
925 |
-
|
926 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:120
|
927 |
-
/* Translators: Placeholders make the text bold. */
|
928 |
-
__( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-dashboard-for-wp' ),
|
929 |
-
|
930 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:121
|
931 |
-
__( 'Customize Design', 'google-analytics-dashboard-for-wp' ),
|
932 |
-
|
933 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:122
|
934 |
-
__( 'Loading Themes', 'google-analytics-dashboard-for-wp' ),
|
935 |
-
|
936 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
|
937 |
-
__( 'words', 'google-analytics-dashboard-for-wp' ),
|
938 |
-
|
939 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:124
|
940 |
-
__( 'Please select at least one post to display.', 'google-analytics-dashboard-for-wp' ),
|
941 |
-
|
942 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:129
|
943 |
-
/* Translators: placeholders make text small. */
|
944 |
-
__( 'Default Styles %1$s- As seen above.%2$s', 'google-analytics-dashboard-for-wp' ),
|
945 |
-
|
946 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:134
|
947 |
-
/* Translators: placeholders make text small. */
|
948 |
-
__( 'No Styles %1$s- Use your own CSS.%2$s', 'google-analytics-dashboard-for-wp' ),
|
949 |
-
|
950 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:141
|
951 |
-
/* Translators: placeholders make text small. */
|
952 |
-
__( 'Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s', 'google-analytics-dashboard-for-wp' ),
|
953 |
-
|
954 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:146
|
955 |
-
/* Translators: placeholders make text small. */
|
956 |
-
__( 'SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s', 'google-analytics-dashboard-for-wp' ),
|
957 |
-
|
958 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:151
|
959 |
-
/* Translators: placeholders make text small. */
|
960 |
-
__( 'Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s', 'google-analytics-dashboard-for-wp' ),
|
961 |
-
|
962 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:158
|
963 |
-
/* Translators: placeholders make text small. */
|
964 |
-
__( 'Automatic %1$s- The widget is automatically placed inside the post body.%2$s', 'google-analytics-dashboard-for-wp' ),
|
965 |
-
|
966 |
-
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:163
|
967 |
-
/* Translators: placeholders make text small. */
|
968 |
-
__( 'Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s', 'google-analytics-dashboard-for-wp' ),
|
969 |
-
|
970 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:102
|
971 |
-
__( 'One-click Complete eCommerce tracking', 'google-analytics-dashboard-for-wp' ),
|
972 |
-
|
973 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:103
|
974 |
-
__( 'Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required', 'google-analytics-dashboard-for-wp' ),
|
975 |
-
|
976 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:107
|
977 |
-
__( 'Forms Tracking', 'google-analytics-dashboard-for-wp' ),
|
978 |
-
|
979 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:111
|
980 |
-
__( 'One-click Form Events Tracking', 'google-analytics-dashboard-for-wp' ),
|
981 |
-
|
982 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:112
|
983 |
-
__( 'WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin', 'google-analytics-dashboard-for-wp' ),
|
984 |
-
|
985 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:116
|
986 |
-
__( 'WordPress Admin Area Reports', 'google-analytics-dashboard-for-wp' ),
|
987 |
-
|
988 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:119
|
989 |
-
__( 'Standard Reports', 'google-analytics-dashboard-for-wp' ),
|
990 |
-
|
991 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:120
|
992 |
-
__( 'Overview Reports for the last 30 days.', 'google-analytics-dashboard-for-wp' ),
|
993 |
-
|
994 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:121
|
995 |
-
__( 'Advanced Reports', 'google-analytics-dashboard-for-wp' ),
|
996 |
-
|
997 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:122
|
998 |
-
__( 'Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection', 'google-analytics-dashboard-for-wp' ),
|
999 |
-
|
1000 |
-
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:126
|
1001 |
-
__( 'Dashboard Widget', 'google-analytics-dashboard-for-wp' ),
|
1002 |
|
1003 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:129
|
1004 |
__( 'Basic Widget', 'google-analytics-dashboard-for-wp' ),
|
@@ -1022,7 +827,6 @@ $generated_i18n_strings = array(
|
|
1022 |
__( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-dashboard-for-wp' ),
|
1023 |
|
1024 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:148
|
1025 |
-
// Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:102
|
1026 |
__( 'Not Available', 'google-analytics-dashboard-for-wp' ),
|
1027 |
|
1028 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:149
|
@@ -1056,7 +860,6 @@ $generated_i18n_strings = array(
|
|
1056 |
__( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
|
1057 |
|
1058 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:67
|
1059 |
-
// Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:60
|
1060 |
__( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
|
1061 |
|
1062 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:70
|
@@ -1095,407 +898,279 @@ $generated_i18n_strings = array(
|
|
1095 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:94
|
1096 |
__( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-dashboard-for-wp' ),
|
1097 |
|
1098 |
-
// Reference: src/modules/
|
1099 |
-
|
1100 |
-
__( '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' ),
|
1101 |
|
1102 |
-
// Reference: src/modules/
|
1103 |
-
__( '
|
1104 |
|
1105 |
-
// Reference: src/modules/
|
1106 |
-
|
1107 |
-
__( 'Automatic Updates', 'google-analytics-dashboard-for-wp' ),
|
1108 |
|
1109 |
-
// Reference: src/modules/
|
1110 |
-
__( '
|
1111 |
|
1112 |
-
// Reference: src/modules/
|
1113 |
-
__( '
|
1114 |
|
1115 |
-
// Reference: src/modules/
|
1116 |
-
|
1117 |
-
__( '
|
1118 |
|
1119 |
-
// Reference: src/modules/
|
1120 |
-
|
1121 |
-
__( '
|
1122 |
|
1123 |
-
// Reference: src/modules/
|
1124 |
-
|
1125 |
-
__( 'Disabled %1$s- Hide reports and dashboard widget.%2$s', 'google-analytics-dashboard-for-wp' ),
|
1126 |
|
1127 |
-
// Reference: src/modules/
|
1128 |
-
|
1129 |
-
__( '
|
1130 |
|
1131 |
-
// Reference: src/modules/
|
1132 |
-
|
1133 |
-
__( 'Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s', 'google-analytics-dashboard-for-wp' ),
|
1134 |
|
1135 |
-
// Reference: src/modules/
|
1136 |
-
|
1137 |
-
__( 'None %1$s- Manually update everything.%2$s', 'google-analytics-dashboard-for-wp' ),
|
1138 |
|
1139 |
-
// Reference: src/modules/
|
1140 |
-
__( '
|
1141 |
|
1142 |
-
// Reference: src/modules/
|
1143 |
-
|
1144 |
-
__( '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' ),
|
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/
|
1159 |
-
__( '
|
1160 |
|
1161 |
-
// Reference: src/modules/
|
1162 |
-
__( '
|
1163 |
|
1164 |
-
// Reference: src/modules/
|
1165 |
-
__( '
|
1166 |
|
1167 |
-
// Reference: src/modules/
|
1168 |
-
__( '
|
1169 |
|
1170 |
-
// Reference: src/modules/
|
1171 |
-
__( '
|
1172 |
|
1173 |
-
// Reference: src/modules/
|
1174 |
-
__( '
|
1175 |
|
1176 |
-
// Reference: src/modules/
|
1177 |
-
__( '
|
1178 |
|
1179 |
-
// Reference: src/modules/
|
1180 |
-
__( '
|
|
|
|
|
|
|
1181 |
|
1182 |
-
// Reference: src/modules/
|
1183 |
__( 'Dismiss', 'google-analytics-dashboard-for-wp' ),
|
1184 |
|
1185 |
-
// Reference: src/modules/
|
1186 |
-
|
|
|
1187 |
|
1188 |
-
// Reference: src/modules/
|
1189 |
-
__( '
|
1190 |
|
1191 |
-
// Reference: src/modules/
|
1192 |
-
|
|
|
1193 |
|
1194 |
-
// Reference: src/modules/
|
1195 |
-
__( '
|
1196 |
|
1197 |
-
// Reference: src/modules/
|
1198 |
-
__( '
|
1199 |
|
1200 |
-
// Reference: src/modules/
|
1201 |
-
|
1202 |
-
__( 'Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1203 |
|
1204 |
-
// Reference: src/modules/
|
1205 |
-
__( '
|
1206 |
|
1207 |
-
// Reference: src/modules/
|
1208 |
-
__( '
|
1209 |
|
1210 |
-
// Reference: src/modules/
|
1211 |
-
__( '
|
1212 |
|
1213 |
-
// Reference: src/modules/
|
1214 |
-
|
|
|
1215 |
|
1216 |
-
// Reference: src/modules/
|
1217 |
-
|
1218 |
-
__( 'activate', 'google-analytics-dashboard-for-wp' ),
|
1219 |
|
1220 |
-
// Reference: src/modules/
|
1221 |
-
|
1222 |
-
__( '
|
1223 |
|
1224 |
-
// Reference: src/modules/
|
1225 |
-
|
1226 |
-
__( '
|
1227 |
|
1228 |
-
// Reference: src/modules/
|
1229 |
-
|
|
|
1230 |
|
1231 |
-
// Reference: src/modules/
|
1232 |
-
/* Translators:
|
1233 |
-
__( '%s
|
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 |
|
1247 |
-
// Reference: src/modules/
|
1248 |
-
|
|
|
1249 |
|
1250 |
-
// Reference: src/modules/
|
1251 |
-
|
|
|
1252 |
|
1253 |
-
// Reference: src/modules/
|
1254 |
-
|
1255 |
-
__( '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' ),
|
1256 |
|
1257 |
-
// Reference: src/modules/
|
1258 |
-
|
|
|
1259 |
|
1260 |
-
// Reference: src/modules/
|
1261 |
-
__( '
|
1262 |
|
1263 |
-
// Reference: src/modules/
|
1264 |
-
|
|
|
1265 |
|
1266 |
-
// Reference: src/modules/
|
1267 |
-
__( '
|
1268 |
|
1269 |
-
// Reference: src/modules/
|
1270 |
-
|
|
|
1271 |
|
1272 |
-
// Reference: src/modules/
|
1273 |
-
__( '
|
1274 |
|
1275 |
-
// Reference: src/modules/
|
1276 |
-
|
|
|
1277 |
|
1278 |
-
// Reference: src/modules/
|
1279 |
-
__( '
|
1280 |
|
1281 |
-
// Reference: src/modules/
|
1282 |
-
|
|
|
1283 |
|
1284 |
-
// Reference: src/modules/
|
1285 |
-
__( '
|
1286 |
|
1287 |
-
// Reference: src/modules/
|
1288 |
-
__( '
|
1289 |
|
1290 |
-
// Reference: src/modules/
|
1291 |
-
__( 'ExactMetrics
|
1292 |
|
1293 |
-
// Reference: src/modules/
|
1294 |
-
|
1295 |
-
__( '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' ),
|
1296 |
|
1297 |
-
// Reference: src/modules/
|
1298 |
-
|
1299 |
-
__( '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' ),
|
1300 |
|
1301 |
-
// Reference: src/modules/
|
1302 |
-
/* Translators:
|
1303 |
-
__( '
|
1304 |
|
1305 |
-
// Reference: src/modules/
|
1306 |
-
|
|
|
1307 |
|
1308 |
-
// Reference: src/modules/
|
1309 |
-
|
1310 |
-
__( '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' ),
|
1311 |
|
1312 |
-
// Reference: src/modules/
|
1313 |
-
|
1314 |
-
__( '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' ),
|
1315 |
|
1316 |
-
// Reference: src/modules/
|
1317 |
-
|
1318 |
-
__( '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' ),
|
1319 |
|
1320 |
-
// Reference: src/modules/
|
1321 |
-
__( '
|
1322 |
|
1323 |
-
// Reference: src/modules/
|
1324 |
-
|
1325 |
-
__( 'Domain (example: %s)', 'google-analytics-dashboard-for-wp' ),
|
1326 |
|
1327 |
-
// Reference: src/modules/
|
1328 |
-
|
1329 |
-
__( 'Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s ).', 'google-analytics-dashboard-for-wp' ),
|
1330 |
|
1331 |
-
// Reference: src/modules/
|
1332 |
-
__( '
|
1333 |
|
1334 |
-
// Reference: src/modules/
|
1335 |
-
|
1336 |
-
__( 'View All Reports %s', 'google-analytics-dashboard-for-wp' ),
|
1337 |
|
1338 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
1339 |
-
__( '
|
1340 |
|
1341 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
1342 |
-
__( '
|
1343 |
|
1344 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
1345 |
-
__( '
|
1346 |
|
1347 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
1348 |
-
__( '
|
1349 |
|
1350 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
1351 |
-
__( '
|
1352 |
|
1353 |
-
// Reference: src/modules/
|
1354 |
-
__( '
|
1355 |
|
1356 |
-
// Reference: src/modules/
|
1357 |
-
__( '
|
1358 |
|
1359 |
-
// Reference: src/modules/
|
1360 |
-
__( '
|
1361 |
|
1362 |
-
// Reference: src/modules/
|
1363 |
-
__( '
|
1364 |
|
1365 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
1366 |
-
__( '
|
1367 |
|
1368 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
1369 |
-
__( '
|
1370 |
-
|
1371 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:261
|
1372 |
-
__( 'Top 10 Referrals', 'google-analytics-dashboard-for-wp' ),
|
1373 |
-
|
1374 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:262
|
1375 |
-
__( 'View All Referral Sources', 'google-analytics-dashboard-for-wp' ),
|
1376 |
-
|
1377 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:264
|
1378 |
-
__( 'View Full Posts/Pages Report', 'google-analytics-dashboard-for-wp' ),
|
1379 |
-
|
1380 |
-
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:69
|
1381 |
-
__( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
|
1382 |
-
|
1383 |
-
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:70
|
1384 |
-
__( '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' ),
|
1385 |
-
|
1386 |
-
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:71
|
1387 |
-
__( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
|
1388 |
-
|
1389 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:269
|
1390 |
-
__( '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' ),
|
1391 |
-
|
1392 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:272
|
1393 |
-
__( 'This list shows the top countries your website visitors are from.', 'google-analytics-dashboard-for-wp' ),
|
1394 |
-
|
1395 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:273
|
1396 |
-
__( 'This list shows the top websites that send your website traffic, known as referral traffic.', 'google-analytics-dashboard-for-wp' ),
|
1397 |
-
|
1398 |
-
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:42
|
1399 |
-
__( 'Last 30 Days Analytics for ', 'google-analytics-dashboard-for-wp' ),
|
1400 |
-
|
1401 |
-
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:43
|
1402 |
-
__( 'Your Website', 'google-analytics-dashboard-for-wp' ),
|
1403 |
-
|
1404 |
-
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:46
|
1405 |
-
__( 'Avg. Duration', 'google-analytics-dashboard-for-wp' ),
|
1406 |
-
|
1407 |
-
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:56
|
1408 |
-
__( 'More data is available', 'google-analytics-dashboard-for-wp' ),
|
1409 |
-
|
1410 |
-
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:58
|
1411 |
-
__( 'Want to see page-specific stats?', 'google-analytics-dashboard-for-wp' ),
|
1412 |
-
|
1413 |
-
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:53
|
1414 |
-
__( 'Recommended Addons', 'google-analytics-dashboard-for-wp' ),
|
1415 |
-
|
1416 |
-
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:55
|
1417 |
-
/* Translators: Add a link to upgrade and make the text green. */
|
1418 |
-
__( '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' ),
|
1419 |
-
|
1420 |
-
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:89
|
1421 |
-
__( 'Save and continue', 'google-analytics-dashboard-for-wp' ),
|
1422 |
-
|
1423 |
-
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:57
|
1424 |
-
__( 'Upgrade to PRO Now', 'google-analytics-dashboard-for-wp' ),
|
1425 |
-
|
1426 |
-
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:61
|
1427 |
-
__( 'See who’s viewing and submitting your forms, so you can increase your conversion rate.', 'google-analytics-dashboard-for-wp' ),
|
1428 |
-
|
1429 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:28
|
1430 |
-
__( 'Ecommerce', 'google-analytics-dashboard-for-wp' ),
|
1431 |
-
|
1432 |
-
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:63
|
1433 |
-
__( 'See All Your Important Store Metrics in One Place.', 'google-analytics-dashboard-for-wp' ),
|
1434 |
-
|
1435 |
-
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:64
|
1436 |
-
__( '... and more:', 'google-analytics-dashboard-for-wp' ),
|
1437 |
-
|
1438 |
-
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:68
|
1439 |
-
__( 'Dimensions- Track authors, categories, trags, searches, users and more.', 'google-analytics-dashboard-for-wp' ),
|
1440 |
-
|
1441 |
-
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:72
|
1442 |
-
__( 'EU Compliance- Improve compliance with GDPR and other privacy regulations.', 'google-analytics-dashboard-for-wp' ),
|
1443 |
-
|
1444 |
-
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:76
|
1445 |
-
__( 'AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages.', 'google-analytics-dashboard-for-wp' ),
|
1446 |
-
|
1447 |
-
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:80
|
1448 |
-
__( 'Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click.', 'google-analytics-dashboard-for-wp' ),
|
1449 |
-
|
1450 |
-
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:84
|
1451 |
-
__( 'eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores.', 'google-analytics-dashboard-for-wp' ),
|
1452 |
-
|
1453 |
-
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:88
|
1454 |
-
__( 'Google Optimize- Easily enable Google Optimize on your WordPress site.', 'google-analytics-dashboard-for-wp' ),
|
1455 |
-
|
1456 |
-
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:92
|
1457 |
-
__( 'Forms- Enable tracking of your form views, submissions and conversion rates.', 'google-analytics-dashboard-for-wp' ),
|
1458 |
-
|
1459 |
-
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:96
|
1460 |
-
__( 'Ads- See who’s clicking on your Google Adsense banner ads.', 'google-analytics-dashboard-for-wp' ),
|
1461 |
-
|
1462 |
-
// Reference: src/modules/addons/components/AddonButton.vue:31
|
1463 |
-
__( 'Activating...', 'google-analytics-dashboard-for-wp' ),
|
1464 |
-
|
1465 |
-
// Reference: src/modules/addons/components/AddonButton.vue:35
|
1466 |
-
__( 'Deactivating...', 'google-analytics-dashboard-for-wp' ),
|
1467 |
-
|
1468 |
-
// Reference: src/modules/addons/components/AddonButton.vue:39
|
1469 |
-
__( 'Installing...', 'google-analytics-dashboard-for-wp' ),
|
1470 |
-
|
1471 |
-
// Reference: src/modules/addons/components/AddonButton.vue:43
|
1472 |
-
__( 'Deactivate', 'google-analytics-dashboard-for-wp' ),
|
1473 |
-
|
1474 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:31
|
1475 |
-
__( 'Unlock the Publisher Report and Focus on the Content That Matters', 'google-analytics-dashboard-for-wp' ),
|
1476 |
-
|
1477 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:35
|
1478 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:35
|
1479 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:34
|
1480 |
-
__( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
|
1481 |
-
|
1482 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:39
|
1483 |
-
__( 'See Your Top Landing Pages to Improve Engagement', 'google-analytics-dashboard-for-wp' ),
|
1484 |
-
|
1485 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:43
|
1486 |
-
__( 'See Your Top Exit Pages to Reduce Abandonment', 'google-analytics-dashboard-for-wp' ),
|
1487 |
-
|
1488 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:47
|
1489 |
-
__( 'See Your Top Outbound Links to Find New Revenue Opportunities', 'google-analytics-dashboard-for-wp' ),
|
1490 |
-
|
1491 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:51
|
1492 |
-
__( 'See Your Top Affiliate Links and Focus on what’s working', 'google-analytics-dashboard-for-wp' ),
|
1493 |
-
|
1494 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:55
|
1495 |
-
__( 'See Your Top Downloads and Improve Conversions', 'google-analytics-dashboard-for-wp' ),
|
1496 |
-
|
1497 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:59
|
1498 |
-
__( 'See Audience Demographic Report (Age / Gender / Interests)', 'google-analytics-dashboard-for-wp' ),
|
1499 |
|
1500 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:30
|
1501 |
__( 'Ecommerce Report', 'google-analytics-dashboard-for-wp' ),
|
@@ -1534,22 +1209,6 @@ $generated_i18n_strings = array(
|
|
1534 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:66
|
1535 |
__( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
|
1536 |
|
1537 |
-
// Reference: src/modules/addons/store/actions.js:33
|
1538 |
-
/* Translators: Adds a link to documentation. */
|
1539 |
-
__( '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' ),
|
1540 |
-
|
1541 |
-
// Reference: src/modules/addons/store/actions.js:36
|
1542 |
-
/* Translators: Adds link to activate/install plugin and documentation. */
|
1543 |
-
__( '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' ),
|
1544 |
-
|
1545 |
-
// Reference: src/modules/addons/store/actions.js:51
|
1546 |
-
/* Translators: Adds a link to documentation. */
|
1547 |
-
__( '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' ),
|
1548 |
-
|
1549 |
-
// Reference: src/modules/addons/store/actions.js:54
|
1550 |
-
/* Translators: Adds link to activate/install plugin and documentation. */
|
1551 |
-
__( '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' ),
|
1552 |
-
|
1553 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:30
|
1554 |
__( 'Custom Dimensions Report', 'google-analytics-dashboard-for-wp' ),
|
1555 |
|
@@ -1577,48 +1236,6 @@ $generated_i18n_strings = array(
|
|
1577 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:59
|
1578 |
__( 'Tag tracking to determine which topics are the most engaging to for your website visitors.', 'google-analytics-dashboard-for-wp' ),
|
1579 |
|
1580 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:30
|
1581 |
-
__( 'Search Console Report', 'google-analytics-dashboard-for-wp' ),
|
1582 |
-
|
1583 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:32
|
1584 |
-
__( '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' ),
|
1585 |
-
|
1586 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:39
|
1587 |
-
__( 'See Your Top Google Search Terms and Optimize Content', 'google-analytics-dashboard-for-wp' ),
|
1588 |
-
|
1589 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:43
|
1590 |
-
__( 'See The Number of Clicks and Track Interests', 'google-analytics-dashboard-for-wp' ),
|
1591 |
-
|
1592 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:47
|
1593 |
-
__( 'See The Click-Through-Ratio and Improve SEO', 'google-analytics-dashboard-for-wp' ),
|
1594 |
-
|
1595 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:51
|
1596 |
-
__( 'See The Average Results Position and Focus on what works.', 'google-analytics-dashboard-for-wp' ),
|
1597 |
-
|
1598 |
-
// Reference: src/modules/settings/api/index.js:19
|
1599 |
-
/* Translators: Error status and error text. */
|
1600 |
-
__( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1601 |
-
|
1602 |
-
// Reference: src/modules/license/api/index.js:149
|
1603 |
-
__( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
|
1604 |
-
|
1605 |
-
// Reference: src/modules/popular-posts/api/index.js:43
|
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/popular-posts/api/index.js:47
|
1610 |
-
__( 'Network error encountered. Settings not saved.', 'google-analytics-dashboard-for-wp' ),
|
1611 |
-
|
1612 |
-
// Reference: src/modules/license/store/actions.js:61
|
1613 |
-
/* Translators: Adds a link to the license renewal. */
|
1614 |
-
__( 'Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s', 'google-analytics-dashboard-for-wp' ),
|
1615 |
-
|
1616 |
-
// Reference: src/modules/license/store/actions.js:71
|
1617 |
-
__( 'Your license key for ExactMetrics has been disabled. Please use a different key.', 'google-analytics-dashboard-for-wp' ),
|
1618 |
-
|
1619 |
-
// Reference: src/modules/license/store/actions.js:81
|
1620 |
-
__( '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' ),
|
1621 |
-
|
1622 |
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:54
|
1623 |
__( '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' ),
|
1624 |
|
@@ -1641,135 +1258,85 @@ $generated_i18n_strings = array(
|
|
1641 |
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:85
|
1642 |
__( 'Refreshing Addons', 'google-analytics-dashboard-for-wp' ),
|
1643 |
|
1644 |
-
// Reference: src/modules/
|
1645 |
-
__( '
|
1646 |
-
|
1647 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:32
|
1648 |
-
__( 'Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing.', 'google-analytics-dashboard-for-wp' ),
|
1649 |
-
|
1650 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:33
|
1651 |
-
__( 'Start Indexing', 'google-analytics-dashboard-for-wp' ),
|
1652 |
-
|
1653 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:37
|
1654 |
-
__( '%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing.', 'google-analytics-dashboard-for-wp' ),
|
1655 |
-
|
1656 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:38
|
1657 |
-
__( 'Indexing completed, counts will update automatically every day.', 'google-analytics-dashboard-for-wp' ),
|
1658 |
|
1659 |
// Reference: src/modules/settings/components/input/SettingsInputNumber.vue:56
|
1660 |
__( 'Reset to default', 'google-analytics-dashboard-for-wp' ),
|
1661 |
|
1662 |
-
// Reference: src/modules/settings/components/input/
|
1663 |
-
|
1664 |
-
__( 'Please enter a value between %1$s and %2$s', 'google-analytics-dashboard-for-wp' ),
|
1665 |
|
1666 |
-
// Reference: src/modules/
|
1667 |
-
|
1668 |
-
__( 'Please enter a value higher than %s', 'google-analytics-dashboard-for-wp' ),
|
1669 |
|
1670 |
-
// Reference: src/modules/
|
1671 |
-
|
1672 |
-
__( 'Please enter a value lower than %s', 'google-analytics-dashboard-for-wp' ),
|
1673 |
|
1674 |
-
// Reference: src/modules/settings/components/input/
|
1675 |
-
|
|
|
1676 |
|
1677 |
-
// Reference: src/modules/settings/components/input/
|
1678 |
-
__( '
|
1679 |
|
1680 |
-
// Reference: src/modules/
|
1681 |
-
__( '
|
1682 |
|
1683 |
-
// Reference: src/modules/
|
1684 |
-
__( '
|
1685 |
|
1686 |
-
// Reference: src/modules/
|
1687 |
-
__( '
|
1688 |
|
1689 |
-
// Reference: src/modules/
|
1690 |
-
__( '
|
1691 |
|
1692 |
-
// Reference: src/modules/
|
1693 |
-
|
|
|
1694 |
|
1695 |
-
// Reference: src/modules/
|
1696 |
-
|
|
|
1697 |
|
1698 |
-
// Reference: src/modules/
|
1699 |
-
__( '
|
1700 |
|
1701 |
-
// Reference: src/modules/
|
1702 |
-
__( '
|
1703 |
|
1704 |
-
// Reference: src/modules/
|
1705 |
-
__( '
|
1706 |
|
1707 |
-
// Reference: src/modules/
|
1708 |
-
|
1709 |
-
|
1710 |
-
// Reference: src/modules/wizard-onboarding/api/index.js:18
|
1711 |
-
/* Translators: Error status and error text. */
|
1712 |
-
__( 'Can\'t load errors. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1713 |
-
|
1714 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:21
|
1715 |
-
__( 'Multiple Entries', 'google-analytics-dashboard-for-wp' ),
|
1716 |
-
|
1717 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:22
|
1718 |
-
__( 'Total Number of Widgets to Show', 'google-analytics-dashboard-for-wp' ),
|
1719 |
-
|
1720 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:23
|
1721 |
-
__( 'Choose how many widgets will be placed in a single Post.', 'google-analytics-dashboard-for-wp' ),
|
1722 |
-
|
1723 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:24
|
1724 |
-
__( 'Minimum Distance Between Widgets', 'google-analytics-dashboard-for-wp' ),
|
1725 |
-
|
1726 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:25
|
1727 |
-
__( 'Choose the distance between widgets.', 'google-analytics-dashboard-for-wp' ),
|
1728 |
-
|
1729 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:26
|
1730 |
-
__( 'Minimum Word Count to Display Multiple Widgets', 'google-analytics-dashboard-for-wp' ),
|
1731 |
-
|
1732 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:27
|
1733 |
-
__( 'Choose the minimum word count for a Post to have multiple entries.', 'google-analytics-dashboard-for-wp' ),
|
1734 |
-
|
1735 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:45
|
1736 |
-
__( 'Select posts/search', 'google-analytics-dashboard-for-wp' ),
|
1737 |
-
|
1738 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:55
|
1739 |
-
__( 'Oops! No posts found.', 'google-analytics-dashboard-for-wp' ),
|
1740 |
-
|
1741 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:56
|
1742 |
-
__( 'Search by post title', 'google-analytics-dashboard-for-wp' ),
|
1743 |
|
1744 |
-
// Reference: src/modules/
|
1745 |
-
__( '
|
1746 |
|
1747 |
-
// Reference: src/modules/
|
1748 |
-
__( '
|
1749 |
|
1750 |
-
// Reference: src/modules/
|
1751 |
-
|
|
|
1752 |
|
1753 |
-
// Reference: src/modules/
|
1754 |
-
__( '
|
1755 |
|
1756 |
-
// Reference: src/modules/
|
1757 |
-
__( '
|
1758 |
|
1759 |
-
// Reference: src/modules/
|
1760 |
__( 'Connect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
1761 |
|
1762 |
-
// Reference: src/modules/
|
1763 |
-
__( '
|
1764 |
-
|
1765 |
-
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:57
|
1766 |
-
__( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
1767 |
-
|
1768 |
-
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:58
|
1769 |
-
__( 'Website Profile', 'google-analytics-dashboard-for-wp' ),
|
1770 |
|
1771 |
-
// Reference: src/modules/
|
1772 |
-
__( 'Active
|
1773 |
|
1774 |
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:60
|
1775 |
__( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-dashboard-for-wp' ),
|
@@ -1777,51 +1344,12 @@ $generated_i18n_strings = array(
|
|
1777 |
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:61
|
1778 |
__( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-dashboard-for-wp' ),
|
1779 |
|
1780 |
-
// Reference: src/modules/
|
1781 |
-
__( '
|
1782 |
-
|
1783 |
-
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:70
|
1784 |
-
__( 'Disconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
1785 |
|
1786 |
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:96
|
1787 |
__( 'Authenticating', 'google-analytics-dashboard-for-wp' ),
|
1788 |
|
1789 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:107
|
1790 |
-
__( 'Popular Posts data can be fetched correctly', 'google-analytics-dashboard-for-wp' ),
|
1791 |
-
|
1792 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:108
|
1793 |
-
__( 'Please note: depending on when you set up the Custom Dimensions settings, it may take up to 7 days to see relevant Popular Posts data loading from Google Analytics.', 'google-analytics-dashboard-for-wp' ),
|
1794 |
-
|
1795 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:112
|
1796 |
-
__( 'Close', 'google-analytics-dashboard-for-wp' ),
|
1797 |
-
|
1798 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:28
|
1799 |
-
__( 'Add Top 5 Posts from Google Analytics', 'google-analytics-dashboard-for-wp' ),
|
1800 |
-
|
1801 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49
|
1802 |
-
__( 'In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both ExactMetrics and Google Analytics settings. Please use the button below to confirm your configuration is correct.', 'google-analytics-dashboard-for-wp' ),
|
1803 |
-
|
1804 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:50
|
1805 |
-
__( 'Test Automated Posts', 'google-analytics-dashboard-for-wp' ),
|
1806 |
-
|
1807 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:52
|
1808 |
-
/* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
|
1809 |
-
__( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-dashboard-for-wp' ),
|
1810 |
-
|
1811 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:30
|
1812 |
-
__( 'Automated + Curated', 'google-analytics-dashboard-for-wp' ),
|
1813 |
-
|
1814 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
|
1815 |
-
/* Translators: Placeholder adds a link to the Custom Dimensions settings. */
|
1816 |
-
__( 'Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using %1$sCustom Dimensions%2$s. Also requires Sort By - Curated to be selected. Setup steps can be found in our %3$sknowledge base%4$s.', 'google-analytics-dashboard-for-wp' ),
|
1817 |
-
|
1818 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:57
|
1819 |
-
/* Translators: Placeholder gets replaced with current license version. */
|
1820 |
-
__( 'Pro version is required. Your current license level is: %s', 'google-analytics-dashboard-for-wp' ),
|
1821 |
-
|
1822 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:95
|
1823 |
-
__( 'Verifying Popular Posts data', 'google-analytics-dashboard-for-wp' ),
|
1824 |
-
|
1825 |
// Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:68
|
1826 |
__( 'Show Overview Reports', 'google-analytics-dashboard-for-wp' ),
|
1827 |
|
@@ -1834,55 +1362,71 @@ $generated_i18n_strings = array(
|
|
1834 |
// Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:72
|
1835 |
__( 'Available in PRO version', 'google-analytics-dashboard-for-wp' ),
|
1836 |
|
1837 |
-
// Reference: src/modules/
|
1838 |
-
|
|
|
|
|
1839 |
|
1840 |
-
// Reference: src/modules/
|
1841 |
-
|
|
|
1842 |
|
1843 |
-
// Reference: src/modules/
|
1844 |
-
|
|
|
|
|
|
|
|
|
|
|
1845 |
|
1846 |
// Reference: src/modules/notifications/components/NotificationsIndicator.vue:19
|
1847 |
__( 'View notifications', 'google-analytics-dashboard-for-wp' ),
|
1848 |
|
1849 |
-
// Reference: src/modules/
|
1850 |
-
|
1851 |
-
__( 'vs. Previous Day', 'google-analytics-dashboard-for-wp' ),
|
1852 |
|
1853 |
-
// Reference: src/modules/
|
1854 |
-
|
|
|
1855 |
|
1856 |
-
// Reference: src/modules/
|
1857 |
-
|
1858 |
-
__( '%s can\'t be empty.', 'google-analytics-dashboard-for-wp' ),
|
1859 |
|
1860 |
-
// Reference: src/modules/
|
1861 |
-
__( '
|
1862 |
|
1863 |
-
// Reference: src/modules/
|
1864 |
-
__( '
|
1865 |
|
1866 |
-
// Reference: src/modules/
|
1867 |
-
__( '
|
1868 |
|
1869 |
-
// Reference: src/modules/
|
1870 |
-
__( '
|
1871 |
|
1872 |
-
// Reference: src/modules/
|
1873 |
-
__( '
|
1874 |
|
1875 |
-
// Reference: src/modules/
|
1876 |
-
|
1877 |
-
/* Translators: Placeholder adds a line break. */
|
1878 |
-
__( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-dashboard-for-wp' ),
|
1879 |
|
1880 |
-
// Reference: src/modules/
|
1881 |
-
__( '
|
1882 |
|
1883 |
-
// Reference: src/modules/
|
1884 |
-
|
1885 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1886 |
|
1887 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:30
|
1888 |
__( 'Forms Report', 'google-analytics-dashboard-for-wp' ),
|
@@ -1896,337 +1440,329 @@ $generated_i18n_strings = array(
|
|
1896 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:47
|
1897 |
__( 'See Your Forms Impressions Count to Find the Best Placement', 'google-analytics-dashboard-for-wp' ),
|
1898 |
|
1899 |
-
// Reference: src/modules/
|
1900 |
-
|
1901 |
-
__( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-dashboard-for-wp' ),
|
1902 |
|
1903 |
-
// Reference: src/modules/
|
1904 |
-
__( '
|
1905 |
|
1906 |
-
// Reference: src/modules/
|
1907 |
-
__( '
|
1908 |
|
1909 |
-
// Reference: src/modules/
|
1910 |
-
__( '
|
1911 |
|
1912 |
-
// Reference: src/modules/
|
1913 |
-
|
1914 |
-
__( 'Status: %s', 'google-analytics-dashboard-for-wp' ),
|
1915 |
|
1916 |
-
// Reference: src/modules/
|
1917 |
-
|
|
|
1918 |
|
1919 |
-
// Reference: src/
|
1920 |
-
|
|
|
1921 |
|
1922 |
-
// Reference: src/modules/
|
1923 |
-
__( '
|
1924 |
|
1925 |
-
// Reference: src/modules/
|
1926 |
-
__( '
|
1927 |
|
1928 |
-
// Reference: src/modules/
|
1929 |
-
__( '
|
1930 |
|
1931 |
-
// Reference: src/modules/settings/components/
|
1932 |
-
|
1933 |
-
__( 'Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
|
1934 |
|
1935 |
-
// Reference: src/modules/settings/components/
|
1936 |
-
__( '
|
1937 |
|
1938 |
-
// Reference: src/modules/settings/components/
|
1939 |
-
__( 'Verify', 'google-analytics-dashboard-for-wp' ),
|
1940 |
|
1941 |
-
// Reference: src/modules/settings/components/
|
1942 |
-
__( '
|
1943 |
|
1944 |
-
// Reference: src/modules/settings/components/
|
1945 |
-
__( '
|
1946 |
|
1947 |
-
// Reference: src/modules/settings/components/
|
1948 |
-
__( '
|
1949 |
|
1950 |
-
// Reference: src/modules/settings/components/
|
1951 |
-
|
1952 |
-
__( '%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process.', 'google-analytics-dashboard-for-wp' ),
|
1953 |
|
1954 |
-
// Reference: src/modules/settings/components/
|
1955 |
-
__( '
|
1956 |
|
1957 |
-
// Reference: src/modules/
|
1958 |
-
__( '
|
1959 |
|
1960 |
-
// Reference: src/modules/
|
1961 |
-
__( '
|
1962 |
|
1963 |
-
// Reference: src/modules/
|
1964 |
-
__( '
|
1965 |
|
1966 |
-
// Reference: src/modules/
|
1967 |
-
__( '
|
1968 |
|
1969 |
-
// Reference: src/modules/
|
1970 |
-
__( '
|
1971 |
|
1972 |
-
// Reference: src/modules/
|
1973 |
-
|
1974 |
-
__( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ),
|
1975 |
|
1976 |
-
// Reference: src/modules/
|
1977 |
-
__( '
|
1978 |
|
1979 |
-
// Reference: src/modules/
|
1980 |
-
__( '
|
1981 |
|
1982 |
-
// Reference: src/modules/
|
1983 |
-
__( '
|
1984 |
|
1985 |
-
// Reference: src/modules/
|
1986 |
-
__( '
|
1987 |
|
1988 |
-
// Reference: src/modules/
|
1989 |
-
__( '
|
1990 |
|
1991 |
-
// Reference: src/modules/
|
1992 |
-
__( '
|
1993 |
|
1994 |
-
// Reference: src/modules/
|
1995 |
-
__( '
|
1996 |
|
1997 |
-
// Reference: src/modules/
|
1998 |
-
|
1999 |
-
__( 'See All Your Important Store%s Metrics in One Place', 'google-analytics-dashboard-for-wp' ),
|
2000 |
|
2001 |
-
// Reference: src/modules/
|
2002 |
-
__( '
|
2003 |
|
2004 |
-
// Reference: src/modules/
|
2005 |
-
__( '
|
2006 |
|
2007 |
-
// Reference: src/
|
2008 |
-
|
2009 |
-
__( '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' ),
|
2010 |
|
2011 |
-
// Reference: src/modules/
|
2012 |
-
|
2013 |
-
__( 'Path (example: %s)', 'google-analytics-dashboard-for-wp' ),
|
2014 |
|
2015 |
-
// Reference: src/modules/
|
2016 |
-
__( '
|
2017 |
|
2018 |
-
// Reference: src/modules/
|
2019 |
-
|
2020 |
-
__( 'Label (example: %s)', 'google-analytics-dashboard-for-wp' ),
|
2021 |
|
2022 |
-
// Reference: src/modules/
|
2023 |
-
__( '
|
2024 |
|
2025 |
-
// Reference: src/modules/settings/
|
2026 |
-
__( '
|
2027 |
|
2028 |
-
// Reference: src/modules/settings/
|
2029 |
-
|
2030 |
-
__( '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' ),
|
2031 |
|
2032 |
-
// Reference: src/modules/settings/
|
2033 |
-
__( '
|
2034 |
|
2035 |
-
// Reference: src/modules/settings/
|
2036 |
-
__( '
|
2037 |
|
2038 |
-
// Reference: src/modules/settings/
|
2039 |
-
__( '
|
2040 |
|
2041 |
-
// Reference: src/modules/settings/
|
2042 |
-
__( '
|
2043 |
|
2044 |
-
// Reference: src/modules/
|
2045 |
-
__( '
|
2046 |
|
2047 |
-
// Reference: src/modules/
|
2048 |
-
__( '
|
2049 |
|
2050 |
-
// Reference: src/modules/
|
2051 |
-
__( '
|
2052 |
|
2053 |
-
// Reference: src/modules/
|
2054 |
-
__( '
|
2055 |
|
2056 |
-
// Reference: src/modules/
|
2057 |
-
__( '
|
2058 |
|
2059 |
-
// Reference: src/modules/
|
2060 |
-
__( '
|
2061 |
|
2062 |
-
// Reference: src/modules/
|
2063 |
-
__( '
|
2064 |
|
2065 |
-
// Reference: src/modules/
|
2066 |
-
__( '
|
2067 |
|
2068 |
-
// Reference: src/modules/
|
2069 |
-
|
|
|
2070 |
|
2071 |
-
// Reference: src/modules/
|
2072 |
-
__( '
|
2073 |
|
2074 |
-
// Reference: src/modules/
|
2075 |
-
/* Translators:
|
2076 |
-
__( '%1$
|
2077 |
|
2078 |
-
// Reference: src/modules/
|
2079 |
-
__( '
|
2080 |
|
2081 |
-
// Reference: src/modules/wizard-onboarding/components/
|
2082 |
-
|
|
|
2083 |
|
2084 |
-
// Reference: src/modules/wizard-onboarding/components/
|
2085 |
-
|
|
|
2086 |
|
2087 |
-
// Reference: src/modules/wizard-onboarding/components/
|
2088 |
-
__( '
|
2089 |
|
2090 |
-
// Reference: src/modules/
|
2091 |
-
|
|
|
2092 |
|
2093 |
-
// Reference: src/
|
2094 |
-
__( '
|
2095 |
|
2096 |
-
// Reference: src/
|
2097 |
-
__( '
|
2098 |
|
2099 |
-
// Reference: src/
|
2100 |
-
__( '
|
2101 |
|
2102 |
-
// Reference: src/
|
2103 |
-
__( '
|
2104 |
|
2105 |
-
// Reference: src/
|
2106 |
-
__( '
|
2107 |
|
2108 |
-
// Reference: src/
|
2109 |
-
__( '
|
2110 |
|
2111 |
-
// Reference: src/
|
2112 |
-
|
2113 |
-
__( 'Publisher %1$s(Blog)%2$s', 'google-analytics-dashboard-for-wp' ),
|
2114 |
|
2115 |
-
// Reference: src/
|
2116 |
-
__( '
|
2117 |
|
2118 |
-
// Reference: src/
|
2119 |
-
__( '
|
2120 |
|
2121 |
-
// Reference: src/modules/
|
2122 |
-
|
|
|
2123 |
|
2124 |
-
// Reference: src/modules/
|
2125 |
-
|
|
|
2126 |
|
2127 |
-
// Reference: src/modules/
|
2128 |
-
__( '
|
2129 |
|
2130 |
-
// Reference: src/modules/
|
2131 |
-
__( '
|
2132 |
|
2133 |
-
// Reference: src/modules/
|
2134 |
-
__( '
|
2135 |
|
2136 |
-
// Reference: src/modules/
|
2137 |
-
__( '
|
2138 |
|
2139 |
-
// Reference: src/modules/
|
2140 |
-
__( '
|
2141 |
|
2142 |
-
// Reference: src/modules/
|
2143 |
-
__( '
|
2144 |
|
2145 |
-
// Reference: src/modules/
|
2146 |
-
__( '
|
2147 |
|
2148 |
-
// Reference: src/modules/
|
2149 |
-
__( '
|
2150 |
|
2151 |
-
// Reference: src/modules/
|
2152 |
-
__( '
|
2153 |
-
|
2154 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
|
2155 |
-
__( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode', 'google-analytics-dashboard-for-wp' ),
|
2156 |
-
|
2157 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:30
|
2158 |
-
__( 'Real-Time Report', 'google-analytics-dashboard-for-wp' ),
|
2159 |
|
2160 |
-
// Reference: src/modules/reports/
|
2161 |
-
__( '
|
2162 |
|
2163 |
-
// Reference: src/modules/reports/
|
2164 |
-
|
2165 |
-
__( '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' ),
|
2166 |
|
2167 |
-
// Reference: src/modules/reports/
|
2168 |
-
|
|
|
2169 |
|
2170 |
-
// Reference: src/modules/reports/
|
2171 |
-
__( '
|
2172 |
|
2173 |
-
// Reference: src/modules/reports/
|
2174 |
-
__( '
|
2175 |
|
2176 |
-
// Reference: src/modules/reports/
|
2177 |
-
__( '
|
2178 |
|
2179 |
-
// Reference: src/modules/reports/
|
2180 |
-
__( '
|
2181 |
|
2182 |
-
// Reference: src/modules/reports/
|
2183 |
-
__( '
|
2184 |
|
2185 |
-
// Reference: src/
|
2186 |
-
__( '
|
2187 |
|
2188 |
-
// Reference: src/
|
2189 |
-
__( '
|
2190 |
|
2191 |
-
// Reference: src/
|
2192 |
-
__( '
|
2193 |
|
2194 |
-
// Reference: src/
|
2195 |
-
|
|
|
2196 |
|
2197 |
-
// Reference: src/
|
2198 |
-
__( '
|
2199 |
|
2200 |
-
// Reference: src/
|
2201 |
-
__( '
|
2202 |
|
2203 |
-
// Reference: src/components/
|
2204 |
-
__( '
|
2205 |
|
2206 |
-
// Reference: src/components/
|
2207 |
-
__( '
|
2208 |
|
2209 |
-
// Reference: src/components/
|
2210 |
-
__( '
|
2211 |
|
2212 |
-
// Reference: src/modules/
|
2213 |
-
__( '
|
2214 |
-
and other privacy regulations.', 'google-analytics-dashboard-for-wp' ),
|
2215 |
|
2216 |
-
// Reference: src/modules/
|
2217 |
-
__( '
|
2218 |
|
2219 |
-
// Reference: src/modules/
|
2220 |
-
__( '
|
2221 |
|
2222 |
-
// Reference: src/modules/
|
2223 |
-
__( '
|
2224 |
|
2225 |
-
// Reference: src/modules/
|
2226 |
-
__( '
|
2227 |
|
2228 |
-
// Reference: src/modules/
|
2229 |
-
|
|
|
2230 |
|
2231 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:30
|
2232 |
/* Translators: Make text green and add smiley face. */
|
@@ -2239,281 +1775,740 @@ $generated_i18n_strings = array(
|
|
2239 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:35
|
2240 |
__( 'Unlock PRO Features Now', 'google-analytics-dashboard-for-wp' ),
|
2241 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2242 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:39
|
2243 |
/* Translators: Add link to retrieve license from account area. */
|
2244 |
__( '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' ),
|
2245 |
|
2246 |
-
// Reference: src/modules/
|
2247 |
-
__( '
|
2248 |
|
2249 |
-
// Reference: src/modules/
|
2250 |
-
__( '
|
2251 |
|
2252 |
-
// Reference: src/modules/
|
2253 |
-
/* Translators:
|
2254 |
-
__( '
|
2255 |
|
2256 |
-
// Reference: src/modules/
|
2257 |
-
__( '
|
2258 |
|
2259 |
-
// Reference: src/modules/
|
2260 |
-
|
2261 |
-
__( 'Can\'t deactivate addon. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
2262 |
|
2263 |
-
// Reference: src/modules/
|
2264 |
-
__( '
|
2265 |
|
2266 |
-
// Reference: src/modules/
|
2267 |
-
|
2268 |
-
__( 'Can\'t install plugin. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
2269 |
|
2270 |
-
// Reference: src/modules/
|
2271 |
-
__( '
|
2272 |
|
2273 |
-
// Reference: src/modules/
|
2274 |
-
/* Translators:
|
2275 |
-
__( '
|
2276 |
|
2277 |
-
// Reference: src/modules/
|
2278 |
-
__( '
|
2279 |
|
2280 |
-
// Reference: src/modules/
|
2281 |
-
|
2282 |
-
__( 'Can\'t install WPForms. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
2283 |
|
2284 |
-
// Reference: src/modules/
|
2285 |
-
__( '
|
2286 |
|
2287 |
-
// Reference: src/modules/
|
2288 |
-
__( '
|
2289 |
|
2290 |
-
// Reference: src/modules/
|
2291 |
-
__( '
|
2292 |
|
2293 |
-
// Reference: src/modules/
|
2294 |
-
__( '
|
2295 |
|
2296 |
-
// Reference: src/modules/
|
2297 |
-
__( '
|
2298 |
|
2299 |
-
// Reference: src/modules/
|
2300 |
-
__( '
|
2301 |
|
2302 |
-
// Reference: src/modules/
|
2303 |
-
__( '
|
2304 |
|
2305 |
-
// Reference: src/modules/
|
2306 |
-
|
2307 |
-
__( 'Can\'t deactivate the license. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
2308 |
|
2309 |
-
// Reference: src/modules/
|
2310 |
-
|
2311 |
-
__( 'Can\'t upgrade to PRO please try again. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
2312 |
|
2313 |
-
// Reference: src/modules/
|
2314 |
-
|
2315 |
-
__( 'Can\'t load license details. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
2316 |
|
2317 |
-
// Reference: src/modules/
|
2318 |
-
|
|
|
2319 |
|
2320 |
-
// Reference: src/modules/
|
2321 |
-
/* Translators:
|
2322 |
-
__( '
|
2323 |
|
2324 |
-
// Reference: src/modules/
|
2325 |
-
/* Translators:
|
2326 |
-
__( '
|
2327 |
|
2328 |
-
// Reference: src/modules/
|
2329 |
-
__( '
|
2330 |
|
2331 |
-
// Reference: src/modules/
|
2332 |
-
|
|
|
2333 |
|
2334 |
-
// Reference: src/modules/
|
2335 |
-
/* Translators:
|
2336 |
-
__( '
|
2337 |
|
2338 |
-
// Reference: src/modules/
|
2339 |
-
|
|
|
2340 |
|
2341 |
-
// Reference: src/modules/
|
2342 |
-
|
2343 |
-
__( 'Can\'t load authentication details. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
2344 |
|
2345 |
-
// Reference: src/modules/
|
2346 |
-
/* Translators:
|
2347 |
-
__( '
|
2348 |
|
2349 |
-
// Reference: src/modules/
|
2350 |
-
/* Translators:
|
2351 |
-
__( '
|
2352 |
|
2353 |
-
// Reference: src/modules/
|
2354 |
-
/* Translators:
|
2355 |
-
__( '
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2356 |
|
2357 |
-
// Reference: src/modules/
|
2358 |
-
|
|
|
2359 |
|
2360 |
-
// Reference: src/modules/
|
2361 |
-
|
|
|
2362 |
|
2363 |
-
// Reference: src/modules/
|
2364 |
-
|
|
|
2365 |
|
2366 |
-
// Reference: src/modules/
|
2367 |
-
|
|
|
2368 |
|
2369 |
-
// Reference: src/modules/
|
2370 |
-
|
|
|
2371 |
|
2372 |
-
// Reference: src/modules/
|
2373 |
-
__( '
|
2374 |
|
2375 |
-
// Reference: src/modules/
|
2376 |
-
__( '
|
2377 |
|
2378 |
-
// Reference: src/modules/
|
2379 |
-
__( '
|
2380 |
|
2381 |
-
// Reference: src/modules/
|
2382 |
-
|
|
|
2383 |
|
2384 |
-
// Reference: src/modules/
|
2385 |
-
__( '
|
2386 |
|
2387 |
-
// Reference: src/modules/
|
2388 |
-
__( '
|
2389 |
|
2390 |
-
// Reference: src/modules/
|
2391 |
-
__( '
|
2392 |
|
2393 |
-
// Reference: src/modules/
|
2394 |
-
__( '
|
2395 |
|
2396 |
-
// Reference: src/modules/
|
2397 |
-
__( '
|
2398 |
|
2399 |
-
// Reference: src/modules/
|
2400 |
-
__( '
|
2401 |
|
2402 |
-
// Reference: src/modules/
|
2403 |
-
|
2404 |
-
__( '%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' ),
|
2405 |
|
2406 |
-
// Reference: src/modules/
|
2407 |
-
|
2408 |
-
__( '%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' ),
|
2409 |
|
2410 |
-
// Reference: src/modules/
|
2411 |
-
__( '
|
2412 |
|
2413 |
-
// Reference: src/modules/
|
2414 |
-
__( '
|
2415 |
|
2416 |
-
// Reference: src/modules/
|
2417 |
-
__( '
|
2418 |
|
2419 |
-
// Reference: src/modules/
|
2420 |
-
__( '
|
2421 |
|
2422 |
-
// Reference: src/modules/
|
2423 |
-
__( '
|
2424 |
|
2425 |
-
// Reference: src/modules/
|
2426 |
-
__( '
|
2427 |
|
2428 |
-
// Reference: src/modules/
|
2429 |
-
__( '
|
2430 |
|
2431 |
-
// Reference: src/modules/
|
2432 |
-
__( '
|
2433 |
|
2434 |
-
// Reference: src/modules/
|
2435 |
-
__( '
|
2436 |
|
2437 |
-
// Reference: src/modules/
|
2438 |
-
__( '
|
2439 |
|
2440 |
-
// Reference: src/modules/
|
2441 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2442 |
|
2443 |
-
// Reference: src/modules/
|
2444 |
-
__( '
|
2445 |
|
2446 |
-
// Reference: src/modules/
|
2447 |
-
__( '
|
2448 |
|
2449 |
-
// Reference: src/modules/
|
2450 |
-
__( '
|
2451 |
|
2452 |
-
// Reference: src/modules/
|
2453 |
-
__( '
|
2454 |
|
2455 |
-
// Reference: src/modules/
|
2456 |
-
__( '
|
2457 |
|
2458 |
-
// Reference: src/modules/
|
2459 |
-
__( '
|
2460 |
|
2461 |
-
// Reference: src/modules/
|
2462 |
-
|
|
|
2463 |
|
2464 |
-
// Reference: src/modules/
|
2465 |
-
__( '
|
2466 |
|
2467 |
-
// Reference: src/modules/
|
2468 |
-
__( '
|
2469 |
|
2470 |
-
// Reference: src/modules/
|
2471 |
-
__( '
|
2472 |
|
2473 |
-
// Reference: src/modules/
|
2474 |
-
__( '
|
2475 |
|
2476 |
-
// Reference: src/modules/
|
2477 |
-
__( '
|
2478 |
|
2479 |
-
// Reference: src/modules/
|
2480 |
-
__( '
|
2481 |
|
2482 |
-
// Reference: src/modules/
|
2483 |
-
__( '
|
2484 |
|
2485 |
-
// Reference: src/modules/popular-posts/components/
|
2486 |
-
__( '
|
2487 |
|
2488 |
-
// Reference: src/modules/popular-posts/components/
|
2489 |
-
__( '
|
2490 |
|
2491 |
-
// Reference: src/modules/popular-posts/components/
|
2492 |
-
__( '
|
2493 |
|
2494 |
-
// Reference: src/modules/popular-posts/components/
|
2495 |
-
__( '
|
2496 |
|
2497 |
-
// Reference: src/modules/popular-posts/components/
|
2498 |
-
__( '
|
2499 |
|
2500 |
-
// Reference: src/modules/popular-posts/components/
|
2501 |
-
__( '
|
2502 |
|
2503 |
-
// Reference: src/modules/popular-posts/components/
|
2504 |
-
__( '
|
2505 |
|
2506 |
-
// Reference: src/modules/popular-posts/components/
|
2507 |
-
|
|
|
2508 |
|
2509 |
-
// Reference: src/modules/popular-posts/components/
|
2510 |
-
|
|
|
2511 |
|
2512 |
-
// Reference: src/modules/popular-posts/components/
|
2513 |
-
|
|
|
2514 |
|
2515 |
-
// Reference: src/modules/popular-posts/components/
|
2516 |
-
__( '
|
2517 |
|
2518 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetCategory-Lite.vue:24
|
2519 |
__( 'Only Show Posts from These Categories', 'google-analytics-dashboard-for-wp' ),
|
@@ -2560,77 +2555,64 @@ $generated_i18n_strings = array(
|
|
2560 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:62
|
2561 |
__( 'Narrow', 'google-analytics-dashboard-for-wp' ),
|
2562 |
|
2563 |
-
// Reference: src/modules/
|
2564 |
-
|
2565 |
-
__( '%1$sPage %3$s%2$s of %4$s', 'google-analytics-dashboard-for-wp' ),
|
2566 |
|
2567 |
-
// Reference: src/modules/
|
2568 |
-
__( '
|
2569 |
|
2570 |
-
// Reference: src/modules/
|
2571 |
-
__( '
|
2572 |
|
2573 |
-
// Reference: src/modules/
|
2574 |
-
__( 'Upgrade to', 'google-analytics-dashboard-for-wp' ),
|
2575 |
|
2576 |
-
// Reference: src/modules/
|
2577 |
-
__( '
|
2578 |
|
2579 |
-
// Reference: src/modules/
|
2580 |
-
__( '
|
2581 |
|
2582 |
-
// Reference: src/modules/
|
2583 |
-
|
2584 |
-
__( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
|
2585 |
|
2586 |
-
// Reference: src/modules/
|
2587 |
-
|
2588 |
-
__( 'Unique %s Pageviews', 'google-analytics-dashboard-for-wp' ),
|
2589 |
|
2590 |
-
// Reference: src/modules/
|
2591 |
-
__( '
|
|
|
2592 |
|
2593 |
-
// Reference: src/modules/
|
2594 |
-
__( '
|
2595 |
|
2596 |
-
// Reference: src/modules/
|
2597 |
-
|
2598 |
-
__( '%s results', 'google-analytics-dashboard-for-wp' ),
|
2599 |
|
2600 |
-
// Reference: src/modules/
|
2601 |
-
__( '
|
2602 |
|
2603 |
-
// Reference: src/modules/
|
2604 |
-
|
2605 |
-
__( '7 days', 'google-analytics-dashboard-for-wp' ),
|
2606 |
|
2607 |
-
// Reference: src/modules/
|
2608 |
-
__( '
|
2609 |
|
2610 |
-
// Reference: src/modules/
|
2611 |
-
__( '
|
2612 |
|
2613 |
-
// Reference: src/modules/
|
2614 |
-
__( '
|
2615 |
|
2616 |
-
// Reference: src/modules/
|
2617 |
-
__( '
|
2618 |
|
2619 |
-
// Reference: src/modules/
|
2620 |
/* Translators: Adds a link to the documentation. */
|
2621 |
-
__( '
|
2622 |
-
|
2623 |
-
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:46
|
2624 |
-
__( 'Connect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
2625 |
-
|
2626 |
-
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:48
|
2627 |
-
__( 'Website profile', 'google-analytics-dashboard-for-wp' ),
|
2628 |
-
|
2629 |
-
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:49
|
2630 |
-
__( 'Active profile', 'google-analytics-dashboard-for-wp' ),
|
2631 |
|
2632 |
-
// Reference: src/modules/
|
2633 |
-
__( '
|
2634 |
|
2635 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:101
|
2636 |
__( 'Automatic Placement', 'google-analytics-dashboard-for-wp' ),
|
@@ -2644,6 +2626,9 @@ $generated_i18n_strings = array(
|
|
2644 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:104
|
2645 |
__( 'All Embed Options can be used in conjunction with one another.', 'google-analytics-dashboard-for-wp' ),
|
2646 |
|
|
|
|
|
|
|
2647 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:106
|
2648 |
__( 'Using Automatic Embed', 'google-analytics-dashboard-for-wp' ),
|
2649 |
|
@@ -2659,9 +2644,15 @@ $generated_i18n_strings = array(
|
|
2659 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:111
|
2660 |
__( '%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg', 'google-analytics-dashboard-for-wp' ),
|
2661 |
|
|
|
|
|
|
|
2662 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:114
|
2663 |
__( '%1$sStep 2%2$s - Search for “Popular Posts”.', 'google-analytics-dashboard-for-wp' ),
|
2664 |
|
|
|
|
|
|
|
2665 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:118
|
2666 |
__( '%1$sStep 1%2$s - Navigate to your Appearance > Widgets page using the menu on the left side your screen. Must be logged in as Admin.', 'google-analytics-dashboard-for-wp' ),
|
2667 |
|
@@ -2674,6 +2665,12 @@ $generated_i18n_strings = array(
|
|
2674 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:122
|
2675 |
__( 'Display using a Shortcode', 'google-analytics-dashboard-for-wp' ),
|
2676 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2677 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:125
|
2678 |
__( '%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode', 'google-analytics-dashboard-for-wp' ),
|
2679 |
|
@@ -2689,33 +2686,51 @@ $generated_i18n_strings = array(
|
|
2689 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:129
|
2690 |
__( 'Watch Video - How to Add the Popular Posts widget using Widgets', 'google-analytics-dashboard-for-wp' ),
|
2691 |
|
2692 |
-
// Reference: src/modules/settings/components/
|
2693 |
-
|
|
|
2694 |
|
2695 |
-
// Reference: src/modules/settings/components/
|
2696 |
-
__( '
|
2697 |
|
2698 |
-
// Reference: src/modules/settings/components/
|
2699 |
-
__( '
|
2700 |
|
2701 |
-
// Reference: src/modules/settings/components/
|
2702 |
-
__( '
|
2703 |
|
2704 |
-
// Reference: src/modules/settings/components/
|
2705 |
-
|
|
|
2706 |
|
2707 |
-
// Reference: src/modules/
|
2708 |
-
__( '
|
2709 |
|
2710 |
-
// Reference: src/modules/
|
2711 |
-
|
2712 |
-
__( 'You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s', 'google-analytics-dashboard-for-wp' ),
|
2713 |
|
2714 |
-
// Reference: src/modules/
|
2715 |
-
|
2716 |
-
__( 'As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
|
2717 |
|
2718 |
-
// Reference: src/modules/
|
2719 |
-
__( '
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2720 |
);
|
2721 |
/* THIS IS THE END OF THE GENERATED FILE */
|
7 |
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:97
|
8 |
__( '2', 'google-analytics-dashboard-for-wp' ),
|
9 |
|
10 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:71
|
|
|
11 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:150
|
12 |
__( 'Error', 'google-analytics-dashboard-for-wp' ),
|
13 |
|
14 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:151
|
15 |
__( 'Please try again.', 'google-analytics-dashboard-for-wp' ),
|
16 |
|
17 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:219
|
18 |
+
__( 'Today', 'google-analytics-dashboard-for-wp' ),
|
19 |
+
|
20 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:225
|
21 |
+
__( 'Yesterday', 'google-analytics-dashboard-for-wp' ),
|
22 |
+
|
23 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:231
|
24 |
+
__( 'Last Week', 'google-analytics-dashboard-for-wp' ),
|
25 |
+
|
26 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:237
|
27 |
+
__( 'Last Month', 'google-analytics-dashboard-for-wp' ),
|
28 |
+
|
29 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:243
|
30 |
+
__( 'Last 7 days', 'google-analytics-dashboard-for-wp' ),
|
31 |
+
|
32 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:249
|
33 |
+
__( 'Last 30 days', 'google-analytics-dashboard-for-wp' ),
|
34 |
+
|
35 |
// Reference: src/plugins/exactmetrics-settings-helper-plugin.js:116
|
36 |
__( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
|
37 |
|
38 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:55
|
|
|
39 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:130
|
40 |
__( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
|
41 |
|
55 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
|
56 |
__( 'Loading new report data', 'google-analytics-dashboard-for-wp' ),
|
57 |
|
|
|
58 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:143
|
59 |
/* Translators: Adds an arrow icon. */
|
60 |
__( 'Continue %s', 'google-analytics-dashboard-for-wp' ),
|
68 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:185
|
69 |
__( 'Unlock the Publishers Report and Focus on the Content That Matters', 'google-analytics-dashboard-for-wp' ),
|
70 |
|
71 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:32
|
72 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:186
|
73 |
__( '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' ),
|
74 |
|
|
|
75 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:189
|
76 |
__( 'Unlock the eCommerce Report and See Your Important Store Metrics', 'google-analytics-dashboard-for-wp' ),
|
77 |
|
84 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:194
|
85 |
__( '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' ),
|
86 |
|
87 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:31
|
88 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:197
|
89 |
__( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-dashboard-for-wp' ),
|
90 |
|
91 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:32
|
92 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:198
|
93 |
__( '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' ),
|
94 |
|
|
|
95 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:201
|
96 |
__( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-dashboard-for-wp' ),
|
97 |
|
104 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:206
|
105 |
__( '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' ),
|
106 |
|
107 |
+
// Reference: src/plugins/exactmetrics-wizard-helper-plugin.js:19
|
108 |
+
__( 'Loading settings', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
|
110 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:252
|
111 |
__( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
|
112 |
|
113 |
+
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:13
|
114 |
+
/* Translators: Current PHP version and recommended PHP version. */
|
115 |
+
__( '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' ),
|
116 |
|
117 |
+
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:27
|
118 |
+
/* Translators: Current WordPress version. */
|
119 |
+
__( '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 2020. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.', 'google-analytics-dashboard-for-wp' ),
|
120 |
|
121 |
+
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:39
|
122 |
+
__( 'Yikes! PHP Update Required', 'google-analytics-dashboard-for-wp' ),
|
|
|
123 |
|
124 |
+
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:41
|
125 |
+
/* Translators: Current PHP version and recommended PHP version. */
|
126 |
+
__( '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. 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' ),
|
127 |
|
128 |
+
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:45
|
129 |
+
__( 'Learn more about updating PHP', 'google-analytics-dashboard-for-wp' ),
|
|
|
130 |
|
131 |
+
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:53
|
132 |
+
__( 'Yikes! WordPress Update Required', 'google-analytics-dashboard-for-wp' ),
|
|
|
133 |
|
134 |
+
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:55
|
135 |
+
/* Translators: Current WordPress version. */
|
136 |
+
__( 'ExactMetrics has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.', 'google-analytics-dashboard-for-wp' ),
|
137 |
|
138 |
+
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:59
|
139 |
+
__( 'Learn more about updating WordPress', 'google-analytics-dashboard-for-wp' ),
|
140 |
+
|
141 |
+
// Reference: src/modules/settings/routes/site.js:122
|
142 |
__( 'About Us', 'google-analytics-dashboard-for-wp' ),
|
143 |
|
144 |
+
// Reference: src/modules/settings/routes/site.js:130
|
145 |
__( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
|
146 |
|
147 |
+
// Reference: src/modules/settings/routes/site.js:139
|
148 |
__( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
|
149 |
|
150 |
+
// Reference: src/modules/widget/components/WidgetFooter.vue:19
|
151 |
+
/* Translators: Placeholder is replaced with WPForms. */
|
152 |
+
__( 'Recommended Plugin: %s', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
153 |
|
154 |
+
// Reference: src/modules/addons/components/AddonButton.vue:51
|
155 |
+
// Reference: src/modules/widget/components/WidgetFooter.vue:20
|
156 |
+
__( 'Install', 'google-analytics-dashboard-for-wp' ),
|
157 |
|
158 |
+
// Reference: src/modules/addons/components/AddonButton.vue:47
|
159 |
+
// Reference: src/modules/widget/components/WidgetFooter.vue:21
|
160 |
+
__( 'Activate', 'google-analytics-dashboard-for-wp' ),
|
161 |
|
162 |
+
// Reference: src/modules/widget/components/WidgetFooter.vue:22
|
163 |
+
__( 'Learn More', 'google-analytics-dashboard-for-wp' ),
|
164 |
|
165 |
+
// Reference: src/modules/reports/components/ReportNoAuth.vue:25
|
166 |
+
__( 'You must connect with ExactMetrics before you can view reports.', 'google-analytics-dashboard-for-wp' ),
|
167 |
|
168 |
+
// Reference: src/modules/reports/components/ReportNoAuth.vue:26
|
169 |
+
__( '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' ),
|
170 |
|
171 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:79
|
172 |
+
__( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
|
|
|
173 |
|
174 |
+
// Reference: src/modules/reports/components/ReportNoAuth.vue:28
|
175 |
+
__( 'Please ask your webmaster to connect ExactMetrics to Google Analytics.', 'google-analytics-dashboard-for-wp' ),
|
176 |
|
177 |
// Reference: src/modules/reports/components/ReportReAuth.vue:19
|
178 |
__( 'ExactMetrics encountered an error loading your report data', 'google-analytics-dashboard-for-wp' ),
|
183 |
// Reference: src/modules/reports/components/ReportReAuth.vue:21
|
184 |
__( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
185 |
|
186 |
+
// Reference: src/modules/reports/components/ReportReAuth.vue:30
|
187 |
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:127
|
188 |
__( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
|
189 |
|
190 |
// Reference: src/modules/reports/components/ReportReAuth.vue:47
|
191 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:110
|
192 |
__( 'Ok', 'google-analytics-dashboard-for-wp' ),
|
193 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:22
|
|
|
195 |
__( 'Overview', 'google-analytics-dashboard-for-wp' ),
|
196 |
|
197 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:30
|
198 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:30
|
199 |
__( 'Publishers', 'google-analytics-dashboard-for-wp' ),
|
200 |
|
201 |
+
// Reference: src/modules/reports/routes/exactmetrics-routes.js:38
|
202 |
+
// Reference: src/modules/settings/routes/site.js:51
|
203 |
+
__( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
|
204 |
+
|
205 |
+
// Reference: src/modules/reports/routes/exactmetrics-routes.js:46
|
206 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:57
|
207 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:49
|
208 |
__( 'Search Console', 'google-analytics-dashboard-for-wp' ),
|
209 |
|
210 |
+
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:39
|
211 |
+
__( 'Dimensions', 'google-analytics-dashboard-for-wp' ),
|
212 |
|
213 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:62
|
214 |
__( 'Forms', 'google-analytics-dashboard-for-wp' ),
|
216 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:70
|
217 |
__( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
|
218 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
219 |
// Reference: src/components/TheQuickLinks.vue:31
|
220 |
__( 'See Quick Links', 'google-analytics-dashboard-for-wp' ),
|
221 |
|
231 |
// Reference: src/components/TheQuickLinks.vue:78
|
232 |
__( 'Upgrade to Pro »', 'google-analytics-dashboard-for-wp' ),
|
233 |
|
234 |
+
// Reference: src/modules/reports/routes/exactmetrics-routes.js:54
|
235 |
+
__( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
|
236 |
|
237 |
+
// Reference: src/modules/addons/components/AddonsNavigation.vue:18
|
238 |
+
__( 'ExactMetrics Addons', 'google-analytics-dashboard-for-wp' ),
|
239 |
|
240 |
+
// Reference: src/modules/addons/components/AddonsNavigation.vue:19
|
241 |
+
__( 'Search Addons', 'google-analytics-dashboard-for-wp' ),
|
242 |
|
243 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBelowContent.vue:17
|
244 |
+
__( 'Go back', 'google-analytics-dashboard-for-wp' ),
|
245 |
|
246 |
+
// Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24
|
247 |
+
__( 'Exit Setup', 'google-analytics-dashboard-for-wp' ),
|
248 |
|
249 |
+
// Reference: src/modules/settings/components/SettingsButtonSave.vue:46
|
250 |
+
__( 'Save Changes', 'google-analytics-dashboard-for-wp' ),
|
|
|
251 |
|
252 |
+
// Reference: src/modules/addons/store/actions.js:33
|
253 |
+
/* Translators: Adds a link to documentation. */
|
254 |
+
__( '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' ),
|
255 |
|
256 |
+
// Reference: src/modules/addons/store/actions.js:36
|
257 |
+
/* Translators: Adds link to activate/install plugin and documentation. */
|
258 |
+
__( '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' ),
|
259 |
|
260 |
+
// Reference: src/modules/addons/store/actions.js:51
|
261 |
+
/* Translators: Adds a link to documentation. */
|
262 |
+
__( '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' ),
|
263 |
|
264 |
+
// Reference: src/modules/addons/store/actions.js:54
|
265 |
+
/* Translators: Adds link to activate/install plugin and documentation. */
|
266 |
+
__( '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' ),
|
267 |
|
268 |
+
// Reference: src/modules/license/store/actions.js:61
|
269 |
+
/* Translators: Adds a link to the license renewal. */
|
270 |
+
__( 'Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s', 'google-analytics-dashboard-for-wp' ),
|
271 |
|
272 |
+
// Reference: src/modules/license/store/actions.js:71
|
273 |
+
__( 'Your license key for ExactMetrics has been disabled. Please use a different key.', 'google-analytics-dashboard-for-wp' ),
|
274 |
|
275 |
+
// Reference: src/modules/license/store/actions.js:81
|
276 |
+
__( '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' ),
|
277 |
|
278 |
+
// Reference: src/modules/notifications/components/exactmetrics-Notifications.vue:75
|
279 |
+
__( 'Inbox', 'google-analytics-dashboard-for-wp' ),
|
280 |
|
281 |
+
// Reference: src/modules/notifications/components/exactmetrics-Notifications.vue:76
|
282 |
+
__( 'Back to Inbox', 'google-analytics-dashboard-for-wp' ),
|
283 |
|
284 |
+
// Reference: src/modules/notifications/components/exactmetrics-Notifications.vue:77
|
285 |
+
__( 'View Dismissed', 'google-analytics-dashboard-for-wp' ),
|
286 |
|
287 |
+
// Reference: src/modules/notifications/components/exactmetrics-Notifications.vue:78
|
288 |
+
__( 'Notifications', 'google-analytics-dashboard-for-wp' ),
|
289 |
|
290 |
+
// Reference: src/modules/notifications/components/exactmetrics-Notifications.vue:79
|
291 |
+
__( 'Dismiss All', 'google-analytics-dashboard-for-wp' ),
|
292 |
|
293 |
+
// Reference: src/modules/notifications/components/exactmetrics-Notifications.vue:80
|
294 |
+
__( 'Dismissed', 'google-analytics-dashboard-for-wp' ),
|
295 |
|
296 |
+
// Reference: src/modules/notifications/components/exactmetrics-Notifications.vue:81
|
297 |
+
__( 'No Notifications', 'google-analytics-dashboard-for-wp' ),
|
298 |
|
299 |
+
// Reference: src/modules/frontend/components/FrontendNoAuth.vue:24
|
300 |
+
__( 'Please Setup Website Analytics to See Audience Insights', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
|
302 |
+
// Reference: src/modules/frontend/components/FrontendNoAuth.vue:25
|
303 |
+
__( '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' ),
|
304 |
|
305 |
+
// Reference: src/modules/frontend/components/FrontendNoAuth.vue:26
|
306 |
+
__( 'Connect ExactMetrics and Setup Website Analytics', 'google-analytics-dashboard-for-wp' ),
|
307 |
|
308 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:60
|
|
|
309 |
__( 'License Key', 'google-analytics-dashboard-for-wp' ),
|
310 |
|
311 |
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:62
|
312 |
/* Translators: Add link to retrieve license key from account. */
|
313 |
__( 'Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
|
314 |
|
315 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:63
|
316 |
__( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
|
317 |
|
318 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:64
|
319 |
__( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
|
320 |
|
321 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:65
|
322 |
__( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
|
323 |
|
324 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:66
|
325 |
__( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
|
326 |
|
327 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:68
|
328 |
__( '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' ),
|
329 |
|
330 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:69
|
331 |
__( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
|
332 |
|
333 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:70
|
334 |
__( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
|
335 |
|
336 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:72
|
337 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:32
|
338 |
+
/* Translators: Add link to upgrade. */
|
339 |
__( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
|
340 |
|
341 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:73
|
342 |
__( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
|
343 |
|
344 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:34
|
345 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:34
|
346 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:74
|
347 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:45
|
|
|
|
|
348 |
__( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
|
349 |
|
350 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:75
|
351 |
__( 'See all features', 'google-analytics-dashboard-for-wp' ),
|
352 |
|
353 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:76
|
354 |
__( 'Setup Wizard', 'google-analytics-dashboard-for-wp' ),
|
355 |
|
356 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:77
|
357 |
__( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-dashboard-for-wp' ),
|
358 |
|
359 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:78
|
360 |
__( 'Relaunch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
|
361 |
|
362 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:55
|
363 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:45
|
364 |
+
__( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
|
365 |
+
|
366 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:56
|
367 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:47
|
368 |
+
__( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
|
369 |
+
|
370 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:58
|
371 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:51
|
372 |
+
__( 'Custom Date Ranges', 'google-analytics-dashboard-for-wp' ),
|
373 |
+
|
374 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:65
|
375 |
+
__( 'Get ExactMetrics Pro Today and Unlock all the Powerful Features', 'google-analytics-dashboard-for-wp' ),
|
376 |
+
|
377 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:107
|
378 |
+
/* Translators: Placeholders make the text green. */
|
379 |
+
__( 'Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
|
380 |
+
|
381 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:111
|
382 |
+
__( 'How to Connect to Google Analytics', 'google-analytics-dashboard-for-wp' ),
|
383 |
+
|
384 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:112
|
385 |
+
__( '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' ),
|
386 |
+
|
387 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:117
|
388 |
+
__( 'Guide and Checklist for Advanced Insights', 'google-analytics-dashboard-for-wp' ),
|
389 |
+
|
390 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:118
|
391 |
+
__( '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' ),
|
392 |
+
|
393 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:123
|
394 |
+
__( 'GDPR Guide', 'google-analytics-dashboard-for-wp' ),
|
395 |
+
|
396 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:124
|
397 |
+
__( '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' ),
|
398 |
+
|
399 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:129
|
400 |
+
__( 'How to Install and Activate ExactMetrics Addons', 'google-analytics-dashboard-for-wp' ),
|
401 |
+
|
402 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:130
|
403 |
+
__( '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' ),
|
404 |
+
|
405 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:135
|
406 |
+
__( 'Enabling eCommerce Tracking and Reports', 'google-analytics-dashboard-for-wp' ),
|
407 |
+
|
408 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:136
|
409 |
+
__( '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' ),
|
410 |
+
|
411 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:140
|
412 |
+
__( 'Read Documentation', 'google-analytics-dashboard-for-wp' ),
|
413 |
+
|
414 |
+
// Reference: src/components/ContentIntroFullWidth.vue:46
|
415 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:90
|
416 |
+
__( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
|
417 |
+
|
418 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:92
|
419 |
+
/* Translators: Adds a line break. */
|
420 |
+
__( 'Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin', 'google-analytics-dashboard-for-wp' ),
|
421 |
+
|
422 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:94
|
423 |
+
/* Translators: Makes text bold. */
|
424 |
+
__( '%1$sExactMetrics%2$s makes it “effortless” to setup Google Analytics in WordPress, the RIGHT Way. You can watch the video tutorial or use our 3 minute setup wizard.', 'google-analytics-dashboard-for-wp' ),
|
425 |
+
|
426 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:96
|
427 |
+
__( 'ExactMetrics Features & Addons', 'google-analytics-dashboard-for-wp' ),
|
428 |
+
|
429 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:97
|
430 |
+
__( 'Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market.', 'google-analytics-dashboard-for-wp' ),
|
431 |
+
|
432 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:102
|
433 |
/* Translators: Makes text bold. */
|
434 |
__( '%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code).', 'google-analytics-dashboard-for-wp' ),
|
441 |
/* Translators: Makes text bold. */
|
442 |
__( '%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more.', 'google-analytics-dashboard-for-wp' ),
|
443 |
|
444 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:169
|
445 |
+
/* Translators: Makes the text bold. */
|
446 |
+
__( '%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress.', 'google-analytics-dashboard-for-wp' ),
|
447 |
|
448 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:122
|
449 |
/* Translators: Makes text bold. */
|
457 |
/* Translators: Makes text bold. */
|
458 |
__( '%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically.', 'google-analytics-dashboard-for-wp' ),
|
459 |
|
460 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:189
|
461 |
+
/* Translators: Makes the text bold. */
|
462 |
+
__( '%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' ),
|
463 |
|
464 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:142
|
465 |
/* Translators: Adds link to the features page. */
|
466 |
__( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
|
467 |
|
468 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:41
|
469 |
__( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
|
470 |
|
471 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:42
|
472 |
__( 'per year', 'google-analytics-dashboard-for-wp' ),
|
473 |
|
474 |
// Reference: src/modules/addons/components/AddonButton.vue:27
|
475 |
// Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:22
|
476 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:43
|
477 |
__( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
|
478 |
|
479 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:63
|
|
|
|
|
|
|
480 |
__( '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' ),
|
481 |
|
482 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:64
|
483 |
__( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
|
484 |
|
485 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:68
|
486 |
__( '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' ),
|
487 |
|
488 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:69
|
489 |
__( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
|
490 |
|
491 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:73
|
492 |
__( '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' ),
|
493 |
|
494 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:74
|
495 |
__( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
|
496 |
|
497 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:167
|
498 |
__( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
|
499 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
500 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:84
|
501 |
__( 'Getting Started with ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
502 |
|
512 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:88
|
513 |
__( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
|
514 |
|
515 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:47
|
516 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:42
|
517 |
+
__( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
|
|
518 |
|
519 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:48
|
520 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:44
|
521 |
+
__( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
|
522 |
|
523 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:49
|
524 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:46
|
525 |
+
__( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
|
526 |
|
527 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:50
|
528 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:48
|
529 |
+
__( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
|
530 |
|
531 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:51
|
532 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:50
|
533 |
+
__( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
|
534 |
|
535 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:54
|
536 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:43
|
537 |
+
__( 'EU Compliance Addon', 'google-analytics-dashboard-for-wp' ),
|
538 |
|
539 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:39
|
540 |
+
__( 'Awesome, You\'re All Set!', 'google-analytics-dashboard-for-wp' ),
|
541 |
|
542 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:40
|
543 |
+
__( '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' ),
|
544 |
|
545 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:42
|
546 |
+
/* Translators: Make the text bold. */
|
547 |
+
__( '%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' ),
|
548 |
|
549 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:44
|
550 |
+
/* Translators: Add link to blog. */
|
551 |
+
__( '%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' ),
|
552 |
|
553 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:45
|
554 |
+
__( 'Finish Setup & Exit Wizard', 'google-analytics-dashboard-for-wp' ),
|
555 |
|
556 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:47
|
557 |
+
__( 'Google Analytics', 'google-analytics-dashboard-for-wp' ),
|
558 |
|
559 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:48
|
560 |
+
__( 'Subscribe', 'google-analytics-dashboard-for-wp' ),
|
561 |
|
562 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:61
|
563 |
+
__( 'Checking your website...', 'google-analytics-dashboard-for-wp' ),
|
564 |
|
565 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingAboveContent.vue:15
|
566 |
+
/* Translators: Placeholders are replaced with the current step number out of the total number of steps. */
|
567 |
+
__( 'Step %1$s of %2$s', 'google-analytics-dashboard-for-wp' ),
|
568 |
|
569 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:117
|
570 |
+
/* Translators: Makes text bold. */
|
571 |
+
__( '%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress.', 'google-analytics-dashboard-for-wp' ),
|
572 |
|
573 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:137
|
574 |
+
/* Translators: Makes text bold. */
|
575 |
+
__( '%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click.', 'google-analytics-dashboard-for-wp' ),
|
576 |
|
577 |
+
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:148
|
578 |
+
__( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
|
579 |
|
580 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:53
|
581 |
+
__( 'Recommended Settings', 'google-analytics-dashboard-for-wp' ),
|
582 |
|
583 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:54
|
584 |
+
__( 'ExactMetrics recommends the following settings based on your configuration.', 'google-analytics-dashboard-for-wp' ),
|
585 |
|
586 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:55
|
587 |
+
__( 'Events Tracking', 'google-analytics-dashboard-for-wp' ),
|
588 |
|
589 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:56
|
590 |
+
__( 'Must have for all click tracking on site.', 'google-analytics-dashboard-for-wp' ),
|
591 |
|
592 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:57
|
593 |
+
__( 'ExactMetrics uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don\'t have to write any code.', 'google-analytics-dashboard-for-wp' ),
|
594 |
|
595 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:58
|
596 |
+
__( 'Enhanced Link Attribution', 'google-analytics-dashboard-for-wp' ),
|
597 |
|
598 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:59
|
599 |
+
__( 'Improves the accuracy of your In-Page Analytics.', 'google-analytics-dashboard-for-wp' ),
|
600 |
|
601 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:60
|
602 |
+
__( 'ExactMetrics will automatically help Google determine which links are unique and where they are on your site so that your In-Page Analytics reporting will be more accurate.', 'google-analytics-dashboard-for-wp' ),
|
603 |
|
604 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:61
|
605 |
+
__( 'Install Updates Automatically', 'google-analytics-dashboard-for-wp' ),
|
606 |
|
607 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:62
|
608 |
+
__( 'Get the latest features, bug fixes, and security updates as they are released.', 'google-analytics-dashboard-for-wp' ),
|
609 |
|
610 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:63
|
611 |
+
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
612 |
|
613 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:64
|
614 |
+
__( 'File Download Tracking', 'google-analytics-dashboard-for-wp' ),
|
615 |
|
616 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:65
|
617 |
+
__( 'Helps you see file downloads data.', 'google-analytics-dashboard-for-wp' ),
|
618 |
|
619 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:66
|
620 |
+
__( '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' ),
|
621 |
|
622 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:52
|
623 |
+
/* Translators: Example path (/go/). */
|
624 |
+
__( 'Path (example: %s)', 'google-analytics-dashboard-for-wp' ),
|
625 |
|
626 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:54
|
627 |
+
__( 'Path has to start with a / and have no spaces', 'google-analytics-dashboard-for-wp' ),
|
628 |
|
629 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:59
|
630 |
+
/* Translators: Example label (aff). */
|
631 |
+
__( 'Label (example: %s)', 'google-analytics-dashboard-for-wp' ),
|
632 |
|
633 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:61
|
634 |
+
__( 'Label can\'t contain any spaces', 'google-analytics-dashboard-for-wp' ),
|
635 |
|
636 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:83
|
637 |
+
__( 'Helps you increase affiliate revenue.', 'google-analytics-dashboard-for-wp' ),
|
638 |
|
639 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:84
|
640 |
+
__( 'ExactMetrics will automatically help you track affiliate links that use internal looking urls like example.com/go/ or example.com/refer/. You can add custom affiliate patterns on our settings panel when you finish the onboarding wizard.', 'google-analytics-dashboard-for-wp' ),
|
|
|
641 |
|
642 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:85
|
643 |
+
__( 'Affiliate Link Tracking', 'google-analytics-dashboard-for-wp' ),
|
|
|
644 |
|
645 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:86
|
646 |
+
__( 'Who Can See Reports', 'google-analytics-dashboard-for-wp' ),
|
647 |
|
648 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:87
|
649 |
+
__( 'These user roles will be able to access ExactMetrics\'s reports in the WordPress admin area.', 'google-analytics-dashboard-for-wp' ),
|
|
|
650 |
|
651 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:92
|
652 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:88
|
653 |
+
__( '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' ),
|
654 |
|
655 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:56
|
656 |
+
__( 'Save and continue', 'google-analytics-dashboard-for-wp' ),
|
657 |
|
658 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:91
|
659 |
+
__( 'Events Tracking is enabled the moment you set up ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
|
|
660 |
|
661 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:92
|
662 |
+
__( 'Enhanced Link Attribution is enabled the moment you set up ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
663 |
|
664 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:141
|
665 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:93
|
666 |
+
__( '+ Add Role', 'google-analytics-dashboard-for-wp' ),
|
667 |
|
668 |
+
// Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:213
|
669 |
+
__( 'Analytics', 'google-analytics-dashboard-for-wp' ),
|
670 |
|
671 |
+
// Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:65
|
672 |
+
// Reference: src/modules/widget/components/settings/exactmetrics-WidgetFullReportButton.vue:16
|
673 |
+
/* Translators: Adds an arrow icon. */
|
674 |
+
__( 'View All Reports %s', 'google-analytics-dashboard-for-wp' ),
|
675 |
|
676 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:40
|
677 |
+
__( 'ExactMetrics Recommends WPForms', 'google-analytics-dashboard-for-wp' ),
|
|
|
678 |
|
679 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:41
|
680 |
+
__( 'Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market.', 'google-analytics-dashboard-for-wp' ),
|
|
|
681 |
|
682 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:42
|
683 |
+
__( 'Used on over 3,000,000 websites!', 'google-analytics-dashboard-for-wp' ),
|
|
|
684 |
|
685 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:43
|
686 |
+
__( 'WPForms allow you to create beautiful contact forms, subscription forms, payment forms, and other types of forms for your site in minutes, not hours!', 'google-analytics-dashboard-for-wp' ),
|
|
|
687 |
|
688 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:44
|
689 |
+
__( 'Skip this Step', 'google-analytics-dashboard-for-wp' ),
|
|
|
690 |
|
691 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
|
692 |
+
__( 'Continue & Install WPForms', 'google-analytics-dashboard-for-wp' ),
|
|
|
693 |
|
694 |
+
// Reference: src/modules/addons/components/AddonButton.vue:39
|
695 |
+
__( 'Installing...', 'google-analytics-dashboard-for-wp' ),
|
696 |
|
697 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:35
|
698 |
+
/* Translators: Placeholders make the text highlighted. */
|
699 |
+
__( '%1$sNeed%2$s to Grow FASTER??', 'google-analytics-dashboard-for-wp' ),
|
700 |
|
701 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:36
|
702 |
+
__( 'Get additional, actionable insights by going Pro.', 'google-analytics-dashboard-for-wp' ),
|
703 |
|
704 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:37
|
705 |
+
__( 'Skip', 'google-analytics-dashboard-for-wp' ),
|
|
|
706 |
|
707 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:38
|
708 |
+
__( 'See All Features', 'google-analytics-dashboard-for-wp' ),
|
709 |
|
710 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:39
|
711 |
+
__( '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' ),
|
712 |
|
713 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:40
|
714 |
+
__( 'Our Pro plan includes:', 'google-analytics-dashboard-for-wp' ),
|
715 |
|
716 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:38
|
717 |
+
__( 'Welcome to the all-new ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
718 |
|
719 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:39
|
720 |
+
__( 'Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress.', 'google-analytics-dashboard-for-wp' ),
|
721 |
|
722 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:40
|
723 |
+
__( 'The New & Improved ExactMetrics includes:', 'google-analytics-dashboard-for-wp' ),
|
724 |
|
725 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:42
|
726 |
+
__( 'All-New Design', 'google-analytics-dashboard-for-wp' ),
|
727 |
|
728 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:43
|
729 |
+
__( 'Better Reporting', 'google-analytics-dashboard-for-wp' ),
|
730 |
|
731 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:44
|
732 |
+
__( 'Better Tracking', 'google-analytics-dashboard-for-wp' ),
|
733 |
|
734 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:45
|
735 |
+
__( 'Better Support', 'google-analytics-dashboard-for-wp' ),
|
736 |
|
737 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:47
|
738 |
+
__( 'Continue', 'google-analytics-dashboard-for-wp' ),
|
739 |
|
740 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:48
|
741 |
+
__( 'Your settings have been automatically transferred.', 'google-analytics-dashboard-for-wp' ),
|
742 |
|
743 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:49
|
744 |
+
__( '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' ),
|
745 |
|
746 |
+
// Reference: src/modules/widget/components/exactmetrics-WidgetSettings-Lite.vue:22
|
747 |
+
/* Translators: Number of days. */
|
748 |
+
__( 'Last %s days', 'google-analytics-dashboard-for-wp' ),
|
749 |
|
750 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:48
|
751 |
+
__( 'Connect ExactMetrics to Your Website', 'google-analytics-dashboard-for-wp' ),
|
752 |
|
753 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:49
|
754 |
+
__( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
|
755 |
|
756 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:52
|
757 |
+
__( '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' ),
|
758 |
|
759 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:53
|
760 |
+
__( 'Manually enter your UA code', 'google-analytics-dashboard-for-wp' ),
|
761 |
|
762 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:54
|
763 |
+
__( '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' ),
|
|
|
764 |
|
765 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:55
|
766 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:34
|
767 |
+
__( 'Save and Continue', 'google-analytics-dashboard-for-wp' ),
|
768 |
|
769 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:81
|
770 |
+
__( 'UA code can\'t be empty', 'google-analytics-dashboard-for-wp' ),
|
771 |
|
772 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:93
|
773 |
+
__( 'Saving UA code...', 'google-analytics-dashboard-for-wp' ),
|
774 |
|
775 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:102
|
776 |
+
__( 'One-click Complete eCommerce tracking', 'google-analytics-dashboard-for-wp' ),
|
777 |
|
778 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:103
|
779 |
+
__( 'Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required', 'google-analytics-dashboard-for-wp' ),
|
780 |
|
781 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:107
|
782 |
+
__( 'Forms Tracking', 'google-analytics-dashboard-for-wp' ),
|
783 |
|
784 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:111
|
785 |
+
__( 'One-click Form Events Tracking', 'google-analytics-dashboard-for-wp' ),
|
786 |
|
787 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:112
|
788 |
+
__( 'WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin', 'google-analytics-dashboard-for-wp' ),
|
789 |
|
790 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:116
|
791 |
+
__( 'WordPress Admin Area Reports', 'google-analytics-dashboard-for-wp' ),
|
792 |
|
793 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:119
|
794 |
+
__( 'Standard Reports', 'google-analytics-dashboard-for-wp' ),
|
795 |
|
796 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:120
|
797 |
+
__( 'Overview Reports for the last 30 days.', 'google-analytics-dashboard-for-wp' ),
|
798 |
|
799 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:121
|
800 |
+
__( 'Advanced Reports', 'google-analytics-dashboard-for-wp' ),
|
|
|
801 |
|
802 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:122
|
803 |
+
__( 'Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection', 'google-analytics-dashboard-for-wp' ),
|
804 |
|
805 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:126
|
806 |
+
__( 'Dashboard Widget', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
807 |
|
808 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:129
|
809 |
__( 'Basic Widget', 'google-analytics-dashboard-for-wp' ),
|
827 |
__( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-dashboard-for-wp' ),
|
828 |
|
829 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:148
|
|
|
830 |
__( 'Not Available', 'google-analytics-dashboard-for-wp' ),
|
831 |
|
832 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:149
|
860 |
__( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
|
861 |
|
862 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:67
|
|
|
863 |
__( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
|
864 |
|
865 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:70
|
898 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:94
|
899 |
__( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-dashboard-for-wp' ),
|
900 |
|
901 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:159
|
902 |
+
__( 'New', 'google-analytics-dashboard-for-wp' ),
|
|
|
903 |
|
904 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:160
|
905 |
+
__( 'Returning', 'google-analytics-dashboard-for-wp' ),
|
906 |
|
907 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:193
|
908 |
+
__( 'Desktop', 'google-analytics-dashboard-for-wp' ),
|
|
|
909 |
|
910 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:194
|
911 |
+
__( 'Tablet', 'google-analytics-dashboard-for-wp' ),
|
912 |
|
913 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:195
|
914 |
+
__( 'Mobile', 'google-analytics-dashboard-for-wp' ),
|
915 |
|
916 |
+
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:44
|
917 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:63
|
918 |
+
__( 'Sessions', 'google-analytics-dashboard-for-wp' ),
|
919 |
|
920 |
+
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:45
|
921 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:66
|
922 |
+
__( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
|
923 |
|
924 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:73
|
925 |
+
__( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
|
|
|
926 |
|
927 |
+
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:47
|
928 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:74
|
929 |
+
__( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
|
930 |
|
931 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:257
|
932 |
+
__( 'New vs. Returning Visitors', 'google-analytics-dashboard-for-wp' ),
|
|
|
933 |
|
934 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:258
|
935 |
+
__( 'Device Breakdown', 'google-analytics-dashboard-for-wp' ),
|
|
|
936 |
|
937 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:259
|
938 |
+
__( 'Top 10 Countries', 'google-analytics-dashboard-for-wp' ),
|
939 |
|
940 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:260
|
941 |
+
__( 'View Countries Report', 'google-analytics-dashboard-for-wp' ),
|
|
|
942 |
|
943 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:261
|
944 |
+
__( 'Top 10 Referrals', 'google-analytics-dashboard-for-wp' ),
|
945 |
|
946 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:262
|
947 |
+
__( 'View All Referral Sources', 'google-analytics-dashboard-for-wp' ),
|
948 |
|
949 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:263
|
950 |
+
__( 'Top Posts/Pages', 'google-analytics-dashboard-for-wp' ),
|
951 |
|
952 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:264
|
953 |
+
__( 'View Full Posts/Pages Report', 'google-analytics-dashboard-for-wp' ),
|
954 |
|
955 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:69
|
956 |
+
__( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
|
957 |
|
958 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:70
|
959 |
+
__( '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' ),
|
960 |
|
961 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:71
|
962 |
+
__( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
|
963 |
|
964 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:269
|
965 |
+
__( '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' ),
|
966 |
|
967 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:270
|
968 |
+
__( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-dashboard-for-wp' ),
|
969 |
|
970 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:271
|
971 |
+
__( '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' ),
|
972 |
|
973 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:272
|
974 |
+
__( 'This list shows the top countries your website visitors are from.', 'google-analytics-dashboard-for-wp' ),
|
975 |
|
976 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:273
|
977 |
+
__( 'This list shows the top websites that send your website traffic, known as referral traffic.', 'google-analytics-dashboard-for-wp' ),
|
978 |
+
|
979 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:274
|
980 |
+
__( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-dashboard-for-wp' ),
|
981 |
|
982 |
+
// Reference: src/modules/reports/store/actions.js:204
|
983 |
__( 'Dismiss', 'google-analytics-dashboard-for-wp' ),
|
984 |
|
985 |
+
// Reference: src/modules/settings/api/index.js:19
|
986 |
+
/* Translators: Error status and error text. */
|
987 |
+
__( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
988 |
|
989 |
+
// Reference: src/modules/settings/api/index.js:23
|
990 |
+
__( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
|
991 |
|
992 |
+
// Reference: src/modules/settings/api/index.js:73
|
993 |
+
/* Translators: Error status and error text. */
|
994 |
+
__( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
995 |
|
996 |
+
// Reference: src/modules/settings/api/index.js:77
|
997 |
+
__( 'Network error encountered. Settings not saved.', 'google-analytics-dashboard-for-wp' ),
|
998 |
|
999 |
+
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:42
|
1000 |
+
__( 'Last 30 Days Analytics for ', 'google-analytics-dashboard-for-wp' ),
|
1001 |
|
1002 |
+
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:43
|
1003 |
+
__( 'Your Website', 'google-analytics-dashboard-for-wp' ),
|
|
|
1004 |
|
1005 |
+
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:46
|
1006 |
+
__( 'Avg. Duration', 'google-analytics-dashboard-for-wp' ),
|
1007 |
|
1008 |
+
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:56
|
1009 |
+
__( 'More data is available', 'google-analytics-dashboard-for-wp' ),
|
1010 |
|
1011 |
+
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:58
|
1012 |
+
__( 'Want to see page-specific stats?', 'google-analytics-dashboard-for-wp' ),
|
1013 |
|
1014 |
+
// Reference: src/modules/auth/api/index.js:119
|
1015 |
+
/* Translators: Error status and error text. */
|
1016 |
+
__( 'Can\'t deauthenticate. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1017 |
|
1018 |
+
// Reference: src/modules/auth/api/index.js:150
|
1019 |
+
__( 'You appear to be offline. Settings not saved.', 'google-analytics-dashboard-for-wp' ),
|
|
|
1020 |
|
1021 |
+
// Reference: src/modules/auth/api/index.js:17
|
1022 |
+
/* Translators: Error status and error text. */
|
1023 |
+
__( 'Can\'t load authentication details. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1024 |
|
1025 |
+
// Reference: src/modules/auth/api/index.js:42
|
1026 |
+
/* Translators: Error status and error text. */
|
1027 |
+
__( 'Can\'t authenticate. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1028 |
|
1029 |
+
// Reference: src/modules/auth/api/index.js:67
|
1030 |
+
/* Translators: Error status and error text. */
|
1031 |
+
__( 'Can\'t reauthenticate. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1032 |
|
1033 |
+
// Reference: src/modules/auth/api/index.js:90
|
1034 |
+
/* Translators: Error status and error text. */
|
1035 |
+
__( 'Can\'t verify credentials. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1036 |
|
1037 |
+
// Reference: src/modules/license/api/index.js:118
|
1038 |
+
/* Translators: Error status and error text. */
|
1039 |
+
__( 'Can\'t deactivate the license. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1040 |
|
1041 |
+
// Reference: src/modules/license/api/index.js:145
|
1042 |
+
/* Translators: Error status and error text. */
|
1043 |
+
__( 'Can\'t upgrade to PRO please try again. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1044 |
|
1045 |
+
// Reference: src/modules/license/api/index.js:18
|
1046 |
+
/* Translators: Error status and error text. */
|
1047 |
+
__( 'Can\'t load license details. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1048 |
|
1049 |
+
// Reference: src/modules/license/api/index.js:24
|
1050 |
+
__( 'Error loading license details', 'google-analytics-dashboard-for-wp' ),
|
1051 |
|
1052 |
+
// Reference: src/modules/license/api/index.js:57
|
1053 |
+
/* Translators: Error status and error text. */
|
1054 |
+
__( 'Can\'t verify the license. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1055 |
|
1056 |
+
// Reference: src/modules/license/api/index.js:82
|
1057 |
+
/* Translators: Error status and error text. */
|
1058 |
+
__( 'Can\'t validate the license. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1059 |
|
1060 |
+
// Reference: src/modules/addons/api/index.js:103
|
1061 |
+
__( 'You appear to be offline. WPForms not installed.', 'google-analytics-dashboard-for-wp' ),
|
|
|
1062 |
|
1063 |
+
// Reference: src/modules/addons/api/index.js:132
|
1064 |
+
/* Translators: Error status and error text. */
|
1065 |
+
__( 'Can\'t activate addon. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1066 |
|
1067 |
+
// Reference: src/modules/addons/api/index.js:136
|
1068 |
+
__( 'You appear to be offline. Addon not activated.', 'google-analytics-dashboard-for-wp' ),
|
1069 |
|
1070 |
+
// Reference: src/modules/addons/api/index.js:165
|
1071 |
+
/* Translators: Error status and error text. */
|
1072 |
+
__( 'Can\'t deactivate addon. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1073 |
|
1074 |
+
// Reference: src/modules/addons/api/index.js:169
|
1075 |
+
__( 'You appear to be offline. Addon not deactivated.', 'google-analytics-dashboard-for-wp' ),
|
1076 |
|
1077 |
+
// Reference: src/modules/addons/api/index.js:199
|
1078 |
+
/* Translators: Error status and error text. */
|
1079 |
+
__( 'Can\'t install plugin. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1080 |
|
1081 |
+
// Reference: src/modules/addons/api/index.js:203
|
1082 |
+
__( 'You appear to be offline. Plugin not installed.', 'google-analytics-dashboard-for-wp' ),
|
1083 |
|
1084 |
+
// Reference: src/modules/addons/api/index.js:64
|
1085 |
+
/* Translators: Error status and error text. */
|
1086 |
+
__( 'Can\'t install addon. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1087 |
|
1088 |
+
// Reference: src/modules/addons/api/index.js:68
|
1089 |
+
__( 'You appear to be offline. Addon not installed.', 'google-analytics-dashboard-for-wp' ),
|
1090 |
|
1091 |
+
// Reference: src/modules/addons/api/index.js:99
|
1092 |
+
/* Translators: Error status and error text. */
|
1093 |
+
__( 'Can\'t install WPForms. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1094 |
|
1095 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:33
|
1096 |
+
__( 'Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress.', 'google-analytics-dashboard-for-wp' ),
|
1097 |
|
1098 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:34
|
1099 |
+
__( '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' ),
|
1100 |
|
1101 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:35
|
1102 |
+
__( 'The ExactMetrics Team', 'google-analytics-dashboard-for-wp' ),
|
1103 |
|
1104 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:30
|
1105 |
+
__( 'Real-Time Report', 'google-analytics-dashboard-for-wp' ),
|
|
|
1106 |
|
1107 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:32
|
1108 |
+
__( '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' ),
|
|
|
1109 |
|
1110 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:34
|
1111 |
+
/* Translators: add link to blog. */
|
1112 |
+
__( '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' ),
|
1113 |
|
1114 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:35
|
1115 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:35
|
1116 |
+
__( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
|
1117 |
|
1118 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:41
|
1119 |
+
__( 'See Your Active Visitors and Track Their Behaviour to Optimize', 'google-analytics-dashboard-for-wp' ),
|
|
|
1120 |
|
1121 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:45
|
1122 |
+
__( 'See Your Top Pages Immediately After Making Changes', 'google-analytics-dashboard-for-wp' ),
|
|
|
1123 |
|
1124 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:49
|
1125 |
+
__( 'See Your Top Referral Sources and Adapt Faster', 'google-analytics-dashboard-for-wp' ),
|
|
|
1126 |
|
1127 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:53
|
1128 |
+
__( 'See Your Traffic Demographics', 'google-analytics-dashboard-for-wp' ),
|
1129 |
|
1130 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:57
|
1131 |
+
__( 'Get Fresh Reports Data Every 60 Seconds', 'google-analytics-dashboard-for-wp' ),
|
|
|
1132 |
|
1133 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:61
|
1134 |
+
__( 'See Where Your Visitors are Connecting From (country & city)', 'google-analytics-dashboard-for-wp' ),
|
|
|
1135 |
|
1136 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:31
|
1137 |
+
__( 'Unlock the Publisher Report and Focus on the Content That Matters', 'google-analytics-dashboard-for-wp' ),
|
1138 |
|
1139 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:39
|
1140 |
+
__( 'See Your Top Landing Pages to Improve Engagement', 'google-analytics-dashboard-for-wp' ),
|
|
|
1141 |
|
1142 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:43
|
1143 |
+
__( 'See Your Top Exit Pages to Reduce Abandonment', 'google-analytics-dashboard-for-wp' ),
|
1144 |
|
1145 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:47
|
1146 |
+
__( 'See Your Top Outbound Links to Find New Revenue Opportunities', 'google-analytics-dashboard-for-wp' ),
|
1147 |
|
1148 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:51
|
1149 |
+
__( 'See Your Top Affiliate Links and Focus on what’s working', 'google-analytics-dashboard-for-wp' ),
|
1150 |
|
1151 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:55
|
1152 |
+
__( 'See Your Top Downloads and Improve Conversions', 'google-analytics-dashboard-for-wp' ),
|
1153 |
|
1154 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:59
|
1155 |
+
__( 'See Audience Demographic Report (Age / Gender / Interests)', 'google-analytics-dashboard-for-wp' ),
|
1156 |
|
1157 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:30
|
1158 |
+
__( 'Search Console Report', 'google-analytics-dashboard-for-wp' ),
|
1159 |
|
1160 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:32
|
1161 |
+
__( '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' ),
|
1162 |
|
1163 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:39
|
1164 |
+
__( 'See Your Top Google Search Terms and Optimize Content', 'google-analytics-dashboard-for-wp' ),
|
1165 |
|
1166 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:43
|
1167 |
+
__( 'See The Number of Clicks and Track Interests', 'google-analytics-dashboard-for-wp' ),
|
1168 |
|
1169 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:47
|
1170 |
+
__( 'See The Click-Through-Ratio and Improve SEO', 'google-analytics-dashboard-for-wp' ),
|
1171 |
|
1172 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:51
|
1173 |
+
__( 'See The Average Results Position and Focus on what works.', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1174 |
|
1175 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:30
|
1176 |
__( 'Ecommerce Report', 'google-analytics-dashboard-for-wp' ),
|
1209 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:66
|
1210 |
__( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
|
1211 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1212 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:30
|
1213 |
__( 'Custom Dimensions Report', 'google-analytics-dashboard-for-wp' ),
|
1214 |
|
1236 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:59
|
1237 |
__( 'Tag tracking to determine which topics are the most engaging to for your website visitors.', 'google-analytics-dashboard-for-wp' ),
|
1238 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1239 |
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:54
|
1240 |
__( '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' ),
|
1241 |
|
1258 |
// Reference: src/modules/addons/exactmetrics-addons-Lite.vue:85
|
1259 |
__( 'Refreshing Addons', 'google-analytics-dashboard-for-wp' ),
|
1260 |
|
1261 |
+
// Reference: src/modules/settings/components/input/SettingsInputSelect.vue:62
|
1262 |
+
__( 'No options available', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1263 |
|
1264 |
// Reference: src/modules/settings/components/input/SettingsInputNumber.vue:56
|
1265 |
__( 'Reset to default', 'google-analytics-dashboard-for-wp' ),
|
1266 |
|
1267 |
+
// Reference: src/modules/settings/components/input/SettingsInputText.vue:47
|
1268 |
+
__( 'The value entered does not match the required format', 'google-analytics-dashboard-for-wp' ),
|
|
|
1269 |
|
1270 |
+
// Reference: src/modules/widget/components/WidgetReportsLink.vue:17
|
1271 |
+
__( 'See All Reports', 'google-analytics-dashboard-for-wp' ),
|
|
|
1272 |
|
1273 |
+
// Reference: src/modules/widget/components/WidgetReportsLink.vue:18
|
1274 |
+
__( 'Go to the Analytics Dashboard', 'google-analytics-dashboard-for-wp' ),
|
|
|
1275 |
|
1276 |
+
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:171
|
1277 |
+
/* Translators: The name of the field that is throwing a validation error. */
|
1278 |
+
__( '%s can\'t be empty.', 'google-analytics-dashboard-for-wp' ),
|
1279 |
|
1280 |
+
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:192
|
1281 |
+
__( 'Duplicate values are not allowed.', 'google-analytics-dashboard-for-wp' ),
|
1282 |
|
1283 |
+
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:54
|
1284 |
+
__( 'You can add maximum 5 items.', 'google-analytics-dashboard-for-wp' ),
|
1285 |
|
1286 |
+
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:58
|
1287 |
+
__( 'At least 0 item required.', 'google-analytics-dashboard-for-wp' ),
|
1288 |
|
1289 |
+
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:63
|
1290 |
+
__( 'Add Another Link Path', 'google-analytics-dashboard-for-wp' ),
|
1291 |
|
1292 |
+
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:64
|
1293 |
+
__( 'Remove row', 'google-analytics-dashboard-for-wp' ),
|
1294 |
|
1295 |
+
// Reference: src/modules/widget/components/WidgetReminder.vue:33
|
1296 |
+
/* Translators: Number of visitors. */
|
1297 |
+
__( 'See how %s visitors found your site!', 'google-analytics-dashboard-for-wp' ),
|
1298 |
|
1299 |
+
// Reference: src/modules/widget/components/WidgetReminder.vue:35
|
1300 |
+
/* Translators: Number of visitors. */
|
1301 |
+
__( 'Your website was visited by %s users in the last 30 days.', 'google-analytics-dashboard-for-wp' ),
|
1302 |
|
1303 |
+
// Reference: src/modules/widget/components/WidgetReminder.vue:36
|
1304 |
+
__( 'See the full analytics report!', 'google-analytics-dashboard-for-wp' ),
|
1305 |
|
1306 |
+
// Reference: src/modules/settings/exactmetrics-site.vue:79
|
1307 |
+
__( 'Success! ', 'google-analytics-dashboard-for-wp' ),
|
1308 |
|
1309 |
+
// Reference: src/modules/settings/exactmetrics-site.vue:80
|
1310 |
+
__( 'You\'re now using ExactMetrics Pro with all the features.', 'google-analytics-dashboard-for-wp' ),
|
1311 |
|
1312 |
+
// Reference: src/modules/settings/exactmetrics-site.vue:82
|
1313 |
+
/* Translators: Placeholder gets replaced with an arrow icon. */
|
1314 |
+
__( 'Get Started %s', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1315 |
|
1316 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:17
|
1317 |
+
__( 'Help Us Improve', 'google-analytics-dashboard-for-wp' ),
|
1318 |
|
1319 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:18
|
1320 |
+
__( 'Help us better understand our users and their website needs.', 'google-analytics-dashboard-for-wp' ),
|
1321 |
|
1322 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:20
|
1323 |
+
/* Translators: Adds a link to the documentation. */
|
1324 |
+
__( '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' ),
|
1325 |
|
1326 |
+
// Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
|
1327 |
+
__( 'Show in widget mode', 'google-analytics-dashboard-for-wp' ),
|
1328 |
|
1329 |
+
// Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
|
1330 |
+
__( 'Show in full-width mode', 'google-analytics-dashboard-for-wp' ),
|
1331 |
|
1332 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:46
|
1333 |
__( 'Connect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
1334 |
|
1335 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:48
|
1336 |
+
__( 'Website profile', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
1337 |
|
1338 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:49
|
1339 |
+
__( 'Active profile', 'google-analytics-dashboard-for-wp' ),
|
1340 |
|
1341 |
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:60
|
1342 |
__( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-dashboard-for-wp' ),
|
1344 |
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:61
|
1345 |
__( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-dashboard-for-wp' ),
|
1346 |
|
1347 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:52
|
1348 |
+
__( 'Skip and Keep Connection', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
|
|
1349 |
|
1350 |
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:96
|
1351 |
__( 'Authenticating', 'google-analytics-dashboard-for-wp' ),
|
1352 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1353 |
// Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:68
|
1354 |
__( 'Show Overview Reports', 'google-analytics-dashboard-for-wp' ),
|
1355 |
|
1362 |
// Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:72
|
1363 |
__( 'Available in PRO version', 'google-analytics-dashboard-for-wp' ),
|
1364 |
|
1365 |
+
// Reference: src/modules/frontend/components/FrontendInfoboxChange.vue:29
|
1366 |
+
// Reference: src/modules/reports/components/ReportInfobox.vue:39
|
1367 |
+
/* Translators: Number of days. */
|
1368 |
+
__( 'vs. Previous Day', 'google-analytics-dashboard-for-wp' ),
|
1369 |
|
1370 |
+
// Reference: src/modules/frontend/components/FrontendInfoboxChange.vue:46
|
1371 |
+
// Reference: src/modules/reports/components/ReportInfobox.vue:56
|
1372 |
+
__( 'No change', 'google-analytics-dashboard-for-wp' ),
|
1373 |
|
1374 |
+
// Reference: src/modules/wizard-onboarding/api/index.js:18
|
1375 |
+
/* Translators: Error status and error text. */
|
1376 |
+
__( 'Can\'t load errors. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1377 |
+
|
1378 |
+
// Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:21
|
1379 |
+
/* Translators: Make text green. */
|
1380 |
+
__( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-dashboard-for-wp' ),
|
1381 |
|
1382 |
// Reference: src/modules/notifications/components/NotificationsIndicator.vue:19
|
1383 |
__( 'View notifications', 'google-analytics-dashboard-for-wp' ),
|
1384 |
|
1385 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:53
|
1386 |
+
__( 'Recommended Addons', 'google-analytics-dashboard-for-wp' ),
|
|
|
1387 |
|
1388 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:55
|
1389 |
+
/* Translators: Add a link to upgrade and make the text green. */
|
1390 |
+
__( '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' ),
|
1391 |
|
1392 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:57
|
1393 |
+
__( 'Upgrade to PRO Now', 'google-analytics-dashboard-for-wp' ),
|
|
|
1394 |
|
1395 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:61
|
1396 |
+
__( 'See who’s viewing and submitting your forms, so you can increase your conversion rate.', 'google-analytics-dashboard-for-wp' ),
|
1397 |
|
1398 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:49
|
1399 |
+
__( 'Ecommerce', 'google-analytics-dashboard-for-wp' ),
|
1400 |
|
1401 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:63
|
1402 |
+
__( 'See All Your Important Store Metrics in One Place.', 'google-analytics-dashboard-for-wp' ),
|
1403 |
|
1404 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:64
|
1405 |
+
__( '... and more:', 'google-analytics-dashboard-for-wp' ),
|
1406 |
|
1407 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:68
|
1408 |
+
__( 'Dimensions- Track authors, categories, trags, searches, users and more.', 'google-analytics-dashboard-for-wp' ),
|
1409 |
|
1410 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:72
|
1411 |
+
__( 'EU Compliance- Improve compliance with GDPR and other privacy regulations.', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
1412 |
|
1413 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:76
|
1414 |
+
__( 'AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages.', 'google-analytics-dashboard-for-wp' ),
|
1415 |
|
1416 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:80
|
1417 |
+
__( 'Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click.', 'google-analytics-dashboard-for-wp' ),
|
1418 |
+
|
1419 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:84
|
1420 |
+
__( 'eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores.', 'google-analytics-dashboard-for-wp' ),
|
1421 |
+
|
1422 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:88
|
1423 |
+
__( 'Google Optimize- Easily enable Google Optimize on your WordPress site.', 'google-analytics-dashboard-for-wp' ),
|
1424 |
+
|
1425 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:92
|
1426 |
+
__( 'Forms- Enable tracking of your form views, submissions and conversion rates.', 'google-analytics-dashboard-for-wp' ),
|
1427 |
+
|
1428 |
+
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:96
|
1429 |
+
__( 'Ads- See who’s clicking on your Google Adsense banner ads.', 'google-analytics-dashboard-for-wp' ),
|
1430 |
|
1431 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:30
|
1432 |
__( 'Forms Report', 'google-analytics-dashboard-for-wp' ),
|
1440 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:47
|
1441 |
__( 'See Your Forms Impressions Count to Find the Best Placement', 'google-analytics-dashboard-for-wp' ),
|
1442 |
|
1443 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:32
|
1444 |
+
__( 'Welcome to ExactMetrics!', 'google-analytics-dashboard-for-wp' ),
|
|
|
1445 |
|
1446 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:33
|
1447 |
+
__( 'Let\'s get you set up.', 'google-analytics-dashboard-for-wp' ),
|
1448 |
|
1449 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:35
|
1450 |
+
__( 'Which category best describes your website?', 'google-analytics-dashboard-for-wp' ),
|
1451 |
|
1452 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:36
|
1453 |
+
__( 'We will recommend the optimal settings for ExactMetrics based on your choice.', 'google-analytics-dashboard-for-wp' ),
|
1454 |
|
1455 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:40
|
1456 |
+
__( 'Business Website', 'google-analytics-dashboard-for-wp' ),
|
|
|
1457 |
|
1458 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:45
|
1459 |
+
/* Translators: Make text bold. */
|
1460 |
+
__( 'Publisher %1$s(Blog)%2$s', 'google-analytics-dashboard-for-wp' ),
|
1461 |
|
1462 |
+
// Reference: src/components/TheFloatingBar-Lite.vue:29
|
1463 |
+
/* Translators: Placeholders are used for making text bold and adding a link. */
|
1464 |
+
__( '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' ),
|
1465 |
|
1466 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:158
|
1467 |
+
__( 'Verifying Credentials', 'google-analytics-dashboard-for-wp' ),
|
1468 |
|
1469 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:175
|
1470 |
+
__( 'Your site is connected to ExactMetrics!', 'google-analytics-dashboard-for-wp' ),
|
1471 |
|
1472 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:197
|
1473 |
+
__( 'Deauthenticating', 'google-analytics-dashboard-for-wp' ),
|
1474 |
|
1475 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:217
|
1476 |
+
__( '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' ),
|
|
|
1477 |
|
1478 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:55
|
1479 |
+
__( 'Connect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
1480 |
|
1481 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:56
|
1482 |
+
__( 'Verify Credentials', 'google-analytics-dashboard-for-wp' ),
|
1483 |
|
1484 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:57
|
1485 |
+
__( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
1486 |
|
1487 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:58
|
1488 |
+
__( 'Website Profile', 'google-analytics-dashboard-for-wp' ),
|
1489 |
|
1490 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:59
|
1491 |
+
__( 'Active Profile', 'google-analytics-dashboard-for-wp' ),
|
1492 |
|
1493 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:70
|
1494 |
+
__( 'Force Deauthenticate', 'google-analytics-dashboard-for-wp' ),
|
|
|
1495 |
|
1496 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:70
|
1497 |
+
__( 'Disconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
1498 |
|
1499 |
+
// Reference: src/modules/widget/store/index.js:102
|
1500 |
+
__( 'Time to Purchase', 'google-analytics-dashboard-for-wp' ),
|
1501 |
|
1502 |
+
// Reference: src/modules/widget/store/index.js:103
|
1503 |
+
__( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-dashboard-for-wp' ),
|
1504 |
|
1505 |
+
// Reference: src/modules/widget/store/index.js:109
|
1506 |
+
__( 'Sessions to Purchase', 'google-analytics-dashboard-for-wp' ),
|
1507 |
|
1508 |
+
// Reference: src/modules/widget/store/index.js:110
|
1509 |
+
__( 'This list shows the number of sessions it took users before they purchased a product from your website.', 'google-analytics-dashboard-for-wp' ),
|
1510 |
|
1511 |
+
// Reference: src/modules/widget/store/index.js:41
|
1512 |
+
__( 'Top Landing Pages', 'google-analytics-dashboard-for-wp' ),
|
1513 |
|
1514 |
+
// Reference: src/modules/widget/store/index.js:42
|
1515 |
+
__( 'This list shows the top pages users first land on when visiting your website.', 'google-analytics-dashboard-for-wp' ),
|
|
|
1516 |
|
1517 |
+
// Reference: src/modules/widget/store/index.js:48
|
1518 |
+
__( 'Top Exit Pages', 'google-analytics-dashboard-for-wp' ),
|
1519 |
|
1520 |
+
// Reference: src/modules/widget/store/index.js:49
|
1521 |
+
__( 'This list shows the top pages users exit your website from.', 'google-analytics-dashboard-for-wp' ),
|
1522 |
|
1523 |
+
// Reference: src/modules/widget/store/index.js:55
|
1524 |
+
__( 'Top Outbound Links', 'google-analytics-dashboard-for-wp' ),
|
1525 |
|
1526 |
+
// Reference: src/modules/widget/store/index.js:56
|
1527 |
+
__( 'This list shows the top links clicked on your website that go to another website.', 'google-analytics-dashboard-for-wp' ),
|
1528 |
|
1529 |
+
// Reference: src/modules/widget/store/index.js:62
|
1530 |
+
__( 'Top Affiliate Links', 'google-analytics-dashboard-for-wp' ),
|
1531 |
|
1532 |
+
// Reference: src/modules/widget/store/index.js:63
|
1533 |
+
__( 'This list shows the top affiliate links your visitors clicked on.', 'google-analytics-dashboard-for-wp' ),
|
1534 |
|
1535 |
+
// Reference: src/modules/widget/store/index.js:69
|
1536 |
+
__( 'Top Download Links', 'google-analytics-dashboard-for-wp' ),
|
1537 |
|
1538 |
+
// Reference: src/modules/widget/store/index.js:70
|
1539 |
+
__( 'This list shows the download links your visitors clicked the most.', 'google-analytics-dashboard-for-wp' ),
|
|
|
1540 |
|
1541 |
+
// Reference: src/modules/widget/store/index.js:82
|
1542 |
+
__( 'Top Products', 'google-analytics-dashboard-for-wp' ),
|
1543 |
|
1544 |
+
// Reference: src/modules/widget/store/index.js:83
|
1545 |
+
__( 'This list shows the top selling products on your website.', 'google-analytics-dashboard-for-wp' ),
|
1546 |
|
1547 |
+
// Reference: src/modules/widget/store/index.js:89
|
1548 |
+
__( 'Top Conversion Sources', 'google-analytics-dashboard-for-wp' ),
|
|
|
1549 |
|
1550 |
+
// Reference: src/modules/widget/store/index.js:90
|
1551 |
+
__( 'This list shows the top referral websites in terms of product revenue.', 'google-analytics-dashboard-for-wp' ),
|
|
|
1552 |
|
1553 |
+
// Reference: src/modules/widget/store/index.js:96
|
1554 |
+
__( 'Total Add/Remove', 'google-analytics-dashboard-for-wp' ),
|
1555 |
|
1556 |
+
// Reference: src/modules/settings/routes/site.js:100
|
1557 |
+
__( 'Import Export', 'google-analytics-dashboard-for-wp' ),
|
|
|
1558 |
|
1559 |
+
// Reference: src/modules/settings/routes/site.js:108
|
1560 |
+
__( 'PrettyLinks Integration', 'google-analytics-dashboard-for-wp' ),
|
1561 |
|
1562 |
+
// Reference: src/modules/settings/routes/site.js:154
|
1563 |
+
__( 'Inline Popular Posts', 'google-analytics-dashboard-for-wp' ),
|
1564 |
|
1565 |
+
// Reference: src/modules/settings/routes/site.js:162
|
1566 |
+
__( 'Popular Posts Widget', 'google-analytics-dashboard-for-wp' ),
|
|
|
1567 |
|
1568 |
+
// Reference: src/modules/settings/routes/site.js:171
|
1569 |
+
__( 'Popular Products', 'google-analytics-dashboard-for-wp' ),
|
1570 |
|
1571 |
+
// Reference: src/modules/settings/routes/site.js:180
|
1572 |
+
__( 'Settings', 'google-analytics-dashboard-for-wp' ),
|
1573 |
|
1574 |
+
// Reference: src/modules/settings/routes/site.js:35
|
1575 |
+
__( 'General', 'google-analytics-dashboard-for-wp' ),
|
1576 |
|
1577 |
+
// Reference: src/modules/settings/routes/site.js:43
|
1578 |
+
__( 'Engagement', 'google-analytics-dashboard-for-wp' ),
|
1579 |
|
1580 |
+
// Reference: src/modules/settings/routes/site.js:59
|
1581 |
+
__( 'Publisher', 'google-analytics-dashboard-for-wp' ),
|
1582 |
|
1583 |
+
// Reference: src/modules/settings/routes/site.js:67
|
1584 |
+
__( 'Conversions', 'google-analytics-dashboard-for-wp' ),
|
1585 |
|
1586 |
+
// Reference: src/modules/settings/routes/site.js:75
|
1587 |
+
__( 'Advanced', 'google-analytics-dashboard-for-wp' ),
|
1588 |
|
1589 |
+
// Reference: src/modules/settings/routes/site.js:92
|
1590 |
+
__( 'URL Builder', 'google-analytics-dashboard-for-wp' ),
|
1591 |
|
1592 |
+
// Reference: src/modules/widget/components/WidgetNoticeCompact.vue:15
|
1593 |
+
__( 'Check out the newly added classic mode', 'google-analytics-dashboard-for-wp' ),
|
1594 |
|
1595 |
+
// Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:105
|
1596 |
+
__( 'Network Active', 'google-analytics-dashboard-for-wp' ),
|
1597 |
|
1598 |
+
// Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:105
|
1599 |
+
__( 'Active', 'google-analytics-dashboard-for-wp' ),
|
1600 |
|
1601 |
+
// Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:107
|
1602 |
+
__( 'Inactive', 'google-analytics-dashboard-for-wp' ),
|
1603 |
|
1604 |
+
// Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:45
|
1605 |
+
/* Translators: Placeholder for the addon status (installed, active, etc). */
|
1606 |
+
__( 'Status: %s', 'google-analytics-dashboard-for-wp' ),
|
1607 |
|
1608 |
+
// Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:99
|
1609 |
+
__( 'Not Installed', 'google-analytics-dashboard-for-wp' ),
|
1610 |
|
1611 |
+
// Reference: src/modules/reports/api/index.js:21
|
1612 |
+
/* Translators: Error status and error text. */
|
1613 |
+
__( 'Can\'t load report data. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1614 |
|
1615 |
+
// Reference: src/modules/reports/api/index.js:28
|
1616 |
+
__( 'Error loading report data', 'google-analytics-dashboard-for-wp' ),
|
1617 |
|
1618 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:29
|
1619 |
+
/* Translators: Makes text bold and adds smiley. */
|
1620 |
+
__( 'You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s', 'google-analytics-dashboard-for-wp' ),
|
1621 |
|
1622 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:31
|
1623 |
+
/* Translators: Makes text green. */
|
1624 |
+
__( 'As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
|
1625 |
|
1626 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:32
|
1627 |
+
__( 'Unlock All Features and Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
|
1628 |
|
1629 |
+
// Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewDatePicker-Lite.vue:50
|
1630 |
+
/* Translators: Placeholder adds a line break. */
|
1631 |
+
__( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-dashboard-for-wp' ),
|
1632 |
|
1633 |
+
// Reference: src/components/TheAppFTPForm.vue:100
|
1634 |
+
__( 'Proceed', 'google-analytics-dashboard-for-wp' ),
|
1635 |
|
1636 |
+
// Reference: src/components/TheAppFTPForm.vue:92
|
1637 |
+
__( 'Connection Information', 'google-analytics-dashboard-for-wp' ),
|
1638 |
|
1639 |
+
// Reference: src/components/TheAppFTPForm.vue:93
|
1640 |
+
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
1641 |
|
1642 |
+
// Reference: src/components/TheAppFTPForm.vue:94
|
1643 |
+
__( 'Hostname', 'google-analytics-dashboard-for-wp' ),
|
1644 |
|
1645 |
+
// Reference: src/components/TheAppFTPForm.vue:95
|
1646 |
+
__( 'FTP Username', 'google-analytics-dashboard-for-wp' ),
|
1647 |
|
1648 |
+
// Reference: src/components/TheAppFTPForm.vue:96
|
1649 |
+
__( 'FTP Password', 'google-analytics-dashboard-for-wp' ),
|
1650 |
|
1651 |
+
// Reference: src/components/TheAppFTPForm.vue:97
|
1652 |
+
__( 'This password will not be stored on the server.', 'google-analytics-dashboard-for-wp' ),
|
|
|
1653 |
|
1654 |
+
// Reference: src/components/TheAppFTPForm.vue:98
|
1655 |
+
__( 'Connection Type', 'google-analytics-dashboard-for-wp' ),
|
1656 |
|
1657 |
+
// Reference: src/components/TheAppFTPForm.vue:99
|
1658 |
+
__( 'Cancel', 'google-analytics-dashboard-for-wp' ),
|
1659 |
|
1660 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:65
|
1661 |
+
/* Translators: Line break. */
|
1662 |
+
__( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
|
1663 |
|
1664 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:68
|
1665 |
+
/* Translators: Line break. */
|
1666 |
+
__( 'Unique %s Pageviews', 'google-analytics-dashboard-for-wp' ),
|
1667 |
|
1668 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:72
|
1669 |
+
__( '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' ),
|
1670 |
|
1671 |
+
// Reference: src/modules/reports/components/exactmetrics-ReportsPdfExport-Lite.vue:42
|
1672 |
+
__( 'Export PDF Report', 'google-analytics-dashboard-for-wp' ),
|
1673 |
|
1674 |
+
// Reference: src/modules/reports/components/exactmetrics-ReportsPdfExport-Lite.vue:50
|
1675 |
+
__( 'You can export PDF reports only in the PRO version.', 'google-analytics-dashboard-for-wp' ),
|
1676 |
|
1677 |
+
// Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:32
|
1678 |
+
__( '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' ),
|
1679 |
|
1680 |
+
// Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:33
|
1681 |
+
__( 'To unlock more features consider upgrading to PRO.', 'google-analytics-dashboard-for-wp' ),
|
1682 |
|
1683 |
+
// Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:38
|
1684 |
+
__( 'Upgrade to', 'google-analytics-dashboard-for-wp' ),
|
1685 |
|
1686 |
+
// Reference: src/modules/reports/store/actions.js:132
|
1687 |
+
__( 'Installing Addon', 'google-analytics-dashboard-for-wp' ),
|
1688 |
|
1689 |
+
// Reference: src/modules/reports/store/actions.js:155
|
1690 |
+
__( 'Activating Addon', 'google-analytics-dashboard-for-wp' ),
|
1691 |
|
1692 |
+
// Reference: src/modules/reports/store/actions.js:170
|
1693 |
+
__( 'Addon Activated', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
1694 |
|
1695 |
+
// Reference: src/modules/reports/store/actions.js:171
|
1696 |
+
__( 'Loading report data', 'google-analytics-dashboard-for-wp' ),
|
1697 |
|
1698 |
+
// Reference: src/modules/reports/store/actions.js:188
|
1699 |
+
__( 'Please activate manually', 'google-analytics-dashboard-for-wp' ),
|
|
|
1700 |
|
1701 |
+
// Reference: src/modules/reports/store/actions.js:191
|
1702 |
+
/* Translators: Adds the error status and status text. */
|
1703 |
+
__( 'Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1704 |
|
1705 |
+
// Reference: src/modules/reports/store/actions.js:197
|
1706 |
+
__( 'Error Activating Addon', 'google-analytics-dashboard-for-wp' ),
|
1707 |
|
1708 |
+
// Reference: src/modules/reports/store/actions.js:203
|
1709 |
+
__( 'View Addons', 'google-analytics-dashboard-for-wp' ),
|
1710 |
|
1711 |
+
// Reference: src/modules/reports/store/actions.js:211
|
1712 |
+
__( 'Redirecting', 'google-analytics-dashboard-for-wp' ),
|
1713 |
|
1714 |
+
// Reference: src/modules/reports/store/actions.js:212
|
1715 |
+
__( 'Please wait', 'google-analytics-dashboard-for-wp' ),
|
1716 |
|
1717 |
+
// Reference: src/modules/reports/store/actions.js:52
|
1718 |
+
__( 'activate', 'google-analytics-dashboard-for-wp' ),
|
1719 |
|
1720 |
+
// Reference: src/modules/reports/store/actions.js:52
|
1721 |
+
__( 'install', 'google-analytics-dashboard-for-wp' ),
|
1722 |
|
1723 |
+
// Reference: src/modules/reports/store/actions.js:56
|
1724 |
+
__( 'Visit addons page', 'google-analytics-dashboard-for-wp' ),
|
1725 |
|
1726 |
+
// Reference: src/modules/reports/store/actions.js:64
|
1727 |
+
__( 'Report Unavailable', 'google-analytics-dashboard-for-wp' ),
|
1728 |
|
1729 |
+
// Reference: src/modules/reports/store/actions.js:71
|
1730 |
+
/* Translators: Install/Activate the addon. */
|
1731 |
+
__( '%s Addon', 'google-analytics-dashboard-for-wp' ),
|
1732 |
|
1733 |
+
// Reference: src/modules/reports/store/actions.js:90
|
1734 |
+
__( 'Go Back To Reports', 'google-analytics-dashboard-for-wp' ),
|
1735 |
|
1736 |
+
// Reference: src/modules/reports/store/actions.js:91
|
1737 |
+
__( 'Enable Enhanced eCommerce', 'google-analytics-dashboard-for-wp' ),
|
1738 |
|
1739 |
+
// Reference: src/modules/widget/components/settings/exactmetrics-WidgetSettingsCompact.vue:16
|
1740 |
+
__( 'Classic mode', 'google-analytics-dashboard-for-wp' ),
|
1741 |
|
1742 |
+
// Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:14
|
1743 |
+
__( 'Hide dashboard widget', 'google-analytics-dashboard-for-wp' ),
|
1744 |
|
1745 |
+
// Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:31
|
1746 |
+
__( 'Are you sure you want to hide the ExactMetrics Dashboard Widget? ', 'google-analytics-dashboard-for-wp' ),
|
1747 |
|
1748 |
+
// Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:33
|
1749 |
+
__( 'Yes, hide it!', 'google-analytics-dashboard-for-wp' ),
|
|
|
1750 |
|
1751 |
+
// Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:34
|
1752 |
+
__( 'No, cancel!', 'google-analytics-dashboard-for-wp' ),
|
1753 |
|
1754 |
+
// Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:40
|
1755 |
+
__( 'ExactMetrics Widget Hidden', 'google-analytics-dashboard-for-wp' ),
|
1756 |
|
1757 |
+
// Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:41
|
1758 |
+
__( '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' ),
|
1759 |
|
1760 |
+
// Reference: src/modules/reports/components/exactmetrics-ReportsPagination.vue:25
|
1761 |
+
__( 'Show', 'google-analytics-dashboard-for-wp' ),
|
1762 |
|
1763 |
+
// Reference: src/modules/reports/components/exactmetrics-ReportsPagination.vue:27
|
1764 |
+
/* Translators: The number of results. */
|
1765 |
+
__( '%s results', 'google-analytics-dashboard-for-wp' ),
|
1766 |
|
1767 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:30
|
1768 |
/* Translators: Make text green and add smiley face. */
|
1775 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:35
|
1776 |
__( 'Unlock PRO Features Now', 'google-analytics-dashboard-for-wp' ),
|
1777 |
|
1778 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:36
|
1779 |
+
__( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
|
1780 |
+
|
1781 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:37
|
1782 |
+
__( 'Verify', 'google-analytics-dashboard-for-wp' ),
|
1783 |
+
|
1784 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:39
|
1785 |
/* Translators: Add link to retrieve license from account area. */
|
1786 |
__( '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' ),
|
1787 |
|
1788 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:69
|
1789 |
+
__( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
|
1790 |
|
1791 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:64
|
1792 |
+
__( 'Affiliate Links', 'google-analytics-dashboard-for-wp' ),
|
1793 |
|
1794 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:66
|
1795 |
+
/* Translators: Add links to documentation. */
|
1796 |
+
__( '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' ),
|
1797 |
|
1798 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:67
|
1799 |
+
__( 'Our affiliate link tracking works by setting path for internal links to track as outbound links.', 'google-analytics-dashboard-for-wp' ),
|
1800 |
|
1801 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:69
|
1802 |
+
__( 'Headline Analyzer', 'google-analytics-dashboard-for-wp' ),
|
|
|
1803 |
|
1804 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:70
|
1805 |
+
__( 'The ExactMetrics Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results.', 'google-analytics-dashboard-for-wp' ),
|
1806 |
|
1807 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:71
|
1808 |
+
__( 'Disable the Headline Analyzer', 'google-analytics-dashboard-for-wp' ),
|
|
|
1809 |
|
1810 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:102
|
1811 |
+
__( 'Cross Domain Tracking', 'google-analytics-dashboard-for-wp' ),
|
1812 |
|
1813 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:104
|
1814 |
+
/* Translators: Add links to documentation. */
|
1815 |
+
__( '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' ),
|
1816 |
|
1817 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:65
|
1818 |
+
__( 'Demographics', 'google-analytics-dashboard-for-wp' ),
|
1819 |
|
1820 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:66
|
1821 |
+
__( 'Enable Demographics and Interests Reports for Remarketing and Advertising', 'google-analytics-dashboard-for-wp' ),
|
|
|
1822 |
|
1823 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:67
|
1824 |
+
__( 'Anonymize IP Addresses', 'google-analytics-dashboard-for-wp' ),
|
1825 |
|
1826 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:68
|
1827 |
+
__( 'Link Attribution', 'google-analytics-dashboard-for-wp' ),
|
1828 |
|
1829 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:69
|
1830 |
+
__( 'Enable Enhanced Link Attribution', 'google-analytics-dashboard-for-wp' ),
|
1831 |
|
1832 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:70
|
1833 |
+
__( 'Enable Anchor Tracking', 'google-analytics-dashboard-for-wp' ),
|
1834 |
|
1835 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:71
|
1836 |
+
__( 'Enable allowAnchor', 'google-analytics-dashboard-for-wp' ),
|
1837 |
|
1838 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:72
|
1839 |
+
__( 'Enable allowLinker', 'google-analytics-dashboard-for-wp' ),
|
1840 |
|
1841 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:73
|
1842 |
+
__( 'Enable Tag Links in RSS', 'google-analytics-dashboard-for-wp' ),
|
1843 |
|
1844 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:74
|
1845 |
+
__( 'File Downloads', 'google-analytics-dashboard-for-wp' ),
|
|
|
1846 |
|
1847 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:75
|
1848 |
+
__( 'Extensions of Files to Track as Downloads', 'google-analytics-dashboard-for-wp' ),
|
|
|
1849 |
|
1850 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:76
|
1851 |
+
__( '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' ),
|
|
|
1852 |
|
1853 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:78
|
1854 |
+
/* Translators: Add links to documentation. */
|
1855 |
+
__( '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' ),
|
1856 |
|
1857 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:80
|
1858 |
+
/* Translators: Add links to documentation. */
|
1859 |
+
__( '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' ),
|
1860 |
|
1861 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:82
|
1862 |
+
/* Translators: Add links to documentation. */
|
1863 |
+
__( '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' ),
|
1864 |
|
1865 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:83
|
1866 |
+
__( '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' ),
|
1867 |
|
1868 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:85
|
1869 |
+
/* Translators: Add links to documentation. */
|
1870 |
+
__( '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' ),
|
1871 |
|
1872 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:87
|
1873 |
+
/* Translators: Add links to documentation. */
|
1874 |
+
__( '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' ),
|
1875 |
|
1876 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:89
|
1877 |
+
/* Translators: Add links to documentation. */
|
1878 |
+
__( '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' ),
|
1879 |
|
1880 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:90
|
1881 |
+
__( 'Add domain', 'google-analytics-dashboard-for-wp' ),
|
|
|
1882 |
|
1883 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:95
|
1884 |
+
/* Translators: Domain name example. */
|
1885 |
+
__( 'Domain (example: %s)', 'google-analytics-dashboard-for-wp' ),
|
1886 |
|
1887 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:98
|
1888 |
+
/* Translators: Current domain name that should not be used. */
|
1889 |
+
__( 'Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s ).', 'google-analytics-dashboard-for-wp' ),
|
1890 |
|
1891 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:101
|
1892 |
+
/* Translators: Adds a link to the Google reference. */
|
1893 |
+
__( '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' ),
|
1894 |
+
|
1895 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:102
|
1896 |
+
__( 'Reports', 'google-analytics-dashboard-for-wp' ),
|
1897 |
+
|
1898 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:117
|
1899 |
+
__( 'Automatic Updates', 'google-analytics-dashboard-for-wp' ),
|
1900 |
+
|
1901 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:104
|
1902 |
+
__( 'You must have the "unfiltered_html" capability to view/edit this setting.', 'google-analytics-dashboard-for-wp' ),
|
1903 |
+
|
1904 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:105
|
1905 |
+
__( 'Hide Admin Bar Reports', 'google-analytics-dashboard-for-wp' ),
|
1906 |
+
|
1907 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:110
|
1908 |
+
/* Translators: placeholders make text small. */
|
1909 |
+
__( 'Enabled %1$s- Show reports and dashboard widget.%2$s', 'google-analytics-dashboard-for-wp' ),
|
1910 |
+
|
1911 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:115
|
1912 |
+
/* Translators: placeholders make text small. */
|
1913 |
+
__( 'Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s', 'google-analytics-dashboard-for-wp' ),
|
1914 |
+
|
1915 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:120
|
1916 |
+
/* Translators: placeholders make text small. */
|
1917 |
+
__( 'Disabled %1$s- Hide reports and dashboard widget.%2$s', 'google-analytics-dashboard-for-wp' ),
|
1918 |
+
|
1919 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:127
|
1920 |
+
/* Translators: placeholders make text small. */
|
1921 |
+
__( 'Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s', 'google-analytics-dashboard-for-wp' ),
|
1922 |
+
|
1923 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:132
|
1924 |
+
/* Translators: placeholders make text small. */
|
1925 |
+
__( 'Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s', 'google-analytics-dashboard-for-wp' ),
|
1926 |
+
|
1927 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:137
|
1928 |
+
/* Translators: placeholders make text small. */
|
1929 |
+
__( 'None %1$s- Manually update everything.%2$s', 'google-analytics-dashboard-for-wp' ),
|
1930 |
+
|
1931 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:185
|
1932 |
+
/* Translators: Adds a link to the general settings tab. */
|
1933 |
+
__( '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' ),
|
1934 |
+
|
1935 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:87
|
1936 |
+
__( 'Permissions', 'google-analytics-dashboard-for-wp' ),
|
1937 |
+
|
1938 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:88
|
1939 |
+
__( 'Email Summaries', 'google-analytics-dashboard-for-wp' ),
|
1940 |
+
|
1941 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:89
|
1942 |
+
__( 'Export PDF Reports', 'google-analytics-dashboard-for-wp' ),
|
1943 |
+
|
1944 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:90
|
1945 |
+
__( 'Allow These User Roles to See Reports', 'google-analytics-dashboard-for-wp' ),
|
1946 |
+
|
1947 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:91
|
1948 |
+
__( 'Users that have at least one of these roles will be able to view the reports.', 'google-analytics-dashboard-for-wp' ),
|
1949 |
+
|
1950 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:93
|
1951 |
+
__( 'Allow These User Roles to Save Settings', 'google-analytics-dashboard-for-wp' ),
|
1952 |
+
|
1953 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:94
|
1954 |
+
__( 'Users that have at least one of these roles will be able to view and save the settings panel.', 'google-analytics-dashboard-for-wp' ),
|
1955 |
+
|
1956 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:95
|
1957 |
+
__( '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' ),
|
1958 |
+
|
1959 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:96
|
1960 |
+
__( 'Exclude These User Roles From Tracking', 'google-analytics-dashboard-for-wp' ),
|
1961 |
+
|
1962 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:98
|
1963 |
+
__( 'Users that have at least one of these roles will not be tracked into Google Analytics.', 'google-analytics-dashboard-for-wp' ),
|
1964 |
+
|
1965 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:99
|
1966 |
+
__( 'Custom code', 'google-analytics-dashboard-for-wp' ),
|
1967 |
+
|
1968 |
+
// Reference: src/modules/addons/components/AddonButton.vue:31
|
1969 |
+
__( 'Activating...', 'google-analytics-dashboard-for-wp' ),
|
1970 |
+
|
1971 |
+
// Reference: src/modules/addons/components/AddonButton.vue:35
|
1972 |
+
__( 'Deactivating...', 'google-analytics-dashboard-for-wp' ),
|
1973 |
+
|
1974 |
+
// Reference: src/modules/addons/components/AddonButton.vue:43
|
1975 |
+
__( 'Deactivate', 'google-analytics-dashboard-for-wp' ),
|
1976 |
+
|
1977 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:101
|
1978 |
+
__( 'File imported', 'google-analytics-dashboard-for-wp' ),
|
1979 |
+
|
1980 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:102
|
1981 |
+
__( 'Settings successfully updated!', 'google-analytics-dashboard-for-wp' ),
|
1982 |
+
|
1983 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:108
|
1984 |
+
__( 'Error importing settings', 'google-analytics-dashboard-for-wp' ),
|
1985 |
+
|
1986 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:109
|
1987 |
+
__( 'Please choose a .json file generated by a ExactMetrics settings export.', 'google-analytics-dashboard-for-wp' ),
|
1988 |
+
|
1989 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:54
|
1990 |
+
__( 'Import/Export', 'google-analytics-dashboard-for-wp' ),
|
1991 |
+
|
1992 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:55
|
1993 |
+
__( 'Import', 'google-analytics-dashboard-for-wp' ),
|
1994 |
+
|
1995 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:56
|
1996 |
+
__( 'Import settings from another ExactMetrics website.', 'google-analytics-dashboard-for-wp' ),
|
1997 |
+
|
1998 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:57
|
1999 |
+
__( 'Export', 'google-analytics-dashboard-for-wp' ),
|
2000 |
+
|
2001 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:58
|
2002 |
+
__( 'Export settings to import into another ExactMetrics install.', 'google-analytics-dashboard-for-wp' ),
|
2003 |
+
|
2004 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:59
|
2005 |
+
__( 'Import Settings', 'google-analytics-dashboard-for-wp' ),
|
2006 |
+
|
2007 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:60
|
2008 |
+
__( 'Export Settings', 'google-analytics-dashboard-for-wp' ),
|
2009 |
+
|
2010 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:61
|
2011 |
+
__( 'Please choose a file to import', 'google-analytics-dashboard-for-wp' ),
|
2012 |
+
|
2013 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:62
|
2014 |
+
__( 'Use the filepicker below to select the settings export file from another site.', 'google-analytics-dashboard-for-wp' ),
|
2015 |
+
|
2016 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:63
|
2017 |
+
__( 'Use the button below to export a file with your ExactMetrics settings.', 'google-analytics-dashboard-for-wp' ),
|
2018 |
+
|
2019 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:64
|
2020 |
+
__( 'Choose file', 'google-analytics-dashboard-for-wp' ),
|
2021 |
+
|
2022 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:71
|
2023 |
+
__( 'No file chosen', 'google-analytics-dashboard-for-wp' ),
|
2024 |
+
|
2025 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:86
|
2026 |
+
__( 'Uploading file...', 'google-analytics-dashboard-for-wp' ),
|
2027 |
+
|
2028 |
+
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:45
|
2029 |
+
__( 'Caching', 'google-analytics-dashboard-for-wp' ),
|
2030 |
+
|
2031 |
+
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:46
|
2032 |
+
__( 'Enable Data Caching', 'google-analytics-dashboard-for-wp' ),
|
2033 |
+
|
2034 |
+
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:47
|
2035 |
+
__( 'Refresh Cache Every', 'google-analytics-dashboard-for-wp' ),
|
2036 |
+
|
2037 |
+
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:48
|
2038 |
+
__( 'Choose how often to refresh the cache.', 'google-analytics-dashboard-for-wp' ),
|
2039 |
+
|
2040 |
+
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:49
|
2041 |
+
__( 'Enable Ajaxify', 'google-analytics-dashboard-for-wp' ),
|
2042 |
+
|
2043 |
+
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:50
|
2044 |
+
__( 'Ajaxify Widget', 'google-analytics-dashboard-for-wp' ),
|
2045 |
+
|
2046 |
+
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:51
|
2047 |
+
__( 'Use to bypass page caching.', 'google-analytics-dashboard-for-wp' ),
|
2048 |
+
|
2049 |
+
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:52
|
2050 |
+
__( 'Empty Cache', 'google-analytics-dashboard-for-wp' ),
|
2051 |
+
|
2052 |
+
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:54
|
2053 |
+
__( 'Click to manually wipe the cache right now.', 'google-analytics-dashboard-for-wp' ),
|
2054 |
+
|
2055 |
+
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:88
|
2056 |
+
__( 'Popular posts cache emptied', 'google-analytics-dashboard-for-wp' ),
|
2057 |
+
|
2058 |
+
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:92
|
2059 |
+
__( 'Error emptying the popular posts cache. Please try again.', 'google-analytics-dashboard-for-wp' ),
|
2060 |
+
|
2061 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:83
|
2062 |
+
__( 'Make your ExactMetrics campaign links prettier with Pretty Links!', 'google-analytics-dashboard-for-wp' ),
|
2063 |
+
|
2064 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:84
|
2065 |
+
__( 'Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links.', 'google-analytics-dashboard-for-wp' ),
|
2066 |
+
|
2067 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:85
|
2068 |
+
__( 'Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!', 'google-analytics-dashboard-for-wp' ),
|
2069 |
+
|
2070 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:86
|
2071 |
+
__( 'Over 200,000 websites use Pretty Links!', 'google-analytics-dashboard-for-wp' ),
|
2072 |
+
|
2073 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:87
|
2074 |
+
__( 'Install Pretty Links', 'google-analytics-dashboard-for-wp' ),
|
2075 |
+
|
2076 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:88
|
2077 |
+
__( 'Pretty Links Installed & Activated', 'google-analytics-dashboard-for-wp' ),
|
2078 |
+
|
2079 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:89
|
2080 |
+
__( 'Download Pretty Links', 'google-analytics-dashboard-for-wp' ),
|
2081 |
+
|
2082 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:90
|
2083 |
+
__( 'Install Pretty Links from the WordPress.org plugin repository.', 'google-analytics-dashboard-for-wp' ),
|
2084 |
+
|
2085 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:91
|
2086 |
+
__( 'Activate Pretty Links', 'google-analytics-dashboard-for-wp' ),
|
2087 |
+
|
2088 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:92
|
2089 |
+
__( 'Activating Pretty Links...', 'google-analytics-dashboard-for-wp' ),
|
2090 |
+
|
2091 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:93
|
2092 |
+
__( 'Create New Pretty Link', 'google-analytics-dashboard-for-wp' ),
|
2093 |
+
|
2094 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:94
|
2095 |
+
__( 'Create a New Pretty Link', 'google-analytics-dashboard-for-wp' ),
|
2096 |
+
|
2097 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:95
|
2098 |
+
__( 'Grab your campaign link and paste it into the Target URL field.', 'google-analytics-dashboard-for-wp' ),
|
2099 |
+
|
2100 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:105
|
2101 |
+
__( 'Choose Theme', 'google-analytics-dashboard-for-wp' ),
|
2102 |
+
|
2103 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:106
|
2104 |
+
__( 'Behavior', 'google-analytics-dashboard-for-wp' ),
|
2105 |
+
|
2106 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:107
|
2107 |
+
__( 'Widget Styling', 'google-analytics-dashboard-for-wp' ),
|
2108 |
+
|
2109 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:108
|
2110 |
+
__( 'Choose how you want to determine the colors, font sizes and spacing of the widget.', 'google-analytics-dashboard-for-wp' ),
|
2111 |
+
|
2112 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:109
|
2113 |
+
__( 'Sort By', 'google-analytics-dashboard-for-wp' ),
|
2114 |
+
|
2115 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:110
|
2116 |
+
__( 'Choose how you\'d like the widget to determine your popular posts.', 'google-analytics-dashboard-for-wp' ),
|
2117 |
+
|
2118 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:111
|
2119 |
+
__( 'Placement', 'google-analytics-dashboard-for-wp' ),
|
2120 |
+
|
2121 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:112
|
2122 |
+
__( 'Choose how you\'d like to place the widget.', 'google-analytics-dashboard-for-wp' ),
|
2123 |
+
|
2124 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:113
|
2125 |
+
__( 'Insert After', 'google-analytics-dashboard-for-wp' ),
|
2126 |
+
|
2127 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:114
|
2128 |
+
__( 'Choose where in the post body the widget will be placed.', 'google-analytics-dashboard-for-wp' ),
|
2129 |
+
|
2130 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:115
|
2131 |
+
__( 'Include in Post Types', 'google-analytics-dashboard-for-wp' ),
|
2132 |
+
|
2133 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:116
|
2134 |
+
__( 'Exclude from specific posts', 'google-analytics-dashboard-for-wp' ),
|
2135 |
+
|
2136 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:118
|
2137 |
+
/* Translators: Placeholders make the text bold. */
|
2138 |
+
__( 'Choose which Post Types the widget %1$sWILL%2$s be placed.', 'google-analytics-dashboard-for-wp' ),
|
2139 |
+
|
2140 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:120
|
2141 |
+
/* Translators: Placeholders make the text bold. */
|
2142 |
+
__( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-dashboard-for-wp' ),
|
2143 |
+
|
2144 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:136
|
2145 |
+
__( 'Customize Design', 'google-analytics-dashboard-for-wp' ),
|
2146 |
+
|
2147 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:122
|
2148 |
+
__( 'Loading Themes', 'google-analytics-dashboard-for-wp' ),
|
2149 |
+
|
2150 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
|
2151 |
+
__( 'words', 'google-analytics-dashboard-for-wp' ),
|
2152 |
+
|
2153 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:124
|
2154 |
+
__( 'Please select at least one post to display.', 'google-analytics-dashboard-for-wp' ),
|
2155 |
+
|
2156 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:129
|
2157 |
+
/* Translators: placeholders make text small. */
|
2158 |
+
__( 'Default Styles %1$s- As seen above.%2$s', 'google-analytics-dashboard-for-wp' ),
|
2159 |
+
|
2160 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:134
|
2161 |
+
/* Translators: placeholders make text small. */
|
2162 |
+
__( 'No Styles %1$s- Use your own CSS.%2$s', 'google-analytics-dashboard-for-wp' ),
|
2163 |
+
|
2164 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:141
|
2165 |
+
/* Translators: placeholders make text small. */
|
2166 |
+
__( 'Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s', 'google-analytics-dashboard-for-wp' ),
|
2167 |
+
|
2168 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:146
|
2169 |
+
/* Translators: placeholders make text small. */
|
2170 |
+
__( 'SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s', 'google-analytics-dashboard-for-wp' ),
|
2171 |
+
|
2172 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:151
|
2173 |
+
/* Translators: placeholders make text small. */
|
2174 |
+
__( 'Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s', 'google-analytics-dashboard-for-wp' ),
|
2175 |
+
|
2176 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:158
|
2177 |
+
/* Translators: placeholders make text small. */
|
2178 |
+
__( 'Automatic %1$s- The widget is automatically placed inside the post body.%2$s', 'google-analytics-dashboard-for-wp' ),
|
2179 |
+
|
2180 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:163
|
2181 |
+
/* Translators: placeholders make text small. */
|
2182 |
+
__( 'Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s', 'google-analytics-dashboard-for-wp' ),
|
2183 |
+
|
2184 |
+
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:106
|
2185 |
+
__( 'Display Title', 'google-analytics-dashboard-for-wp' ),
|
2186 |
+
|
2187 |
+
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:107
|
2188 |
+
__( 'Widget Title', 'google-analytics-dashboard-for-wp' ),
|
2189 |
+
|
2190 |
+
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:108
|
2191 |
+
__( 'Title your widget and set it’s display preferences.', 'google-analytics-dashboard-for-wp' ),
|
2192 |
+
|
2193 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:161
|
2194 |
+
__( 'Custom Campaign Parameters', 'google-analytics-dashboard-for-wp' ),
|
2195 |
+
|
2196 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:162
|
2197 |
+
__( 'The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns.', 'google-analytics-dashboard-for-wp' ),
|
2198 |
+
|
2199 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:163
|
2200 |
+
__( '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' ),
|
2201 |
+
|
2202 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:165
|
2203 |
+
/* Translators: Marks the field as required. */
|
2204 |
+
__( 'Website URL %s', 'google-analytics-dashboard-for-wp' ),
|
2205 |
|
2206 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:167
|
2207 |
+
/* Translators: Display the current website url in italic. */
|
2208 |
+
__( 'The full website URL (e.g. %1$s %2$s%3$s)', 'google-analytics-dashboard-for-wp' ),
|
2209 |
|
2210 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:169
|
2211 |
+
/* Translators: Marks the field as required. */
|
2212 |
+
__( 'Campaign Source %s', 'google-analytics-dashboard-for-wp' ),
|
2213 |
|
2214 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:171
|
2215 |
+
/* Translators: Make the text italic. */
|
2216 |
+
__( 'Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)', 'google-analytics-dashboard-for-wp' ),
|
2217 |
|
2218 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:174
|
2219 |
+
/* Translators: Make the text italic. */
|
2220 |
+
__( 'Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)', 'google-analytics-dashboard-for-wp' ),
|
2221 |
|
2222 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:177
|
2223 |
+
/* Translators: Make the text italic. */
|
2224 |
+
__( 'Enter a name to easily identify (e.g. %1$sspring_sale%2$s)', 'google-analytics-dashboard-for-wp' ),
|
2225 |
|
2226 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:179
|
2227 |
+
__( 'Enter the paid keyword', 'google-analytics-dashboard-for-wp' ),
|
2228 |
|
2229 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:181
|
2230 |
+
__( 'Enter something to differentiate ads', 'google-analytics-dashboard-for-wp' ),
|
2231 |
|
2232 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:182
|
2233 |
+
__( 'Use Fragment', 'google-analytics-dashboard-for-wp' ),
|
2234 |
|
2235 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:184
|
2236 |
+
/* Translators: Make the text bold. */
|
2237 |
+
__( 'Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s', 'google-analytics-dashboard-for-wp' ),
|
2238 |
|
2239 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:185
|
2240 |
+
__( 'URL to use', 'google-analytics-dashboard-for-wp' ),
|
2241 |
|
2242 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:186
|
2243 |
+
__( '(Updates automatically)', 'google-analytics-dashboard-for-wp' ),
|
2244 |
|
2245 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:187
|
2246 |
+
__( 'Copy to Clipboard', 'google-analytics-dashboard-for-wp' ),
|
2247 |
|
2248 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:188
|
2249 |
+
__( 'Copy to Pretty Links', 'google-analytics-dashboard-for-wp' ),
|
2250 |
|
2251 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:189
|
2252 |
+
__( 'Make your campaign links prettier!', 'google-analytics-dashboard-for-wp' ),
|
2253 |
|
2254 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:190
|
2255 |
+
__( 'Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links.', 'google-analytics-dashboard-for-wp' ),
|
2256 |
|
2257 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:192
|
2258 |
+
__( 'More Information & Examples', 'google-analytics-dashboard-for-wp' ),
|
|
|
2259 |
|
2260 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:193
|
2261 |
+
__( 'The following table gives a detailed explanation and example of each of the campaign parameters.', 'google-analytics-dashboard-for-wp' ),
|
|
|
2262 |
|
2263 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:201
|
2264 |
+
__( 'Campaign Source', 'google-analytics-dashboard-for-wp' ),
|
2265 |
|
2266 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:202
|
2267 |
+
__( 'Required. Use utm_source to identify a search engine, newsletter name, or other source.', 'google-analytics-dashboard-for-wp' ),
|
2268 |
|
2269 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:203
|
2270 |
+
__( 'Campaign Medium', 'google-analytics-dashboard-for-wp' ),
|
2271 |
|
2272 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:204
|
2273 |
+
__( 'Use utm_medium to identify a medium such as email or cost-per-click.', 'google-analytics-dashboard-for-wp' ),
|
2274 |
|
2275 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:205
|
2276 |
+
__( 'Campaign Name', 'google-analytics-dashboard-for-wp' ),
|
2277 |
|
2278 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:206
|
2279 |
+
__( 'Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign.', 'google-analytics-dashboard-for-wp' ),
|
2280 |
|
2281 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:207
|
2282 |
+
__( 'Campaign Term', 'google-analytics-dashboard-for-wp' ),
|
2283 |
|
2284 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:208
|
2285 |
+
__( 'Used for paid search. Use utm_term to note the keywords for this ad.', 'google-analytics-dashboard-for-wp' ),
|
2286 |
|
2287 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:209
|
2288 |
+
__( 'Campaign Content', 'google-analytics-dashboard-for-wp' ),
|
2289 |
|
2290 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:210
|
2291 |
+
__( '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' ),
|
2292 |
|
2293 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:212
|
2294 |
+
/* Translators: Example. */
|
2295 |
+
__( 'Example: %s', 'google-analytics-dashboard-for-wp' ),
|
2296 |
+
|
2297 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:214
|
2298 |
+
/* Translators: Examples. */
|
2299 |
+
__( 'Examples: %s', 'google-analytics-dashboard-for-wp' ),
|
2300 |
+
|
2301 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:217
|
2302 |
+
__( 'About Campaigns', 'google-analytics-dashboard-for-wp' ),
|
2303 |
+
|
2304 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:221
|
2305 |
+
__( 'About Custom Campaigns', 'google-analytics-dashboard-for-wp' ),
|
2306 |
+
|
2307 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:225
|
2308 |
+
__( 'Best Practices for Creating Custom Campaigns', 'google-analytics-dashboard-for-wp' ),
|
2309 |
+
|
2310 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:229
|
2311 |
+
__( 'About the Referral Traffic Report', 'google-analytics-dashboard-for-wp' ),
|
2312 |
+
|
2313 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:233
|
2314 |
+
__( 'About Traffic Source Dimensions', 'google-analytics-dashboard-for-wp' ),
|
2315 |
+
|
2316 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:237
|
2317 |
+
__( 'AdWords Auto-Tagging', 'google-analytics-dashboard-for-wp' ),
|
2318 |
+
|
2319 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:241
|
2320 |
+
__( 'Additional Information', 'google-analytics-dashboard-for-wp' ),
|
2321 |
+
|
2322 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:45
|
2323 |
+
__( 'Unlock Form Tracking', 'google-analytics-dashboard-for-wp' ),
|
2324 |
+
|
2325 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:46
|
2326 |
+
__( 'See who\'s viewing and submitting your forms, so you can increase your conversion rate.', 'google-analytics-dashboard-for-wp' ),
|
2327 |
+
|
2328 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:48
|
2329 |
+
__( 'Use Google Optimize to retarget your website visitors and perform A/B split tests with ease.', 'google-analytics-dashboard-for-wp' ),
|
2330 |
+
|
2331 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:50
|
2332 |
+
__( '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' ),
|
2333 |
+
|
2334 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:30
|
2335 |
+
/* Translators: Add line break. */
|
2336 |
+
__( 'See All Your Important Store%s Metrics in One Place', 'google-analytics-dashboard-for-wp' ),
|
2337 |
+
|
2338 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:31
|
2339 |
+
__( 'Get an Answer to All Your Top Ecommerce Questions From a Single Report', 'google-analytics-dashboard-for-wp' ),
|
2340 |
+
|
2341 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:58
|
2342 |
+
__( 'See your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
|
2343 |
+
|
2344 |
+
// Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:19
|
2345 |
+
__( 'This feature requires ExactMetrics Pro', 'google-analytics-dashboard-for-wp' ),
|
2346 |
+
|
2347 |
+
// Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:20
|
2348 |
+
__( 'By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more.', 'google-analytics-dashboard-for-wp' ),
|
2349 |
+
|
2350 |
+
// Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:21
|
2351 |
+
__( 'Upgrade to Pro and Unlock Popular Products', 'google-analytics-dashboard-for-wp' ),
|
2352 |
+
|
2353 |
+
// Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:22
|
2354 |
+
__( 'View all Pro features', 'google-analytics-dashboard-for-wp' ),
|
2355 |
+
|
2356 |
+
// Reference: src/modules/settings/components/input/SettingsInputNumber.vue:58
|
2357 |
+
/* Translators: Minimum and maximum number that can be used. */
|
2358 |
+
__( 'Please enter a value between %1$s and %2$s', 'google-analytics-dashboard-for-wp' ),
|
2359 |
+
|
2360 |
+
// Reference: src/modules/settings/components/input/SettingsInputNumber.vue:60
|
2361 |
+
/* Translators: The minimum set value. */
|
2362 |
+
__( 'Please enter a value higher than %s', 'google-analytics-dashboard-for-wp' ),
|
2363 |
+
|
2364 |
+
// Reference: src/modules/settings/components/input/SettingsInputNumber.vue:62
|
2365 |
+
/* Translators: The maximum set value. */
|
2366 |
+
__( 'Please enter a value lower than %s', 'google-analytics-dashboard-for-wp' ),
|
2367 |
+
|
2368 |
+
// Reference: src/modules/settings/components/input/SettingsInputNumber.vue:63
|
2369 |
+
__( 'Please enter a number', 'google-analytics-dashboard-for-wp' ),
|
2370 |
+
|
2371 |
+
// Reference: src/modules/settings/components/input/SettingsInputNumber.vue:64
|
2372 |
+
__( 'Value has to be a round number', 'google-analytics-dashboard-for-wp' ),
|
2373 |
+
|
2374 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:14
|
2375 |
+
__( 'Days', 'google-analytics-dashboard-for-wp' ),
|
2376 |
+
|
2377 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:19
|
2378 |
+
/* Translators: placeholders make text small. */
|
2379 |
+
__( '7 days', 'google-analytics-dashboard-for-wp' ),
|
2380 |
+
|
2381 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:23
|
2382 |
+
__( '30 days', 'google-analytics-dashboard-for-wp' ),
|
2383 |
+
|
2384 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:28
|
2385 |
+
__( 'Custom', 'google-analytics-dashboard-for-wp' ),
|
2386 |
+
|
2387 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:48
|
2388 |
+
__( 'Add Top 5 Posts from Google Analytics', 'google-analytics-dashboard-for-wp' ),
|
2389 |
+
|
2390 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:29
|
2391 |
+
__( 'Pro version is required', 'google-analytics-dashboard-for-wp' ),
|
2392 |
+
|
2393 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:53
|
2394 |
+
__( 'Automated + Curated', 'google-analytics-dashboard-for-wp' ),
|
2395 |
+
|
2396 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:32
|
2397 |
+
/* Translators: Placeholder adds a link to the Custom Dimensions settings. */
|
2398 |
+
__( 'Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using Custom Dimensions (Pro version required. %1$sUpgrade now%2$s).', 'google-analytics-dashboard-for-wp' ),
|
2399 |
+
|
2400 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:31
|
2401 |
+
__( 'SharedCount API Key', 'google-analytics-dashboard-for-wp' ),
|
2402 |
+
|
2403 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:32
|
2404 |
+
__( 'Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing.', 'google-analytics-dashboard-for-wp' ),
|
2405 |
+
|
2406 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:33
|
2407 |
+
__( 'Start Indexing', 'google-analytics-dashboard-for-wp' ),
|
2408 |
+
|
2409 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:37
|
2410 |
+
__( '%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing.', 'google-analytics-dashboard-for-wp' ),
|
2411 |
+
|
2412 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:38
|
2413 |
+
__( 'Indexing completed, counts will update automatically every day.', 'google-analytics-dashboard-for-wp' ),
|
2414 |
+
|
2415 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePicker.vue:70
|
2416 |
+
/* Translators: Page number of total pages. 1 & 2 make the first part of the text bold. */
|
2417 |
+
__( '%1$sPage %3$s%2$s of %4$s', 'google-analytics-dashboard-for-wp' ),
|
2418 |
+
|
2419 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:45
|
2420 |
+
__( 'Select posts/search', 'google-analytics-dashboard-for-wp' ),
|
2421 |
+
|
2422 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:55
|
2423 |
+
__( 'Oops! No posts found.', 'google-analytics-dashboard-for-wp' ),
|
2424 |
+
|
2425 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:56
|
2426 |
+
__( 'Search by post title', 'google-analytics-dashboard-for-wp' ),
|
2427 |
+
|
2428 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:92
|
2429 |
+
__( 'Can\'t load posts.', 'google-analytics-dashboard-for-wp' ),
|
2430 |
+
|
2431 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:21
|
2432 |
+
__( 'Multiple Entries', 'google-analytics-dashboard-for-wp' ),
|
2433 |
|
2434 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:22
|
2435 |
+
__( 'Total Number of Widgets to Show', 'google-analytics-dashboard-for-wp' ),
|
2436 |
|
2437 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:23
|
2438 |
+
__( 'Choose how many widgets will be placed in a single Post.', 'google-analytics-dashboard-for-wp' ),
|
2439 |
|
2440 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:24
|
2441 |
+
__( 'Minimum Distance Between Widgets', 'google-analytics-dashboard-for-wp' ),
|
2442 |
|
2443 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:25
|
2444 |
+
__( 'Choose the distance between widgets.', 'google-analytics-dashboard-for-wp' ),
|
2445 |
|
2446 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:26
|
2447 |
+
__( 'Minimum Word Count to Display Multiple Widgets', 'google-analytics-dashboard-for-wp' ),
|
2448 |
|
2449 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:27
|
2450 |
+
__( 'Choose the minimum word count for a Post to have multiple entries.', 'google-analytics-dashboard-for-wp' ),
|
2451 |
|
2452 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:46
|
2453 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:60
|
2454 |
+
__( 'Theme Preview', 'google-analytics-dashboard-for-wp' ),
|
2455 |
|
2456 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:47
|
2457 |
+
__( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-dashboard-for-wp' ),
|
2458 |
|
2459 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:48
|
2460 |
+
__( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-dashboard-for-wp' ),
|
2461 |
|
2462 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:138
|
2463 |
+
__( 'Color', 'google-analytics-dashboard-for-wp' ),
|
2464 |
|
2465 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:139
|
2466 |
+
__( 'Size', 'google-analytics-dashboard-for-wp' ),
|
2467 |
|
2468 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:137
|
2469 |
+
__( 'Title', 'google-analytics-dashboard-for-wp' ),
|
2470 |
|
2471 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:142
|
2472 |
+
__( 'Label', 'google-analytics-dashboard-for-wp' ),
|
2473 |
|
2474 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:143
|
2475 |
+
__( 'Background', 'google-analytics-dashboard-for-wp' ),
|
2476 |
|
2477 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:140
|
2478 |
+
__( 'Border', 'google-analytics-dashboard-for-wp' ),
|
2479 |
|
2480 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:55
|
2481 |
+
__( 'Icon', 'google-analytics-dashboard-for-wp' ),
|
2482 |
|
2483 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:107
|
2484 |
+
__( 'Popular Posts data can be fetched correctly', 'google-analytics-dashboard-for-wp' ),
|
2485 |
|
2486 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:108
|
2487 |
+
__( 'Please note: depending on when you set up the Custom Dimensions settings, it may take up to 7 days to see relevant Popular Posts data loading from Google Analytics.', 'google-analytics-dashboard-for-wp' ),
|
2488 |
|
2489 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:112
|
2490 |
+
__( 'Close', 'google-analytics-dashboard-for-wp' ),
|
2491 |
|
2492 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49
|
2493 |
+
__( 'In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both ExactMetrics and Google Analytics settings. Please use the button below to confirm your configuration is correct.', 'google-analytics-dashboard-for-wp' ),
|
2494 |
|
2495 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:50
|
2496 |
+
__( 'Test Automated Posts', 'google-analytics-dashboard-for-wp' ),
|
2497 |
|
2498 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:52
|
2499 |
+
/* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
|
2500 |
+
__( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-dashboard-for-wp' ),
|
2501 |
|
2502 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
|
2503 |
+
/* Translators: Placeholder adds a link to the Custom Dimensions settings. */
|
2504 |
+
__( 'Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using %1$sCustom Dimensions%2$s. Also requires Sort By - Curated to be selected. Setup steps can be found in our %3$sknowledge base%4$s.', 'google-analytics-dashboard-for-wp' ),
|
2505 |
|
2506 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:57
|
2507 |
+
/* Translators: Placeholder gets replaced with current license version. */
|
2508 |
+
__( 'Pro version is required. Your current license level is: %s', 'google-analytics-dashboard-for-wp' ),
|
2509 |
|
2510 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:95
|
2511 |
+
__( 'Verifying Popular Posts data', 'google-analytics-dashboard-for-wp' ),
|
2512 |
|
2513 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetCategory-Lite.vue:24
|
2514 |
__( 'Only Show Posts from These Categories', 'google-analytics-dashboard-for-wp' ),
|
2555 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:62
|
2556 |
__( 'Narrow', 'google-analytics-dashboard-for-wp' ),
|
2557 |
|
2558 |
+
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAds-Lite.vue:25
|
2559 |
+
__( 'Ads Tracking', 'google-analytics-dashboard-for-wp' ),
|
|
|
2560 |
|
2561 |
+
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAds-Lite.vue:26
|
2562 |
+
__( 'Add Ads tracking to see who\'s clicking on your Google Ads, so you can increase your revenue.', 'google-analytics-dashboard-for-wp' ),
|
2563 |
|
2564 |
+
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputFbia-Lite.vue:25
|
2565 |
+
__( 'Facebook Instant Articles', 'google-analytics-dashboard-for-wp' ),
|
2566 |
|
2567 |
+
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputFbia-Lite.vue:26
|
2568 |
+
__( 'Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro.', 'google-analytics-dashboard-for-wp' ),
|
2569 |
|
2570 |
+
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAmp-Lite.vue:25
|
2571 |
+
__( 'Google AMP', 'google-analytics-dashboard-for-wp' ),
|
2572 |
|
2573 |
+
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAmp-Lite.vue:26
|
2574 |
+
__( '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' ),
|
2575 |
|
2576 |
+
// Reference: src/modules/settings/components/SettingsAddonUpgrade.vue:37
|
2577 |
+
__( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
|
|
|
2578 |
|
2579 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputEmailSummaries-Lite.vue:17
|
2580 |
+
__( 'Our email summaries feature sends a weekly summary of the most important site analytics information.', 'google-analytics-dashboard-for-wp' ),
|
|
|
2581 |
|
2582 |
+
// Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputEUCompliance-Lite.vue:22
|
2583 |
+
__( 'The EU Compliance addon allows you to improve compliance with GDPR
|
2584 |
+
and other privacy regulations.', 'google-analytics-dashboard-for-wp' ),
|
2585 |
|
2586 |
+
// Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputEUCompliance-Lite.vue:23
|
2587 |
+
__( 'EU Compliance', 'google-analytics-dashboard-for-wp' ),
|
2588 |
|
2589 |
+
// Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputScroll-Lite.vue:20
|
2590 |
+
__( 'Scroll Tracking', 'google-analytics-dashboard-for-wp' ),
|
|
|
2591 |
|
2592 |
+
// Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputScroll-Lite.vue:21
|
2593 |
+
__( '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' ),
|
2594 |
|
2595 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPerformance-Lite.vue:21
|
2596 |
+
__( 'Performance', 'google-analytics-dashboard-for-wp' ),
|
|
|
2597 |
|
2598 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPerformance-Lite.vue:22
|
2599 |
+
__( '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' ),
|
2600 |
|
2601 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:36
|
2602 |
+
__( 'Usage Tracking', 'google-analytics-dashboard-for-wp' ),
|
2603 |
|
2604 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:37
|
2605 |
+
__( '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' ),
|
2606 |
|
2607 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:38
|
2608 |
+
__( 'Allow usage tracking', 'google-analytics-dashboard-for-wp' ),
|
2609 |
|
2610 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:40
|
2611 |
/* Translators: Adds a link to the documentation. */
|
2612 |
+
__( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2613 |
|
2614 |
+
// Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:23
|
2615 |
+
__( 'Unlock with %s', 'google-analytics-dashboard-for-wp' ),
|
2616 |
|
2617 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:101
|
2618 |
__( 'Automatic Placement', 'google-analytics-dashboard-for-wp' ),
|
2626 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:104
|
2627 |
__( 'All Embed Options can be used in conjunction with one another.', 'google-analytics-dashboard-for-wp' ),
|
2628 |
|
2629 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:77
|
2630 |
+
__( 'Using the Gutenberg Block', 'google-analytics-dashboard-for-wp' ),
|
2631 |
+
|
2632 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:106
|
2633 |
__( 'Using Automatic Embed', 'google-analytics-dashboard-for-wp' ),
|
2634 |
|
2644 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:111
|
2645 |
__( '%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg', 'google-analytics-dashboard-for-wp' ),
|
2646 |
|
2647 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:83
|
2648 |
+
__( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-dashboard-for-wp' ),
|
2649 |
+
|
2650 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:114
|
2651 |
__( '%1$sStep 2%2$s - Search for “Popular Posts”.', 'google-analytics-dashboard-for-wp' ),
|
2652 |
|
2653 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:85
|
2654 |
+
__( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-dashboard-for-wp' ),
|
2655 |
+
|
2656 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:118
|
2657 |
__( '%1$sStep 1%2$s - Navigate to your Appearance > Widgets page using the menu on the left side your screen. Must be logged in as Admin.', 'google-analytics-dashboard-for-wp' ),
|
2658 |
|
2665 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:122
|
2666 |
__( 'Display using a Shortcode', 'google-analytics-dashboard-for-wp' ),
|
2667 |
|
2668 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:88
|
2669 |
+
__( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-dashboard-for-wp' ),
|
2670 |
+
|
2671 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:89
|
2672 |
+
__( 'Copy Shortcode', 'google-analytics-dashboard-for-wp' ),
|
2673 |
+
|
2674 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:125
|
2675 |
__( '%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode', 'google-analytics-dashboard-for-wp' ),
|
2676 |
|
2686 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:129
|
2687 |
__( 'Watch Video - How to Add the Popular Posts widget using Widgets', 'google-analytics-dashboard-for-wp' ),
|
2688 |
|
2689 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:109
|
2690 |
+
/* Translators: Adds link to the account area to retreive license key. */
|
2691 |
+
__( 'Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
|
2692 |
|
2693 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:122
|
2694 |
+
__( 'Connect ExactMetrics to Start Tracking Your Data', 'google-analytics-dashboard-for-wp' ),
|
2695 |
|
2696 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:132
|
2697 |
+
__( 'Complete Upgrade', 'google-analytics-dashboard-for-wp' ),
|
2698 |
|
2699 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:133
|
2700 |
+
__( 'Upgrade to Pro Version!', 'google-analytics-dashboard-for-wp' ),
|
2701 |
|
2702 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:135
|
2703 |
+
/* Translators: Make text bold. */
|
2704 |
+
__( '%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process.', 'google-analytics-dashboard-for-wp' ),
|
2705 |
|
2706 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:75
|
2707 |
+
__( 'Display Method', 'google-analytics-dashboard-for-wp' ),
|
2708 |
|
2709 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:76
|
2710 |
+
__( 'There are two ways to manual include the widget in your posts.', 'google-analytics-dashboard-for-wp' ),
|
|
|
2711 |
|
2712 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:78
|
2713 |
+
__( 'Using the Shortcode', 'google-analytics-dashboard-for-wp' ),
|
|
|
2714 |
|
2715 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:79
|
2716 |
+
__( 'Learn how to insert the widget using Gutenberg blocks.', 'google-analytics-dashboard-for-wp' ),
|
2717 |
+
|
2718 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:80
|
2719 |
+
__( 'Learn how to insert the widget using out Shortcode.', 'google-analytics-dashboard-for-wp' ),
|
2720 |
+
|
2721 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:81
|
2722 |
+
__( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg', 'google-analytics-dashboard-for-wp' ),
|
2723 |
+
|
2724 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:84
|
2725 |
+
__( '%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”.', 'google-analytics-dashboard-for-wp' ),
|
2726 |
+
|
2727 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87
|
2728 |
+
__( 'Shortcode', 'google-analytics-dashboard-for-wp' ),
|
2729 |
+
|
2730 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
|
2731 |
+
__( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode', 'google-analytics-dashboard-for-wp' ),
|
2732 |
+
|
2733 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPdfReports-Lite.vue:17
|
2734 |
+
__( 'Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone.', 'google-analytics-dashboard-for-wp' )
|
2735 |
);
|
2736 |
/* THIS IS THE END OF THE GENERATED FILE */
|
lite/includes/popular-posts/class-popular-posts-inline.php
CHANGED
@@ -219,9 +219,9 @@ class ExactMetrics_Popular_Posts_Inline extends ExactMetrics_Popular_Posts {
|
|
219 |
foreach ( $words as $index => $word ) {
|
220 |
$count ++;
|
221 |
if ( $count > $after_count ) {
|
222 |
-
$p_index =
|
223 |
// Make sure the paragraph tag is not wrapped in another element like a blockquote.
|
224 |
-
if ( false !== $p_index && false ===
|
225 |
$words[ $index ] = substr_replace( $word, $this->shortcode_output( array() ), $p_index + 4, 0 );
|
226 |
$this->posts = array();
|
227 |
break;
|
219 |
foreach ( $words as $index => $word ) {
|
220 |
$count ++;
|
221 |
if ( $count > $after_count ) {
|
222 |
+
$p_index = strpos( $word, '</p>' );
|
223 |
// Make sure the paragraph tag is not wrapped in another element like a blockquote.
|
224 |
+
if ( false !== $p_index && false === strpos( $word, '</p></' ) ) {
|
225 |
$words[ $index ] = substr_replace( $word, $this->shortcode_output( array() ), $p_index + 4, 0 );
|
226 |
$this->posts = array();
|
227 |
break;
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.wpbeginner.com/wpbeginner-needs-your-help/
|
|
4 |
Tags: analytics,google analytics,google analytics dashboard,google analytics plugin,google analytics widget,gtag
|
5 |
Requires at least: 3.8.0
|
6 |
Tested up to: 5.5
|
7 |
-
Stable tag: 6.3.
|
8 |
Requires PHP: 5.2
|
9 |
License: GPL v3
|
10 |
|
@@ -156,6 +156,10 @@ You can translate Google Analytics Dashboard for WP by ExactMetrics on [translat
|
|
156 |
4. Want more features? <a href="https://www.exactmetrics.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Purchase ExactMetrics Pro</a>!
|
157 |
|
158 |
== Changelog ==
|
|
|
|
|
|
|
|
|
159 |
= 6.3.0: November 3, 2020 =
|
160 |
- New: Brand new Popular Posts feature to showcase your best posts using Gutenberg Blocks, Sidebar Widgets or directly in the post content. You can choose from multiple themes and customise styles individually.
|
161 |
- New: Contextual Insights - get smart tips based on your analytics data directly in your ExactMetrics dashboard.
|
4 |
Tags: analytics,google analytics,google analytics dashboard,google analytics plugin,google analytics widget,gtag
|
5 |
Requires at least: 3.8.0
|
6 |
Tested up to: 5.5
|
7 |
+
Stable tag: 6.3.2
|
8 |
Requires PHP: 5.2
|
9 |
License: GPL v3
|
10 |
|
156 |
4. Want more features? <a href="https://www.exactmetrics.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Purchase ExactMetrics Pro</a>!
|
157 |
|
158 |
== Changelog ==
|
159 |
+
= 6.3.2: November 24, 2020 =
|
160 |
+
- Tweak: We improved performance by tweaking some of the contextual insights using report data.
|
161 |
+
- Fix: Automatic inserting of the inline popular posts widget was not working as expected for sites using languages with multi-byte characters.
|
162 |
+
|
163 |
= 6.3.0: November 3, 2020 =
|
164 |
- New: Brand new Popular Posts feature to showcase your best posts using Gutenberg Blocks, Sidebar Widgets or directly in the post content. You can choose from multiple themes and customise styles individually.
|
165 |
- New: Contextual Insights - get smart tips based on your analytics data directly in your ExactMetrics dashboard.
|