Version Description
Download this release
Release Info
Developer | chriscct7 |
Plugin | Google Analytics Dashboard for WP (GADWP) |
Version | 6.2.1 |
Comparing to | |
See all releases |
Code changes from version 6.2.0 to 6.2.1
- gadwp.php +2 -2
- includes/admin/ajax.php +2 -4
- includes/admin/licensing/autoupdate.php +1 -1
- includes/admin/licensing/plugin-upgrader-legacy.php +571 -0
- includes/admin/licensing/plugin-upgrader.php +3 -1
- includes/admin/licensing/skin-legacy.php +116 -0
- includes/admin/licensing/skin.php +1 -1
- includes/admin/routes.php +1 -3
- includes/helpers.php +30 -0
- languages/google-analytics-dashboard-for-wp.pot +730 -728
- languages/vue.php +85 -107
- lite/includes/admin/connect.php +1 -2
- lite/includes/admin/onboarding-wizard.php +1 -3
- readme.txt +5 -2
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.2.
|
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.2.
|
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.2.1
|
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.2.1';
|
48 |
|
49 |
/**
|
50 |
* Plugin file.
|
includes/admin/ajax.php
CHANGED
@@ -90,9 +90,7 @@ function exactmetrics_ajax_install_addon() {
|
|
90 |
}
|
91 |
|
92 |
// We do not need any extra credentials if we have gotten this far, so let's install the plugin.
|
93 |
-
|
94 |
-
$base = ExactMetrics();
|
95 |
-
require_once plugin_dir_path( $base->file ) . '/includes/admin/licensing/skin.php';
|
96 |
|
97 |
// Create the plugin upgrader with our custom skin.
|
98 |
$installer = new Plugin_Upgrader( $skin = new ExactMetrics_Skin() );
|
@@ -206,4 +204,4 @@ function exactmetrics_ajax_dismiss_notice() {
|
|
206 |
wp_die();
|
207 |
|
208 |
}
|
209 |
-
add_action( 'wp_ajax_exactmetrics_ajax_dismiss_notice', 'exactmetrics_ajax_dismiss_notice' );
|
90 |
}
|
91 |
|
92 |
// We do not need any extra credentials if we have gotten this far, so let's install the plugin.
|
93 |
+
exactmetrics_require_upgrader( false );
|
|
|
|
|
94 |
|
95 |
// Create the plugin upgrader with our custom skin.
|
96 |
$installer = new Plugin_Upgrader( $skin = new ExactMetrics_Skin() );
|
204 |
wp_die();
|
205 |
|
206 |
}
|
207 |
+
add_action( 'wp_ajax_exactmetrics_ajax_dismiss_notice', 'exactmetrics_ajax_dismiss_notice' );
|
includes/admin/licensing/autoupdate.php
CHANGED
@@ -39,7 +39,7 @@ function exactmetrics_is_plugin_our_addon( $plugin_file ) {
|
|
39 |
function exactmetrics_modify_wordpress_autoupdater_setting( $html, $plugin_file, $plugin_data ) {
|
40 |
$is_pro = exactmetrics_is_pro_version();
|
41 |
$is_addon = exactmetrics_is_plugin_our_addon( $plugin_file );
|
42 |
-
$is_main_free = 'google-analytics-dashboard-for-wp' === $plugin_data['slug'];
|
43 |
$is_main_pro = $is_pro && plugin_basename( EXACTMETRICS_PLUGIN_FILE ) === $plugin_file;
|
44 |
$has_permission = current_user_can( 'exactmetrics_save_settings' );
|
45 |
|
39 |
function exactmetrics_modify_wordpress_autoupdater_setting( $html, $plugin_file, $plugin_data ) {
|
40 |
$is_pro = exactmetrics_is_pro_version();
|
41 |
$is_addon = exactmetrics_is_plugin_our_addon( $plugin_file );
|
42 |
+
$is_main_free = isset( $plugin_data['slug'] ) && 'google-analytics-dashboard-for-wp' === $plugin_data['slug'];
|
43 |
$is_main_pro = $is_pro && plugin_basename( EXACTMETRICS_PLUGIN_FILE ) === $plugin_file;
|
44 |
$has_permission = current_user_can( 'exactmetrics_save_settings' );
|
45 |
|
includes/admin/licensing/plugin-upgrader-legacy.php
ADDED
@@ -0,0 +1,571 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/** WP_Upgrader class */
|
4 |
+
require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
|
5 |
+
|
6 |
+
/** Plugin_Upgrader class */
|
7 |
+
require_once ABSPATH . 'wp-admin/includes/class-plugin-upgrader.php';
|
8 |
+
|
9 |
+
|
10 |
+
/**
|
11 |
+
* In WP 5.3 a PHP 5.6 splat operator (...$args) was added to WP_Upgrader_Skin::feedback().
|
12 |
+
* We need to remove all calls to *Skin::feedback() method, as we can't override it in own Skins
|
13 |
+
* without breaking support for PHP 5.3-5.5.
|
14 |
+
*
|
15 |
+
* @internal Please do not use this class outside of core ExactMetrics development. May be removed at any time.
|
16 |
+
*
|
17 |
+
* @since 7.10.6
|
18 |
+
*/
|
19 |
+
class ExactMetrics_Plugin_Upgrader extends Plugin_Upgrader {
|
20 |
+
|
21 |
+
/**
|
22 |
+
* Run an upgrade/installation.
|
23 |
+
*
|
24 |
+
* Attempt to download the package (if it is not a local file), unpack it, and
|
25 |
+
* install it in the destination folder.
|
26 |
+
*
|
27 |
+
* @since 1.5.6.1
|
28 |
+
*
|
29 |
+
* @param array $options {
|
30 |
+
* Array or string of arguments for upgrading/installing a package.
|
31 |
+
*
|
32 |
+
* @type string $package The full path or URI of the package to install.
|
33 |
+
* Default empty.
|
34 |
+
* @type string $destination The full path to the destination folder.
|
35 |
+
* Default empty.
|
36 |
+
* @type bool $clear_destination Whether to delete any files already in the
|
37 |
+
* destination folder. Default false.
|
38 |
+
* @type bool $clear_working Whether to delete the files form the working
|
39 |
+
* directory after copying to the destination.
|
40 |
+
* Default false.
|
41 |
+
* @type bool $abort_if_destination_exists Whether to abort the installation if the destination
|
42 |
+
* folder already exists. When true, `$clear_destination`
|
43 |
+
* should be false. Default true.
|
44 |
+
* @type bool $is_multi Whether this run is one of multiple upgrade/installation
|
45 |
+
* actions being performed in bulk. When true, the skin
|
46 |
+
* WP_Upgrader::header() and WP_Upgrader::footer()
|
47 |
+
* aren't called. Default false.
|
48 |
+
* @type array $hook_extra Extra arguments to pass to the filter hooks called by
|
49 |
+
* WP_Upgrader::run().
|
50 |
+
* }
|
51 |
+
* @return array|false|WP_error The result from self::install_package() on success, otherwise a WP_Error,
|
52 |
+
* or false if unable to connect to the filesystem.
|
53 |
+
*/
|
54 |
+
public function run( $options ) {
|
55 |
+
|
56 |
+
$defaults = array(
|
57 |
+
'package' => '', // Please always pass this.
|
58 |
+
'destination' => '', // And this
|
59 |
+
'clear_destination' => false,
|
60 |
+
'abort_if_destination_exists' => true, // Abort if the Destination directory exists, Pass clear_destination as false please
|
61 |
+
'clear_working' => true,
|
62 |
+
'is_multi' => false,
|
63 |
+
'hook_extra' => array(), // Pass any extra $hook_extra args here, this will be passed to any hooked filters.
|
64 |
+
);
|
65 |
+
|
66 |
+
$options = wp_parse_args( $options, $defaults );
|
67 |
+
|
68 |
+
/**
|
69 |
+
* Filter the package options before running an update.
|
70 |
+
*
|
71 |
+
* See also {@see 'upgrader_process_complete'}.
|
72 |
+
*
|
73 |
+
* @since 4.3.0
|
74 |
+
*
|
75 |
+
* @param array $options {
|
76 |
+
* Options used by the upgrader.
|
77 |
+
*
|
78 |
+
* @type string $package Package for update.
|
79 |
+
* @type string $destination Update location.
|
80 |
+
* @type bool $clear_destination Clear the destination resource.
|
81 |
+
* @type bool $clear_working Clear the working resource.
|
82 |
+
* @type bool $abort_if_destination_exists Abort if the Destination directory exists.
|
83 |
+
* @type bool $is_multi Whether the upgrader is running multiple times.
|
84 |
+
* @type array $hook_extra {
|
85 |
+
* Extra hook arguments.
|
86 |
+
*
|
87 |
+
* @type string $action Type of action. Default 'update'.
|
88 |
+
* @type string $type Type of update process. Accepts 'plugin', 'theme', or 'core'.
|
89 |
+
* @type bool $bulk Whether the update process is a bulk update. Default true.
|
90 |
+
* @type string $plugin Path to the plugin file relative to the plugins directory.
|
91 |
+
* @type string $theme The stylesheet or template name of the theme.
|
92 |
+
* @type string $language_update_type The language pack update type. Accepts 'plugin', 'theme',
|
93 |
+
* or 'core'.
|
94 |
+
* @type object $language_update The language pack update offer.
|
95 |
+
* }
|
96 |
+
* }
|
97 |
+
*/
|
98 |
+
$options = apply_filters( 'upgrader_package_options', $options );
|
99 |
+
|
100 |
+
if ( ! $options['is_multi'] ) { // call $this->header separately if running multiple times
|
101 |
+
$this->skin->header();
|
102 |
+
}
|
103 |
+
|
104 |
+
// Connect to the Filesystem first.
|
105 |
+
$res = $this->fs_connect( array( WP_CONTENT_DIR, $options['destination'] ) );
|
106 |
+
// Mainly for non-connected filesystem.
|
107 |
+
if ( ! $res ) {
|
108 |
+
if ( ! $options['is_multi'] ) {
|
109 |
+
$this->skin->footer();
|
110 |
+
}
|
111 |
+
return false;
|
112 |
+
}
|
113 |
+
|
114 |
+
$this->skin->before();
|
115 |
+
|
116 |
+
if ( is_wp_error( $res ) ) {
|
117 |
+
$this->skin->error( $res );
|
118 |
+
$this->skin->after();
|
119 |
+
if ( ! $options['is_multi'] ) {
|
120 |
+
$this->skin->footer();
|
121 |
+
}
|
122 |
+
return $res;
|
123 |
+
}
|
124 |
+
|
125 |
+
/*
|
126 |
+
* Download the package (Note, This just returns the filename
|
127 |
+
* of the file if the package is a local file)
|
128 |
+
*/
|
129 |
+
$download = $this->download_package( $options['package'], true );
|
130 |
+
|
131 |
+
// Allow for signature soft-fail.
|
132 |
+
// WARNING: This may be removed in the future.
|
133 |
+
if ( is_wp_error( $download ) && $download->get_error_data( 'softfail-filename' ) ) {
|
134 |
+
|
135 |
+
// Don't output the 'no signature could be found' failure message for now.
|
136 |
+
if ( 'signature_verification_no_signature' != $download->get_error_code() || WP_DEBUG ) {
|
137 |
+
// Outout the failure error as a normal feedback, and not as an error:
|
138 |
+
//$this->skin->feedback( $download->get_error_message() );
|
139 |
+
|
140 |
+
// Report this failure back to WordPress.org for debugging purposes.
|
141 |
+
wp_version_check(
|
142 |
+
array(
|
143 |
+
'signature_failure_code' => $download->get_error_code(),
|
144 |
+
'signature_failure_data' => $download->get_error_data(),
|
145 |
+
)
|
146 |
+
);
|
147 |
+
}
|
148 |
+
|
149 |
+
// Pretend this error didn't happen.
|
150 |
+
$download = $download->get_error_data( 'softfail-filename' );
|
151 |
+
}
|
152 |
+
|
153 |
+
if ( is_wp_error( $download ) ) {
|
154 |
+
$this->skin->error( $download );
|
155 |
+
$this->skin->after();
|
156 |
+
if ( ! $options['is_multi'] ) {
|
157 |
+
$this->skin->footer();
|
158 |
+
}
|
159 |
+
return $download;
|
160 |
+
}
|
161 |
+
|
162 |
+
$delete_package = ( $download != $options['package'] ); // Do not delete a "local" file
|
163 |
+
|
164 |
+
// Unzips the file into a temporary directory.
|
165 |
+
$working_dir = $this->unpack_package( $download, $delete_package );
|
166 |
+
if ( is_wp_error( $working_dir ) ) {
|
167 |
+
$this->skin->error( $working_dir );
|
168 |
+
$this->skin->after();
|
169 |
+
if ( ! $options['is_multi'] ) {
|
170 |
+
$this->skin->footer();
|
171 |
+
}
|
172 |
+
return $working_dir;
|
173 |
+
}
|
174 |
+
|
175 |
+
// With the given options, this installs it to the destination directory.
|
176 |
+
$result = $this->install_package(
|
177 |
+
array(
|
178 |
+
'source' => $working_dir,
|
179 |
+
'destination' => $options['destination'],
|
180 |
+
'clear_destination' => $options['clear_destination'],
|
181 |
+
'abort_if_destination_exists' => $options['abort_if_destination_exists'],
|
182 |
+
'clear_working' => $options['clear_working'],
|
183 |
+
'hook_extra' => $options['hook_extra'],
|
184 |
+
)
|
185 |
+
);
|
186 |
+
|
187 |
+
$this->skin->set_result( $result );
|
188 |
+
if ( is_wp_error( $result ) ) {
|
189 |
+
$this->skin->error( $result );
|
190 |
+
//$this->skin->feedback( 'process_failed' );
|
191 |
+
} else {
|
192 |
+
// Installation succeeded.
|
193 |
+
//$this->skin->feedback( 'process_success' );
|
194 |
+
}
|
195 |
+
|
196 |
+
$this->skin->after();
|
197 |
+
|
198 |
+
if ( ! $options['is_multi'] ) {
|
199 |
+
|
200 |
+
/**
|
201 |
+
* Fire when the upgrader process is complete.
|
202 |
+
*
|
203 |
+
* See also {@see 'upgrader_package_options'}.
|
204 |
+
*
|
205 |
+
* @since 3.6.0
|
206 |
+
* @since 3.7.0 Added to WP_Upgrader::run().
|
207 |
+
* @since 4.6.0 `$translations` was added as a possible argument to `$hook_extra`.
|
208 |
+
*
|
209 |
+
* @param WP_Upgrader $this WP_Upgrader instance. In other contexts, $this, might be a
|
210 |
+
* Theme_Upgrader, Plugin_Upgrader, Core_Upgrade, or Language_Pack_Upgrader instance.
|
211 |
+
* @param array $hook_extra {
|
212 |
+
* Array of bulk item update data.
|
213 |
+
*
|
214 |
+
* @type string $action Type of action. Default 'update'.
|
215 |
+
* @type string $type Type of update process. Accepts 'plugin', 'theme', 'translation', or 'core'.
|
216 |
+
* @type bool $bulk Whether the update process is a bulk update. Default true.
|
217 |
+
* @type array $plugins Array of the basename paths of the plugins' main files.
|
218 |
+
* @type array $themes The theme slugs.
|
219 |
+
* @type array $translations {
|
220 |
+
* Array of translations update data.
|
221 |
+
*
|
222 |
+
* @type string $language The locale the translation is for.
|
223 |
+
* @type string $type Type of translation. Accepts 'plugin', 'theme', or 'core'.
|
224 |
+
* @type string $slug Text domain the translation is for. The slug of a theme/plugin or
|
225 |
+
* 'default' for core translations.
|
226 |
+
* @type string $version The version of a theme, plugin, or core.
|
227 |
+
* }
|
228 |
+
* }
|
229 |
+
*/
|
230 |
+
do_action( 'upgrader_process_complete', $this, $options['hook_extra'] );
|
231 |
+
|
232 |
+
$this->skin->footer();
|
233 |
+
}
|
234 |
+
|
235 |
+
return $result;
|
236 |
+
}
|
237 |
+
|
238 |
+
/**
|
239 |
+
* Toggle maintenance mode for the site.
|
240 |
+
*
|
241 |
+
* Create/delete the maintenance file to enable/disable maintenance mode.
|
242 |
+
*
|
243 |
+
* @since 2.8.0
|
244 |
+
*
|
245 |
+
* @global WP_Filesystem_Base $wp_filesystem Subclass
|
246 |
+
*
|
247 |
+
* @param bool $enable True to enable maintenance mode, false to disable.
|
248 |
+
*/
|
249 |
+
public function maintenance_mode( $enable = false ) {
|
250 |
+
global $wp_filesystem;
|
251 |
+
$file = $wp_filesystem->abspath() . '.maintenance';
|
252 |
+
if ( $enable ) {
|
253 |
+
//$this->skin->feedback( 'maintenance_start' );
|
254 |
+
// Create maintenance file to signal that we are upgrading
|
255 |
+
$maintenance_string = '<?php $upgrading = ' . time() . '; ?>';
|
256 |
+
$wp_filesystem->delete( $file );
|
257 |
+
$wp_filesystem->put_contents( $file, $maintenance_string, FS_CHMOD_FILE );
|
258 |
+
} elseif ( ! $enable && $wp_filesystem->exists( $file ) ) {
|
259 |
+
//$this->skin->feedback( 'maintenance_end' );
|
260 |
+
$wp_filesystem->delete( $file );
|
261 |
+
}
|
262 |
+
}
|
263 |
+
|
264 |
+
/**
|
265 |
+
* Download a package.
|
266 |
+
*
|
267 |
+
* @since 2.8.0
|
268 |
+
*
|
269 |
+
* @param string $package The URI of the package. If this is the full path to an
|
270 |
+
* existing local file, it will be returned untouched.
|
271 |
+
* @param bool $check_signatures Whether to validate file signatures. Default false.
|
272 |
+
* @return string|WP_Error The full path to the downloaded package file, or a WP_Error object.
|
273 |
+
*/
|
274 |
+
public function download_package( $package, $check_signatures = false ) {
|
275 |
+
|
276 |
+
/**
|
277 |
+
* Filter whether to return the package.
|
278 |
+
*
|
279 |
+
* @since 3.7.0
|
280 |
+
*
|
281 |
+
* @param bool $reply Whether to bail without returning the package.
|
282 |
+
* Default false.
|
283 |
+
* @param string $package The package file name.
|
284 |
+
* @param WP_Upgrader $this The WP_Upgrader instance.
|
285 |
+
*/
|
286 |
+
$reply = apply_filters( 'upgrader_pre_download', false, $package, $this );
|
287 |
+
if ( false !== $reply ) {
|
288 |
+
return $reply;
|
289 |
+
}
|
290 |
+
|
291 |
+
if ( ! preg_match( '!^(http|https|ftp)://!i', $package ) && file_exists( $package ) ) { //Local file or remote?
|
292 |
+
return $package; //must be a local file..
|
293 |
+
}
|
294 |
+
|
295 |
+
if ( empty( $package ) ) {
|
296 |
+
return new WP_Error( 'no_package', $this->strings['no_package'] );
|
297 |
+
}
|
298 |
+
|
299 |
+
//$this->skin->feedback( 'downloading_package', $package );
|
300 |
+
|
301 |
+
$download_file = download_url( $package, 300, $check_signatures );
|
302 |
+
|
303 |
+
if ( is_wp_error( $download_file ) && ! $download_file->get_error_data( 'softfail-filename' ) ) {
|
304 |
+
return new WP_Error( 'download_failed', $this->strings['download_failed'], $download_file->get_error_message() );
|
305 |
+
}
|
306 |
+
|
307 |
+
return $download_file;
|
308 |
+
}
|
309 |
+
|
310 |
+
/**
|
311 |
+
* Unpack a compressed package file.
|
312 |
+
*
|
313 |
+
* @since 2.8.0
|
314 |
+
*
|
315 |
+
* @global WP_Filesystem_Base $wp_filesystem WordPress filesystem subclass.
|
316 |
+
*
|
317 |
+
* @param string $package Full path to the package file.
|
318 |
+
* @param bool $delete_package Optional. Whether to delete the package file after attempting
|
319 |
+
* to unpack it. Default true.
|
320 |
+
* @return string|WP_Error The path to the unpacked contents, or a WP_Error on failure.
|
321 |
+
*/
|
322 |
+
public function unpack_package( $package, $delete_package = true ) {
|
323 |
+
global $wp_filesystem;
|
324 |
+
|
325 |
+
//$this->skin->feedback( 'unpack_package' );
|
326 |
+
|
327 |
+
$upgrade_folder = $wp_filesystem->wp_content_dir() . 'upgrade/';
|
328 |
+
|
329 |
+
//Clean up contents of upgrade directory beforehand.
|
330 |
+
$upgrade_files = $wp_filesystem->dirlist( $upgrade_folder );
|
331 |
+
if ( ! empty( $upgrade_files ) ) {
|
332 |
+
foreach ( $upgrade_files as $file ) {
|
333 |
+
$wp_filesystem->delete( $upgrade_folder . $file['name'], true );
|
334 |
+
}
|
335 |
+
}
|
336 |
+
|
337 |
+
// We need a working directory - Strip off any .tmp or .zip suffixes
|
338 |
+
$working_dir = $upgrade_folder . basename( basename( $package, '.tmp' ), '.zip' );
|
339 |
+
|
340 |
+
// Clean up working directory
|
341 |
+
if ( $wp_filesystem->is_dir( $working_dir ) ) {
|
342 |
+
$wp_filesystem->delete( $working_dir, true );
|
343 |
+
}
|
344 |
+
|
345 |
+
// Unzip package to working directory
|
346 |
+
$result = unzip_file( $package, $working_dir );
|
347 |
+
|
348 |
+
// Once extracted, delete the package if required.
|
349 |
+
if ( $delete_package ) {
|
350 |
+
unlink( $package );
|
351 |
+
}
|
352 |
+
|
353 |
+
if ( is_wp_error( $result ) ) {
|
354 |
+
$wp_filesystem->delete( $working_dir, true );
|
355 |
+
if ( 'incompatible_archive' == $result->get_error_code() ) {
|
356 |
+
return new WP_Error( 'incompatible_archive', $this->strings['incompatible_archive'], $result->get_error_data() );
|
357 |
+
}
|
358 |
+
return $result;
|
359 |
+
}
|
360 |
+
|
361 |
+
return $working_dir;
|
362 |
+
}
|
363 |
+
|
364 |
+
/**
|
365 |
+
* Install a package.
|
366 |
+
*
|
367 |
+
* Copies the contents of a package form a source directory, and installs them in
|
368 |
+
* a destination directory. Optionally removes the source. It can also optionally
|
369 |
+
* clear out the destination folder if it already exists.
|
370 |
+
*
|
371 |
+
* @since 2.8.0
|
372 |
+
*
|
373 |
+
* @global WP_Filesystem_Base $wp_filesystem WordPress filesystem subclass.
|
374 |
+
* @global array $wp_theme_directories
|
375 |
+
*
|
376 |
+
* @param array|string $args {
|
377 |
+
* Optional. Array or string of arguments for installing a package. Default empty array.
|
378 |
+
*
|
379 |
+
* @type string $source Required path to the package source. Default empty.
|
380 |
+
* @type string $destination Required path to a folder to install the package in.
|
381 |
+
* Default empty.
|
382 |
+
* @type bool $clear_destination Whether to delete any files already in the destination
|
383 |
+
* folder. Default false.
|
384 |
+
* @type bool $clear_working Whether to delete the files form the working directory
|
385 |
+
* after copying to the destination. Default false.
|
386 |
+
* @type bool $abort_if_destination_exists Whether to abort the installation if
|
387 |
+
* the destination folder already exists. Default true.
|
388 |
+
* @type array $hook_extra Extra arguments to pass to the filter hooks called by
|
389 |
+
* WP_Upgrader::install_package(). Default empty array.
|
390 |
+
* }
|
391 |
+
*
|
392 |
+
* @return array|WP_Error The result (also stored in `WP_Upgrader::$result`), or a WP_Error on failure.
|
393 |
+
*/
|
394 |
+
public function install_package( $args = array() ) {
|
395 |
+
global $wp_filesystem, $wp_theme_directories;
|
396 |
+
|
397 |
+
$defaults = array(
|
398 |
+
'source' => '', // Please always pass this
|
399 |
+
'destination' => '', // and this
|
400 |
+
'clear_destination' => false,
|
401 |
+
'clear_working' => false,
|
402 |
+
'abort_if_destination_exists' => true,
|
403 |
+
'hook_extra' => array(),
|
404 |
+
);
|
405 |
+
|
406 |
+
$args = wp_parse_args( $args, $defaults );
|
407 |
+
|
408 |
+
// These were previously extract()'d.
|
409 |
+
$source = $args['source'];
|
410 |
+
$destination = $args['destination'];
|
411 |
+
$clear_destination = $args['clear_destination'];
|
412 |
+
|
413 |
+
set_time_limit( 300 );
|
414 |
+
|
415 |
+
if ( empty( $source ) || empty( $destination ) ) {
|
416 |
+
return new WP_Error( 'bad_request', $this->strings['bad_request'] );
|
417 |
+
}
|
418 |
+
//$this->skin->feedback( 'installing_package' );
|
419 |
+
|
420 |
+
/**
|
421 |
+
* Filter the install response before the installation has started.
|
422 |
+
*
|
423 |
+
* Returning a truthy value, or one that could be evaluated as a WP_Error
|
424 |
+
* will effectively short-circuit the installation, returning that value
|
425 |
+
* instead.
|
426 |
+
*
|
427 |
+
* @since 2.8.0
|
428 |
+
*
|
429 |
+
* @param bool|WP_Error $response Response.
|
430 |
+
* @param array $hook_extra Extra arguments passed to hooked filters.
|
431 |
+
*/
|
432 |
+
$res = apply_filters( 'upgrader_pre_install', true, $args['hook_extra'] );
|
433 |
+
|
434 |
+
if ( is_wp_error( $res ) ) {
|
435 |
+
return $res;
|
436 |
+
}
|
437 |
+
|
438 |
+
//Retain the Original source and destinations
|
439 |
+
$remote_source = $args['source'];
|
440 |
+
$local_destination = $destination;
|
441 |
+
|
442 |
+
$source_files = array_keys( $wp_filesystem->dirlist( $remote_source ) );
|
443 |
+
$remote_destination = $wp_filesystem->find_folder( $local_destination );
|
444 |
+
|
445 |
+
//Locate which directory to copy to the new folder, This is based on the actual folder holding the files.
|
446 |
+
if ( 1 == count( $source_files ) && $wp_filesystem->is_dir( trailingslashit( $args['source'] ) . $source_files[0] . '/' ) ) { //Only one folder? Then we want its contents.
|
447 |
+
$source = trailingslashit( $args['source'] ) . trailingslashit( $source_files[0] );
|
448 |
+
} elseif ( count( $source_files ) == 0 ) {
|
449 |
+
return new WP_Error( 'incompatible_archive_empty', $this->strings['incompatible_archive'], $this->strings['no_files'] ); // There are no files?
|
450 |
+
} else { // It's only a single file, the upgrader will use the folder name of this file as the destination folder. Folder name is based on zip filename.
|
451 |
+
$source = trailingslashit( $args['source'] );
|
452 |
+
}
|
453 |
+
|
454 |
+
/**
|
455 |
+
* Filter the source file location for the upgrade package.
|
456 |
+
*
|
457 |
+
* @since 2.8.0
|
458 |
+
* @since 4.4.0 The $hook_extra parameter became available.
|
459 |
+
*
|
460 |
+
* @param string $source File source location.
|
461 |
+
* @param string $remote_source Remote file source location.
|
462 |
+
* @param WP_Upgrader $this WP_Upgrader instance.
|
463 |
+
* @param array $hook_extra Extra arguments passed to hooked filters.
|
464 |
+
*/
|
465 |
+
$source = apply_filters( 'upgrader_source_selection', $source, $remote_source, $this, $args['hook_extra'] );
|
466 |
+
|
467 |
+
if ( is_wp_error( $source ) ) {
|
468 |
+
return $source;
|
469 |
+
}
|
470 |
+
|
471 |
+
// Has the source location changed? If so, we need a new source_files list.
|
472 |
+
if ( $source !== $remote_source ) {
|
473 |
+
$source_files = array_keys( $wp_filesystem->dirlist( $source ) );
|
474 |
+
}
|
475 |
+
|
476 |
+
/*
|
477 |
+
* Protection against deleting files in any important base directories.
|
478 |
+
* Theme_Upgrader & Plugin_Upgrader also trigger this, as they pass the
|
479 |
+
* destination directory (WP_PLUGIN_DIR / wp-content/themes) intending
|
480 |
+
* to copy the directory into the directory, whilst they pass the source
|
481 |
+
* as the actual files to copy.
|
482 |
+
*/
|
483 |
+
$protected_directories = array( ABSPATH, WP_CONTENT_DIR, WP_PLUGIN_DIR, WP_CONTENT_DIR . '/themes' );
|
484 |
+
|
485 |
+
if ( is_array( $wp_theme_directories ) ) {
|
486 |
+
$protected_directories = array_merge( $protected_directories, $wp_theme_directories );
|
487 |
+
}
|
488 |
+
|
489 |
+
if ( in_array( $destination, $protected_directories ) ) {
|
490 |
+
$remote_destination = trailingslashit( $remote_destination ) . trailingslashit( basename( $source ) );
|
491 |
+
$destination = trailingslashit( $destination ) . trailingslashit( basename( $source ) );
|
492 |
+
}
|
493 |
+
|
494 |
+
if ( $clear_destination ) {
|
495 |
+
// We're going to clear the destination if there's something there.
|
496 |
+
//$this->skin->feedback( 'remove_old' );
|
497 |
+
|
498 |
+
$removed = $this->clear_destination( $remote_destination );
|
499 |
+
|
500 |
+
/**
|
501 |
+
* Filter whether the upgrader cleared the destination.
|
502 |
+
*
|
503 |
+
* @since 2.8.0
|
504 |
+
*
|
505 |
+
* @param mixed $removed Whether the destination was cleared. true on success, WP_Error on failure
|
506 |
+
* @param string $local_destination The local package destination.
|
507 |
+
* @param string $remote_destination The remote package destination.
|
508 |
+
* @param array $hook_extra Extra arguments passed to hooked filters.
|
509 |
+
*/
|
510 |
+
$removed = apply_filters( 'upgrader_clear_destination', $removed, $local_destination, $remote_destination, $args['hook_extra'] );
|
511 |
+
|
512 |
+
if ( is_wp_error( $removed ) ) {
|
513 |
+
return $removed;
|
514 |
+
}
|
515 |
+
} elseif ( $args['abort_if_destination_exists'] && $wp_filesystem->exists( $remote_destination ) ) {
|
516 |
+
//If we're not clearing the destination folder and something exists there already, Bail.
|
517 |
+
//But first check to see if there are actually any files in the folder.
|
518 |
+
$_files = $wp_filesystem->dirlist( $remote_destination );
|
519 |
+
if ( ! empty( $_files ) ) {
|
520 |
+
$wp_filesystem->delete( $remote_source, true ); //Clear out the source files.
|
521 |
+
return new WP_Error( 'folder_exists', $this->strings['folder_exists'], $remote_destination );
|
522 |
+
}
|
523 |
+
}
|
524 |
+
|
525 |
+
//Create destination if needed
|
526 |
+
if ( ! $wp_filesystem->exists( $remote_destination ) ) {
|
527 |
+
if ( ! $wp_filesystem->mkdir( $remote_destination, FS_CHMOD_DIR ) ) {
|
528 |
+
return new WP_Error( 'mkdir_failed_destination', $this->strings['mkdir_failed'], $remote_destination );
|
529 |
+
}
|
530 |
+
}
|
531 |
+
// Copy new version of item into place.
|
532 |
+
$result = copy_dir( $source, $remote_destination );
|
533 |
+
if ( is_wp_error( $result ) ) {
|
534 |
+
if ( $args['clear_working'] ) {
|
535 |
+
$wp_filesystem->delete( $remote_source, true );
|
536 |
+
}
|
537 |
+
return $result;
|
538 |
+
}
|
539 |
+
|
540 |
+
//Clear the Working folder?
|
541 |
+
if ( $args['clear_working'] ) {
|
542 |
+
$wp_filesystem->delete( $remote_source, true );
|
543 |
+
}
|
544 |
+
|
545 |
+
$destination_name = basename( str_replace( $local_destination, '', $destination ) );
|
546 |
+
if ( '.' == $destination_name ) {
|
547 |
+
$destination_name = '';
|
548 |
+
}
|
549 |
+
|
550 |
+
$this->result = compact( 'source', 'source_files', 'destination', 'destination_name', 'local_destination', 'remote_destination', 'clear_destination' );
|
551 |
+
|
552 |
+
/**
|
553 |
+
* Filter the installation response after the installation has finished.
|
554 |
+
*
|
555 |
+
* @since 2.8.0
|
556 |
+
*
|
557 |
+
* @param bool $response Installation response.
|
558 |
+
* @param array $hook_extra Extra arguments passed to hooked filters.
|
559 |
+
* @param array $result Installation result data.
|
560 |
+
*/
|
561 |
+
$res = apply_filters( 'upgrader_post_install', true, $args['hook_extra'], $this->result );
|
562 |
+
|
563 |
+
if ( is_wp_error( $res ) ) {
|
564 |
+
$this->result = $res;
|
565 |
+
return $res;
|
566 |
+
}
|
567 |
+
|
568 |
+
//Bombard the calling function will all the info which we've just used.
|
569 |
+
return $this->result;
|
570 |
+
}
|
571 |
+
}
|
includes/admin/licensing/plugin-upgrader.php
CHANGED
@@ -269,9 +269,11 @@ class ExactMetrics_Plugin_Upgrader extends Plugin_Upgrader {
|
|
269 |
* @param string $package The URI of the package. If this is the full path to an
|
270 |
* existing local file, it will be returned untouched.
|
271 |
* @param bool $check_signatures Whether to validate file signatures. Default false.
|
|
|
|
|
272 |
* @return string|WP_Error The full path to the downloaded package file, or a WP_Error object.
|
273 |
*/
|
274 |
-
public function download_package( $package, $check_signatures = false ) {
|
275 |
|
276 |
/**
|
277 |
* Filter whether to return the package.
|
269 |
* @param string $package The URI of the package. If this is the full path to an
|
270 |
* existing local file, it will be returned untouched.
|
271 |
* @param bool $check_signatures Whether to validate file signatures. Default false.
|
272 |
+
* @param array $hook_extra Added in WP 5.5.
|
273 |
+
*
|
274 |
* @return string|WP_Error The full path to the downloaded package file, or a WP_Error object.
|
275 |
*/
|
276 |
+
public function download_package( $package, $check_signatures = false, $hook_extra = array() ) {
|
277 |
|
278 |
/**
|
279 |
* Filter whether to return the package.
|
includes/admin/licensing/skin-legacy.php
ADDED
@@ -0,0 +1,116 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Skin class.
|
4 |
+
*
|
5 |
+
* @since 6.0.0
|
6 |
+
*
|
7 |
+
* @package ExactMetrics
|
8 |
+
* @subpackage Upgrader Skin
|
9 |
+
* @author Chris Christoff
|
10 |
+
*/
|
11 |
+
|
12 |
+
// Exit if accessed directly
|
13 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
14 |
+
exit;
|
15 |
+
}
|
16 |
+
|
17 |
+
class ExactMetrics_Skin extends WP_Upgrader_Skin {
|
18 |
+
|
19 |
+
/**
|
20 |
+
* Primary class constructor.
|
21 |
+
*
|
22 |
+
* @since 6.0.0
|
23 |
+
*
|
24 |
+
* @param array $args Empty array of args (we will use defaults).
|
25 |
+
*/
|
26 |
+
public function __construct( $args = array() ) {
|
27 |
+
|
28 |
+
parent::__construct();
|
29 |
+
|
30 |
+
}
|
31 |
+
|
32 |
+
/**
|
33 |
+
* Set the upgrader object and store it as a property in the parent class.
|
34 |
+
*
|
35 |
+
* @since 6.0.0
|
36 |
+
*
|
37 |
+
* @param object $upgrader The upgrader object (passed by reference).
|
38 |
+
*/
|
39 |
+
public function set_upgrader( &$upgrader ) {
|
40 |
+
|
41 |
+
if ( is_object( $upgrader ) ) {
|
42 |
+
$this->upgrader =& $upgrader;
|
43 |
+
}
|
44 |
+
|
45 |
+
}
|
46 |
+
|
47 |
+
/**
|
48 |
+
* Set the upgrader result and store it as a property in the parent class.
|
49 |
+
*
|
50 |
+
* @since 6.0.0
|
51 |
+
*
|
52 |
+
* @param object $result The result of the install process.
|
53 |
+
*/
|
54 |
+
public function set_result( $result ) {
|
55 |
+
|
56 |
+
$this->result = $result;
|
57 |
+
|
58 |
+
}
|
59 |
+
|
60 |
+
/**
|
61 |
+
* Empty out the header of its HTML content and only check to see if it has
|
62 |
+
* been performed or not.
|
63 |
+
*
|
64 |
+
* @since 6.0.0
|
65 |
+
*/
|
66 |
+
public function header() {}
|
67 |
+
|
68 |
+
/**
|
69 |
+
* Empty out the footer of its HTML contents.
|
70 |
+
*
|
71 |
+
* @since 6.0.0
|
72 |
+
*/
|
73 |
+
function footer() {}
|
74 |
+
|
75 |
+
/**
|
76 |
+
* Instead of outputting HTML for errors, json_encode the errors and send them
|
77 |
+
* back to the Ajax script for processing.
|
78 |
+
*
|
79 |
+
* @since 6.0.0
|
80 |
+
*
|
81 |
+
* @param array $errors Array of errors with the install process.
|
82 |
+
*/
|
83 |
+
function error( $errors ) {
|
84 |
+
|
85 |
+
if ( ! empty( $errors ) ) {
|
86 |
+
$error_message = esc_html__( 'There was an error installing the addon. Please try again.', 'google-analytics-dashboard-for-wp' );
|
87 |
+
if ( is_wp_error( $errors ) ) {
|
88 |
+
/**
|
89 |
+
* @var WP_Error $errors
|
90 |
+
*/
|
91 |
+
$message = $errors->get_error_message();
|
92 |
+
|
93 |
+
if ( ! empty( $message ) ) {
|
94 |
+
// Translators: The name of the addon that can't be installed.
|
95 |
+
$error_message = sprintf( esc_html__( 'There was an error installing the addon: %s', 'google-analytics-dashboard-for-wp' ), esc_html( $message ) );
|
96 |
+
}
|
97 |
+
}
|
98 |
+
|
99 |
+
wp_send_json( array( 'error' => $error_message ) );
|
100 |
+
}
|
101 |
+
|
102 |
+
}
|
103 |
+
|
104 |
+
/**
|
105 |
+
* Empty out the feedback method to prevent outputting HTML strings as the install
|
106 |
+
* is progressing.
|
107 |
+
*
|
108 |
+
* @since 6.0.0
|
109 |
+
*
|
110 |
+
* @param string $string The feedback string.
|
111 |
+
*/
|
112 |
+
function feedback( $string ) {
|
113 |
+
|
114 |
+
}
|
115 |
+
|
116 |
+
}
|
includes/admin/licensing/skin.php
CHANGED
@@ -109,7 +109,7 @@ class ExactMetrics_Skin extends WP_Upgrader_Skin {
|
|
109 |
*
|
110 |
* @param string $string The feedback string.
|
111 |
*/
|
112 |
-
function feedback( $string ) {
|
113 |
|
114 |
}
|
115 |
|
109 |
*
|
110 |
* @param string $string The feedback string.
|
111 |
*/
|
112 |
+
function feedback( $string, ...$args ) {
|
113 |
|
114 |
}
|
115 |
|
includes/admin/routes.php
CHANGED
@@ -726,9 +726,7 @@ class ExactMetrics_Rest_Routes {
|
|
726 |
}
|
727 |
|
728 |
// We do not need any extra credentials if we have gotten this far, so let's install the plugin.
|
729 |
-
|
730 |
-
require_once plugin_dir_path( $base->file ) . '/includes/admin/licensing/plugin-upgrader.php';
|
731 |
-
require_once plugin_dir_path( $base->file ) . '/includes/admin/licensing/skin.php';
|
732 |
|
733 |
// Prevent language upgrade in ajax calls.
|
734 |
remove_action( 'upgrader_process_complete', array( 'Language_Pack_Upgrader', 'async_upgrade' ), 20 );
|
726 |
}
|
727 |
|
728 |
// We do not need any extra credentials if we have gotten this far, so let's install the plugin.
|
729 |
+
exactmetrics_require_upgrader();
|
|
|
|
|
730 |
|
731 |
// Prevent language upgrade in ajax calls.
|
732 |
remove_action( 'upgrader_process_complete', array( 'Language_Pack_Upgrader', 'async_upgrade' ), 20 );
|
includes/helpers.php
CHANGED
@@ -1563,3 +1563,33 @@ function exactmetrics_restore_prettylinks_onboard_value() {
|
|
1563 |
}
|
1564 |
}
|
1565 |
add_action( 'wp_loaded', 'exactmetrics_restore_prettylinks_onboard_value', 15 );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1563 |
}
|
1564 |
}
|
1565 |
add_action( 'wp_loaded', 'exactmetrics_restore_prettylinks_onboard_value', 15 );
|
1566 |
+
|
1567 |
+
/**
|
1568 |
+
* Check WP version and include the compatible upgrader skin.
|
1569 |
+
*
|
1570 |
+
* @param bool $custom_upgrader If true it will include our custom upgrader, otherwise it will use the default WP one.
|
1571 |
+
*/
|
1572 |
+
function exactmetrics_require_upgrader( $custom_upgrader = true ) {
|
1573 |
+
|
1574 |
+
global $wp_version;
|
1575 |
+
|
1576 |
+
$base = ExactMetrics();
|
1577 |
+
|
1578 |
+
if ( ! $custom_upgrader ) {
|
1579 |
+
require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
|
1580 |
+
}
|
1581 |
+
|
1582 |
+
// WP 5.3 changes the upgrader skin.
|
1583 |
+
if ( version_compare( $wp_version, '5.3', '<' ) ) {
|
1584 |
+
if ( $custom_upgrader ) {
|
1585 |
+
require_once plugin_dir_path( $base->file ) . 'includes/admin/licensing/plugin-upgrader.php';
|
1586 |
+
}
|
1587 |
+
require_once plugin_dir_path( $base->file ) . '/includes/admin/licensing/skin-legacy.php';
|
1588 |
+
} else {
|
1589 |
+
if ( $custom_upgrader ) {
|
1590 |
+
require_once plugin_dir_path( $base->file ) . 'includes/admin/licensing/plugin-upgrader.php';
|
1591 |
+
}
|
1592 |
+
require_once plugin_dir_path( $base->file ) . '/includes/admin/licensing/skin.php';
|
1593 |
+
}
|
1594 |
+
|
1595 |
+
}
|
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.2.
|
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-08-
|
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"
|
@@ -153,7 +153,7 @@ msgstr ""
|
|
153 |
#: lite/includes/admin/wp-site-health.php:372
|
154 |
#: lite/includes/admin/wp-site-health.php:398
|
155 |
#: lite/includes/admin/wp-site-health.php:425
|
156 |
-
#: languages/vue.php:
|
157 |
msgid "View Addons"
|
158 |
msgstr ""
|
159 |
|
@@ -236,15 +236,15 @@ msgstr ""
|
|
236 |
|
237 |
#: lite/includes/admin/connect.php:141
|
238 |
#: lite/includes/admin/connect.php:147
|
239 |
-
#: lite/includes/admin/connect.php:
|
240 |
msgid "Plugin installed & activated."
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: lite/includes/admin/connect.php:
|
244 |
msgid "You are not licensed."
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: lite/includes/admin/connect.php:
|
248 |
msgid "Pro version installed but needs to be activated from the Plugins page inside your WordPress admin."
|
249 |
msgstr ""
|
250 |
|
@@ -303,12 +303,12 @@ msgid "You are not allowed to install plugins"
|
|
303 |
msgstr ""
|
304 |
|
305 |
#: lite/includes/admin/reports/report-queries.php:22
|
306 |
-
#: languages/vue.php:
|
307 |
msgid "Search Console"
|
308 |
msgstr ""
|
309 |
|
310 |
#: lite/includes/admin/reports/report-ecommerce.php:22
|
311 |
-
#: languages/vue.php:
|
312 |
msgid "eCommerce"
|
313 |
msgstr ""
|
314 |
|
@@ -321,17 +321,17 @@ msgid "Real Time"
|
|
321 |
msgstr ""
|
322 |
|
323 |
#: lite/includes/admin/reports/report-publisher.php:22
|
324 |
-
#: languages/vue.php:
|
325 |
msgid "Publishers"
|
326 |
msgstr ""
|
327 |
|
328 |
#: lite/includes/admin/reports/report-dimensions.php:22
|
329 |
-
#: languages/vue.php:
|
330 |
msgid "Dimensions"
|
331 |
msgstr ""
|
332 |
|
333 |
#: lite/includes/admin/reports/report-forms.php:22
|
334 |
-
#: languages/vue.php:
|
335 |
msgid "Forms"
|
336 |
msgstr ""
|
337 |
|
@@ -589,7 +589,7 @@ msgid "Question"
|
|
589 |
msgstr ""
|
590 |
|
591 |
#: includes/gutenberg/headline-tool/headline-tool.php:302
|
592 |
-
#: languages/vue.php:
|
593 |
msgid "General"
|
594 |
msgstr ""
|
595 |
|
@@ -3017,11 +3017,13 @@ msgid "Could not deauthenticate."
|
|
3017 |
msgstr ""
|
3018 |
|
3019 |
#: includes/admin/licensing/skin.php:86
|
|
|
3020 |
msgid "There was an error installing the addon. Please try again."
|
3021 |
msgstr ""
|
3022 |
|
3023 |
#. Translators: The name of the addon that can't be installed.
|
3024 |
#: includes/admin/licensing/skin.php:95
|
|
|
3025 |
msgid "There was an error installing the addon: %s"
|
3026 |
msgstr ""
|
3027 |
|
@@ -3068,7 +3070,7 @@ msgstr ""
|
|
3068 |
|
3069 |
#: includes/admin/admin.php:39
|
3070 |
#: includes/admin/admin.php:95
|
3071 |
-
#: languages/vue.php:
|
3072 |
msgid "Reports"
|
3073 |
msgstr ""
|
3074 |
|
@@ -3097,7 +3099,7 @@ msgstr ""
|
|
3097 |
|
3098 |
#: includes/admin/admin.php:60
|
3099 |
#: includes/admin/admin.php:103
|
3100 |
-
#: languages/vue.php:
|
3101 |
msgid "About Us"
|
3102 |
msgstr ""
|
3103 |
|
@@ -3126,7 +3128,7 @@ msgstr ""
|
|
3126 |
|
3127 |
#: includes/admin/admin.php:175
|
3128 |
#: includes/admin/admin.php:178
|
3129 |
-
#: languages/vue.php:
|
3130 |
msgid "Support"
|
3131 |
msgstr ""
|
3132 |
|
@@ -3136,22 +3138,22 @@ msgid "Please rate %1$sExactMetrics%2$s on %3$s %4$sWordPress.org%5$s to help us
|
|
3136 |
msgstr ""
|
3137 |
|
3138 |
#: includes/admin/admin.php:281
|
3139 |
-
#: languages/vue.php:
|
3140 |
msgid "Please Setup Website Analytics to See Audience Insights"
|
3141 |
msgstr ""
|
3142 |
|
3143 |
#: includes/admin/admin.php:282
|
3144 |
-
#: languages/vue.php:
|
3145 |
msgid "Connect ExactMetrics and Setup Website Analytics"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
#: includes/admin/admin.php:284
|
3149 |
-
#: languages/vue.php:
|
3150 |
msgid "Learn More"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
#: includes/admin/admin.php:286
|
3154 |
-
#: languages/vue.php:
|
3155 |
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."
|
3156 |
msgstr ""
|
3157 |
|
@@ -3162,17 +3164,17 @@ msgstr ""
|
|
3162 |
|
3163 |
#. Translators: Adds a link to the license renewal.
|
3164 |
#: includes/admin/admin.php:307
|
3165 |
-
#: languages/vue.php:
|
3166 |
msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
#: includes/admin/admin.php:309
|
3170 |
-
#: languages/vue.php:
|
3171 |
msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
|
3172 |
msgstr ""
|
3173 |
|
3174 |
#: includes/admin/admin.php:311
|
3175 |
-
#: languages/vue.php:
|
3176 |
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."
|
3177 |
msgstr ""
|
3178 |
|
@@ -3258,7 +3260,7 @@ msgid "View supported browsers"
|
|
3258 |
msgstr ""
|
3259 |
|
3260 |
#: includes/admin/reports/overview.php:34
|
3261 |
-
#: languages/vue.php:
|
3262 |
msgid "Overview"
|
3263 |
msgstr ""
|
3264 |
|
@@ -3350,7 +3352,7 @@ msgid "Upgrading is easy! To upgrade, navigate to %1$ssour pricing page%2$s, pur
|
|
3350 |
msgstr ""
|
3351 |
|
3352 |
#: includes/admin/reports/abstract-report.php:375
|
3353 |
-
#: languages/vue.php:
|
3354 |
msgid "Upgrade Now"
|
3355 |
msgstr ""
|
3356 |
|
@@ -4652,7 +4654,7 @@ msgid "Goal: "
|
|
4652 |
msgstr ""
|
4653 |
|
4654 |
#: languages/gutenberg.php:171
|
4655 |
-
#: languages/vue.php:
|
4656 |
msgid "Headline Analyzer"
|
4657 |
msgstr ""
|
4658 |
|
@@ -4672,143 +4674,143 @@ msgstr ""
|
|
4672 |
msgid "2"
|
4673 |
msgstr ""
|
4674 |
|
4675 |
-
#: languages/vue.php:
|
4676 |
msgid "Error"
|
4677 |
msgstr ""
|
4678 |
|
4679 |
-
#: languages/vue.php:
|
4680 |
msgid "Please try again."
|
4681 |
msgstr ""
|
4682 |
|
4683 |
-
#: languages/vue.php:
|
4684 |
msgid "Loading settings"
|
4685 |
msgstr ""
|
4686 |
|
4687 |
#. Translators: Number of visitors.
|
4688 |
-
#: languages/vue.php:
|
4689 |
msgid "See how %s visitors found your site!"
|
4690 |
msgstr ""
|
4691 |
|
4692 |
#. Translators: Number of visitors.
|
4693 |
-
#: languages/vue.php:
|
4694 |
msgid "Your website was visited by %s users in the last 30 days."
|
4695 |
msgstr ""
|
4696 |
|
4697 |
-
#: languages/vue.php:
|
4698 |
msgid "See the full analytics report!"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
-
#: languages/vue.php:
|
4702 |
msgid "Overview Report"
|
4703 |
msgstr ""
|
4704 |
|
4705 |
#. Translators: Current WordPress version.
|
4706 |
-
#: languages/vue.php:
|
4707 |
msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
4708 |
msgstr ""
|
4709 |
|
4710 |
-
#: languages/vue.php:
|
4711 |
msgid "Yikes! PHP Update Required"
|
4712 |
msgstr ""
|
4713 |
|
4714 |
#. Translators: Current PHP version and recommended PHP version.
|
4715 |
-
#: languages/vue.php:
|
4716 |
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."
|
4717 |
msgstr ""
|
4718 |
|
4719 |
-
#: languages/vue.php:
|
4720 |
msgid "Learn more about updating PHP"
|
4721 |
msgstr ""
|
4722 |
|
4723 |
-
#: languages/vue.php:
|
4724 |
msgid "Yikes! WordPress Update Required"
|
4725 |
msgstr ""
|
4726 |
|
4727 |
#. Translators: Current WordPress version.
|
4728 |
-
#: languages/vue.php:
|
4729 |
msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.9 in October, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
4730 |
msgstr ""
|
4731 |
|
4732 |
-
#: languages/vue.php:
|
4733 |
msgid "Learn more about updating WordPress"
|
4734 |
msgstr ""
|
4735 |
|
4736 |
-
#: languages/vue.php:
|
4737 |
msgid "Success! "
|
4738 |
msgstr ""
|
4739 |
|
4740 |
-
#: languages/vue.php:
|
4741 |
msgid "You're now using ExactMetrics Pro with all the features."
|
4742 |
msgstr ""
|
4743 |
|
4744 |
#. Translators: Placeholder gets replaced with an arrow icon.
|
4745 |
-
#: languages/vue.php:
|
4746 |
msgid "Get Started %s"
|
4747 |
msgstr ""
|
4748 |
|
4749 |
-
#: languages/vue.php:
|
4750 |
msgid "Dimensions Report"
|
4751 |
msgstr ""
|
4752 |
|
4753 |
-
#: languages/vue.php:
|
4754 |
msgid "Real-Time"
|
4755 |
msgstr ""
|
4756 |
|
4757 |
#. Translators: Error status and error text.
|
4758 |
-
#: languages/vue.php:
|
4759 |
msgid "Can't load report data. Error: %1$s, %2$s"
|
4760 |
msgstr ""
|
4761 |
|
4762 |
-
#: languages/vue.php:
|
4763 |
msgid "Error loading report data"
|
4764 |
msgstr ""
|
4765 |
|
4766 |
-
#: languages/vue.php:
|
4767 |
msgid "Getting Started"
|
4768 |
msgstr ""
|
4769 |
|
4770 |
-
#: languages/vue.php:
|
4771 |
msgid "Lite vs Pro"
|
4772 |
msgstr ""
|
4773 |
|
4774 |
-
#: languages/vue.php:
|
4775 |
msgid "Engagement"
|
4776 |
msgstr ""
|
4777 |
|
4778 |
-
#: languages/vue.php:
|
4779 |
msgid "Publisher"
|
4780 |
msgstr ""
|
4781 |
|
4782 |
-
#: languages/vue.php:
|
4783 |
msgid "Conversions"
|
4784 |
msgstr ""
|
4785 |
|
4786 |
-
#: languages/vue.php:
|
4787 |
msgid "Advanced"
|
4788 |
msgstr ""
|
4789 |
|
4790 |
-
#: languages/vue.php:
|
4791 |
msgid "URL Builder"
|
4792 |
msgstr ""
|
4793 |
|
4794 |
-
#: languages/vue.php:
|
4795 |
msgid "Import Export"
|
4796 |
msgstr ""
|
4797 |
|
4798 |
-
#: languages/vue.php:
|
4799 |
msgid "ExactMetrics encountered an error loading your report data"
|
4800 |
msgstr ""
|
4801 |
|
4802 |
-
#: languages/vue.php:
|
4803 |
msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
|
4804 |
msgstr ""
|
4805 |
|
4806 |
-
#: languages/vue.php:
|
4807 |
-
#: languages/vue.php:
|
4808 |
msgid "Reconnect ExactMetrics"
|
4809 |
msgstr ""
|
4810 |
|
4811 |
-
#: languages/vue.php:
|
4812 |
msgid "Re-Authenticating"
|
4813 |
msgstr ""
|
4814 |
|
@@ -4824,16 +4826,16 @@ msgstr ""
|
|
4824 |
msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
|
4825 |
msgstr ""
|
4826 |
|
4827 |
-
#: languages/vue.php:
|
4828 |
msgid "Launch Setup Wizard"
|
4829 |
msgstr ""
|
4830 |
|
4831 |
-
#: languages/vue.php:
|
4832 |
msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
|
4833 |
msgstr ""
|
4834 |
|
4835 |
#. Translators: Placeholder is replaced with WPForms.
|
4836 |
-
#: languages/vue.php:
|
4837 |
msgid "Recommended Plugin: %s"
|
4838 |
msgstr ""
|
4839 |
|
@@ -4841,2737 +4843,2737 @@ msgstr ""
|
|
4841 |
msgid "Install"
|
4842 |
msgstr ""
|
4843 |
|
4844 |
-
#: languages/vue.php:
|
4845 |
msgid "Activate"
|
4846 |
msgstr ""
|
4847 |
|
4848 |
-
#: languages/vue.php:
|
4849 |
msgid "See Quick Links"
|
4850 |
msgstr ""
|
4851 |
|
4852 |
-
#: languages/vue.php:
|
4853 |
msgid "Suggest a Feature"
|
4854 |
msgstr ""
|
4855 |
|
4856 |
-
#: languages/vue.php:
|
4857 |
msgid "Join Our Community"
|
4858 |
msgstr ""
|
4859 |
|
4860 |
-
#: languages/vue.php:
|
4861 |
msgid "Support & Docs"
|
4862 |
msgstr ""
|
4863 |
|
4864 |
-
#: languages/vue.php:
|
4865 |
msgid "Upgrade to Pro »"
|
4866 |
msgstr ""
|
4867 |
|
4868 |
-
#: languages/vue.php:
|
4869 |
msgid "Save Changes"
|
4870 |
msgstr ""
|
4871 |
|
4872 |
-
#: languages/vue.php:
|
4873 |
msgid "Exit Setup"
|
4874 |
msgstr ""
|
4875 |
|
4876 |
-
#: languages/vue.php:
|
4877 |
-
#: languages/vue.php:
|
4878 |
msgid "ExactMetrics Addons"
|
4879 |
msgstr ""
|
4880 |
|
4881 |
-
#: languages/vue.php:
|
4882 |
msgid "Search Addons"
|
4883 |
msgstr ""
|
4884 |
|
4885 |
#. Translators: Placeholders are replaced with the current step number out of the total number of steps.
|
4886 |
-
#: languages/vue.php:
|
4887 |
msgid "Step %1$s of %2$s"
|
4888 |
msgstr ""
|
4889 |
|
4890 |
-
#. Translators: Makes text bold.
|
4891 |
#: languages/vue.php:218
|
4892 |
msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
|
4893 |
msgstr ""
|
4894 |
|
4895 |
-
#. Translators: Makes text bold.
|
4896 |
-
#: languages/vue.php:
|
4897 |
msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
|
4898 |
msgstr ""
|
4899 |
|
4900 |
-
#. Translators: Makes text bold.
|
4901 |
-
#: languages/vue.php:
|
4902 |
msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
|
4903 |
msgstr ""
|
4904 |
|
4905 |
#. Translators: Makes text bold.
|
4906 |
-
#: languages/vue.php:
|
4907 |
msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
|
4908 |
msgstr ""
|
4909 |
|
4910 |
-
#. Translators: Makes text bold.
|
4911 |
-
#: languages/vue.php:
|
4912 |
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."
|
4913 |
msgstr ""
|
4914 |
|
4915 |
-
#. Translators: Makes text bold.
|
4916 |
-
#: languages/vue.php:
|
4917 |
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."
|
4918 |
msgstr ""
|
4919 |
|
4920 |
-
#. Translators: Makes text bold.
|
4921 |
-
#: languages/vue.php:
|
4922 |
msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
|
4923 |
msgstr ""
|
4924 |
|
4925 |
#. Translators: Makes text bold.
|
4926 |
-
#: languages/vue.php:
|
4927 |
msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
|
4928 |
msgstr ""
|
4929 |
|
4930 |
-
#. Translators: Adds link
|
4931 |
-
#: languages/vue.php:
|
4932 |
msgid "%1$sSee All Features%2$s"
|
4933 |
msgstr ""
|
4934 |
|
4935 |
-
#: languages/vue.php:
|
4936 |
msgid "Pro Plan"
|
4937 |
msgstr ""
|
4938 |
|
4939 |
-
#: languages/vue.php:
|
4940 |
msgid "per year"
|
4941 |
msgstr ""
|
4942 |
|
4943 |
-
#: languages/vue.php:
|
4944 |
msgid "Upgrade to ExactMetrics Pro Now"
|
4945 |
msgstr ""
|
4946 |
|
4947 |
-
#: languages/vue.php:
|
4948 |
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!"
|
4949 |
msgstr ""
|
4950 |
|
4951 |
-
#: languages/vue.php:
|
4952 |
msgid "Daniel Monaghan - Experienced"
|
4953 |
msgstr ""
|
4954 |
|
4955 |
-
#: languages/vue.php:
|
4956 |
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."
|
4957 |
msgstr ""
|
4958 |
|
4959 |
-
#: languages/vue.php:
|
4960 |
msgid "Naomi Spirit - From This Day"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
-
#: languages/vue.php:
|
4964 |
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!"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
-
#: languages/vue.php:
|
4968 |
msgid "Julie Dupuis - Faraway Land Travel"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
-
#: languages/vue.php:
|
4972 |
msgid "Guides and Documentation:"
|
4973 |
msgstr ""
|
4974 |
|
4975 |
-
#: languages/vue.php:
|
4976 |
msgid "Upgrade to PRO"
|
4977 |
msgstr ""
|
4978 |
|
4979 |
-
#: languages/vue.php:
|
4980 |
msgid "eCommerce Tracking"
|
4981 |
msgstr ""
|
4982 |
|
4983 |
-
#: languages/vue.php:
|
4984 |
msgid "Custom Dimensions"
|
4985 |
msgstr ""
|
4986 |
|
4987 |
-
#: languages/vue.php:
|
4988 |
msgid "Form Tracking"
|
4989 |
msgstr ""
|
4990 |
|
4991 |
-
#: languages/vue.php:
|
4992 |
msgid "AMP Support"
|
4993 |
msgstr ""
|
4994 |
|
4995 |
-
#: languages/vue.php:
|
4996 |
msgid "Author Tracking"
|
4997 |
msgstr ""
|
4998 |
|
4999 |
-
#: languages/vue.php:
|
5000 |
msgid "EU Compliance Addon"
|
5001 |
msgstr ""
|
5002 |
|
5003 |
-
#: languages/vue.php:
|
5004 |
msgid "Real Time Report"
|
5005 |
msgstr ""
|
5006 |
|
5007 |
-
#: languages/vue.php:
|
5008 |
msgid "Google Optimize"
|
5009 |
msgstr ""
|
5010 |
|
5011 |
-
#: languages/vue.php:
|
5012 |
msgid "Custom Date Ranges"
|
5013 |
msgstr ""
|
5014 |
|
5015 |
-
#: languages/vue.php:
|
5016 |
msgid "Getting Started with ExactMetrics"
|
5017 |
msgstr ""
|
5018 |
|
5019 |
-
#: languages/vue.php:
|
5020 |
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."
|
5021 |
msgstr ""
|
5022 |
|
5023 |
-
#: languages/vue.php:
|
5024 |
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."
|
5025 |
msgstr ""
|
5026 |
|
5027 |
-
#: languages/vue.php:
|
5028 |
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!."
|
5029 |
msgstr ""
|
5030 |
|
5031 |
-
#: languages/vue.php:
|
5032 |
msgid "Launch the wizard!"
|
5033 |
msgstr ""
|
5034 |
|
5035 |
-
#: languages/vue.php:
|
5036 |
msgid "Welcome to"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
#. Translators: Adds a line break.
|
5040 |
-
#: languages/vue.php:
|
5041 |
msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
|
5042 |
msgstr ""
|
5043 |
|
5044 |
-
#. Translators: Makes
|
5045 |
-
#: languages/vue.php:
|
5046 |
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."
|
5047 |
msgstr ""
|
5048 |
|
5049 |
-
#: languages/vue.php:
|
5050 |
msgid "ExactMetrics Features & Addons"
|
5051 |
msgstr ""
|
5052 |
|
5053 |
-
#: languages/vue.php:
|
5054 |
msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
|
5055 |
msgstr ""
|
5056 |
|
5057 |
-
#: languages/vue.php:
|
5058 |
msgid "Loading new report data"
|
5059 |
msgstr ""
|
5060 |
|
5061 |
-
#: languages/vue.php:
|
5062 |
msgid "Please wait..."
|
5063 |
msgstr ""
|
5064 |
|
5065 |
-
#. Translators:
|
5066 |
-
#: languages/vue.php:
|
5067 |
msgid "Continue %s"
|
5068 |
msgstr ""
|
5069 |
|
5070 |
-
#: languages/vue.php:
|
5071 |
msgid "Unlock the Publishers Report and Focus on the Content that Matters"
|
5072 |
msgstr ""
|
5073 |
|
5074 |
-
#: languages/vue.php:
|
5075 |
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."
|
5076 |
msgstr ""
|
5077 |
|
5078 |
-
#: languages/vue.php:
|
5079 |
msgid "Unlock the Publishers Report and Focus on the Content That Matters"
|
5080 |
msgstr ""
|
5081 |
|
5082 |
-
#: languages/vue.php:
|
5083 |
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."
|
5084 |
msgstr ""
|
5085 |
|
5086 |
-
#: languages/vue.php:
|
5087 |
msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
|
5088 |
msgstr ""
|
5089 |
|
5090 |
-
#: languages/vue.php:
|
5091 |
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."
|
5092 |
msgstr ""
|
5093 |
|
5094 |
-
#: languages/vue.php:
|
5095 |
msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
|
5096 |
msgstr ""
|
5097 |
|
5098 |
-
#: languages/vue.php:
|
5099 |
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."
|
5100 |
msgstr ""
|
5101 |
|
5102 |
-
#: languages/vue.php:
|
5103 |
msgid "Unlock the Forms Report and Improve Conversions"
|
5104 |
msgstr ""
|
5105 |
|
5106 |
-
#: languages/vue.php:
|
5107 |
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."
|
5108 |
msgstr ""
|
5109 |
|
5110 |
-
#: languages/vue.php:
|
5111 |
msgid "Unlock the Search Console Report and See How People Find Your Website"
|
5112 |
msgstr ""
|
5113 |
|
5114 |
-
#: languages/vue.php:
|
5115 |
msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
|
5116 |
msgstr ""
|
5117 |
|
5118 |
-
#: languages/vue.php:
|
5119 |
msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
-
#: languages/vue.php:
|
5123 |
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."
|
5124 |
msgstr ""
|
5125 |
|
5126 |
-
#: languages/vue.php:
|
5127 |
msgid "Go back"
|
5128 |
msgstr ""
|
5129 |
|
5130 |
#. Translators: Adds a link to documentation.
|
5131 |
-
#: languages/vue.php:
|
5132 |
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"
|
5133 |
msgstr ""
|
5134 |
|
5135 |
#. Translators: Adds link to activate/install plugin and documentation.
|
5136 |
-
#: languages/vue.php:
|
5137 |
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"
|
5138 |
msgstr ""
|
5139 |
|
5140 |
#. Translators: Adds a link to documentation.
|
5141 |
-
#: languages/vue.php:
|
5142 |
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"
|
5143 |
msgstr ""
|
5144 |
|
5145 |
#. Translators: Adds link to activate/install plugin and documentation.
|
5146 |
-
#: languages/vue.php:
|
5147 |
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"
|
5148 |
msgstr ""
|
5149 |
|
5150 |
-
#: languages/vue.php:
|
5151 |
msgid "Time to Purchase"
|
5152 |
msgstr ""
|
5153 |
|
5154 |
-
#: languages/vue.php:
|
5155 |
msgid "This list shows how many days from first visit it took users to purchase products from your site."
|
5156 |
msgstr ""
|
5157 |
|
5158 |
-
#: languages/vue.php:
|
5159 |
msgid "Sessions to Purchase"
|
5160 |
msgstr ""
|
5161 |
|
5162 |
-
#: languages/vue.php:
|
5163 |
msgid "This list shows the number of sessions it took users before they purchased a product from your website."
|
5164 |
msgstr ""
|
5165 |
|
5166 |
-
#: languages/vue.php:
|
5167 |
msgid "Top Posts/Pages"
|
5168 |
msgstr ""
|
5169 |
|
5170 |
-
#: languages/vue.php:
|
5171 |
msgid "This list shows the most viewed posts and pages on your website."
|
5172 |
msgstr ""
|
5173 |
|
5174 |
-
#: languages/vue.php:
|
5175 |
msgid "New vs. Returning Visitors"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
-
#: languages/vue.php:
|
5179 |
msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
|
5180 |
msgstr ""
|
5181 |
|
5182 |
-
#: languages/vue.php:
|
5183 |
msgid "Device Breakdown"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
-
#: languages/vue.php:
|
5187 |
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."
|
5188 |
msgstr ""
|
5189 |
|
5190 |
-
#: languages/vue.php:
|
5191 |
msgid "Top Landing Pages"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
-
#: languages/vue.php:
|
5195 |
msgid "This list shows the top pages users first land on when visiting your website."
|
5196 |
msgstr ""
|
5197 |
|
5198 |
-
#: languages/vue.php:
|
5199 |
msgid "Top Exit Pages"
|
5200 |
msgstr ""
|
5201 |
|
5202 |
-
#: languages/vue.php:
|
5203 |
msgid "This list shows the top pages users exit your website from."
|
5204 |
msgstr ""
|
5205 |
|
5206 |
-
#: languages/vue.php:
|
5207 |
msgid "Top Outbound Links"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
-
#: languages/vue.php:
|
5211 |
msgid "This list shows the top links clicked on your website that go to another website."
|
5212 |
msgstr ""
|
5213 |
|
5214 |
-
#: languages/vue.php:
|
5215 |
msgid "Top Affiliate Links"
|
5216 |
msgstr ""
|
5217 |
|
5218 |
-
#: languages/vue.php:
|
5219 |
msgid "This list shows the top affiliate links your visitors clicked on."
|
5220 |
msgstr ""
|
5221 |
|
5222 |
-
#: languages/vue.php:
|
5223 |
msgid "Top Download Links"
|
5224 |
msgstr ""
|
5225 |
|
5226 |
-
#: languages/vue.php:
|
5227 |
msgid "This list shows the download links your visitors clicked the most."
|
5228 |
msgstr ""
|
5229 |
|
5230 |
-
#: languages/vue.php:
|
5231 |
msgid "Top Products"
|
5232 |
msgstr ""
|
5233 |
|
5234 |
-
#: languages/vue.php:
|
5235 |
msgid "This list shows the top selling products on your website."
|
5236 |
msgstr ""
|
5237 |
|
5238 |
-
#: languages/vue.php:
|
5239 |
msgid "Top Conversion Sources"
|
5240 |
msgstr ""
|
5241 |
|
5242 |
-
#: languages/vue.php:
|
5243 |
msgid "This list shows the top referral websites in terms of product revenue."
|
5244 |
msgstr ""
|
5245 |
|
5246 |
-
#: languages/vue.php:
|
5247 |
msgid "Total Add/Remove"
|
5248 |
msgstr ""
|
5249 |
|
5250 |
-
#: languages/vue.php:
|
5251 |
msgid "New"
|
5252 |
msgstr ""
|
5253 |
|
5254 |
-
#: languages/vue.php:
|
5255 |
msgid "Returning"
|
5256 |
msgstr ""
|
5257 |
|
5258 |
-
#: languages/vue.php:
|
5259 |
msgid "Desktop"
|
5260 |
msgstr ""
|
5261 |
|
5262 |
-
#: languages/vue.php:
|
5263 |
msgid "Tablet"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
-
#: languages/vue.php:
|
5267 |
msgid "Mobile"
|
5268 |
msgstr ""
|
5269 |
|
5270 |
-
#: languages/vue.php:
|
5271 |
msgid "Sessions"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
-
#: languages/vue.php:
|
5275 |
msgid "Pageviews"
|
5276 |
msgstr ""
|
5277 |
|
5278 |
-
#: languages/vue.php:
|
5279 |
msgid "Avg. Session Duration"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
-
#: languages/vue.php:
|
5283 |
msgid "Bounce Rate"
|
5284 |
msgstr ""
|
5285 |
|
5286 |
-
#: languages/vue.php:
|
5287 |
msgid "Top 10 Countries"
|
5288 |
msgstr ""
|
5289 |
|
5290 |
-
#: languages/vue.php:
|
5291 |
msgid "View Countries Report"
|
5292 |
msgstr ""
|
5293 |
|
5294 |
-
#: languages/vue.php:
|
5295 |
msgid "Top 10 Referrals"
|
5296 |
msgstr ""
|
5297 |
|
5298 |
-
#: languages/vue.php:
|
5299 |
msgid "View All Referral Sources"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
-
#: languages/vue.php:
|
5303 |
msgid "View Full Posts/Pages Report"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
-
#: languages/vue.php:
|
5307 |
msgid "A session is the browsing session of a single user to your site."
|
5308 |
msgstr ""
|
5309 |
|
5310 |
-
#: languages/vue.php:
|
5311 |
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."
|
5312 |
msgstr ""
|
5313 |
|
5314 |
-
#: languages/vue.php:
|
5315 |
msgid "Total duration of all sessions (in seconds) / number of sessions."
|
5316 |
msgstr ""
|
5317 |
|
5318 |
-
#: languages/vue.php:
|
5319 |
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."
|
5320 |
msgstr ""
|
5321 |
|
5322 |
-
#: languages/vue.php:
|
5323 |
msgid "This list shows the top countries your website visitors are from."
|
5324 |
msgstr ""
|
5325 |
|
5326 |
-
#: languages/vue.php:
|
5327 |
msgid "This list shows the top websites that send your website traffic, known as referral traffic."
|
5328 |
msgstr ""
|
5329 |
|
5330 |
-
#: languages/vue.php:
|
5331 |
msgid "Installing Addon"
|
5332 |
msgstr ""
|
5333 |
|
5334 |
-
#: languages/vue.php:
|
5335 |
msgid "Activating Addon"
|
5336 |
msgstr ""
|
5337 |
|
5338 |
-
#: languages/vue.php:
|
5339 |
msgid "Addon Activated"
|
5340 |
msgstr ""
|
5341 |
|
5342 |
-
#: languages/vue.php:
|
5343 |
msgid "Loading report data"
|
5344 |
msgstr ""
|
5345 |
|
5346 |
-
#: languages/vue.php:
|
5347 |
msgid "Please activate manually"
|
5348 |
msgstr ""
|
5349 |
|
5350 |
#. Translators: Adds the error status and status text.
|
5351 |
-
#: languages/vue.php:
|
5352 |
msgid "Error: %1$s, %2$s"
|
5353 |
msgstr ""
|
5354 |
|
5355 |
-
#: languages/vue.php:
|
5356 |
msgid "Error Activating Addon"
|
5357 |
msgstr ""
|
5358 |
|
5359 |
-
#: languages/vue.php:
|
5360 |
msgid "Dismiss"
|
5361 |
msgstr ""
|
5362 |
|
5363 |
-
#: languages/vue.php:
|
5364 |
msgid "Redirecting"
|
5365 |
msgstr ""
|
5366 |
|
5367 |
-
#: languages/vue.php:
|
5368 |
msgid "Please wait"
|
5369 |
msgstr ""
|
5370 |
|
5371 |
-
#: languages/vue.php:
|
5372 |
msgid "activate"
|
5373 |
msgstr ""
|
5374 |
|
5375 |
-
#: languages/vue.php:
|
5376 |
msgid "install"
|
5377 |
msgstr ""
|
5378 |
|
5379 |
-
#: languages/vue.php:
|
5380 |
msgid "Visit addons page"
|
5381 |
msgstr ""
|
5382 |
|
5383 |
-
#: languages/vue.php:
|
5384 |
msgid "Report Unavailable"
|
5385 |
msgstr ""
|
5386 |
|
5387 |
#. Translators: Install/Activate the addon.
|
5388 |
-
#: languages/vue.php:
|
5389 |
msgid "%s Addon"
|
5390 |
msgstr ""
|
5391 |
|
5392 |
-
#: languages/vue.php:
|
5393 |
msgid "Go Back To Reports"
|
5394 |
msgstr ""
|
5395 |
|
5396 |
-
#: languages/vue.php:
|
5397 |
msgid "Enable Enhanced eCommerce"
|
5398 |
msgstr ""
|
5399 |
|
5400 |
-
#: languages/vue.php:
|
5401 |
msgid "Loading Settings"
|
5402 |
msgstr ""
|
5403 |
|
5404 |
-
#: languages/vue.php:
|
5405 |
msgid "Saving Changes..."
|
5406 |
msgstr ""
|
5407 |
|
5408 |
-
#: languages/vue.php:
|
5409 |
msgid "Settings Updated"
|
5410 |
msgstr ""
|
5411 |
|
5412 |
#. Translators: Add a link to the onboarding wizard.
|
5413 |
-
#: languages/vue.php:
|
5414 |
msgid "You need to %1$sconnect ExactMetrics%2$s first"
|
5415 |
msgstr ""
|
5416 |
|
5417 |
-
#: languages/vue.php:
|
5418 |
msgid "Could Not Save Changes"
|
5419 |
msgstr ""
|
5420 |
|
5421 |
#. Translators: Gets replaced with the number of days.
|
5422 |
-
#: languages/vue.php:
|
5423 |
msgid "Last %s days"
|
5424 |
msgstr ""
|
5425 |
|
5426 |
-
#: languages/vue.php:
|
5427 |
msgid "Analytics"
|
5428 |
msgstr ""
|
5429 |
|
5430 |
#. Translators: Adds an arrow icon.
|
5431 |
-
#: languages/vue.php:
|
5432 |
msgid "View All Reports %s"
|
5433 |
msgstr ""
|
5434 |
|
5435 |
#. Translators: Placeholders are used for making text bold and adding a link.
|
5436 |
-
#: languages/vue.php:
|
5437 |
msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
|
5438 |
msgstr ""
|
5439 |
|
5440 |
#. Translators: Placeholders make the text highlighted.
|
5441 |
-
#: languages/vue.php:
|
5442 |
msgid "%1$sNeed%2$s to Grow FASTER??"
|
5443 |
msgstr ""
|
5444 |
|
5445 |
-
#: languages/vue.php:
|
5446 |
msgid "Get additional, actionable insights by going Pro."
|
5447 |
msgstr ""
|
5448 |
|
5449 |
-
#: languages/vue.php:
|
5450 |
msgid "Skip"
|
5451 |
msgstr ""
|
5452 |
|
5453 |
-
#: languages/vue.php:
|
5454 |
msgid "See All Features"
|
5455 |
msgstr ""
|
5456 |
|
5457 |
-
#: languages/vue.php:
|
5458 |
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."
|
5459 |
msgstr ""
|
5460 |
|
5461 |
-
#: languages/vue.php:
|
5462 |
msgid "Our Pro plan includes:"
|
5463 |
msgstr ""
|
5464 |
|
5465 |
-
#: languages/vue.php:
|
5466 |
msgid "Awesome, You're All Set!"
|
5467 |
msgstr ""
|
5468 |
|
5469 |
-
#: languages/vue.php:
|
5470 |
msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
|
5471 |
msgstr ""
|
5472 |
|
5473 |
#. Translators: Make the text bold.
|
5474 |
-
#: languages/vue.php:
|
5475 |
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."
|
5476 |
msgstr ""
|
5477 |
|
5478 |
#. Translators: Add link to blog.
|
5479 |
-
#: languages/vue.php:
|
5480 |
msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
|
5481 |
msgstr ""
|
5482 |
|
5483 |
-
#: languages/vue.php:
|
5484 |
msgid "Finish Setup & Exit Wizard"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
-
#: languages/vue.php:
|
5488 |
msgid "Google Analytics"
|
5489 |
msgstr ""
|
5490 |
|
5491 |
-
#: languages/vue.php:
|
5492 |
msgid "Subscribe"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
-
#: languages/vue.php:
|
5496 |
msgid "Checking your website..."
|
5497 |
msgstr ""
|
5498 |
|
5499 |
-
#: languages/vue.php:
|
5500 |
msgid "Recommended Settings"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
-
#: languages/vue.php:
|
5504 |
msgid "ExactMetrics recommends the following settings based on your configuration."
|
5505 |
msgstr ""
|
5506 |
|
5507 |
-
#: languages/vue.php:
|
5508 |
msgid "Events Tracking"
|
5509 |
msgstr ""
|
5510 |
|
5511 |
-
#: languages/vue.php:
|
5512 |
msgid "Must have for all click tracking on site."
|
5513 |
msgstr ""
|
5514 |
|
5515 |
-
#: languages/vue.php:
|
5516 |
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."
|
5517 |
msgstr ""
|
5518 |
|
5519 |
-
#: languages/vue.php:
|
5520 |
msgid "Enhanced Link Attribution"
|
5521 |
msgstr ""
|
5522 |
|
5523 |
-
#: languages/vue.php:
|
5524 |
msgid "Improves the accuracy of your In-Page Analytics."
|
5525 |
msgstr ""
|
5526 |
|
5527 |
-
#: languages/vue.php:
|
5528 |
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."
|
5529 |
msgstr ""
|
5530 |
|
5531 |
-
#: languages/vue.php:
|
5532 |
msgid "Install Updates Automatically"
|
5533 |
msgstr ""
|
5534 |
|
5535 |
-
#: languages/vue.php:
|
5536 |
msgid "Get the latest features, bug fixes, and security updates as they are released."
|
5537 |
msgstr ""
|
5538 |
|
5539 |
-
#: languages/vue.php:
|
5540 |
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."
|
5541 |
msgstr ""
|
5542 |
|
5543 |
-
#: languages/vue.php:
|
5544 |
msgid "File Download Tracking"
|
5545 |
msgstr ""
|
5546 |
|
5547 |
-
#: languages/vue.php:
|
5548 |
msgid "Helps you see file downloads data."
|
5549 |
msgstr ""
|
5550 |
|
5551 |
-
#: languages/vue.php:
|
5552 |
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."
|
5553 |
msgstr ""
|
5554 |
|
5555 |
#. Translators: Example path (/go/).
|
5556 |
-
#: languages/vue.php:
|
5557 |
msgid "Path (example: %s)"
|
5558 |
msgstr ""
|
5559 |
|
5560 |
-
#: languages/vue.php:
|
5561 |
msgid "Path has to start with a / and have no spaces"
|
5562 |
msgstr ""
|
5563 |
|
5564 |
#. Translators: Example label (aff).
|
5565 |
-
#: languages/vue.php:
|
5566 |
msgid "Label (example: %s)"
|
5567 |
msgstr ""
|
5568 |
|
5569 |
-
#: languages/vue.php:
|
5570 |
msgid "Label can't contain any spaces"
|
5571 |
msgstr ""
|
5572 |
|
5573 |
-
#: languages/vue.php:
|
5574 |
msgid "Helps you increase affiliate revenue."
|
5575 |
msgstr ""
|
5576 |
|
5577 |
-
#: languages/vue.php:
|
5578 |
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."
|
5579 |
msgstr ""
|
5580 |
|
5581 |
-
#: languages/vue.php:
|
5582 |
msgid "Affiliate Link Tracking"
|
5583 |
msgstr ""
|
5584 |
|
5585 |
-
#: languages/vue.php:
|
5586 |
msgid "Who Can See Reports"
|
5587 |
msgstr ""
|
5588 |
|
5589 |
-
#: languages/vue.php:
|
5590 |
msgid "These user roles will be able to access ExactMetrics's reports in the WordPress admin area."
|
5591 |
msgstr ""
|
5592 |
|
5593 |
-
#: languages/vue.php:
|
5594 |
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."
|
5595 |
msgstr ""
|
5596 |
|
5597 |
-
#: languages/vue.php:
|
5598 |
msgid "Save and continue"
|
5599 |
msgstr ""
|
5600 |
|
5601 |
-
#: languages/vue.php:
|
5602 |
msgid "Events Tracking is enabled the moment you set up ExactMetrics"
|
5603 |
msgstr ""
|
5604 |
|
5605 |
-
#: languages/vue.php:
|
5606 |
msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
|
5607 |
msgstr ""
|
5608 |
|
5609 |
-
#: languages/vue.php:
|
5610 |
msgid "+ Add Role"
|
5611 |
msgstr ""
|
5612 |
|
5613 |
-
#: languages/vue.php:
|
5614 |
msgid "Affiliate Links"
|
5615 |
msgstr ""
|
5616 |
|
5617 |
#. Translators: Add links to documentation.
|
5618 |
-
#: languages/vue.php:
|
5619 |
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."
|
5620 |
msgstr ""
|
5621 |
|
5622 |
-
#: languages/vue.php:
|
5623 |
msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
|
5624 |
msgstr ""
|
5625 |
|
5626 |
-
#: languages/vue.php:
|
5627 |
msgid "Connect ExactMetrics to Your Website"
|
5628 |
msgstr ""
|
5629 |
|
5630 |
-
#: languages/vue.php:
|
5631 |
msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
|
5632 |
msgstr ""
|
5633 |
|
5634 |
-
#: languages/vue.php:
|
5635 |
msgid "Connect Google Analytics + WordPress"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
-
#: languages/vue.php:
|
5639 |
msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
|
5640 |
msgstr ""
|
5641 |
|
5642 |
-
#: languages/vue.php:
|
5643 |
msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
|
5644 |
msgstr ""
|
5645 |
|
5646 |
-
#: languages/vue.php:
|
5647 |
msgid "Manually enter your UA code"
|
5648 |
msgstr ""
|
5649 |
|
5650 |
-
#: languages/vue.php:
|
5651 |
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."
|
5652 |
msgstr ""
|
5653 |
|
5654 |
-
#: languages/vue.php:
|
5655 |
msgid "Save and Continue"
|
5656 |
msgstr ""
|
5657 |
|
5658 |
-
#: languages/vue.php:
|
5659 |
msgid "UA code can't be empty"
|
5660 |
msgstr ""
|
5661 |
|
5662 |
-
#: languages/vue.php:
|
5663 |
msgid "Saving UA code..."
|
5664 |
msgstr ""
|
5665 |
|
5666 |
#. Translators: placeholders make text small.
|
5667 |
-
#: languages/vue.php:
|
5668 |
msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
|
5669 |
msgstr ""
|
5670 |
|
5671 |
#. Translators: placeholders make text small.
|
5672 |
-
#: languages/vue.php:
|
5673 |
msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
|
5674 |
msgstr ""
|
5675 |
|
5676 |
#. Translators: placeholders make text small.
|
5677 |
-
#: languages/vue.php:
|
5678 |
msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
|
5679 |
msgstr ""
|
5680 |
|
5681 |
#. Translators: placeholders make text small.
|
5682 |
-
#: languages/vue.php:
|
5683 |
msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
|
5684 |
msgstr ""
|
5685 |
|
5686 |
#. Translators: placeholders make text small.
|
5687 |
-
#: languages/vue.php:
|
5688 |
msgid "None %1$s- Manually update everything.%2$s"
|
5689 |
msgstr ""
|
5690 |
|
5691 |
#. Translators: Adds a link to the general settings tab.
|
5692 |
-
#: languages/vue.php:
|
5693 |
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."
|
5694 |
msgstr ""
|
5695 |
|
5696 |
-
#: languages/vue.php:
|
5697 |
msgid "Permissions"
|
5698 |
msgstr ""
|
5699 |
|
5700 |
-
#: languages/vue.php:
|
5701 |
msgid "Allow These User Roles to See Reports"
|
5702 |
msgstr ""
|
5703 |
|
5704 |
-
#: languages/vue.php:
|
5705 |
msgid "Users that have at least one of these roles will be able to view the reports."
|
5706 |
msgstr ""
|
5707 |
|
5708 |
-
#: languages/vue.php:
|
5709 |
msgid "Allow These User Roles to Save Settings"
|
5710 |
msgstr ""
|
5711 |
|
5712 |
-
#: languages/vue.php:
|
5713 |
msgid "Users that have at least one of these roles will be able to view and save the settings panel."
|
5714 |
msgstr ""
|
5715 |
|
5716 |
-
#: languages/vue.php:
|
5717 |
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."
|
5718 |
msgstr ""
|
5719 |
|
5720 |
-
#: languages/vue.php:
|
5721 |
msgid "Exclude These User Roles From Tracking"
|
5722 |
msgstr ""
|
5723 |
|
5724 |
-
#: languages/vue.php:
|
5725 |
msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
|
5726 |
msgstr ""
|
5727 |
|
5728 |
-
#: languages/vue.php:
|
5729 |
msgid "Custom code"
|
5730 |
msgstr ""
|
5731 |
|
5732 |
#. Translators: Adds a link to the Google reference.
|
5733 |
-
#: languages/vue.php:
|
5734 |
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."
|
5735 |
msgstr ""
|
5736 |
|
5737 |
-
#: languages/vue.php:
|
5738 |
msgid "Automatic Updates"
|
5739 |
msgstr ""
|
5740 |
|
5741 |
-
#: languages/vue.php:
|
5742 |
msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
|
5743 |
msgstr ""
|
5744 |
|
5745 |
-
#: languages/vue.php:
|
5746 |
msgid "Hide Admin Bar Reports"
|
5747 |
msgstr ""
|
5748 |
|
5749 |
#. Translators: placeholders make text small.
|
5750 |
-
#: languages/vue.php:
|
5751 |
msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
|
5752 |
msgstr ""
|
5753 |
|
5754 |
-
#: languages/vue.php:
|
5755 |
msgid "Last 30 Days Analytics for "
|
5756 |
msgstr ""
|
5757 |
|
5758 |
-
#: languages/vue.php:
|
5759 |
msgid "Your Website"
|
5760 |
msgstr ""
|
5761 |
|
5762 |
-
#: languages/vue.php:
|
5763 |
msgid "Avg. Duration"
|
5764 |
msgstr ""
|
5765 |
|
5766 |
-
#: languages/vue.php:
|
5767 |
msgid "More data is available"
|
5768 |
msgstr ""
|
5769 |
|
5770 |
-
#: languages/vue.php:
|
5771 |
msgid "Want to see page-specific stats?"
|
5772 |
msgstr ""
|
5773 |
|
5774 |
-
#: languages/vue.php:
|
5775 |
msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
|
5776 |
msgstr ""
|
5777 |
|
5778 |
-
#: languages/vue.php:
|
5779 |
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."
|
5780 |
msgstr ""
|
5781 |
|
5782 |
-
#: languages/vue.php:
|
5783 |
msgid "The ExactMetrics Team"
|
5784 |
msgstr ""
|
5785 |
|
5786 |
-
#: languages/vue.php:
|
5787 |
msgid "One-click Complete eCommerce tracking"
|
5788 |
msgstr ""
|
5789 |
|
5790 |
-
#: languages/vue.php:
|
5791 |
msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
|
5792 |
msgstr ""
|
5793 |
|
5794 |
-
#: languages/vue.php:
|
5795 |
msgid "Forms Tracking"
|
5796 |
msgstr ""
|
5797 |
|
5798 |
-
#: languages/vue.php:
|
5799 |
msgid "One-click Form Events Tracking"
|
5800 |
msgstr ""
|
5801 |
|
5802 |
-
#: languages/vue.php:
|
5803 |
msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
|
5804 |
msgstr ""
|
5805 |
|
5806 |
-
#: languages/vue.php:
|
5807 |
msgid "WordPress Admin Area Reports"
|
5808 |
msgstr ""
|
5809 |
|
5810 |
-
#: languages/vue.php:
|
5811 |
msgid "Standard Reports"
|
5812 |
msgstr ""
|
5813 |
|
5814 |
-
#: languages/vue.php:
|
5815 |
msgid "Overview Reports for the last 30 days."
|
5816 |
msgstr ""
|
5817 |
|
5818 |
-
#: languages/vue.php:
|
5819 |
msgid "Advanced Reports"
|
5820 |
msgstr ""
|
5821 |
|
5822 |
-
#: languages/vue.php:
|
5823 |
msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
|
5824 |
msgstr ""
|
5825 |
|
5826 |
-
#: languages/vue.php:
|
5827 |
msgid "Dashboard Widget"
|
5828 |
msgstr ""
|
5829 |
|
5830 |
-
#: languages/vue.php:
|
5831 |
msgid "Basic Widget"
|
5832 |
msgstr ""
|
5833 |
|
5834 |
-
#: languages/vue.php:
|
5835 |
msgid "Overview Report Synopsis"
|
5836 |
msgstr ""
|
5837 |
|
5838 |
-
#: languages/vue.php:
|
5839 |
msgid "Advanced Dashboard Widget"
|
5840 |
msgstr ""
|
5841 |
|
5842 |
-
#: languages/vue.php:
|
5843 |
msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
|
5844 |
msgstr ""
|
5845 |
|
5846 |
-
#: languages/vue.php:
|
5847 |
msgid "Publisher Reports"
|
5848 |
msgstr ""
|
5849 |
|
5850 |
-
#: languages/vue.php:
|
5851 |
msgid "Advanced Publisher Reports & Tracking"
|
5852 |
msgstr ""
|
5853 |
|
5854 |
-
#: languages/vue.php:
|
5855 |
msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
|
5856 |
msgstr ""
|
5857 |
|
5858 |
-
#: languages/vue.php:
|
5859 |
msgid "Not Available"
|
5860 |
msgstr ""
|
5861 |
|
5862 |
-
#: languages/vue.php:
|
5863 |
msgid "Complete Custom Dimensions Tracking"
|
5864 |
msgstr ""
|
5865 |
|
5866 |
-
#: languages/vue.php:
|
5867 |
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"
|
5868 |
msgstr ""
|
5869 |
|
5870 |
-
#: languages/vue.php:
|
5871 |
msgid "Limited Support"
|
5872 |
msgstr ""
|
5873 |
|
5874 |
-
#: languages/vue.php:
|
5875 |
msgid "Priority Support"
|
5876 |
msgstr ""
|
5877 |
|
5878 |
-
#: languages/vue.php:
|
5879 |
msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
|
5880 |
msgstr ""
|
5881 |
|
5882 |
-
#: languages/vue.php:
|
5883 |
msgid "Feature"
|
5884 |
msgstr ""
|
5885 |
|
5886 |
-
#: languages/vue.php:
|
5887 |
msgid "Lite"
|
5888 |
msgstr ""
|
5889 |
|
5890 |
-
#: languages/vue.php:
|
5891 |
msgid "Pro"
|
5892 |
msgstr ""
|
5893 |
|
5894 |
-
#: languages/vue.php:
|
5895 |
msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
|
5896 |
msgstr ""
|
5897 |
|
5898 |
-
#: languages/vue.php:
|
5899 |
msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
|
5900 |
msgstr ""
|
5901 |
|
5902 |
-
#: languages/vue.php:
|
5903 |
msgid "Upgrade to Pro"
|
5904 |
msgstr ""
|
5905 |
|
5906 |
-
#: languages/vue.php:
|
5907 |
msgid "Universal Tracking"
|
5908 |
msgstr ""
|
5909 |
|
5910 |
-
#: languages/vue.php:
|
5911 |
msgid "Included"
|
5912 |
msgstr ""
|
5913 |
|
5914 |
-
#: languages/vue.php:
|
5915 |
msgid "Custom Google Analytics Link Tracking"
|
5916 |
msgstr ""
|
5917 |
|
5918 |
-
#: languages/vue.php:
|
5919 |
msgid "Standard Tracking"
|
5920 |
msgstr ""
|
5921 |
|
5922 |
-
#: languages/vue.php:
|
5923 |
msgid "Advanced Tracking"
|
5924 |
msgstr ""
|
5925 |
|
5926 |
-
#: languages/vue.php:
|
5927 |
msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
|
5928 |
msgstr ""
|
5929 |
|
5930 |
-
#: languages/vue.php:
|
5931 |
msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
|
5932 |
msgstr ""
|
5933 |
|
5934 |
-
#: languages/vue.php:
|
5935 |
msgid "No-Code-Needed Tracking Features"
|
5936 |
msgstr ""
|
5937 |
|
5938 |
-
#: languages/vue.php:
|
5939 |
msgid "Basic Tracking Options"
|
5940 |
msgstr ""
|
5941 |
|
5942 |
-
#: languages/vue.php:
|
5943 |
msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
|
5944 |
msgstr ""
|
5945 |
|
5946 |
-
#: languages/vue.php:
|
5947 |
msgid "Advanced Tracking Options"
|
5948 |
msgstr ""
|
5949 |
|
5950 |
-
#: languages/vue.php:
|
5951 |
msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
|
5952 |
msgstr ""
|
5953 |
|
5954 |
-
#: languages/vue.php:
|
5955 |
msgid "Welcome to the all-new ExactMetrics"
|
5956 |
msgstr ""
|
5957 |
|
5958 |
-
#: languages/vue.php:
|
5959 |
msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
|
5960 |
msgstr ""
|
5961 |
|
5962 |
-
#: languages/vue.php:
|
5963 |
msgid "The New & Improved ExactMetrics includes:"
|
5964 |
msgstr ""
|
5965 |
|
5966 |
-
#: languages/vue.php:
|
5967 |
msgid "All-New Design"
|
5968 |
msgstr ""
|
5969 |
|
5970 |
-
#: languages/vue.php:
|
5971 |
msgid "Better Reporting"
|
5972 |
msgstr ""
|
5973 |
|
5974 |
-
#: languages/vue.php:
|
5975 |
msgid "Better Tracking"
|
5976 |
msgstr ""
|
5977 |
|
5978 |
-
#: languages/vue.php:
|
5979 |
msgid "Better Support"
|
5980 |
msgstr ""
|
5981 |
|
5982 |
-
#: languages/vue.php:
|
5983 |
msgid "Continue"
|
5984 |
msgstr ""
|
5985 |
|
5986 |
-
#: languages/vue.php:
|
5987 |
msgid "Your settings have been automatically transferred."
|
5988 |
msgstr ""
|
5989 |
|
5990 |
-
#: languages/vue.php:
|
5991 |
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."
|
5992 |
msgstr ""
|
5993 |
|
5994 |
-
#: languages/vue.php:
|
5995 |
msgid "ExactMetrics Recommends WPForms"
|
5996 |
msgstr ""
|
5997 |
|
5998 |
-
#: languages/vue.php:
|
5999 |
msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
|
6000 |
msgstr ""
|
6001 |
|
6002 |
-
#: languages/vue.php:
|
6003 |
msgid "Used on over 3,000,000 websites!"
|
6004 |
msgstr ""
|
6005 |
|
6006 |
-
#: languages/vue.php:
|
6007 |
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!"
|
6008 |
msgstr ""
|
6009 |
|
6010 |
-
#: languages/vue.php:
|
6011 |
msgid "Skip this Step"
|
6012 |
msgstr ""
|
6013 |
|
6014 |
-
#: languages/vue.php:
|
6015 |
msgid "Continue & Install WPForms"
|
6016 |
msgstr ""
|
6017 |
|
6018 |
-
#: languages/vue.php:
|
6019 |
msgid "Installing..."
|
6020 |
msgstr ""
|
6021 |
|
6022 |
-
#: languages/vue.php:
|
6023 |
msgid "Welcome to ExactMetrics!"
|
6024 |
msgstr ""
|
6025 |
|
6026 |
-
#: languages/vue.php:
|
6027 |
msgid "Let's get you set up."
|
6028 |
msgstr ""
|
6029 |
|
6030 |
-
#: languages/vue.php:
|
6031 |
msgid "Which category best describes your website?"
|
6032 |
msgstr ""
|
6033 |
|
6034 |
-
#: languages/vue.php:
|
6035 |
msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
|
6036 |
msgstr ""
|
6037 |
|
6038 |
-
#: languages/vue.php:
|
6039 |
msgid "Business Website"
|
6040 |
msgstr ""
|
6041 |
|
6042 |
#. Translators: Make text bold.
|
6043 |
-
#: languages/vue.php:
|
6044 |
msgid "Publisher %1$s(Blog)%2$s"
|
6045 |
msgstr ""
|
6046 |
|
6047 |
-
#: languages/vue.php:
|
6048 |
msgid "Ecommerce"
|
6049 |
msgstr ""
|
6050 |
|
6051 |
-
#: languages/vue.php:
|
6052 |
msgid "File imported"
|
6053 |
msgstr ""
|
6054 |
|
6055 |
-
#: languages/vue.php:
|
6056 |
msgid "Settings successfully updated!"
|
6057 |
msgstr ""
|
6058 |
|
6059 |
-
#: languages/vue.php:
|
6060 |
msgid "Error importing settings"
|
6061 |
msgstr ""
|
6062 |
|
6063 |
-
#: languages/vue.php:
|
6064 |
msgid "Please choose a .json file generated by a ExactMetrics settings export."
|
6065 |
msgstr ""
|
6066 |
|
6067 |
-
#: languages/vue.php:
|
6068 |
msgid "Import/Export"
|
6069 |
msgstr ""
|
6070 |
|
6071 |
-
#: languages/vue.php:
|
6072 |
msgid "Import"
|
6073 |
msgstr ""
|
6074 |
|
6075 |
-
#: languages/vue.php:
|
6076 |
msgid "Import settings from another ExactMetrics website."
|
6077 |
msgstr ""
|
6078 |
|
6079 |
-
#: languages/vue.php:
|
6080 |
msgid "Export"
|
6081 |
msgstr ""
|
6082 |
|
6083 |
-
#: languages/vue.php:
|
6084 |
msgid "Export settings to import into another ExactMetrics install."
|
6085 |
msgstr ""
|
6086 |
|
6087 |
-
#: languages/vue.php:
|
6088 |
msgid "Import Settings"
|
6089 |
msgstr ""
|
6090 |
|
6091 |
-
#: languages/vue.php:
|
6092 |
msgid "Export Settings"
|
6093 |
msgstr ""
|
6094 |
|
6095 |
-
#: languages/vue.php:
|
6096 |
msgid "Please choose a file to import"
|
6097 |
msgstr ""
|
6098 |
|
6099 |
-
#: languages/vue.php:
|
6100 |
msgid "Use the filepicker below to select the settings export file from another site."
|
6101 |
msgstr ""
|
6102 |
|
6103 |
-
#: languages/vue.php:
|
6104 |
msgid "Use the button below to export a file with your ExactMetrics settings."
|
6105 |
msgstr ""
|
6106 |
|
6107 |
-
#: languages/vue.php:
|
6108 |
msgid "Choose file"
|
6109 |
msgstr ""
|
6110 |
|
6111 |
-
#: languages/vue.php:
|
6112 |
msgid "No file chosen"
|
6113 |
msgstr ""
|
6114 |
|
6115 |
-
#: languages/vue.php:
|
6116 |
msgid "Uploading file..."
|
6117 |
msgstr ""
|
6118 |
|
6119 |
-
#: languages/vue.php:
|
6120 |
msgid "Cross Domain Tracking"
|
6121 |
msgstr ""
|
6122 |
|
6123 |
#. Translators: Add links to documentation.
|
6124 |
-
#: languages/vue.php:
|
6125 |
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."
|
6126 |
msgstr ""
|
6127 |
|
6128 |
-
#: languages/vue.php:
|
6129 |
msgid "Demographics"
|
6130 |
msgstr ""
|
6131 |
|
6132 |
-
#: languages/vue.php:
|
6133 |
msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
|
6134 |
msgstr ""
|
6135 |
|
6136 |
-
#: languages/vue.php:
|
6137 |
msgid "Anonymize IP Addresses"
|
6138 |
msgstr ""
|
6139 |
|
6140 |
-
#: languages/vue.php:
|
6141 |
msgid "Link Attribution"
|
6142 |
msgstr ""
|
6143 |
|
6144 |
-
#: languages/vue.php:
|
6145 |
msgid "Enable Enhanced Link Attribution"
|
6146 |
msgstr ""
|
6147 |
|
6148 |
-
#: languages/vue.php:
|
6149 |
msgid "Enable Anchor Tracking"
|
6150 |
msgstr ""
|
6151 |
|
6152 |
-
#: languages/vue.php:
|
6153 |
msgid "Enable allowAnchor"
|
6154 |
msgstr ""
|
6155 |
|
6156 |
-
#: languages/vue.php:
|
6157 |
msgid "Enable allowLinker"
|
6158 |
msgstr ""
|
6159 |
|
6160 |
-
#: languages/vue.php:
|
6161 |
msgid "Enable Tag Links in RSS"
|
6162 |
msgstr ""
|
6163 |
|
6164 |
-
#: languages/vue.php:
|
6165 |
msgid "File Downloads"
|
6166 |
msgstr ""
|
6167 |
|
6168 |
-
#: languages/vue.php:
|
6169 |
msgid "Extensions of Files to Track as Downloads"
|
6170 |
msgstr ""
|
6171 |
|
6172 |
-
#: languages/vue.php:
|
6173 |
msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
|
6174 |
msgstr ""
|
6175 |
|
6176 |
#. Translators: Add links to documentation.
|
6177 |
-
#: languages/vue.php:
|
6178 |
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."
|
6179 |
msgstr ""
|
6180 |
|
6181 |
#. Translators: Add links to documentation.
|
6182 |
-
#: languages/vue.php:
|
6183 |
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."
|
6184 |
msgstr ""
|
6185 |
|
6186 |
#. Translators: Add links to documentation.
|
6187 |
-
#: languages/vue.php:
|
6188 |
msgid "Add %1$sEnhanced Link Attribution%2$s to your tracking code."
|
6189 |
msgstr ""
|
6190 |
|
6191 |
-
#: languages/vue.php:
|
6192 |
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."
|
6193 |
msgstr ""
|
6194 |
|
6195 |
#. Translators: Add links to documentation.
|
6196 |
-
#: languages/vue.php:
|
6197 |
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."
|
6198 |
msgstr ""
|
6199 |
|
6200 |
#. Translators: Add links to documentation.
|
6201 |
-
#: languages/vue.php:
|
6202 |
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."
|
6203 |
msgstr ""
|
6204 |
|
6205 |
#. Translators: Add links to documentation.
|
6206 |
-
#: languages/vue.php:
|
6207 |
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."
|
6208 |
msgstr ""
|
6209 |
|
6210 |
-
#: languages/vue.php:
|
6211 |
msgid "Add domain"
|
6212 |
msgstr ""
|
6213 |
|
6214 |
#. Translators: Domain name example.
|
6215 |
-
#: languages/vue.php:
|
6216 |
msgid "Domain (example: %s)"
|
6217 |
msgstr ""
|
6218 |
|
6219 |
#. Translators: Current domain name that should not be used.
|
6220 |
-
#: languages/vue.php:
|
6221 |
msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
|
6222 |
msgstr ""
|
6223 |
|
6224 |
-
#: languages/vue.php:
|
6225 |
msgid "Custom Campaign Parameters"
|
6226 |
msgstr ""
|
6227 |
|
6228 |
-
#: languages/vue.php:
|
6229 |
msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
|
6230 |
msgstr ""
|
6231 |
|
6232 |
-
#: languages/vue.php:
|
6233 |
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."
|
6234 |
msgstr ""
|
6235 |
|
6236 |
#. Translators: Marks the field as required.
|
6237 |
-
#: languages/vue.php:
|
6238 |
msgid "Website URL %s"
|
6239 |
msgstr ""
|
6240 |
|
6241 |
#. Translators: Display the current website url in italic.
|
6242 |
-
#: languages/vue.php:
|
6243 |
msgid "The full website URL (e.g. %1$s %2$s%3$s)"
|
6244 |
msgstr ""
|
6245 |
|
6246 |
#. Translators: Marks the field as required.
|
6247 |
-
#: languages/vue.php:
|
6248 |
msgid "Campaign Source %s"
|
6249 |
msgstr ""
|
6250 |
|
6251 |
#. Translators: Make the text italic.
|
6252 |
-
#: languages/vue.php:
|
6253 |
msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
|
6254 |
msgstr ""
|
6255 |
|
6256 |
#. Translators: Make the text italic.
|
6257 |
-
#: languages/vue.php:
|
6258 |
msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
|
6259 |
msgstr ""
|
6260 |
|
6261 |
#. Translators: Make the text italic.
|
6262 |
-
#: languages/vue.php:
|
6263 |
msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
|
6264 |
msgstr ""
|
6265 |
|
6266 |
-
#: languages/vue.php:
|
6267 |
msgid "Enter the paid keyword"
|
6268 |
msgstr ""
|
6269 |
|
6270 |
-
#: languages/vue.php:
|
6271 |
msgid "Enter something to differentiate ads"
|
6272 |
msgstr ""
|
6273 |
|
6274 |
-
#: languages/vue.php:
|
6275 |
msgid "Use Fragment"
|
6276 |
msgstr ""
|
6277 |
|
6278 |
#. Translators: Make the text bold.
|
6279 |
-
#: languages/vue.php:
|
6280 |
msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
|
6281 |
msgstr ""
|
6282 |
|
6283 |
-
#: languages/vue.php:
|
6284 |
msgid "URL to use"
|
6285 |
msgstr ""
|
6286 |
|
6287 |
-
#: languages/vue.php:
|
6288 |
msgid "(Updates automatically)"
|
6289 |
msgstr ""
|
6290 |
|
6291 |
-
#: languages/vue.php:
|
6292 |
msgid "Copy to Clipboard"
|
6293 |
msgstr ""
|
6294 |
|
6295 |
-
#: languages/vue.php:
|
6296 |
msgid "More Information & Examples"
|
6297 |
msgstr ""
|
6298 |
|
6299 |
-
#: languages/vue.php:
|
6300 |
msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
|
6301 |
msgstr ""
|
6302 |
|
6303 |
-
#: languages/vue.php:
|
6304 |
msgid "Campaign Source"
|
6305 |
msgstr ""
|
6306 |
|
6307 |
-
#: languages/vue.php:
|
6308 |
msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
|
6309 |
msgstr ""
|
6310 |
|
6311 |
-
#: languages/vue.php:
|
6312 |
msgid "Campaign Medium"
|
6313 |
msgstr ""
|
6314 |
|
6315 |
-
#: languages/vue.php:
|
6316 |
msgid "Use utm_medium to identify a medium such as email or cost-per-click."
|
6317 |
msgstr ""
|
6318 |
|
6319 |
-
#: languages/vue.php:
|
6320 |
msgid "Campaign Name"
|
6321 |
msgstr ""
|
6322 |
|
6323 |
-
#: languages/vue.php:
|
6324 |
msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
|
6325 |
msgstr ""
|
6326 |
|
6327 |
-
#: languages/vue.php:
|
6328 |
msgid "Campaign Term"
|
6329 |
msgstr ""
|
6330 |
|
6331 |
-
#: languages/vue.php:
|
6332 |
msgid "Used for paid search. Use utm_term to note the keywords for this ad."
|
6333 |
msgstr ""
|
6334 |
|
6335 |
-
#: languages/vue.php:
|
6336 |
msgid "Campaign Content"
|
6337 |
msgstr ""
|
6338 |
|
6339 |
-
#: languages/vue.php:
|
6340 |
msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
|
6341 |
msgstr ""
|
6342 |
|
6343 |
#. Translators: Example.
|
6344 |
-
#: languages/vue.php:
|
6345 |
msgid "Example: %s"
|
6346 |
msgstr ""
|
6347 |
|
6348 |
#. Translators: Examples.
|
6349 |
-
#: languages/vue.php:
|
6350 |
msgid "Examples: %s"
|
6351 |
msgstr ""
|
6352 |
|
6353 |
-
#: languages/vue.php:
|
6354 |
msgid "About Campaigns"
|
6355 |
msgstr ""
|
6356 |
|
6357 |
-
#: languages/vue.php:
|
6358 |
msgid "About Custom Campaigns"
|
6359 |
msgstr ""
|
6360 |
|
6361 |
-
#: languages/vue.php:
|
6362 |
msgid "Best Practices for Creating Custom Campaigns"
|
6363 |
msgstr ""
|
6364 |
|
6365 |
-
#: languages/vue.php:
|
6366 |
msgid "About the Referral Traffic Report"
|
6367 |
msgstr ""
|
6368 |
|
6369 |
-
#: languages/vue.php:
|
6370 |
msgid "About Traffic Source Dimensions"
|
6371 |
msgstr ""
|
6372 |
|
6373 |
-
#: languages/vue.php:
|
6374 |
msgid "AdWords Auto-Tagging"
|
6375 |
msgstr ""
|
6376 |
|
6377 |
-
#: languages/vue.php:
|
6378 |
msgid "Additional Information"
|
6379 |
msgstr ""
|
6380 |
|
6381 |
-
#: languages/vue.php:
|
6382 |
msgid "Ecommerce Report"
|
6383 |
msgstr ""
|
6384 |
|
6385 |
-
#: languages/vue.php:
|
6386 |
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."
|
6387 |
msgstr ""
|
6388 |
|
6389 |
-
#: languages/vue.php:
|
6390 |
msgid "Here's what you get:"
|
6391 |
msgstr ""
|
6392 |
|
6393 |
-
#: languages/vue.php:
|
6394 |
msgid "See Your Conversion Rate to Improve Funnel"
|
6395 |
msgstr ""
|
6396 |
|
6397 |
-
#: languages/vue.php:
|
6398 |
msgid "See The Number of Transactions and Make Data-Driven Decisions"
|
6399 |
msgstr ""
|
6400 |
|
6401 |
-
#: languages/vue.php:
|
6402 |
msgid "See The Total Revenue to Track Growth"
|
6403 |
msgstr ""
|
6404 |
|
6405 |
-
#: languages/vue.php:
|
6406 |
msgid "See Average Order Value to Find Offer Opportunities"
|
6407 |
msgstr ""
|
6408 |
|
6409 |
-
#: languages/vue.php:
|
6410 |
msgid "See Your Top Products to See Individual Performance"
|
6411 |
msgstr ""
|
6412 |
|
6413 |
-
#: languages/vue.php:
|
6414 |
msgid "See Your Top Conversion Sources and Focus on what's Working"
|
6415 |
msgstr ""
|
6416 |
|
6417 |
-
#: languages/vue.php:
|
6418 |
msgid "See The Time it Takes for Customers to Purchase"
|
6419 |
msgstr ""
|
6420 |
|
6421 |
-
#: languages/vue.php:
|
6422 |
msgid "See How Many Sessions are Needed for a Purchase"
|
6423 |
msgstr ""
|
6424 |
|
6425 |
-
#: languages/vue.php:
|
6426 |
msgid "Unlock the Publisher Report and Focus on the Content That Matters"
|
6427 |
msgstr ""
|
6428 |
|
6429 |
-
#: languages/vue.php:
|
6430 |
msgid "See Your Top Landing Pages to Improve Engagement"
|
6431 |
msgstr ""
|
6432 |
|
6433 |
-
#: languages/vue.php:
|
6434 |
msgid "See Your Top Exit Pages to Reduce Abandonment"
|
6435 |
msgstr ""
|
6436 |
|
6437 |
-
#: languages/vue.php:
|
6438 |
msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
|
6439 |
msgstr ""
|
6440 |
|
6441 |
-
#: languages/vue.php:
|
6442 |
msgid "See Your Top Affiliate Links and Focus on what’s working"
|
6443 |
msgstr ""
|
6444 |
|
6445 |
-
#: languages/vue.php:
|
6446 |
msgid "See Your Top Downloads and Improve Conversions"
|
6447 |
msgstr ""
|
6448 |
|
6449 |
-
#: languages/vue.php:
|
6450 |
msgid "See Audience Demographic Report (Age / Gender / Interests)"
|
6451 |
msgstr ""
|
6452 |
|
6453 |
-
#: languages/vue.php:
|
6454 |
msgid "Forms Report"
|
6455 |
msgstr ""
|
6456 |
|
6457 |
-
#: languages/vue.php:
|
6458 |
msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
|
6459 |
msgstr ""
|
6460 |
|
6461 |
-
#: languages/vue.php:
|
6462 |
msgid "See Your Top Converting Forms and Optimize"
|
6463 |
msgstr ""
|
6464 |
|
6465 |
-
#: languages/vue.php:
|
6466 |
msgid "See Your Forms Impressions Count to Find the Best Placement"
|
6467 |
msgstr ""
|
6468 |
|
6469 |
-
#: languages/vue.php:
|
6470 |
msgid "License Key"
|
6471 |
msgstr ""
|
6472 |
|
6473 |
#. Translators: Add link to retrieve license key from account.
|
6474 |
-
#: languages/vue.php:
|
6475 |
msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
|
6476 |
msgstr ""
|
6477 |
|
6478 |
-
#: languages/vue.php:
|
6479 |
msgid "Google Authentication"
|
6480 |
msgstr ""
|
6481 |
|
6482 |
-
#: languages/vue.php:
|
6483 |
msgid "Miscellaneous"
|
6484 |
msgstr ""
|
6485 |
|
6486 |
-
#: languages/vue.php:
|
6487 |
msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
|
6488 |
msgstr ""
|
6489 |
|
6490 |
-
#: languages/vue.php:
|
6491 |
msgid "Hide Announcements"
|
6492 |
msgstr ""
|
6493 |
|
6494 |
#. Translators: Placeholders make the text green.
|
6495 |
-
#: languages/vue.php:
|
6496 |
msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
|
6497 |
msgstr ""
|
6498 |
|
6499 |
-
#: languages/vue.php:
|
6500 |
msgid "How to Connect to Google Analytics"
|
6501 |
msgstr ""
|
6502 |
|
6503 |
-
#: languages/vue.php:
|
6504 |
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."
|
6505 |
msgstr ""
|
6506 |
|
6507 |
-
#: languages/vue.php:
|
6508 |
msgid "Guide and Checklist for Advanced Insights"
|
6509 |
msgstr ""
|
6510 |
|
6511 |
-
#: languages/vue.php:
|
6512 |
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."
|
6513 |
msgstr ""
|
6514 |
|
6515 |
-
#: languages/vue.php:
|
6516 |
msgid "GDPR Guide"
|
6517 |
msgstr ""
|
6518 |
|
6519 |
-
#: languages/vue.php:
|
6520 |
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. "
|
6521 |
msgstr ""
|
6522 |
|
6523 |
-
#: languages/vue.php:
|
6524 |
msgid "How to Install and Activate ExactMetrics Addons"
|
6525 |
msgstr ""
|
6526 |
|
6527 |
-
#: languages/vue.php:
|
6528 |
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."
|
6529 |
msgstr ""
|
6530 |
|
6531 |
-
#: languages/vue.php:
|
6532 |
msgid "Enabling eCommerce Tracking and Reports"
|
6533 |
msgstr ""
|
6534 |
|
6535 |
-
#: languages/vue.php:
|
6536 |
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."
|
6537 |
msgstr ""
|
6538 |
|
6539 |
-
#: languages/vue.php:
|
6540 |
msgid "Read Documentation"
|
6541 |
msgstr ""
|
6542 |
|
6543 |
#. Translators: Makes the text bold.
|
6544 |
-
#: languages/vue.php:
|
6545 |
msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
|
6546 |
msgstr ""
|
6547 |
|
6548 |
#. Translators: Makes the text bold.
|
6549 |
-
#: languages/vue.php:
|
6550 |
msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
|
6551 |
msgstr ""
|
6552 |
|
6553 |
-
#: languages/vue.php:
|
6554 |
msgid "Unlock Form Tracking"
|
6555 |
msgstr ""
|
6556 |
|
6557 |
-
#: languages/vue.php:
|
6558 |
msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
|
6559 |
msgstr ""
|
6560 |
|
6561 |
-
#: languages/vue.php:
|
6562 |
msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
|
6563 |
msgstr ""
|
6564 |
|
6565 |
-
#: languages/vue.php:
|
6566 |
msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
|
6567 |
msgstr ""
|
6568 |
|
6569 |
-
#: languages/vue.php:
|
6570 |
msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
|
6571 |
msgstr ""
|
6572 |
|
6573 |
-
#: languages/vue.php:
|
6574 |
msgid "No addons found."
|
6575 |
msgstr ""
|
6576 |
|
6577 |
-
#: languages/vue.php:
|
6578 |
msgid "Refresh Addons"
|
6579 |
msgstr ""
|
6580 |
|
6581 |
#. Translators: Adds a line break.
|
6582 |
-
#: languages/vue.php:
|
6583 |
msgid "Upgrade to Pro to unlock addons and other great features."
|
6584 |
msgstr ""
|
6585 |
|
6586 |
-
#: languages/vue.php:
|
6587 |
msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
|
6588 |
msgstr ""
|
6589 |
|
6590 |
-
#: languages/vue.php:
|
6591 |
msgid "Refreshing Addons"
|
6592 |
msgstr ""
|
6593 |
|
6594 |
-
#: languages/vue.php:
|
6595 |
msgid "Recommended Addons"
|
6596 |
msgstr ""
|
6597 |
|
6598 |
#. Translators: Add a link to upgrade and make the text green.
|
6599 |
-
#: languages/vue.php:
|
6600 |
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!"
|
6601 |
msgstr ""
|
6602 |
|
6603 |
-
#: languages/vue.php:
|
6604 |
msgid "Upgrade to PRO Now"
|
6605 |
msgstr ""
|
6606 |
|
6607 |
-
#: languages/vue.php:
|
6608 |
msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
|
6609 |
msgstr ""
|
6610 |
|
6611 |
-
#: languages/vue.php:
|
6612 |
msgid "See All Your Important Store Metrics in One Place."
|
6613 |
msgstr ""
|
6614 |
|
6615 |
-
#: languages/vue.php:
|
6616 |
msgid "... and more:"
|
6617 |
msgstr ""
|
6618 |
|
6619 |
-
#: languages/vue.php:
|
6620 |
msgid "Dimensions- Track authors, categories, trags, searches, users and more."
|
6621 |
msgstr ""
|
6622 |
|
6623 |
-
#: languages/vue.php:
|
6624 |
msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
|
6625 |
msgstr ""
|
6626 |
|
6627 |
-
#: languages/vue.php:
|
6628 |
msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
|
6629 |
msgstr ""
|
6630 |
|
6631 |
-
#: languages/vue.php:
|
6632 |
msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
|
6633 |
msgstr ""
|
6634 |
|
6635 |
-
#: languages/vue.php:
|
6636 |
msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
|
6637 |
msgstr ""
|
6638 |
|
6639 |
-
#: languages/vue.php:
|
6640 |
msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
|
6641 |
msgstr ""
|
6642 |
|
6643 |
-
#: languages/vue.php:
|
6644 |
msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
|
6645 |
msgstr ""
|
6646 |
|
6647 |
-
#: languages/vue.php:
|
6648 |
msgid "Ads- See who’s clicking on your Google Adsense banner ads."
|
6649 |
msgstr ""
|
6650 |
|
6651 |
#. Translators: Error status and error text.
|
6652 |
-
#: languages/vue.php:
|
6653 |
msgid "Can't deauthenticate. Error: %1$s, %2$s"
|
6654 |
msgstr ""
|
6655 |
|
6656 |
-
#: languages/vue.php:
|
6657 |
msgid "You appear to be offline."
|
6658 |
msgstr ""
|
6659 |
|
6660 |
#. Translators: Error status and error text.
|
6661 |
-
#: languages/vue.php:
|
6662 |
msgid "Can't save settings. Error: %1$s, %2$s"
|
6663 |
msgstr ""
|
6664 |
|
6665 |
-
#: languages/vue.php:
|
6666 |
msgid "You appear to be offline. Settings not saved."
|
6667 |
msgstr ""
|
6668 |
|
6669 |
#. Translators: Error status and error text.
|
6670 |
-
#: languages/vue.php:
|
6671 |
msgid "Can't load authentication details. Error: %1$s, %2$s"
|
6672 |
msgstr ""
|
6673 |
|
6674 |
#. Translators: Error status and error text.
|
6675 |
-
#: languages/vue.php:
|
6676 |
msgid "Can't authenticate. Error: %1$s, %2$s"
|
6677 |
msgstr ""
|
6678 |
|
6679 |
#. Translators: Error status and error text.
|
6680 |
-
#: languages/vue.php:
|
6681 |
msgid "Can't reauthenticate. Error: %1$s, %2$s"
|
6682 |
msgstr ""
|
6683 |
|
6684 |
#. Translators: Error status and error text.
|
6685 |
-
#: languages/vue.php:
|
6686 |
msgid "Can't verify credentials. Error: %1$s, %2$s"
|
6687 |
msgstr ""
|
6688 |
|
6689 |
#. Translators: Number of days.
|
6690 |
-
#: languages/vue.php:
|
6691 |
msgid "vs. Previous Day"
|
6692 |
msgstr ""
|
6693 |
|
6694 |
-
#: languages/vue.php:
|
6695 |
msgid "No change"
|
6696 |
msgstr ""
|
6697 |
|
6698 |
-
#: languages/vue.php:
|
6699 |
msgid "You appear to be offline. WPForms not installed."
|
6700 |
msgstr ""
|
6701 |
|
6702 |
#. Translators: Error status and error text.
|
6703 |
-
#: languages/vue.php:
|
6704 |
msgid "Can't activate addon. Error: %1$s, %2$s"
|
6705 |
msgstr ""
|
6706 |
|
6707 |
-
#: languages/vue.php:
|
6708 |
msgid "You appear to be offline. Addon not activated."
|
6709 |
msgstr ""
|
6710 |
|
6711 |
#. Translators: Error status and error text.
|
6712 |
-
#: languages/vue.php:
|
6713 |
msgid "Can't deactivate addon. Error: %1$s, %2$s"
|
6714 |
msgstr ""
|
6715 |
|
6716 |
-
#: languages/vue.php:
|
6717 |
msgid "You appear to be offline. Addon not deactivated."
|
6718 |
msgstr ""
|
6719 |
|
6720 |
#. Translators: Error status and error text.
|
6721 |
-
#: languages/vue.php:
|
6722 |
msgid "Can't install plugin. Error: %1$s, %2$s"
|
6723 |
msgstr ""
|
6724 |
|
6725 |
-
#: languages/vue.php:
|
6726 |
msgid "You appear to be offline. Plugin not installed."
|
6727 |
msgstr ""
|
6728 |
|
6729 |
#. Translators: Error status and error text.
|
6730 |
-
#: languages/vue.php:
|
6731 |
msgid "Can't install addon. Error: %1$s, %2$s"
|
6732 |
msgstr ""
|
6733 |
|
6734 |
-
#: languages/vue.php:
|
6735 |
msgid "You appear to be offline. Addon not installed."
|
6736 |
msgstr ""
|
6737 |
|
6738 |
#. Translators: Error status and error text.
|
6739 |
-
#: languages/vue.php:
|
6740 |
msgid "Can't install WPForms. Error: %1$s, %2$s"
|
6741 |
msgstr ""
|
6742 |
|
6743 |
#. Translators: Error status and error text.
|
6744 |
-
#: languages/vue.php:
|
6745 |
msgid "Can't deactivate the license. Error: %1$s, %2$s"
|
6746 |
msgstr ""
|
6747 |
|
6748 |
#. Translators: Error status and error text.
|
6749 |
-
#: languages/vue.php:
|
6750 |
msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
|
6751 |
msgstr ""
|
6752 |
|
6753 |
#. Translators: Error status and error text.
|
6754 |
-
#: languages/vue.php:
|
6755 |
msgid "Can't load license details. Error: %1$s, %2$s"
|
6756 |
msgstr ""
|
6757 |
|
6758 |
-
#: languages/vue.php:
|
6759 |
msgid "Error loading license details"
|
6760 |
msgstr ""
|
6761 |
|
6762 |
#. Translators: Error status and error text.
|
6763 |
-
#: languages/vue.php:
|
6764 |
msgid "Can't verify the license. Error: %1$s, %2$s"
|
6765 |
msgstr ""
|
6766 |
|
6767 |
#. Translators: Error status and error text.
|
6768 |
-
#: languages/vue.php:
|
6769 |
msgid "Can't validate the license. Error: %1$s, %2$s"
|
6770 |
msgstr ""
|
6771 |
|
6772 |
#. Translators: Make text green.
|
6773 |
-
#: languages/vue.php:
|
6774 |
msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
|
6775 |
msgstr ""
|
6776 |
|
6777 |
-
#: languages/vue.php:
|
6778 |
msgid "Network Active"
|
6779 |
msgstr ""
|
6780 |
|
6781 |
-
#: languages/vue.php:
|
6782 |
msgid "Active"
|
6783 |
msgstr ""
|
6784 |
|
6785 |
-
#: languages/vue.php:
|
6786 |
msgid "Inactive"
|
6787 |
msgstr ""
|
6788 |
|
6789 |
#. Translators: Placeholder for the addon status (installed, active, etc).
|
6790 |
-
#: languages/vue.php:
|
6791 |
msgid "Status: %s"
|
6792 |
msgstr ""
|
6793 |
|
6794 |
-
#: languages/vue.php:
|
6795 |
msgid "Not Installed"
|
6796 |
msgstr ""
|
6797 |
|
6798 |
-
#: languages/vue.php:
|
6799 |
msgid "No options available"
|
6800 |
msgstr ""
|
6801 |
|
6802 |
-
#: languages/vue.php:
|
6803 |
msgid "Reset to default"
|
6804 |
msgstr ""
|
6805 |
|
6806 |
-
#: languages/vue.php:
|
6807 |
msgid "The value entered does not match the required format"
|
6808 |
msgstr ""
|
6809 |
|
6810 |
-
#: languages/vue.php:
|
6811 |
msgid "Help Us Improve"
|
6812 |
msgstr ""
|
6813 |
|
6814 |
-
#: languages/vue.php:
|
6815 |
msgid "Help us better understand our users and their website needs."
|
6816 |
msgstr ""
|
6817 |
|
6818 |
#. Translators: Adds a link to the documentation.
|
6819 |
-
#: languages/vue.php:
|
6820 |
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"
|
6821 |
msgstr ""
|
6822 |
|
6823 |
#. Translators: The name of the field that is throwing a validation error.
|
6824 |
-
#: languages/vue.php:
|
6825 |
msgid "%s can't be empty."
|
6826 |
msgstr ""
|
6827 |
|
6828 |
-
#: languages/vue.php:
|
6829 |
msgid "Duplicate values are not allowed."
|
6830 |
msgstr ""
|
6831 |
|
6832 |
-
#: languages/vue.php:
|
6833 |
msgid "Add Another Link Path"
|
6834 |
msgstr ""
|
6835 |
|
6836 |
-
#: languages/vue.php:
|
6837 |
msgid "Remove row"
|
6838 |
msgstr ""
|
6839 |
|
6840 |
-
#: languages/vue.php:
|
6841 |
msgid "Search Console Report"
|
6842 |
msgstr ""
|
6843 |
|
6844 |
-
#: languages/vue.php:
|
6845 |
msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
|
6846 |
msgstr ""
|
6847 |
|
6848 |
-
#: languages/vue.php:
|
6849 |
msgid "See Your Top Google Search Terms and Optimize Content"
|
6850 |
msgstr ""
|
6851 |
|
6852 |
-
#: languages/vue.php:
|
6853 |
msgid "See The Number of Clicks and Track Interests"
|
6854 |
msgstr ""
|
6855 |
|
6856 |
-
#: languages/vue.php:
|
6857 |
msgid "See The Click-Through-Ratio and Improve SEO"
|
6858 |
msgstr ""
|
6859 |
|
6860 |
-
#: languages/vue.php:
|
6861 |
msgid "See The Average Results Position and Focus on what works."
|
6862 |
msgstr ""
|
6863 |
|
6864 |
-
#: languages/vue.php:
|
6865 |
msgid "Show Overview Reports"
|
6866 |
msgstr ""
|
6867 |
|
6868 |
-
#: languages/vue.php:
|
6869 |
msgid "Show Publishers Reports"
|
6870 |
msgstr ""
|
6871 |
|
6872 |
-
#: languages/vue.php:
|
6873 |
msgid "Show eCommerce Reports"
|
6874 |
msgstr ""
|
6875 |
|
6876 |
-
#: languages/vue.php:
|
6877 |
msgid "Available in PRO version"
|
6878 |
msgstr ""
|
6879 |
|
6880 |
-
#: languages/vue.php:
|
6881 |
msgid "Real-Time Report"
|
6882 |
msgstr ""
|
6883 |
|
6884 |
-
#: languages/vue.php:
|
6885 |
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."
|
6886 |
msgstr ""
|
6887 |
|
6888 |
#. Translators: add link to blog.
|
6889 |
-
#: languages/vue.php:
|
6890 |
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."
|
6891 |
msgstr ""
|
6892 |
|
6893 |
-
#: languages/vue.php:
|
6894 |
msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
|
6895 |
msgstr ""
|
6896 |
|
6897 |
-
#: languages/vue.php:
|
6898 |
msgid "See Your Top Pages Immediately After Making Changes"
|
6899 |
msgstr ""
|
6900 |
|
6901 |
-
#: languages/vue.php:
|
6902 |
msgid "See Your Top Referral Sources and Adapt Faster"
|
6903 |
msgstr ""
|
6904 |
|
6905 |
-
#: languages/vue.php:
|
6906 |
msgid "See Your Traffic Demographics"
|
6907 |
msgstr ""
|
6908 |
|
6909 |
-
#: languages/vue.php:
|
6910 |
msgid "Get Fresh Reports Data Every 60 Seconds"
|
6911 |
msgstr ""
|
6912 |
|
6913 |
-
#: languages/vue.php:
|
6914 |
msgid "See Where Your Visitors are Connecting From (country & city)"
|
6915 |
msgstr ""
|
6916 |
|
6917 |
-
#: languages/vue.php:
|
6918 |
msgid "Show in widget mode"
|
6919 |
msgstr ""
|
6920 |
|
6921 |
-
#: languages/vue.php:
|
6922 |
msgid "Show in full-width mode"
|
6923 |
msgstr ""
|
6924 |
|
6925 |
-
#: languages/vue.php:
|
6926 |
msgid "Custom Dimensions Report"
|
6927 |
msgstr ""
|
6928 |
|
6929 |
-
#: languages/vue.php:
|
6930 |
msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
|
6931 |
msgstr ""
|
6932 |
|
6933 |
-
#: languages/vue.php:
|
6934 |
msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
|
6935 |
msgstr ""
|
6936 |
|
6937 |
-
#: languages/vue.php:
|
6938 |
msgid "Author tracking to see which author’s posts generate the most traffic"
|
6939 |
msgstr ""
|
6940 |
|
6941 |
-
#: languages/vue.php:
|
6942 |
msgid "Post Type tracking to see which WordPress post types perform better"
|
6943 |
msgstr ""
|
6944 |
|
6945 |
-
#: languages/vue.php:
|
6946 |
msgid "Category tracking to see which sections of your sites are the most popular"
|
6947 |
msgstr ""
|
6948 |
|
6949 |
-
#: languages/vue.php:
|
6950 |
msgid "SEO score tracking to see which blog SEO scores are the most popular"
|
6951 |
msgstr ""
|
6952 |
|
6953 |
-
#: languages/vue.php:
|
6954 |
msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
|
6955 |
msgstr ""
|
6956 |
|
6957 |
-
#: languages/vue.php:
|
6958 |
msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
|
6959 |
msgstr ""
|
6960 |
|
6961 |
#. Translators: Error status and error text.
|
6962 |
-
#: languages/vue.php:
|
6963 |
msgid "Can't load errors. Error: %1$s, %2$s"
|
6964 |
msgstr ""
|
6965 |
|
6966 |
#. Translators: Error status and error text.
|
6967 |
-
#: languages/vue.php:
|
6968 |
msgid "Can't load settings. Error: %1$s, %2$s"
|
6969 |
msgstr ""
|
6970 |
|
6971 |
-
#: languages/vue.php:
|
6972 |
msgid "Network error encountered. Settings not saved."
|
6973 |
msgstr ""
|
6974 |
|
6975 |
#. Translators: Placeholder adds a line break.
|
6976 |
-
#: languages/vue.php:
|
6977 |
msgid "You can customize your %sdate range only in the PRO version."
|
6978 |
msgstr ""
|
6979 |
|
6980 |
-
#: languages/vue.php:
|
6981 |
msgid "Check out the newly added classic mode"
|
6982 |
msgstr ""
|
6983 |
|
6984 |
-
#: languages/vue.php:
|
6985 |
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!"
|
6986 |
msgstr ""
|
6987 |
|
6988 |
-
#: languages/vue.php:
|
6989 |
msgid "To unlock more features consider upgrading to PRO."
|
6990 |
msgstr ""
|
6991 |
|
6992 |
-
#: languages/vue.php:
|
6993 |
msgid "Receive 50% off automatically applied at the checkout!"
|
6994 |
msgstr ""
|
6995 |
|
6996 |
-
#: languages/vue.php:
|
6997 |
msgid "See all features"
|
6998 |
msgstr ""
|
6999 |
|
7000 |
-
#: languages/vue.php:
|
7001 |
msgid "Upgrade to"
|
7002 |
msgstr ""
|
7003 |
|
7004 |
-
#: languages/vue.php:
|
7005 |
msgid "Last 30 days"
|
7006 |
msgstr ""
|
7007 |
|
7008 |
-
#: languages/vue.php:
|
7009 |
msgid "See All Reports"
|
7010 |
msgstr ""
|
7011 |
|
7012 |
-
#: languages/vue.php:
|
7013 |
msgid "Go to the Analytics Dashboard"
|
7014 |
msgstr ""
|
7015 |
|
7016 |
#. Translators: Add line break.
|
7017 |
-
#: languages/vue.php:
|
7018 |
msgid "See All Your Important Store%s Metrics in One Place"
|
7019 |
msgstr ""
|
7020 |
|
7021 |
-
#: languages/vue.php:
|
7022 |
msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
|
7023 |
msgstr ""
|
7024 |
|
7025 |
-
#: languages/vue.php:
|
7026 |
msgid "See your Top Conversion Sources and Focus on what's Working"
|
7027 |
msgstr ""
|
7028 |
|
7029 |
-
#: languages/vue.php:
|
7030 |
msgid "Proceed"
|
7031 |
msgstr ""
|
7032 |
|
7033 |
-
#: languages/vue.php:
|
7034 |
msgid "Connection Information"
|
7035 |
msgstr ""
|
7036 |
|
7037 |
-
#: languages/vue.php:
|
7038 |
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."
|
7039 |
msgstr ""
|
7040 |
|
7041 |
-
#: languages/vue.php:
|
7042 |
msgid "Hostname"
|
7043 |
msgstr ""
|
7044 |
|
7045 |
-
#: languages/vue.php:
|
7046 |
msgid "FTP Username"
|
7047 |
msgstr ""
|
7048 |
|
7049 |
-
#: languages/vue.php:
|
7050 |
msgid "FTP Password"
|
7051 |
msgstr ""
|
7052 |
|
7053 |
-
#: languages/vue.php:
|
7054 |
msgid "This password will not be stored on the server."
|
7055 |
msgstr ""
|
7056 |
|
7057 |
-
#: languages/vue.php:
|
7058 |
msgid "Connection Type"
|
7059 |
msgstr ""
|
7060 |
|
7061 |
-
#: languages/vue.php:
|
7062 |
msgid "Cancel"
|
7063 |
msgstr ""
|
7064 |
|
7065 |
-
#: languages/vue.php:
|
7066 |
msgid "Facebook Instant Articles"
|
7067 |
msgstr ""
|
7068 |
|
7069 |
-
#: languages/vue.php:
|
7070 |
msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
|
7071 |
msgstr ""
|
7072 |
|
7073 |
-
#: languages/vue.php:
|
7074 |
msgid "Google AMP"
|
7075 |
msgstr ""
|
7076 |
|
7077 |
-
#: languages/vue.php:
|
7078 |
msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
|
7079 |
msgstr ""
|
7080 |
|
7081 |
-
#: languages/vue.php:
|
7082 |
msgid "Ads Tracking"
|
7083 |
msgstr ""
|
7084 |
|
7085 |
-
#: languages/vue.php:
|
7086 |
msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
|
7087 |
msgstr ""
|
7088 |
|
7089 |
#. Translators: Adds link to the account area to retreive license key.
|
7090 |
-
#: languages/vue.php:
|
7091 |
msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
|
7092 |
msgstr ""
|
7093 |
|
7094 |
-
#: languages/vue.php:
|
7095 |
msgid "Paste your license key here"
|
7096 |
msgstr ""
|
7097 |
|
7098 |
-
#: languages/vue.php:
|
7099 |
msgid "Verify"
|
7100 |
msgstr ""
|
7101 |
|
7102 |
-
#: languages/vue.php:
|
7103 |
msgid "Setup Wizard"
|
7104 |
msgstr ""
|
7105 |
|
7106 |
-
#: languages/vue.php:
|
7107 |
msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
|
7108 |
msgstr ""
|
7109 |
|
7110 |
-
#: languages/vue.php:
|
7111 |
msgid "Relaunch Setup Wizard"
|
7112 |
msgstr ""
|
7113 |
|
7114 |
-
#: languages/vue.php:
|
7115 |
msgid "Connect ExactMetrics to Start Tracking Your Data"
|
7116 |
msgstr ""
|
7117 |
|
7118 |
-
#: languages/vue.php:
|
7119 |
msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
|
7120 |
msgstr ""
|
7121 |
|
7122 |
#. Translators: Adds link to upgrade.
|
7123 |
-
#: languages/vue.php:
|
7124 |
msgid "To unlock more features consider %1$supgrading to PRO%2$s."
|
7125 |
msgstr ""
|
7126 |
|
7127 |
-
#: languages/vue.php:
|
7128 |
msgid "Complete Upgrade"
|
7129 |
msgstr ""
|
7130 |
|
7131 |
-
#: languages/vue.php:
|
7132 |
msgid "Upgrade to Pro Version!"
|
7133 |
msgstr ""
|
7134 |
|
7135 |
#. Translators: Make text bold.
|
7136 |
-
#: languages/vue.php:
|
7137 |
msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
|
7138 |
msgstr ""
|
7139 |
|
7140 |
-
#: languages/vue.php:
|
7141 |
msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
|
7142 |
msgstr ""
|
7143 |
|
7144 |
-
#: languages/vue.php:
|
7145 |
msgid "Show"
|
7146 |
msgstr ""
|
7147 |
|
7148 |
#. Translators: The number of results.
|
7149 |
-
#: languages/vue.php:
|
7150 |
msgid "%s results"
|
7151 |
msgstr ""
|
7152 |
|
7153 |
-
#: languages/vue.php:
|
7154 |
-
#: languages/vue.php:
|
7155 |
msgid "Connect ExactMetrics"
|
7156 |
msgstr ""
|
7157 |
|
7158 |
-
#: languages/vue.php:
|
7159 |
msgid "Website profile"
|
7160 |
msgstr ""
|
7161 |
|
7162 |
-
#: languages/vue.php:
|
7163 |
msgid "Active profile"
|
7164 |
msgstr ""
|
7165 |
|
7166 |
-
#: languages/vue.php:
|
7167 |
msgid "Your website profile has been set at the network level of your WordPress Multisite."
|
7168 |
msgstr ""
|
7169 |
|
7170 |
-
#: languages/vue.php:
|
7171 |
msgid "If you would like to use a different profile for this subsite, you can authenticate below."
|
7172 |
msgstr ""
|
7173 |
|
7174 |
-
#: languages/vue.php:
|
7175 |
msgid "Skip and Keep Connection"
|
7176 |
msgstr ""
|
7177 |
|
7178 |
-
#: languages/vue.php:
|
7179 |
msgid "Authenticating"
|
7180 |
msgstr ""
|
7181 |
|
7182 |
-
#: languages/vue.php:
|
7183 |
msgid "Activating..."
|
7184 |
msgstr ""
|
7185 |
|
7186 |
-
#: languages/vue.php:
|
7187 |
msgid "Deactivating..."
|
7188 |
msgstr ""
|
7189 |
|
7190 |
-
#: languages/vue.php:
|
7191 |
msgid "Deactivate"
|
7192 |
msgstr ""
|
7193 |
|
7194 |
-
#: languages/vue.php:
|
7195 |
msgid "Scroll Tracking"
|
7196 |
msgstr ""
|
7197 |
|
7198 |
-
#: languages/vue.php:
|
7199 |
msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
|
7200 |
msgstr ""
|
7201 |
|
7202 |
-
#: languages/vue.php:
|
7203 |
msgid ""
|
7204 |
"The EU Compliance addon allows you to improve compliance with GDPR\n"
|
7205 |
" and other privacy regulations."
|
7206 |
msgstr ""
|
7207 |
|
7208 |
-
#: languages/vue.php:
|
7209 |
msgid "EU Compliance"
|
7210 |
msgstr ""
|
7211 |
|
7212 |
-
#: languages/vue.php:
|
7213 |
msgid "Classic mode"
|
7214 |
msgstr ""
|
7215 |
|
7216 |
-
#: languages/vue.php:
|
7217 |
msgid "Hide dashboard widget"
|
7218 |
msgstr ""
|
7219 |
|
7220 |
-
#: languages/vue.php:
|
7221 |
msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
|
7222 |
msgstr ""
|
7223 |
|
7224 |
-
#: languages/vue.php:
|
7225 |
msgid "Yes, hide it!"
|
7226 |
msgstr ""
|
7227 |
|
7228 |
-
#: languages/vue.php:
|
7229 |
msgid "No, cancel!"
|
7230 |
msgstr ""
|
7231 |
|
7232 |
-
#: languages/vue.php:
|
7233 |
msgid "ExactMetrics Widget Hidden"
|
7234 |
msgstr ""
|
7235 |
|
7236 |
-
#: languages/vue.php:
|
7237 |
msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
|
7238 |
msgstr ""
|
7239 |
|
7240 |
#. Translators: Make text bold.
|
7241 |
-
#: languages/vue.php:
|
7242 |
msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy!"
|
7243 |
msgstr ""
|
7244 |
|
7245 |
-
#: languages/vue.php:
|
7246 |
msgid "Verifying Credentials"
|
7247 |
msgstr ""
|
7248 |
|
7249 |
-
#: languages/vue.php:
|
7250 |
msgid "Your site is connected to ExactMetrics!"
|
7251 |
msgstr ""
|
7252 |
|
7253 |
-
#: languages/vue.php:
|
7254 |
msgid "Deauthenticating"
|
7255 |
msgstr ""
|
7256 |
|
7257 |
-
#: languages/vue.php:
|
7258 |
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."
|
7259 |
msgstr ""
|
7260 |
|
7261 |
-
#: languages/vue.php:
|
7262 |
msgid "Verify Credentials"
|
7263 |
msgstr ""
|
7264 |
|
7265 |
-
#: languages/vue.php:
|
7266 |
msgid "Website Profile"
|
7267 |
msgstr ""
|
7268 |
|
7269 |
-
#: languages/vue.php:
|
7270 |
msgid "Active Profile"
|
7271 |
msgstr ""
|
7272 |
|
7273 |
-
#: languages/vue.php:
|
7274 |
msgid "Force Deauthenticate"
|
7275 |
msgstr ""
|
7276 |
|
7277 |
-
#: languages/vue.php:
|
7278 |
msgid "Disconnect ExactMetrics"
|
7279 |
msgstr ""
|
7280 |
|
7281 |
-
#: languages/vue.php:
|
7282 |
msgid "Performance"
|
7283 |
msgstr ""
|
7284 |
|
7285 |
-
#: languages/vue.php:
|
7286 |
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."
|
7287 |
msgstr ""
|
7288 |
|
7289 |
-
#: languages/vue.php:
|
7290 |
msgid "Usage Tracking"
|
7291 |
msgstr ""
|
7292 |
|
7293 |
-
#: languages/vue.php:
|
7294 |
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."
|
7295 |
msgstr ""
|
7296 |
|
7297 |
-
#: languages/vue.php:
|
7298 |
msgid "Allow usage tracking"
|
7299 |
msgstr ""
|
7300 |
|
7301 |
#. Translators: Adds a link to the documentation.
|
7302 |
-
#: languages/vue.php:
|
7303 |
msgid "Complete documentation on usage tracking is available %1$shere%2$s."
|
7304 |
msgstr ""
|
7305 |
|
7306 |
#. Translators: Makes text bold and adds smiley.
|
7307 |
-
#: languages/vue.php:
|
7308 |
msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
|
7309 |
msgstr ""
|
7310 |
|
7311 |
#. Translators: Makes text green.
|
7312 |
-
#: languages/vue.php:
|
7313 |
msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
|
7314 |
msgstr ""
|
7315 |
|
7316 |
-
#: languages/vue.php:
|
7317 |
msgid "Unlock All Features and Upgrade to Pro"
|
7318 |
msgstr ""
|
7319 |
|
7320 |
-
#: languages/vue.php:
|
7321 |
msgid "Upgrade"
|
7322 |
msgstr ""
|
7323 |
|
7324 |
#. Translators: Line break.
|
7325 |
-
#: languages/vue.php:
|
7326 |
msgid "Unique %s Sessions"
|
7327 |
msgstr ""
|
7328 |
|
7329 |
#. Translators: Line break.
|
7330 |
-
#: languages/vue.php:
|
7331 |
msgid "Unique %s Pageviews"
|
7332 |
msgstr ""
|
7333 |
|
7334 |
-
#: languages/vue.php:
|
7335 |
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."
|
7336 |
msgstr ""
|
7337 |
|
7338 |
-
#: languages/vue.php:
|
7339 |
msgid "Email Summaries"
|
7340 |
msgstr ""
|
7341 |
|
7342 |
-
#: languages/vue.php:
|
7343 |
msgid "Export PDF Reports"
|
7344 |
msgstr ""
|
7345 |
|
7346 |
-
#: languages/vue.php:
|
7347 |
msgid "You can add maximum 5 items."
|
7348 |
msgstr ""
|
7349 |
|
7350 |
-
#: languages/vue.php:
|
7351 |
msgid "At least 0 item required."
|
7352 |
msgstr ""
|
7353 |
|
7354 |
-
#: languages/vue.php:
|
7355 |
msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
|
7356 |
msgstr ""
|
7357 |
|
7358 |
-
#: languages/vue.php:
|
7359 |
msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
|
7360 |
msgstr ""
|
7361 |
|
7362 |
-
#: languages/vue.php:
|
7363 |
msgid "Today"
|
7364 |
msgstr ""
|
7365 |
|
7366 |
-
#: languages/vue.php:
|
7367 |
msgid "Yesterday"
|
7368 |
msgstr ""
|
7369 |
|
7370 |
-
#: languages/vue.php:
|
7371 |
msgid "Last Week"
|
7372 |
msgstr ""
|
7373 |
|
7374 |
-
#: languages/vue.php:
|
7375 |
msgid "Last Month"
|
7376 |
msgstr ""
|
7377 |
|
7378 |
-
#: languages/vue.php:
|
7379 |
msgid "Last 7 days"
|
7380 |
msgstr ""
|
7381 |
|
7382 |
-
#: languages/vue.php:
|
7383 |
msgid "PrettyLinks Integration"
|
7384 |
msgstr ""
|
7385 |
|
7386 |
-
#: languages/vue.php:
|
7387 |
msgid "Make your ExactMetrics campaign links prettier with Pretty Links!"
|
7388 |
msgstr ""
|
7389 |
|
7390 |
-
#: languages/vue.php:
|
7391 |
msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
|
7392 |
msgstr ""
|
7393 |
|
7394 |
-
#: languages/vue.php:
|
7395 |
msgid "Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!"
|
7396 |
msgstr ""
|
7397 |
|
7398 |
-
#: languages/vue.php:
|
7399 |
msgid "Over 200,000 websites use Pretty Links!"
|
7400 |
msgstr ""
|
7401 |
|
7402 |
-
#: languages/vue.php:
|
7403 |
msgid "Install Pretty Links"
|
7404 |
msgstr ""
|
7405 |
|
7406 |
-
#: languages/vue.php:
|
7407 |
msgid "Pretty Links Installed & Activated"
|
7408 |
msgstr ""
|
7409 |
|
7410 |
-
#: languages/vue.php:
|
7411 |
msgid "Download Pretty Links"
|
7412 |
msgstr ""
|
7413 |
|
7414 |
-
#: languages/vue.php:
|
7415 |
msgid "Install Pretty Links from the WordPress.org plugin repository."
|
7416 |
msgstr ""
|
7417 |
|
7418 |
-
#: languages/vue.php:
|
7419 |
msgid "Activate Pretty Links"
|
7420 |
msgstr ""
|
7421 |
|
7422 |
-
#: languages/vue.php:
|
7423 |
msgid "Activating Pretty Links"
|
7424 |
msgstr ""
|
7425 |
|
7426 |
-
#: languages/vue.php:
|
7427 |
msgid "Create New Pretty Link"
|
7428 |
msgstr ""
|
7429 |
|
7430 |
-
#: languages/vue.php:
|
7431 |
msgid "Create a New Pretty Link"
|
7432 |
msgstr ""
|
7433 |
|
7434 |
-
#: languages/vue.php:
|
7435 |
msgid "Grab your campaign link and paste it into the Target URL field."
|
7436 |
msgstr ""
|
7437 |
|
7438 |
-
#: languages/vue.php:
|
7439 |
msgid "Copy to Pretty Links"
|
7440 |
msgstr ""
|
7441 |
|
7442 |
-
#: languages/vue.php:
|
7443 |
msgid "Make your campaign links prettier!"
|
7444 |
msgstr ""
|
7445 |
|
7446 |
-
#: languages/vue.php:
|
7447 |
msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
|
7448 |
msgstr ""
|
7449 |
|
7450 |
#. Translators: Add links to documentation.
|
7451 |
-
#: languages/vue.php:
|
7452 |
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."
|
7453 |
msgstr ""
|
7454 |
|
7455 |
-
#: languages/vue.php:
|
7456 |
msgid "View notifications"
|
7457 |
msgstr ""
|
7458 |
|
7459 |
-
#: languages/vue.php:
|
7460 |
msgid "Verifying License"
|
7461 |
msgstr ""
|
7462 |
|
7463 |
-
#: languages/vue.php:
|
7464 |
msgid "There was an error verifying your license"
|
7465 |
msgstr ""
|
7466 |
|
7467 |
-
#: languages/vue.php:
|
7468 |
msgid "Refreshing License"
|
7469 |
msgstr ""
|
7470 |
|
7471 |
-
#: languages/vue.php:
|
7472 |
msgid "There was an error refreshing your license"
|
7473 |
msgstr ""
|
7474 |
|
7475 |
-
#: languages/vue.php:
|
7476 |
msgid "Deactivating License"
|
7477 |
msgstr ""
|
7478 |
|
7479 |
-
#: languages/vue.php:
|
7480 |
msgid "Success"
|
7481 |
msgstr ""
|
7482 |
|
7483 |
-
#: languages/vue.php:
|
7484 |
msgid "There was an error deactivating your license"
|
7485 |
msgstr ""
|
7486 |
|
7487 |
-
#: languages/vue.php:
|
7488 |
msgid "Your license key has been set at the network level of your WordPress Multisite."
|
7489 |
msgstr ""
|
7490 |
|
7491 |
-
#: languages/vue.php:
|
7492 |
msgid "If you would like to use a different license for this subsite, you can enter it below."
|
7493 |
msgstr ""
|
7494 |
|
7495 |
-
#: languages/vue.php:
|
7496 |
msgid "No license key activated on this subsite"
|
7497 |
msgstr ""
|
7498 |
|
7499 |
#. Translators: License key type.
|
7500 |
-
#: languages/vue.php:
|
7501 |
msgid "Your license key type for this site is %s. "
|
7502 |
msgstr ""
|
7503 |
|
7504 |
-
#: languages/vue.php:
|
7505 |
msgid "Refresh Key"
|
7506 |
msgstr ""
|
7507 |
|
7508 |
-
#: languages/vue.php:
|
7509 |
msgid "Click refresh if your license has been upgraded or the type is incorrect."
|
7510 |
msgstr ""
|
7511 |
|
7512 |
-
#: languages/vue.php:
|
7513 |
msgid "Change Key"
|
7514 |
msgstr ""
|
7515 |
|
7516 |
-
#: languages/vue.php:
|
7517 |
msgid "Deactivate this license key"
|
7518 |
msgstr ""
|
7519 |
|
7520 |
-
#: languages/vue.php:
|
7521 |
msgid "The license key is used to enable updates for ExactMetrics Pro and addons, as well enable the ability to view reports. Deactivate your license if you want to use it on another WordPress site."
|
7522 |
msgstr ""
|
7523 |
|
7524 |
#. Translators: Make text green and add smiley face.
|
7525 |
-
#: languages/vue.php:
|
7526 |
msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
|
7527 |
msgstr ""
|
7528 |
|
7529 |
#. Translators: Make text green.
|
7530 |
-
#: languages/vue.php:
|
7531 |
msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
|
7532 |
msgstr ""
|
7533 |
|
7534 |
-
#: languages/vue.php:
|
7535 |
msgid "Unlock PRO Features Now"
|
7536 |
msgstr ""
|
7537 |
|
7538 |
#. Translators: Add link to retrieve license from account area.
|
7539 |
-
#: languages/vue.php:
|
7540 |
msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
|
7541 |
msgstr ""
|
7542 |
|
7543 |
-
#: languages/vue.php:
|
7544 |
msgid "Activating Pretty Links..."
|
7545 |
msgstr ""
|
7546 |
|
7547 |
-
#: languages/vue.php:
|
7548 |
msgid "Export PDF Report"
|
7549 |
msgstr ""
|
7550 |
|
7551 |
-
#: languages/vue.php:
|
7552 |
msgid "You can export PDF reports only in the PRO version."
|
7553 |
msgstr ""
|
7554 |
|
7555 |
#. Translators: Current WordPress version.
|
7556 |
-
#: languages/vue.php:
|
7557 |
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."
|
7558 |
msgstr ""
|
7559 |
|
7560 |
#. Translators: Current PHP version and recommended PHP version.
|
7561 |
-
#: languages/vue.php:
|
7562 |
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."
|
7563 |
msgstr ""
|
7564 |
|
7565 |
#. Translators: Current WordPress version.
|
7566 |
-
#: languages/vue.php:
|
7567 |
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."
|
7568 |
msgstr ""
|
7569 |
|
7570 |
-
#: languages/vue.php:
|
7571 |
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."
|
7572 |
msgstr ""
|
7573 |
|
7574 |
-
#: languages/vue.php:
|
7575 |
msgid "Disable the Headline Analyzer"
|
7576 |
msgstr ""
|
7577 |
|
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.2.1\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-08-06T11:09:42+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"
|
153 |
#: lite/includes/admin/wp-site-health.php:372
|
154 |
#: lite/includes/admin/wp-site-health.php:398
|
155 |
#: lite/includes/admin/wp-site-health.php:425
|
156 |
+
#: languages/vue.php:603
|
157 |
msgid "View Addons"
|
158 |
msgstr ""
|
159 |
|
236 |
|
237 |
#: lite/includes/admin/connect.php:141
|
238 |
#: lite/includes/admin/connect.php:147
|
239 |
+
#: lite/includes/admin/connect.php:186
|
240 |
msgid "Plugin installed & activated."
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: lite/includes/admin/connect.php:170
|
244 |
msgid "You are not licensed."
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: lite/includes/admin/connect.php:190
|
248 |
msgid "Pro version installed but needs to be activated from the Plugins page inside your WordPress admin."
|
249 |
msgstr ""
|
250 |
|
303 |
msgstr ""
|
304 |
|
305 |
#: lite/includes/admin/reports/report-queries.php:22
|
306 |
+
#: languages/vue.php:79
|
307 |
msgid "Search Console"
|
308 |
msgstr ""
|
309 |
|
310 |
#: lite/includes/admin/reports/report-ecommerce.php:22
|
311 |
+
#: languages/vue.php:75
|
312 |
msgid "eCommerce"
|
313 |
msgstr ""
|
314 |
|
321 |
msgstr ""
|
322 |
|
323 |
#: lite/includes/admin/reports/report-publisher.php:22
|
324 |
+
#: languages/vue.php:72
|
325 |
msgid "Publishers"
|
326 |
msgstr ""
|
327 |
|
328 |
#: lite/includes/admin/reports/report-dimensions.php:22
|
329 |
+
#: languages/vue.php:183
|
330 |
msgid "Dimensions"
|
331 |
msgstr ""
|
332 |
|
333 |
#: lite/includes/admin/reports/report-forms.php:22
|
334 |
+
#: languages/vue.php:85
|
335 |
msgid "Forms"
|
336 |
msgstr ""
|
337 |
|
589 |
msgstr ""
|
590 |
|
591 |
#: includes/gutenberg/headline-tool/headline-tool.php:302
|
592 |
+
#: languages/vue.php:108
|
593 |
msgid "General"
|
594 |
msgstr ""
|
595 |
|
3017 |
msgstr ""
|
3018 |
|
3019 |
#: includes/admin/licensing/skin.php:86
|
3020 |
+
#: includes/admin/licensing/skin-legacy.php:86
|
3021 |
msgid "There was an error installing the addon. Please try again."
|
3022 |
msgstr ""
|
3023 |
|
3024 |
#. Translators: The name of the addon that can't be installed.
|
3025 |
#: includes/admin/licensing/skin.php:95
|
3026 |
+
#: includes/admin/licensing/skin-legacy.php:95
|
3027 |
msgid "There was an error installing the addon: %s"
|
3028 |
msgstr ""
|
3029 |
|
3070 |
|
3071 |
#: includes/admin/admin.php:39
|
3072 |
#: includes/admin/admin.php:95
|
3073 |
+
#: languages/vue.php:896
|
3074 |
msgid "Reports"
|
3075 |
msgstr ""
|
3076 |
|
3099 |
|
3100 |
#: includes/admin/admin.php:60
|
3101 |
#: includes/admin/admin.php:103
|
3102 |
+
#: languages/vue.php:99
|
3103 |
msgid "About Us"
|
3104 |
msgstr ""
|
3105 |
|
3128 |
|
3129 |
#: includes/admin/admin.php:175
|
3130 |
#: includes/admin/admin.php:178
|
3131 |
+
#: languages/vue.php:1000
|
3132 |
msgid "Support"
|
3133 |
msgstr ""
|
3134 |
|
3138 |
msgstr ""
|
3139 |
|
3140 |
#: includes/admin/admin.php:281
|
3141 |
+
#: languages/vue.php:129
|
3142 |
msgid "Please Setup Website Analytics to See Audience Insights"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
#: includes/admin/admin.php:282
|
3146 |
+
#: languages/vue.php:135
|
3147 |
msgid "Connect ExactMetrics and Setup Website Analytics"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
#: includes/admin/admin.php:284
|
3151 |
+
#: languages/vue.php:139
|
3152 |
msgid "Learn More"
|
3153 |
msgstr ""
|
3154 |
|
3155 |
#: includes/admin/admin.php:286
|
3156 |
+
#: languages/vue.php:132
|
3157 |
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."
|
3158 |
msgstr ""
|
3159 |
|
3164 |
|
3165 |
#. Translators: Adds a link to the license renewal.
|
3166 |
#: includes/admin/admin.php:307
|
3167 |
+
#: languages/vue.php:437
|
3168 |
msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
|
3169 |
msgstr ""
|
3170 |
|
3171 |
#: includes/admin/admin.php:309
|
3172 |
+
#: languages/vue.php:440
|
3173 |
msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
|
3174 |
msgstr ""
|
3175 |
|
3176 |
#: includes/admin/admin.php:311
|
3177 |
+
#: languages/vue.php:443
|
3178 |
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."
|
3179 |
msgstr ""
|
3180 |
|
3260 |
msgstr ""
|
3261 |
|
3262 |
#: includes/admin/reports/overview.php:34
|
3263 |
+
#: languages/vue.php:69
|
3264 |
msgid "Overview"
|
3265 |
msgstr ""
|
3266 |
|
3352 |
msgstr ""
|
3353 |
|
3354 |
#: includes/admin/reports/abstract-report.php:375
|
3355 |
+
#: languages/vue.php:260
|
3356 |
msgid "Upgrade Now"
|
3357 |
msgstr ""
|
3358 |
|
4654 |
msgstr ""
|
4655 |
|
4656 |
#: languages/gutenberg.php:171
|
4657 |
+
#: languages/vue.php:2312
|
4658 |
msgid "Headline Analyzer"
|
4659 |
msgstr ""
|
4660 |
|
4674 |
msgid "2"
|
4675 |
msgstr ""
|
4676 |
|
4677 |
+
#: languages/vue.php:12
|
4678 |
msgid "Error"
|
4679 |
msgstr ""
|
4680 |
|
4681 |
+
#: languages/vue.php:15
|
4682 |
msgid "Please try again."
|
4683 |
msgstr ""
|
4684 |
|
4685 |
+
#: languages/vue.php:18
|
4686 |
msgid "Loading settings"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
#. Translators: Number of visitors.
|
4690 |
+
#: languages/vue.php:22
|
4691 |
msgid "See how %s visitors found your site!"
|
4692 |
msgstr ""
|
4693 |
|
4694 |
#. Translators: Number of visitors.
|
4695 |
+
#: languages/vue.php:26
|
4696 |
msgid "Your website was visited by %s users in the last 30 days."
|
4697 |
msgstr ""
|
4698 |
|
4699 |
+
#: languages/vue.php:29
|
4700 |
msgid "See the full analytics report!"
|
4701 |
msgstr ""
|
4702 |
|
4703 |
+
#: languages/vue.php:32
|
4704 |
msgid "Overview Report"
|
4705 |
msgstr ""
|
4706 |
|
4707 |
#. Translators: Current WordPress version.
|
4708 |
+
#: languages/vue.php:36
|
4709 |
msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
4710 |
msgstr ""
|
4711 |
|
4712 |
+
#: languages/vue.php:39
|
4713 |
msgid "Yikes! PHP Update Required"
|
4714 |
msgstr ""
|
4715 |
|
4716 |
#. Translators: Current PHP version and recommended PHP version.
|
4717 |
+
#: languages/vue.php:43
|
4718 |
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."
|
4719 |
msgstr ""
|
4720 |
|
4721 |
+
#: languages/vue.php:46
|
4722 |
msgid "Learn more about updating PHP"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
+
#: languages/vue.php:49
|
4726 |
msgid "Yikes! WordPress Update Required"
|
4727 |
msgstr ""
|
4728 |
|
4729 |
#. Translators: Current WordPress version.
|
4730 |
+
#: languages/vue.php:53
|
4731 |
msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.9 in October, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
4732 |
msgstr ""
|
4733 |
|
4734 |
+
#: languages/vue.php:56
|
4735 |
msgid "Learn more about updating WordPress"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
+
#: languages/vue.php:59
|
4739 |
msgid "Success! "
|
4740 |
msgstr ""
|
4741 |
|
4742 |
+
#: languages/vue.php:62
|
4743 |
msgid "You're now using ExactMetrics Pro with all the features."
|
4744 |
msgstr ""
|
4745 |
|
4746 |
#. Translators: Placeholder gets replaced with an arrow icon.
|
4747 |
+
#: languages/vue.php:66
|
4748 |
msgid "Get Started %s"
|
4749 |
msgstr ""
|
4750 |
|
4751 |
+
#: languages/vue.php:82
|
4752 |
msgid "Dimensions Report"
|
4753 |
msgstr ""
|
4754 |
|
4755 |
+
#: languages/vue.php:88
|
4756 |
msgid "Real-Time"
|
4757 |
msgstr ""
|
4758 |
|
4759 |
#. Translators: Error status and error text.
|
4760 |
+
#: languages/vue.php:92
|
4761 |
msgid "Can't load report data. Error: %1$s, %2$s"
|
4762 |
msgstr ""
|
4763 |
|
4764 |
+
#: languages/vue.php:95
|
4765 |
msgid "Error loading report data"
|
4766 |
msgstr ""
|
4767 |
|
4768 |
+
#: languages/vue.php:102
|
4769 |
msgid "Getting Started"
|
4770 |
msgstr ""
|
4771 |
|
4772 |
+
#: languages/vue.php:105
|
4773 |
msgid "Lite vs Pro"
|
4774 |
msgstr ""
|
4775 |
|
4776 |
+
#: languages/vue.php:111
|
4777 |
msgid "Engagement"
|
4778 |
msgstr ""
|
4779 |
|
4780 |
+
#: languages/vue.php:114
|
4781 |
msgid "Publisher"
|
4782 |
msgstr ""
|
4783 |
|
4784 |
+
#: languages/vue.php:117
|
4785 |
msgid "Conversions"
|
4786 |
msgstr ""
|
4787 |
|
4788 |
+
#: languages/vue.php:120
|
4789 |
msgid "Advanced"
|
4790 |
msgstr ""
|
4791 |
|
4792 |
+
#: languages/vue.php:123
|
4793 |
msgid "URL Builder"
|
4794 |
msgstr ""
|
4795 |
|
4796 |
+
#: languages/vue.php:126
|
4797 |
msgid "Import Export"
|
4798 |
msgstr ""
|
4799 |
|
4800 |
+
#: languages/vue.php:142
|
4801 |
msgid "ExactMetrics encountered an error loading your report data"
|
4802 |
msgstr ""
|
4803 |
|
4804 |
+
#: languages/vue.php:145
|
4805 |
msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
|
4806 |
msgstr ""
|
4807 |
|
4808 |
+
#: languages/vue.php:148
|
4809 |
+
#: languages/vue.php:2077
|
4810 |
msgid "Reconnect ExactMetrics"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
+
#: languages/vue.php:152
|
4814 |
msgid "Re-Authenticating"
|
4815 |
msgstr ""
|
4816 |
|
4826 |
msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
|
4827 |
msgstr ""
|
4828 |
|
4829 |
+
#: languages/vue.php:165
|
4830 |
msgid "Launch Setup Wizard"
|
4831 |
msgstr ""
|
4832 |
|
4833 |
+
#: languages/vue.php:168
|
4834 |
msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
|
4835 |
msgstr ""
|
4836 |
|
4837 |
#. Translators: Placeholder is replaced with WPForms.
|
4838 |
+
#: languages/vue.php:172
|
4839 |
msgid "Recommended Plugin: %s"
|
4840 |
msgstr ""
|
4841 |
|
4843 |
msgid "Install"
|
4844 |
msgstr ""
|
4845 |
|
4846 |
+
#: languages/vue.php:180
|
4847 |
msgid "Activate"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
+
#: languages/vue.php:186
|
4851 |
msgid "See Quick Links"
|
4852 |
msgstr ""
|
4853 |
|
4854 |
+
#: languages/vue.php:189
|
4855 |
msgid "Suggest a Feature"
|
4856 |
msgstr ""
|
4857 |
|
4858 |
+
#: languages/vue.php:192
|
4859 |
msgid "Join Our Community"
|
4860 |
msgstr ""
|
4861 |
|
4862 |
+
#: languages/vue.php:195
|
4863 |
msgid "Support & Docs"
|
4864 |
msgstr ""
|
4865 |
|
4866 |
+
#: languages/vue.php:198
|
4867 |
msgid "Upgrade to Pro »"
|
4868 |
msgstr ""
|
4869 |
|
4870 |
+
#: languages/vue.php:201
|
4871 |
msgid "Save Changes"
|
4872 |
msgstr ""
|
4873 |
|
4874 |
+
#: languages/vue.php:204
|
4875 |
msgid "Exit Setup"
|
4876 |
msgstr ""
|
4877 |
|
4878 |
+
#: languages/vue.php:207
|
4879 |
+
#: languages/vue.php:1545
|
4880 |
msgid "ExactMetrics Addons"
|
4881 |
msgstr ""
|
4882 |
|
4883 |
+
#: languages/vue.php:210
|
4884 |
msgid "Search Addons"
|
4885 |
msgstr ""
|
4886 |
|
4887 |
#. Translators: Placeholders are replaced with the current step number out of the total number of steps.
|
4888 |
+
#: languages/vue.php:214
|
4889 |
msgid "Step %1$s of %2$s"
|
4890 |
msgstr ""
|
4891 |
|
4892 |
+
#. Translators: Makes the text bold.
|
4893 |
#: languages/vue.php:218
|
4894 |
msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
|
4895 |
msgstr ""
|
4896 |
|
4897 |
+
#. Translators: Makes the text bold.
|
4898 |
+
#: languages/vue.php:222
|
4899 |
msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
|
4900 |
msgstr ""
|
4901 |
|
4902 |
+
#. Translators: Makes the text bold.
|
4903 |
+
#: languages/vue.php:226
|
4904 |
msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
|
4905 |
msgstr ""
|
4906 |
|
4907 |
#. Translators: Makes text bold.
|
4908 |
+
#: languages/vue.php:230
|
4909 |
msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
|
4910 |
msgstr ""
|
4911 |
|
4912 |
+
#. Translators: Makes the text bold.
|
4913 |
+
#: languages/vue.php:234
|
4914 |
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."
|
4915 |
msgstr ""
|
4916 |
|
4917 |
+
#. Translators: Makes the text bold.
|
4918 |
+
#: languages/vue.php:238
|
4919 |
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."
|
4920 |
msgstr ""
|
4921 |
|
4922 |
+
#. Translators: Makes the text bold.
|
4923 |
+
#: languages/vue.php:242
|
4924 |
msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
|
4925 |
msgstr ""
|
4926 |
|
4927 |
#. Translators: Makes text bold.
|
4928 |
+
#: languages/vue.php:246
|
4929 |
msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
|
4930 |
msgstr ""
|
4931 |
|
4932 |
+
#. Translators: Adds a link and an arrow icon.
|
4933 |
+
#: languages/vue.php:250
|
4934 |
msgid "%1$sSee All Features%2$s"
|
4935 |
msgstr ""
|
4936 |
|
4937 |
+
#: languages/vue.php:253
|
4938 |
msgid "Pro Plan"
|
4939 |
msgstr ""
|
4940 |
|
4941 |
+
#: languages/vue.php:256
|
4942 |
msgid "per year"
|
4943 |
msgstr ""
|
4944 |
|
4945 |
+
#: languages/vue.php:263
|
4946 |
msgid "Upgrade to ExactMetrics Pro Now"
|
4947 |
msgstr ""
|
4948 |
|
4949 |
+
#: languages/vue.php:266
|
4950 |
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!"
|
4951 |
msgstr ""
|
4952 |
|
4953 |
+
#: languages/vue.php:269
|
4954 |
msgid "Daniel Monaghan - Experienced"
|
4955 |
msgstr ""
|
4956 |
|
4957 |
+
#: languages/vue.php:272
|
4958 |
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."
|
4959 |
msgstr ""
|
4960 |
|
4961 |
+
#: languages/vue.php:275
|
4962 |
msgid "Naomi Spirit - From This Day"
|
4963 |
msgstr ""
|
4964 |
|
4965 |
+
#: languages/vue.php:278
|
4966 |
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!"
|
4967 |
msgstr ""
|
4968 |
|
4969 |
+
#: languages/vue.php:281
|
4970 |
msgid "Julie Dupuis - Faraway Land Travel"
|
4971 |
msgstr ""
|
4972 |
|
4973 |
+
#: languages/vue.php:284
|
4974 |
msgid "Guides and Documentation:"
|
4975 |
msgstr ""
|
4976 |
|
4977 |
+
#: languages/vue.php:291
|
4978 |
msgid "Upgrade to PRO"
|
4979 |
msgstr ""
|
4980 |
|
4981 |
+
#: languages/vue.php:295
|
4982 |
msgid "eCommerce Tracking"
|
4983 |
msgstr ""
|
4984 |
|
4985 |
+
#: languages/vue.php:300
|
4986 |
msgid "Custom Dimensions"
|
4987 |
msgstr ""
|
4988 |
|
4989 |
+
#: languages/vue.php:304
|
4990 |
msgid "Form Tracking"
|
4991 |
msgstr ""
|
4992 |
|
4993 |
+
#: languages/vue.php:308
|
4994 |
msgid "AMP Support"
|
4995 |
msgstr ""
|
4996 |
|
4997 |
+
#: languages/vue.php:312
|
4998 |
msgid "Author Tracking"
|
4999 |
msgstr ""
|
5000 |
|
5001 |
+
#: languages/vue.php:316
|
5002 |
msgid "EU Compliance Addon"
|
5003 |
msgstr ""
|
5004 |
|
5005 |
+
#: languages/vue.php:320
|
5006 |
msgid "Real Time Report"
|
5007 |
msgstr ""
|
5008 |
|
5009 |
+
#: languages/vue.php:325
|
5010 |
msgid "Google Optimize"
|
5011 |
msgstr ""
|
5012 |
|
5013 |
+
#: languages/vue.php:329
|
5014 |
msgid "Custom Date Ranges"
|
5015 |
msgstr ""
|
5016 |
|
5017 |
+
#: languages/vue.php:332
|
5018 |
msgid "Getting Started with ExactMetrics"
|
5019 |
msgstr ""
|
5020 |
|
5021 |
+
#: languages/vue.php:335
|
5022 |
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."
|
5023 |
msgstr ""
|
5024 |
|
5025 |
+
#: languages/vue.php:338
|
5026 |
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."
|
5027 |
msgstr ""
|
5028 |
|
5029 |
+
#: languages/vue.php:341
|
5030 |
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!."
|
5031 |
msgstr ""
|
5032 |
|
5033 |
+
#: languages/vue.php:344
|
5034 |
msgid "Launch the wizard!"
|
5035 |
msgstr ""
|
5036 |
|
5037 |
+
#: languages/vue.php:347
|
5038 |
msgid "Welcome to"
|
5039 |
msgstr ""
|
5040 |
|
5041 |
#. Translators: Adds a line break.
|
5042 |
+
#: languages/vue.php:351
|
5043 |
msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
|
5044 |
msgstr ""
|
5045 |
|
5046 |
+
#. Translators: Makes the product name bold.
|
5047 |
+
#: languages/vue.php:355
|
5048 |
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."
|
5049 |
msgstr ""
|
5050 |
|
5051 |
+
#: languages/vue.php:358
|
5052 |
msgid "ExactMetrics Features & Addons"
|
5053 |
msgstr ""
|
5054 |
|
5055 |
+
#: languages/vue.php:361
|
5056 |
msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
|
5057 |
msgstr ""
|
5058 |
|
5059 |
+
#: languages/vue.php:364
|
5060 |
msgid "Loading new report data"
|
5061 |
msgstr ""
|
5062 |
|
5063 |
+
#: languages/vue.php:368
|
5064 |
msgid "Please wait..."
|
5065 |
msgstr ""
|
5066 |
|
5067 |
+
#. Translators: Placeholder gets replaced with an arrow icon.
|
5068 |
+
#: languages/vue.php:372
|
5069 |
msgid "Continue %s"
|
5070 |
msgstr ""
|
5071 |
|
5072 |
+
#: languages/vue.php:375
|
5073 |
msgid "Unlock the Publishers Report and Focus on the Content that Matters"
|
5074 |
msgstr ""
|
5075 |
|
5076 |
+
#: languages/vue.php:378
|
5077 |
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."
|
5078 |
msgstr ""
|
5079 |
|
5080 |
+
#: languages/vue.php:381
|
5081 |
msgid "Unlock the Publishers Report and Focus on the Content That Matters"
|
5082 |
msgstr ""
|
5083 |
|
5084 |
+
#: languages/vue.php:384
|
5085 |
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."
|
5086 |
msgstr ""
|
5087 |
|
5088 |
+
#: languages/vue.php:387
|
5089 |
msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
|
5090 |
msgstr ""
|
5091 |
|
5092 |
+
#: languages/vue.php:390
|
5093 |
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."
|
5094 |
msgstr ""
|
5095 |
|
5096 |
+
#: languages/vue.php:393
|
5097 |
msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
|
5098 |
msgstr ""
|
5099 |
|
5100 |
+
#: languages/vue.php:396
|
5101 |
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."
|
5102 |
msgstr ""
|
5103 |
|
5104 |
+
#: languages/vue.php:399
|
5105 |
msgid "Unlock the Forms Report and Improve Conversions"
|
5106 |
msgstr ""
|
5107 |
|
5108 |
+
#: languages/vue.php:402
|
5109 |
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."
|
5110 |
msgstr ""
|
5111 |
|
5112 |
+
#: languages/vue.php:405
|
5113 |
msgid "Unlock the Search Console Report and See How People Find Your Website"
|
5114 |
msgstr ""
|
5115 |
|
5116 |
+
#: languages/vue.php:408
|
5117 |
msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
|
5118 |
msgstr ""
|
5119 |
|
5120 |
+
#: languages/vue.php:411
|
5121 |
msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
|
5122 |
msgstr ""
|
5123 |
|
5124 |
+
#: languages/vue.php:414
|
5125 |
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."
|
5126 |
msgstr ""
|
5127 |
|
5128 |
+
#: languages/vue.php:417
|
5129 |
msgid "Go back"
|
5130 |
msgstr ""
|
5131 |
|
5132 |
#. Translators: Adds a link to documentation.
|
5133 |
+
#: languages/vue.php:421
|
5134 |
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"
|
5135 |
msgstr ""
|
5136 |
|
5137 |
#. Translators: Adds link to activate/install plugin and documentation.
|
5138 |
+
#: languages/vue.php:425
|
5139 |
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"
|
5140 |
msgstr ""
|
5141 |
|
5142 |
#. Translators: Adds a link to documentation.
|
5143 |
+
#: languages/vue.php:429
|
5144 |
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"
|
5145 |
msgstr ""
|
5146 |
|
5147 |
#. Translators: Adds link to activate/install plugin and documentation.
|
5148 |
+
#: languages/vue.php:433
|
5149 |
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"
|
5150 |
msgstr ""
|
5151 |
|
5152 |
+
#: languages/vue.php:446
|
5153 |
msgid "Time to Purchase"
|
5154 |
msgstr ""
|
5155 |
|
5156 |
+
#: languages/vue.php:449
|
5157 |
msgid "This list shows how many days from first visit it took users to purchase products from your site."
|
5158 |
msgstr ""
|
5159 |
|
5160 |
+
#: languages/vue.php:452
|
5161 |
msgid "Sessions to Purchase"
|
5162 |
msgstr ""
|
5163 |
|
5164 |
+
#: languages/vue.php:455
|
5165 |
msgid "This list shows the number of sessions it took users before they purchased a product from your website."
|
5166 |
msgstr ""
|
5167 |
|
5168 |
+
#: languages/vue.php:458
|
5169 |
msgid "Top Posts/Pages"
|
5170 |
msgstr ""
|
5171 |
|
5172 |
+
#: languages/vue.php:461
|
5173 |
msgid "This list shows the most viewed posts and pages on your website."
|
5174 |
msgstr ""
|
5175 |
|
5176 |
+
#: languages/vue.php:464
|
5177 |
msgid "New vs. Returning Visitors"
|
5178 |
msgstr ""
|
5179 |
|
5180 |
+
#: languages/vue.php:467
|
5181 |
msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
|
5182 |
msgstr ""
|
5183 |
|
5184 |
+
#: languages/vue.php:470
|
5185 |
msgid "Device Breakdown"
|
5186 |
msgstr ""
|
5187 |
|
5188 |
+
#: languages/vue.php:473
|
5189 |
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."
|
5190 |
msgstr ""
|
5191 |
|
5192 |
+
#: languages/vue.php:476
|
5193 |
msgid "Top Landing Pages"
|
5194 |
msgstr ""
|
5195 |
|
5196 |
+
#: languages/vue.php:479
|
5197 |
msgid "This list shows the top pages users first land on when visiting your website."
|
5198 |
msgstr ""
|
5199 |
|
5200 |
+
#: languages/vue.php:482
|
5201 |
msgid "Top Exit Pages"
|
5202 |
msgstr ""
|
5203 |
|
5204 |
+
#: languages/vue.php:485
|
5205 |
msgid "This list shows the top pages users exit your website from."
|
5206 |
msgstr ""
|
5207 |
|
5208 |
+
#: languages/vue.php:488
|
5209 |
msgid "Top Outbound Links"
|
5210 |
msgstr ""
|
5211 |
|
5212 |
+
#: languages/vue.php:491
|
5213 |
msgid "This list shows the top links clicked on your website that go to another website."
|
5214 |
msgstr ""
|
5215 |
|
5216 |
+
#: languages/vue.php:494
|
5217 |
msgid "Top Affiliate Links"
|
5218 |
msgstr ""
|
5219 |
|
5220 |
+
#: languages/vue.php:497
|
5221 |
msgid "This list shows the top affiliate links your visitors clicked on."
|
5222 |
msgstr ""
|
5223 |
|
5224 |
+
#: languages/vue.php:500
|
5225 |
msgid "Top Download Links"
|
5226 |
msgstr ""
|
5227 |
|
5228 |
+
#: languages/vue.php:503
|
5229 |
msgid "This list shows the download links your visitors clicked the most."
|
5230 |
msgstr ""
|
5231 |
|
5232 |
+
#: languages/vue.php:506
|
5233 |
msgid "Top Products"
|
5234 |
msgstr ""
|
5235 |
|
5236 |
+
#: languages/vue.php:509
|
5237 |
msgid "This list shows the top selling products on your website."
|
5238 |
msgstr ""
|
5239 |
|
5240 |
+
#: languages/vue.php:512
|
5241 |
msgid "Top Conversion Sources"
|
5242 |
msgstr ""
|
5243 |
|
5244 |
+
#: languages/vue.php:515
|
5245 |
msgid "This list shows the top referral websites in terms of product revenue."
|
5246 |
msgstr ""
|
5247 |
|
5248 |
+
#: languages/vue.php:518
|
5249 |
msgid "Total Add/Remove"
|
5250 |
msgstr ""
|
5251 |
|
5252 |
+
#: languages/vue.php:521
|
5253 |
msgid "New"
|
5254 |
msgstr ""
|
5255 |
|
5256 |
+
#: languages/vue.php:524
|
5257 |
msgid "Returning"
|
5258 |
msgstr ""
|
5259 |
|
5260 |
+
#: languages/vue.php:527
|
5261 |
msgid "Desktop"
|
5262 |
msgstr ""
|
5263 |
|
5264 |
+
#: languages/vue.php:530
|
5265 |
msgid "Tablet"
|
5266 |
msgstr ""
|
5267 |
|
5268 |
+
#: languages/vue.php:533
|
5269 |
msgid "Mobile"
|
5270 |
msgstr ""
|
5271 |
|
5272 |
+
#: languages/vue.php:536
|
5273 |
msgid "Sessions"
|
5274 |
msgstr ""
|
5275 |
|
5276 |
+
#: languages/vue.php:539
|
5277 |
msgid "Pageviews"
|
5278 |
msgstr ""
|
5279 |
|
5280 |
+
#: languages/vue.php:542
|
5281 |
msgid "Avg. Session Duration"
|
5282 |
msgstr ""
|
5283 |
|
5284 |
+
#: languages/vue.php:545
|
5285 |
msgid "Bounce Rate"
|
5286 |
msgstr ""
|
5287 |
|
5288 |
+
#: languages/vue.php:548
|
5289 |
msgid "Top 10 Countries"
|
5290 |
msgstr ""
|
5291 |
|
5292 |
+
#: languages/vue.php:551
|
5293 |
msgid "View Countries Report"
|
5294 |
msgstr ""
|
5295 |
|
5296 |
+
#: languages/vue.php:554
|
5297 |
msgid "Top 10 Referrals"
|
5298 |
msgstr ""
|
5299 |
|
5300 |
+
#: languages/vue.php:557
|
5301 |
msgid "View All Referral Sources"
|
5302 |
msgstr ""
|
5303 |
|
5304 |
+
#: languages/vue.php:560
|
5305 |
msgid "View Full Posts/Pages Report"
|
5306 |
msgstr ""
|
5307 |
|
5308 |
+
#: languages/vue.php:563
|
5309 |
msgid "A session is the browsing session of a single user to your site."
|
5310 |
msgstr ""
|
5311 |
|
5312 |
+
#: languages/vue.php:566
|
5313 |
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."
|
5314 |
msgstr ""
|
5315 |
|
5316 |
+
#: languages/vue.php:569
|
5317 |
msgid "Total duration of all sessions (in seconds) / number of sessions."
|
5318 |
msgstr ""
|
5319 |
|
5320 |
+
#: languages/vue.php:572
|
5321 |
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."
|
5322 |
msgstr ""
|
5323 |
|
5324 |
+
#: languages/vue.php:575
|
5325 |
msgid "This list shows the top countries your website visitors are from."
|
5326 |
msgstr ""
|
5327 |
|
5328 |
+
#: languages/vue.php:578
|
5329 |
msgid "This list shows the top websites that send your website traffic, known as referral traffic."
|
5330 |
msgstr ""
|
5331 |
|
5332 |
+
#: languages/vue.php:581
|
5333 |
msgid "Installing Addon"
|
5334 |
msgstr ""
|
5335 |
|
5336 |
+
#: languages/vue.php:584
|
5337 |
msgid "Activating Addon"
|
5338 |
msgstr ""
|
5339 |
|
5340 |
+
#: languages/vue.php:587
|
5341 |
msgid "Addon Activated"
|
5342 |
msgstr ""
|
5343 |
|
5344 |
+
#: languages/vue.php:590
|
5345 |
msgid "Loading report data"
|
5346 |
msgstr ""
|
5347 |
|
5348 |
+
#: languages/vue.php:593
|
5349 |
msgid "Please activate manually"
|
5350 |
msgstr ""
|
5351 |
|
5352 |
#. Translators: Adds the error status and status text.
|
5353 |
+
#: languages/vue.php:597
|
5354 |
msgid "Error: %1$s, %2$s"
|
5355 |
msgstr ""
|
5356 |
|
5357 |
+
#: languages/vue.php:600
|
5358 |
msgid "Error Activating Addon"
|
5359 |
msgstr ""
|
5360 |
|
5361 |
+
#: languages/vue.php:606
|
5362 |
msgid "Dismiss"
|
5363 |
msgstr ""
|
5364 |
|
5365 |
+
#: languages/vue.php:609
|
5366 |
msgid "Redirecting"
|
5367 |
msgstr ""
|
5368 |
|
5369 |
+
#: languages/vue.php:612
|
5370 |
msgid "Please wait"
|
5371 |
msgstr ""
|
5372 |
|
5373 |
+
#: languages/vue.php:615
|
5374 |
msgid "activate"
|
5375 |
msgstr ""
|
5376 |
|
5377 |
+
#: languages/vue.php:618
|
5378 |
msgid "install"
|
5379 |
msgstr ""
|
5380 |
|
5381 |
+
#: languages/vue.php:621
|
5382 |
msgid "Visit addons page"
|
5383 |
msgstr ""
|
5384 |
|
5385 |
+
#: languages/vue.php:624
|
5386 |
msgid "Report Unavailable"
|
5387 |
msgstr ""
|
5388 |
|
5389 |
#. Translators: Install/Activate the addon.
|
5390 |
+
#: languages/vue.php:628
|
5391 |
msgid "%s Addon"
|
5392 |
msgstr ""
|
5393 |
|
5394 |
+
#: languages/vue.php:631
|
5395 |
msgid "Go Back To Reports"
|
5396 |
msgstr ""
|
5397 |
|
5398 |
+
#: languages/vue.php:634
|
5399 |
msgid "Enable Enhanced eCommerce"
|
5400 |
msgstr ""
|
5401 |
|
5402 |
+
#: languages/vue.php:637
|
5403 |
msgid "Loading Settings"
|
5404 |
msgstr ""
|
5405 |
|
5406 |
+
#: languages/vue.php:640
|
5407 |
msgid "Saving Changes..."
|
5408 |
msgstr ""
|
5409 |
|
5410 |
+
#: languages/vue.php:643
|
5411 |
msgid "Settings Updated"
|
5412 |
msgstr ""
|
5413 |
|
5414 |
#. Translators: Add a link to the onboarding wizard.
|
5415 |
+
#: languages/vue.php:647
|
5416 |
msgid "You need to %1$sconnect ExactMetrics%2$s first"
|
5417 |
msgstr ""
|
5418 |
|
5419 |
+
#: languages/vue.php:650
|
5420 |
msgid "Could Not Save Changes"
|
5421 |
msgstr ""
|
5422 |
|
5423 |
#. Translators: Gets replaced with the number of days.
|
5424 |
+
#: languages/vue.php:654
|
5425 |
msgid "Last %s days"
|
5426 |
msgstr ""
|
5427 |
|
5428 |
+
#: languages/vue.php:657
|
5429 |
msgid "Analytics"
|
5430 |
msgstr ""
|
5431 |
|
5432 |
#. Translators: Adds an arrow icon.
|
5433 |
+
#: languages/vue.php:661
|
5434 |
msgid "View All Reports %s"
|
5435 |
msgstr ""
|
5436 |
|
5437 |
#. Translators: Placeholders are used for making text bold and adding a link.
|
5438 |
+
#: languages/vue.php:665
|
5439 |
msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
|
5440 |
msgstr ""
|
5441 |
|
5442 |
#. Translators: Placeholders make the text highlighted.
|
5443 |
+
#: languages/vue.php:669
|
5444 |
msgid "%1$sNeed%2$s to Grow FASTER??"
|
5445 |
msgstr ""
|
5446 |
|
5447 |
+
#: languages/vue.php:672
|
5448 |
msgid "Get additional, actionable insights by going Pro."
|
5449 |
msgstr ""
|
5450 |
|
5451 |
+
#: languages/vue.php:675
|
5452 |
msgid "Skip"
|
5453 |
msgstr ""
|
5454 |
|
5455 |
+
#: languages/vue.php:678
|
5456 |
msgid "See All Features"
|
5457 |
msgstr ""
|
5458 |
|
5459 |
+
#: languages/vue.php:681
|
5460 |
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."
|
5461 |
msgstr ""
|
5462 |
|
5463 |
+
#: languages/vue.php:684
|
5464 |
msgid "Our Pro plan includes:"
|
5465 |
msgstr ""
|
5466 |
|
5467 |
+
#: languages/vue.php:687
|
5468 |
msgid "Awesome, You're All Set!"
|
5469 |
msgstr ""
|
5470 |
|
5471 |
+
#: languages/vue.php:690
|
5472 |
msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
|
5473 |
msgstr ""
|
5474 |
|
5475 |
#. Translators: Make the text bold.
|
5476 |
+
#: languages/vue.php:694
|
5477 |
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."
|
5478 |
msgstr ""
|
5479 |
|
5480 |
#. Translators: Add link to blog.
|
5481 |
+
#: languages/vue.php:698
|
5482 |
msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
|
5483 |
msgstr ""
|
5484 |
|
5485 |
+
#: languages/vue.php:701
|
5486 |
msgid "Finish Setup & Exit Wizard"
|
5487 |
msgstr ""
|
5488 |
|
5489 |
+
#: languages/vue.php:704
|
5490 |
msgid "Google Analytics"
|
5491 |
msgstr ""
|
5492 |
|
5493 |
+
#: languages/vue.php:707
|
5494 |
msgid "Subscribe"
|
5495 |
msgstr ""
|
5496 |
|
5497 |
+
#: languages/vue.php:710
|
5498 |
msgid "Checking your website..."
|
5499 |
msgstr ""
|
5500 |
|
5501 |
+
#: languages/vue.php:713
|
5502 |
msgid "Recommended Settings"
|
5503 |
msgstr ""
|
5504 |
|
5505 |
+
#: languages/vue.php:716
|
5506 |
msgid "ExactMetrics recommends the following settings based on your configuration."
|
5507 |
msgstr ""
|
5508 |
|
5509 |
+
#: languages/vue.php:719
|
5510 |
msgid "Events Tracking"
|
5511 |
msgstr ""
|
5512 |
|
5513 |
+
#: languages/vue.php:722
|
5514 |
msgid "Must have for all click tracking on site."
|
5515 |
msgstr ""
|
5516 |
|
5517 |
+
#: languages/vue.php:725
|
5518 |
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."
|
5519 |
msgstr ""
|
5520 |
|
5521 |
+
#: languages/vue.php:728
|
5522 |
msgid "Enhanced Link Attribution"
|
5523 |
msgstr ""
|
5524 |
|
5525 |
+
#: languages/vue.php:731
|
5526 |
msgid "Improves the accuracy of your In-Page Analytics."
|
5527 |
msgstr ""
|
5528 |
|
5529 |
+
#: languages/vue.php:734
|
5530 |
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."
|
5531 |
msgstr ""
|
5532 |
|
5533 |
+
#: languages/vue.php:737
|
5534 |
msgid "Install Updates Automatically"
|
5535 |
msgstr ""
|
5536 |
|
5537 |
+
#: languages/vue.php:740
|
5538 |
msgid "Get the latest features, bug fixes, and security updates as they are released."
|
5539 |
msgstr ""
|
5540 |
|
5541 |
+
#: languages/vue.php:743
|
5542 |
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."
|
5543 |
msgstr ""
|
5544 |
|
5545 |
+
#: languages/vue.php:746
|
5546 |
msgid "File Download Tracking"
|
5547 |
msgstr ""
|
5548 |
|
5549 |
+
#: languages/vue.php:749
|
5550 |
msgid "Helps you see file downloads data."
|
5551 |
msgstr ""
|
5552 |
|
5553 |
+
#: languages/vue.php:752
|
5554 |
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."
|
5555 |
msgstr ""
|
5556 |
|
5557 |
#. Translators: Example path (/go/).
|
5558 |
+
#: languages/vue.php:756
|
5559 |
msgid "Path (example: %s)"
|
5560 |
msgstr ""
|
5561 |
|
5562 |
+
#: languages/vue.php:759
|
5563 |
msgid "Path has to start with a / and have no spaces"
|
5564 |
msgstr ""
|
5565 |
|
5566 |
#. Translators: Example label (aff).
|
5567 |
+
#: languages/vue.php:763
|
5568 |
msgid "Label (example: %s)"
|
5569 |
msgstr ""
|
5570 |
|
5571 |
+
#: languages/vue.php:766
|
5572 |
msgid "Label can't contain any spaces"
|
5573 |
msgstr ""
|
5574 |
|
5575 |
+
#: languages/vue.php:769
|
5576 |
msgid "Helps you increase affiliate revenue."
|
5577 |
msgstr ""
|
5578 |
|
5579 |
+
#: languages/vue.php:772
|
5580 |
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."
|
5581 |
msgstr ""
|
5582 |
|
5583 |
+
#: languages/vue.php:775
|
5584 |
msgid "Affiliate Link Tracking"
|
5585 |
msgstr ""
|
5586 |
|
5587 |
+
#: languages/vue.php:778
|
5588 |
msgid "Who Can See Reports"
|
5589 |
msgstr ""
|
5590 |
|
5591 |
+
#: languages/vue.php:781
|
5592 |
msgid "These user roles will be able to access ExactMetrics's reports in the WordPress admin area."
|
5593 |
msgstr ""
|
5594 |
|
5595 |
+
#: languages/vue.php:784
|
5596 |
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."
|
5597 |
msgstr ""
|
5598 |
|
5599 |
+
#: languages/vue.php:787
|
5600 |
msgid "Save and continue"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
+
#: languages/vue.php:790
|
5604 |
msgid "Events Tracking is enabled the moment you set up ExactMetrics"
|
5605 |
msgstr ""
|
5606 |
|
5607 |
+
#: languages/vue.php:793
|
5608 |
msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
|
5609 |
msgstr ""
|
5610 |
|
5611 |
+
#: languages/vue.php:796
|
5612 |
msgid "+ Add Role"
|
5613 |
msgstr ""
|
5614 |
|
5615 |
+
#: languages/vue.php:799
|
5616 |
msgid "Affiliate Links"
|
5617 |
msgstr ""
|
5618 |
|
5619 |
#. Translators: Add links to documentation.
|
5620 |
+
#: languages/vue.php:803
|
5621 |
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."
|
5622 |
msgstr ""
|
5623 |
|
5624 |
+
#: languages/vue.php:806
|
5625 |
msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
|
5626 |
msgstr ""
|
5627 |
|
5628 |
+
#: languages/vue.php:809
|
5629 |
msgid "Connect ExactMetrics to Your Website"
|
5630 |
msgstr ""
|
5631 |
|
5632 |
+
#: languages/vue.php:812
|
5633 |
msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
|
5634 |
msgstr ""
|
5635 |
|
5636 |
+
#: languages/vue.php:816
|
5637 |
msgid "Connect Google Analytics + WordPress"
|
5638 |
msgstr ""
|
5639 |
|
5640 |
+
#: languages/vue.php:820
|
5641 |
msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
|
5642 |
msgstr ""
|
5643 |
|
5644 |
+
#: languages/vue.php:823
|
5645 |
msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
|
5646 |
msgstr ""
|
5647 |
|
5648 |
+
#: languages/vue.php:826
|
5649 |
msgid "Manually enter your UA code"
|
5650 |
msgstr ""
|
5651 |
|
5652 |
+
#: languages/vue.php:829
|
5653 |
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."
|
5654 |
msgstr ""
|
5655 |
|
5656 |
+
#: languages/vue.php:832
|
5657 |
msgid "Save and Continue"
|
5658 |
msgstr ""
|
5659 |
|
5660 |
+
#: languages/vue.php:835
|
5661 |
msgid "UA code can't be empty"
|
5662 |
msgstr ""
|
5663 |
|
5664 |
+
#: languages/vue.php:838
|
5665 |
msgid "Saving UA code..."
|
5666 |
msgstr ""
|
5667 |
|
5668 |
#. Translators: placeholders make text small.
|
5669 |
+
#: languages/vue.php:842
|
5670 |
msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
|
5671 |
msgstr ""
|
5672 |
|
5673 |
#. Translators: placeholders make text small.
|
5674 |
+
#: languages/vue.php:846
|
5675 |
msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
|
5676 |
msgstr ""
|
5677 |
|
5678 |
#. Translators: placeholders make text small.
|
5679 |
+
#: languages/vue.php:850
|
5680 |
msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
|
5681 |
msgstr ""
|
5682 |
|
5683 |
#. Translators: placeholders make text small.
|
5684 |
+
#: languages/vue.php:854
|
5685 |
msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
|
5686 |
msgstr ""
|
5687 |
|
5688 |
#. Translators: placeholders make text small.
|
5689 |
+
#: languages/vue.php:858
|
5690 |
msgid "None %1$s- Manually update everything.%2$s"
|
5691 |
msgstr ""
|
5692 |
|
5693 |
#. Translators: Adds a link to the general settings tab.
|
5694 |
+
#: languages/vue.php:862
|
5695 |
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."
|
5696 |
msgstr ""
|
5697 |
|
5698 |
+
#: languages/vue.php:865
|
5699 |
msgid "Permissions"
|
5700 |
msgstr ""
|
5701 |
|
5702 |
+
#: languages/vue.php:868
|
5703 |
msgid "Allow These User Roles to See Reports"
|
5704 |
msgstr ""
|
5705 |
|
5706 |
+
#: languages/vue.php:871
|
5707 |
msgid "Users that have at least one of these roles will be able to view the reports."
|
5708 |
msgstr ""
|
5709 |
|
5710 |
+
#: languages/vue.php:874
|
5711 |
msgid "Allow These User Roles to Save Settings"
|
5712 |
msgstr ""
|
5713 |
|
5714 |
+
#: languages/vue.php:877
|
5715 |
msgid "Users that have at least one of these roles will be able to view and save the settings panel."
|
5716 |
msgstr ""
|
5717 |
|
5718 |
+
#: languages/vue.php:880
|
5719 |
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."
|
5720 |
msgstr ""
|
5721 |
|
5722 |
+
#: languages/vue.php:883
|
5723 |
msgid "Exclude These User Roles From Tracking"
|
5724 |
msgstr ""
|
5725 |
|
5726 |
+
#: languages/vue.php:886
|
5727 |
msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
|
5728 |
msgstr ""
|
5729 |
|
5730 |
+
#: languages/vue.php:889
|
5731 |
msgid "Custom code"
|
5732 |
msgstr ""
|
5733 |
|
5734 |
#. Translators: Adds a link to the Google reference.
|
5735 |
+
#: languages/vue.php:893
|
5736 |
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."
|
5737 |
msgstr ""
|
5738 |
|
5739 |
+
#: languages/vue.php:900
|
5740 |
msgid "Automatic Updates"
|
5741 |
msgstr ""
|
5742 |
|
5743 |
+
#: languages/vue.php:903
|
5744 |
msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
|
5745 |
msgstr ""
|
5746 |
|
5747 |
+
#: languages/vue.php:906
|
5748 |
msgid "Hide Admin Bar Reports"
|
5749 |
msgstr ""
|
5750 |
|
5751 |
#. Translators: placeholders make text small.
|
5752 |
+
#: languages/vue.php:910
|
5753 |
msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
|
5754 |
msgstr ""
|
5755 |
|
5756 |
+
#: languages/vue.php:913
|
5757 |
msgid "Last 30 Days Analytics for "
|
5758 |
msgstr ""
|
5759 |
|
5760 |
+
#: languages/vue.php:916
|
5761 |
msgid "Your Website"
|
5762 |
msgstr ""
|
5763 |
|
5764 |
+
#: languages/vue.php:919
|
5765 |
msgid "Avg. Duration"
|
5766 |
msgstr ""
|
5767 |
|
5768 |
+
#: languages/vue.php:922
|
5769 |
msgid "More data is available"
|
5770 |
msgstr ""
|
5771 |
|
5772 |
+
#: languages/vue.php:925
|
5773 |
msgid "Want to see page-specific stats?"
|
5774 |
msgstr ""
|
5775 |
|
5776 |
+
#: languages/vue.php:928
|
5777 |
msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
|
5778 |
msgstr ""
|
5779 |
|
5780 |
+
#: languages/vue.php:931
|
5781 |
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."
|
5782 |
msgstr ""
|
5783 |
|
5784 |
+
#: languages/vue.php:934
|
5785 |
msgid "The ExactMetrics Team"
|
5786 |
msgstr ""
|
5787 |
|
5788 |
+
#: languages/vue.php:937
|
5789 |
msgid "One-click Complete eCommerce tracking"
|
5790 |
msgstr ""
|
5791 |
|
5792 |
+
#: languages/vue.php:940
|
5793 |
msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
|
5794 |
msgstr ""
|
5795 |
|
5796 |
+
#: languages/vue.php:943
|
5797 |
msgid "Forms Tracking"
|
5798 |
msgstr ""
|
5799 |
|
5800 |
+
#: languages/vue.php:946
|
5801 |
msgid "One-click Form Events Tracking"
|
5802 |
msgstr ""
|
5803 |
|
5804 |
+
#: languages/vue.php:949
|
5805 |
msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
|
5806 |
msgstr ""
|
5807 |
|
5808 |
+
#: languages/vue.php:952
|
5809 |
msgid "WordPress Admin Area Reports"
|
5810 |
msgstr ""
|
5811 |
|
5812 |
+
#: languages/vue.php:955
|
5813 |
msgid "Standard Reports"
|
5814 |
msgstr ""
|
5815 |
|
5816 |
+
#: languages/vue.php:958
|
5817 |
msgid "Overview Reports for the last 30 days."
|
5818 |
msgstr ""
|
5819 |
|
5820 |
+
#: languages/vue.php:961
|
5821 |
msgid "Advanced Reports"
|
5822 |
msgstr ""
|
5823 |
|
5824 |
+
#: languages/vue.php:964
|
5825 |
msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
|
5826 |
msgstr ""
|
5827 |
|
5828 |
+
#: languages/vue.php:967
|
5829 |
msgid "Dashboard Widget"
|
5830 |
msgstr ""
|
5831 |
|
5832 |
+
#: languages/vue.php:970
|
5833 |
msgid "Basic Widget"
|
5834 |
msgstr ""
|
5835 |
|
5836 |
+
#: languages/vue.php:973
|
5837 |
msgid "Overview Report Synopsis"
|
5838 |
msgstr ""
|
5839 |
|
5840 |
+
#: languages/vue.php:976
|
5841 |
msgid "Advanced Dashboard Widget"
|
5842 |
msgstr ""
|
5843 |
|
5844 |
+
#: languages/vue.php:979
|
5845 |
msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
|
5846 |
msgstr ""
|
5847 |
|
5848 |
+
#: languages/vue.php:982
|
5849 |
msgid "Publisher Reports"
|
5850 |
msgstr ""
|
5851 |
|
5852 |
+
#: languages/vue.php:985
|
5853 |
msgid "Advanced Publisher Reports & Tracking"
|
5854 |
msgstr ""
|
5855 |
|
5856 |
+
#: languages/vue.php:988
|
5857 |
msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
|
5858 |
msgstr ""
|
5859 |
|
5860 |
+
#: languages/vue.php:991
|
5861 |
msgid "Not Available"
|
5862 |
msgstr ""
|
5863 |
|
5864 |
+
#: languages/vue.php:994
|
5865 |
msgid "Complete Custom Dimensions Tracking"
|
5866 |
msgstr ""
|
5867 |
|
5868 |
+
#: languages/vue.php:997
|
5869 |
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"
|
5870 |
msgstr ""
|
5871 |
|
5872 |
+
#: languages/vue.php:1003
|
5873 |
msgid "Limited Support"
|
5874 |
msgstr ""
|
5875 |
|
5876 |
+
#: languages/vue.php:1006
|
5877 |
msgid "Priority Support"
|
5878 |
msgstr ""
|
5879 |
|
5880 |
+
#: languages/vue.php:1009
|
5881 |
msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
|
5882 |
msgstr ""
|
5883 |
|
5884 |
+
#: languages/vue.php:1012
|
5885 |
msgid "Feature"
|
5886 |
msgstr ""
|
5887 |
|
5888 |
+
#: languages/vue.php:1015
|
5889 |
msgid "Lite"
|
5890 |
msgstr ""
|
5891 |
|
5892 |
+
#: languages/vue.php:1018
|
5893 |
msgid "Pro"
|
5894 |
msgstr ""
|
5895 |
|
5896 |
+
#: languages/vue.php:1021
|
5897 |
msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
|
5898 |
msgstr ""
|
5899 |
|
5900 |
+
#: languages/vue.php:1024
|
5901 |
msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
|
5902 |
msgstr ""
|
5903 |
|
5904 |
+
#: languages/vue.php:1027
|
5905 |
msgid "Upgrade to Pro"
|
5906 |
msgstr ""
|
5907 |
|
5908 |
+
#: languages/vue.php:1030
|
5909 |
msgid "Universal Tracking"
|
5910 |
msgstr ""
|
5911 |
|
5912 |
+
#: languages/vue.php:1033
|
5913 |
msgid "Included"
|
5914 |
msgstr ""
|
5915 |
|
5916 |
+
#: languages/vue.php:1036
|
5917 |
msgid "Custom Google Analytics Link Tracking"
|
5918 |
msgstr ""
|
5919 |
|
5920 |
+
#: languages/vue.php:1039
|
5921 |
msgid "Standard Tracking"
|
5922 |
msgstr ""
|
5923 |
|
5924 |
+
#: languages/vue.php:1042
|
5925 |
msgid "Advanced Tracking"
|
5926 |
msgstr ""
|
5927 |
|
5928 |
+
#: languages/vue.php:1045
|
5929 |
msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
|
5930 |
msgstr ""
|
5931 |
|
5932 |
+
#: languages/vue.php:1048
|
5933 |
msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
|
5934 |
msgstr ""
|
5935 |
|
5936 |
+
#: languages/vue.php:1051
|
5937 |
msgid "No-Code-Needed Tracking Features"
|
5938 |
msgstr ""
|
5939 |
|
5940 |
+
#: languages/vue.php:1054
|
5941 |
msgid "Basic Tracking Options"
|
5942 |
msgstr ""
|
5943 |
|
5944 |
+
#: languages/vue.php:1057
|
5945 |
msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
|
5946 |
msgstr ""
|
5947 |
|
5948 |
+
#: languages/vue.php:1060
|
5949 |
msgid "Advanced Tracking Options"
|
5950 |
msgstr ""
|
5951 |
|
5952 |
+
#: languages/vue.php:1063
|
5953 |
msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
|
5954 |
msgstr ""
|
5955 |
|
5956 |
+
#: languages/vue.php:1066
|
5957 |
msgid "Welcome to the all-new ExactMetrics"
|
5958 |
msgstr ""
|
5959 |
|
5960 |
+
#: languages/vue.php:1069
|
5961 |
msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
|
5962 |
msgstr ""
|
5963 |
|
5964 |
+
#: languages/vue.php:1072
|
5965 |
msgid "The New & Improved ExactMetrics includes:"
|
5966 |
msgstr ""
|
5967 |
|
5968 |
+
#: languages/vue.php:1075
|
5969 |
msgid "All-New Design"
|
5970 |
msgstr ""
|
5971 |
|
5972 |
+
#: languages/vue.php:1078
|
5973 |
msgid "Better Reporting"
|
5974 |
msgstr ""
|
5975 |
|
5976 |
+
#: languages/vue.php:1081
|
5977 |
msgid "Better Tracking"
|
5978 |
msgstr ""
|
5979 |
|
5980 |
+
#: languages/vue.php:1084
|
5981 |
msgid "Better Support"
|
5982 |
msgstr ""
|
5983 |
|
5984 |
+
#: languages/vue.php:1087
|
5985 |
msgid "Continue"
|
5986 |
msgstr ""
|
5987 |
|
5988 |
+
#: languages/vue.php:1090
|
5989 |
msgid "Your settings have been automatically transferred."
|
5990 |
msgstr ""
|
5991 |
|
5992 |
+
#: languages/vue.php:1093
|
5993 |
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."
|
5994 |
msgstr ""
|
5995 |
|
5996 |
+
#: languages/vue.php:1096
|
5997 |
msgid "ExactMetrics Recommends WPForms"
|
5998 |
msgstr ""
|
5999 |
|
6000 |
+
#: languages/vue.php:1099
|
6001 |
msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
|
6002 |
msgstr ""
|
6003 |
|
6004 |
+
#: languages/vue.php:1102
|
6005 |
msgid "Used on over 3,000,000 websites!"
|
6006 |
msgstr ""
|
6007 |
|
6008 |
+
#: languages/vue.php:1105
|
6009 |
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!"
|
6010 |
msgstr ""
|
6011 |
|
6012 |
+
#: languages/vue.php:1108
|
6013 |
msgid "Skip this Step"
|
6014 |
msgstr ""
|
6015 |
|
6016 |
+
#: languages/vue.php:1111
|
6017 |
msgid "Continue & Install WPForms"
|
6018 |
msgstr ""
|
6019 |
|
6020 |
+
#: languages/vue.php:1114
|
6021 |
msgid "Installing..."
|
6022 |
msgstr ""
|
6023 |
|
6024 |
+
#: languages/vue.php:1117
|
6025 |
msgid "Welcome to ExactMetrics!"
|
6026 |
msgstr ""
|
6027 |
|
6028 |
+
#: languages/vue.php:1120
|
6029 |
msgid "Let's get you set up."
|
6030 |
msgstr ""
|
6031 |
|
6032 |
+
#: languages/vue.php:1123
|
6033 |
msgid "Which category best describes your website?"
|
6034 |
msgstr ""
|
6035 |
|
6036 |
+
#: languages/vue.php:1126
|
6037 |
msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
|
6038 |
msgstr ""
|
6039 |
|
6040 |
+
#: languages/vue.php:1129
|
6041 |
msgid "Business Website"
|
6042 |
msgstr ""
|
6043 |
|
6044 |
#. Translators: Make text bold.
|
6045 |
+
#: languages/vue.php:1133
|
6046 |
msgid "Publisher %1$s(Blog)%2$s"
|
6047 |
msgstr ""
|
6048 |
|
6049 |
+
#: languages/vue.php:1136
|
6050 |
msgid "Ecommerce"
|
6051 |
msgstr ""
|
6052 |
|
6053 |
+
#: languages/vue.php:1139
|
6054 |
msgid "File imported"
|
6055 |
msgstr ""
|
6056 |
|
6057 |
+
#: languages/vue.php:1142
|
6058 |
msgid "Settings successfully updated!"
|
6059 |
msgstr ""
|
6060 |
|
6061 |
+
#: languages/vue.php:1145
|
6062 |
msgid "Error importing settings"
|
6063 |
msgstr ""
|
6064 |
|
6065 |
+
#: languages/vue.php:1148
|
6066 |
msgid "Please choose a .json file generated by a ExactMetrics settings export."
|
6067 |
msgstr ""
|
6068 |
|
6069 |
+
#: languages/vue.php:1151
|
6070 |
msgid "Import/Export"
|
6071 |
msgstr ""
|
6072 |
|
6073 |
+
#: languages/vue.php:1154
|
6074 |
msgid "Import"
|
6075 |
msgstr ""
|
6076 |
|
6077 |
+
#: languages/vue.php:1157
|
6078 |
msgid "Import settings from another ExactMetrics website."
|
6079 |
msgstr ""
|
6080 |
|
6081 |
+
#: languages/vue.php:1160
|
6082 |
msgid "Export"
|
6083 |
msgstr ""
|
6084 |
|
6085 |
+
#: languages/vue.php:1163
|
6086 |
msgid "Export settings to import into another ExactMetrics install."
|
6087 |
msgstr ""
|
6088 |
|
6089 |
+
#: languages/vue.php:1166
|
6090 |
msgid "Import Settings"
|
6091 |
msgstr ""
|
6092 |
|
6093 |
+
#: languages/vue.php:1169
|
6094 |
msgid "Export Settings"
|
6095 |
msgstr ""
|
6096 |
|
6097 |
+
#: languages/vue.php:1172
|
6098 |
msgid "Please choose a file to import"
|
6099 |
msgstr ""
|
6100 |
|
6101 |
+
#: languages/vue.php:1175
|
6102 |
msgid "Use the filepicker below to select the settings export file from another site."
|
6103 |
msgstr ""
|
6104 |
|
6105 |
+
#: languages/vue.php:1178
|
6106 |
msgid "Use the button below to export a file with your ExactMetrics settings."
|
6107 |
msgstr ""
|
6108 |
|
6109 |
+
#: languages/vue.php:1181
|
6110 |
msgid "Choose file"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
+
#: languages/vue.php:1184
|
6114 |
msgid "No file chosen"
|
6115 |
msgstr ""
|
6116 |
|
6117 |
+
#: languages/vue.php:1187
|
6118 |
msgid "Uploading file..."
|
6119 |
msgstr ""
|
6120 |
|
6121 |
+
#: languages/vue.php:1190
|
6122 |
msgid "Cross Domain Tracking"
|
6123 |
msgstr ""
|
6124 |
|
6125 |
#. Translators: Add links to documentation.
|
6126 |
+
#: languages/vue.php:1194
|
6127 |
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."
|
6128 |
msgstr ""
|
6129 |
|
6130 |
+
#: languages/vue.php:1197
|
6131 |
msgid "Demographics"
|
6132 |
msgstr ""
|
6133 |
|
6134 |
+
#: languages/vue.php:1200
|
6135 |
msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
|
6136 |
msgstr ""
|
6137 |
|
6138 |
+
#: languages/vue.php:1203
|
6139 |
msgid "Anonymize IP Addresses"
|
6140 |
msgstr ""
|
6141 |
|
6142 |
+
#: languages/vue.php:1206
|
6143 |
msgid "Link Attribution"
|
6144 |
msgstr ""
|
6145 |
|
6146 |
+
#: languages/vue.php:1209
|
6147 |
msgid "Enable Enhanced Link Attribution"
|
6148 |
msgstr ""
|
6149 |
|
6150 |
+
#: languages/vue.php:1212
|
6151 |
msgid "Enable Anchor Tracking"
|
6152 |
msgstr ""
|
6153 |
|
6154 |
+
#: languages/vue.php:1215
|
6155 |
msgid "Enable allowAnchor"
|
6156 |
msgstr ""
|
6157 |
|
6158 |
+
#: languages/vue.php:1218
|
6159 |
msgid "Enable allowLinker"
|
6160 |
msgstr ""
|
6161 |
|
6162 |
+
#: languages/vue.php:1221
|
6163 |
msgid "Enable Tag Links in RSS"
|
6164 |
msgstr ""
|
6165 |
|
6166 |
+
#: languages/vue.php:1224
|
6167 |
msgid "File Downloads"
|
6168 |
msgstr ""
|
6169 |
|
6170 |
+
#: languages/vue.php:1227
|
6171 |
msgid "Extensions of Files to Track as Downloads"
|
6172 |
msgstr ""
|
6173 |
|
6174 |
+
#: languages/vue.php:1230
|
6175 |
msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
|
6176 |
msgstr ""
|
6177 |
|
6178 |
#. Translators: Add links to documentation.
|
6179 |
+
#: languages/vue.php:1234
|
6180 |
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."
|
6181 |
msgstr ""
|
6182 |
|
6183 |
#. Translators: Add links to documentation.
|
6184 |
+
#: languages/vue.php:1238
|
6185 |
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."
|
6186 |
msgstr ""
|
6187 |
|
6188 |
#. Translators: Add links to documentation.
|
6189 |
+
#: languages/vue.php:1242
|
6190 |
msgid "Add %1$sEnhanced Link Attribution%2$s to your tracking code."
|
6191 |
msgstr ""
|
6192 |
|
6193 |
+
#: languages/vue.php:1245
|
6194 |
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."
|
6195 |
msgstr ""
|
6196 |
|
6197 |
#. Translators: Add links to documentation.
|
6198 |
+
#: languages/vue.php:1249
|
6199 |
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."
|
6200 |
msgstr ""
|
6201 |
|
6202 |
#. Translators: Add links to documentation.
|
6203 |
+
#: languages/vue.php:1253
|
6204 |
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."
|
6205 |
msgstr ""
|
6206 |
|
6207 |
#. Translators: Add links to documentation.
|
6208 |
+
#: languages/vue.php:1257
|
6209 |
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."
|
6210 |
msgstr ""
|
6211 |
|
6212 |
+
#: languages/vue.php:1260
|
6213 |
msgid "Add domain"
|
6214 |
msgstr ""
|
6215 |
|
6216 |
#. Translators: Domain name example.
|
6217 |
+
#: languages/vue.php:1264
|
6218 |
msgid "Domain (example: %s)"
|
6219 |
msgstr ""
|
6220 |
|
6221 |
#. Translators: Current domain name that should not be used.
|
6222 |
+
#: languages/vue.php:1268
|
6223 |
msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
|
6224 |
msgstr ""
|
6225 |
|
6226 |
+
#: languages/vue.php:1271
|
6227 |
msgid "Custom Campaign Parameters"
|
6228 |
msgstr ""
|
6229 |
|
6230 |
+
#: languages/vue.php:1274
|
6231 |
msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
|
6232 |
msgstr ""
|
6233 |
|
6234 |
+
#: languages/vue.php:1277
|
6235 |
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."
|
6236 |
msgstr ""
|
6237 |
|
6238 |
#. Translators: Marks the field as required.
|
6239 |
+
#: languages/vue.php:1281
|
6240 |
msgid "Website URL %s"
|
6241 |
msgstr ""
|
6242 |
|
6243 |
#. Translators: Display the current website url in italic.
|
6244 |
+
#: languages/vue.php:1285
|
6245 |
msgid "The full website URL (e.g. %1$s %2$s%3$s)"
|
6246 |
msgstr ""
|
6247 |
|
6248 |
#. Translators: Marks the field as required.
|
6249 |
+
#: languages/vue.php:1289
|
6250 |
msgid "Campaign Source %s"
|
6251 |
msgstr ""
|
6252 |
|
6253 |
#. Translators: Make the text italic.
|
6254 |
+
#: languages/vue.php:1293
|
6255 |
msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
|
6256 |
msgstr ""
|
6257 |
|
6258 |
#. Translators: Make the text italic.
|
6259 |
+
#: languages/vue.php:1297
|
6260 |
msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
|
6261 |
msgstr ""
|
6262 |
|
6263 |
#. Translators: Make the text italic.
|
6264 |
+
#: languages/vue.php:1301
|
6265 |
msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
|
6266 |
msgstr ""
|
6267 |
|
6268 |
+
#: languages/vue.php:1304
|
6269 |
msgid "Enter the paid keyword"
|
6270 |
msgstr ""
|
6271 |
|
6272 |
+
#: languages/vue.php:1307
|
6273 |
msgid "Enter something to differentiate ads"
|
6274 |
msgstr ""
|
6275 |
|
6276 |
+
#: languages/vue.php:1310
|
6277 |
msgid "Use Fragment"
|
6278 |
msgstr ""
|
6279 |
|
6280 |
#. Translators: Make the text bold.
|
6281 |
+
#: languages/vue.php:1314
|
6282 |
msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
|
6283 |
msgstr ""
|
6284 |
|
6285 |
+
#: languages/vue.php:1317
|
6286 |
msgid "URL to use"
|
6287 |
msgstr ""
|
6288 |
|
6289 |
+
#: languages/vue.php:1320
|
6290 |
msgid "(Updates automatically)"
|
6291 |
msgstr ""
|
6292 |
|
6293 |
+
#: languages/vue.php:1323
|
6294 |
msgid "Copy to Clipboard"
|
6295 |
msgstr ""
|
6296 |
|
6297 |
+
#: languages/vue.php:1326
|
6298 |
msgid "More Information & Examples"
|
6299 |
msgstr ""
|
6300 |
|
6301 |
+
#: languages/vue.php:1329
|
6302 |
msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
|
6303 |
msgstr ""
|
6304 |
|
6305 |
+
#: languages/vue.php:1332
|
6306 |
msgid "Campaign Source"
|
6307 |
msgstr ""
|
6308 |
|
6309 |
+
#: languages/vue.php:1335
|
6310 |
msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
|
6311 |
msgstr ""
|
6312 |
|
6313 |
+
#: languages/vue.php:1338
|
6314 |
msgid "Campaign Medium"
|
6315 |
msgstr ""
|
6316 |
|
6317 |
+
#: languages/vue.php:1341
|
6318 |
msgid "Use utm_medium to identify a medium such as email or cost-per-click."
|
6319 |
msgstr ""
|
6320 |
|
6321 |
+
#: languages/vue.php:1344
|
6322 |
msgid "Campaign Name"
|
6323 |
msgstr ""
|
6324 |
|
6325 |
+
#: languages/vue.php:1347
|
6326 |
msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
|
6327 |
msgstr ""
|
6328 |
|
6329 |
+
#: languages/vue.php:1350
|
6330 |
msgid "Campaign Term"
|
6331 |
msgstr ""
|
6332 |
|
6333 |
+
#: languages/vue.php:1353
|
6334 |
msgid "Used for paid search. Use utm_term to note the keywords for this ad."
|
6335 |
msgstr ""
|
6336 |
|
6337 |
+
#: languages/vue.php:1356
|
6338 |
msgid "Campaign Content"
|
6339 |
msgstr ""
|
6340 |
|
6341 |
+
#: languages/vue.php:1359
|
6342 |
msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
|
6343 |
msgstr ""
|
6344 |
|
6345 |
#. Translators: Example.
|
6346 |
+
#: languages/vue.php:1363
|
6347 |
msgid "Example: %s"
|
6348 |
msgstr ""
|
6349 |
|
6350 |
#. Translators: Examples.
|
6351 |
+
#: languages/vue.php:1367
|
6352 |
msgid "Examples: %s"
|
6353 |
msgstr ""
|
6354 |
|
6355 |
+
#: languages/vue.php:1370
|
6356 |
msgid "About Campaigns"
|
6357 |
msgstr ""
|
6358 |
|
6359 |
+
#: languages/vue.php:1373
|
6360 |
msgid "About Custom Campaigns"
|
6361 |
msgstr ""
|
6362 |
|
6363 |
+
#: languages/vue.php:1376
|
6364 |
msgid "Best Practices for Creating Custom Campaigns"
|
6365 |
msgstr ""
|
6366 |
|
6367 |
+
#: languages/vue.php:1379
|
6368 |
msgid "About the Referral Traffic Report"
|
6369 |
msgstr ""
|
6370 |
|
6371 |
+
#: languages/vue.php:1382
|
6372 |
msgid "About Traffic Source Dimensions"
|
6373 |
msgstr ""
|
6374 |
|
6375 |
+
#: languages/vue.php:1385
|
6376 |
msgid "AdWords Auto-Tagging"
|
6377 |
msgstr ""
|
6378 |
|
6379 |
+
#: languages/vue.php:1388
|
6380 |
msgid "Additional Information"
|
6381 |
msgstr ""
|
6382 |
|
6383 |
+
#: languages/vue.php:1391
|
6384 |
msgid "Ecommerce Report"
|
6385 |
msgstr ""
|
6386 |
|
6387 |
+
#: languages/vue.php:1394
|
6388 |
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."
|
6389 |
msgstr ""
|
6390 |
|
6391 |
+
#: languages/vue.php:1397
|
6392 |
msgid "Here's what you get:"
|
6393 |
msgstr ""
|
6394 |
|
6395 |
+
#: languages/vue.php:1400
|
6396 |
msgid "See Your Conversion Rate to Improve Funnel"
|
6397 |
msgstr ""
|
6398 |
|
6399 |
+
#: languages/vue.php:1403
|
6400 |
msgid "See The Number of Transactions and Make Data-Driven Decisions"
|
6401 |
msgstr ""
|
6402 |
|
6403 |
+
#: languages/vue.php:1406
|
6404 |
msgid "See The Total Revenue to Track Growth"
|
6405 |
msgstr ""
|
6406 |
|
6407 |
+
#: languages/vue.php:1409
|
6408 |
msgid "See Average Order Value to Find Offer Opportunities"
|
6409 |
msgstr ""
|
6410 |
|
6411 |
+
#: languages/vue.php:1412
|
6412 |
msgid "See Your Top Products to See Individual Performance"
|
6413 |
msgstr ""
|
6414 |
|
6415 |
+
#: languages/vue.php:1415
|
6416 |
msgid "See Your Top Conversion Sources and Focus on what's Working"
|
6417 |
msgstr ""
|
6418 |
|
6419 |
+
#: languages/vue.php:1418
|
6420 |
msgid "See The Time it Takes for Customers to Purchase"
|
6421 |
msgstr ""
|
6422 |
|
6423 |
+
#: languages/vue.php:1421
|
6424 |
msgid "See How Many Sessions are Needed for a Purchase"
|
6425 |
msgstr ""
|
6426 |
|
6427 |
+
#: languages/vue.php:1424
|
6428 |
msgid "Unlock the Publisher Report and Focus on the Content That Matters"
|
6429 |
msgstr ""
|
6430 |
|
6431 |
+
#: languages/vue.php:1427
|
6432 |
msgid "See Your Top Landing Pages to Improve Engagement"
|
6433 |
msgstr ""
|
6434 |
|
6435 |
+
#: languages/vue.php:1430
|
6436 |
msgid "See Your Top Exit Pages to Reduce Abandonment"
|
6437 |
msgstr ""
|
6438 |
|
6439 |
+
#: languages/vue.php:1433
|
6440 |
msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
|
6441 |
msgstr ""
|
6442 |
|
6443 |
+
#: languages/vue.php:1436
|
6444 |
msgid "See Your Top Affiliate Links and Focus on what’s working"
|
6445 |
msgstr ""
|
6446 |
|
6447 |
+
#: languages/vue.php:1439
|
6448 |
msgid "See Your Top Downloads and Improve Conversions"
|
6449 |
msgstr ""
|
6450 |
|
6451 |
+
#: languages/vue.php:1442
|
6452 |
msgid "See Audience Demographic Report (Age / Gender / Interests)"
|
6453 |
msgstr ""
|
6454 |
|
6455 |
+
#: languages/vue.php:1445
|
6456 |
msgid "Forms Report"
|
6457 |
msgstr ""
|
6458 |
|
6459 |
+
#: languages/vue.php:1448
|
6460 |
msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
|
6461 |
msgstr ""
|
6462 |
|
6463 |
+
#: languages/vue.php:1451
|
6464 |
msgid "See Your Top Converting Forms and Optimize"
|
6465 |
msgstr ""
|
6466 |
|
6467 |
+
#: languages/vue.php:1454
|
6468 |
msgid "See Your Forms Impressions Count to Find the Best Placement"
|
6469 |
msgstr ""
|
6470 |
|
6471 |
+
#: languages/vue.php:1457
|
6472 |
msgid "License Key"
|
6473 |
msgstr ""
|
6474 |
|
6475 |
#. Translators: Add link to retrieve license key from account.
|
6476 |
+
#: languages/vue.php:1461
|
6477 |
msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
|
6478 |
msgstr ""
|
6479 |
|
6480 |
+
#: languages/vue.php:1464
|
6481 |
msgid "Google Authentication"
|
6482 |
msgstr ""
|
6483 |
|
6484 |
+
#: languages/vue.php:1468
|
6485 |
msgid "Miscellaneous"
|
6486 |
msgstr ""
|
6487 |
|
6488 |
+
#: languages/vue.php:1472
|
6489 |
msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
|
6490 |
msgstr ""
|
6491 |
|
6492 |
+
#: languages/vue.php:1476
|
6493 |
msgid "Hide Announcements"
|
6494 |
msgstr ""
|
6495 |
|
6496 |
#. Translators: Placeholders make the text green.
|
6497 |
+
#: languages/vue.php:1480
|
6498 |
msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
|
6499 |
msgstr ""
|
6500 |
|
6501 |
+
#: languages/vue.php:1483
|
6502 |
msgid "How to Connect to Google Analytics"
|
6503 |
msgstr ""
|
6504 |
|
6505 |
+
#: languages/vue.php:1486
|
6506 |
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."
|
6507 |
msgstr ""
|
6508 |
|
6509 |
+
#: languages/vue.php:1489
|
6510 |
msgid "Guide and Checklist for Advanced Insights"
|
6511 |
msgstr ""
|
6512 |
|
6513 |
+
#: languages/vue.php:1492
|
6514 |
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."
|
6515 |
msgstr ""
|
6516 |
|
6517 |
+
#: languages/vue.php:1495
|
6518 |
msgid "GDPR Guide"
|
6519 |
msgstr ""
|
6520 |
|
6521 |
+
#: languages/vue.php:1498
|
6522 |
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. "
|
6523 |
msgstr ""
|
6524 |
|
6525 |
+
#: languages/vue.php:1501
|
6526 |
msgid "How to Install and Activate ExactMetrics Addons"
|
6527 |
msgstr ""
|
6528 |
|
6529 |
+
#: languages/vue.php:1504
|
6530 |
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."
|
6531 |
msgstr ""
|
6532 |
|
6533 |
+
#: languages/vue.php:1507
|
6534 |
msgid "Enabling eCommerce Tracking and Reports"
|
6535 |
msgstr ""
|
6536 |
|
6537 |
+
#: languages/vue.php:1510
|
6538 |
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."
|
6539 |
msgstr ""
|
6540 |
|
6541 |
+
#: languages/vue.php:1513
|
6542 |
msgid "Read Documentation"
|
6543 |
msgstr ""
|
6544 |
|
6545 |
#. Translators: Makes the text bold.
|
6546 |
+
#: languages/vue.php:1517
|
6547 |
msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
|
6548 |
msgstr ""
|
6549 |
|
6550 |
#. Translators: Makes the text bold.
|
6551 |
+
#: languages/vue.php:1521
|
6552 |
msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
|
6553 |
msgstr ""
|
6554 |
|
6555 |
+
#: languages/vue.php:1524
|
6556 |
msgid "Unlock Form Tracking"
|
6557 |
msgstr ""
|
6558 |
|
6559 |
+
#: languages/vue.php:1527
|
6560 |
msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
|
6561 |
msgstr ""
|
6562 |
|
6563 |
+
#: languages/vue.php:1530
|
6564 |
msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
|
6565 |
msgstr ""
|
6566 |
|
6567 |
+
#: languages/vue.php:1533
|
6568 |
msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
|
6569 |
msgstr ""
|
6570 |
|
6571 |
+
#: languages/vue.php:1536
|
6572 |
msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
|
6573 |
msgstr ""
|
6574 |
|
6575 |
+
#: languages/vue.php:1539
|
6576 |
msgid "No addons found."
|
6577 |
msgstr ""
|
6578 |
|
6579 |
+
#: languages/vue.php:1542
|
6580 |
msgid "Refresh Addons"
|
6581 |
msgstr ""
|
6582 |
|
6583 |
#. Translators: Adds a line break.
|
6584 |
+
#: languages/vue.php:1549
|
6585 |
msgid "Upgrade to Pro to unlock addons and other great features."
|
6586 |
msgstr ""
|
6587 |
|
6588 |
+
#: languages/vue.php:1552
|
6589 |
msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
|
6590 |
msgstr ""
|
6591 |
|
6592 |
+
#: languages/vue.php:1555
|
6593 |
msgid "Refreshing Addons"
|
6594 |
msgstr ""
|
6595 |
|
6596 |
+
#: languages/vue.php:1558
|
6597 |
msgid "Recommended Addons"
|
6598 |
msgstr ""
|
6599 |
|
6600 |
#. Translators: Add a link to upgrade and make the text green.
|
6601 |
+
#: languages/vue.php:1562
|
6602 |
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!"
|
6603 |
msgstr ""
|
6604 |
|
6605 |
+
#: languages/vue.php:1565
|
6606 |
msgid "Upgrade to PRO Now"
|
6607 |
msgstr ""
|
6608 |
|
6609 |
+
#: languages/vue.php:1568
|
6610 |
msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
|
6611 |
msgstr ""
|
6612 |
|
6613 |
+
#: languages/vue.php:1571
|
6614 |
msgid "See All Your Important Store Metrics in One Place."
|
6615 |
msgstr ""
|
6616 |
|
6617 |
+
#: languages/vue.php:1574
|
6618 |
msgid "... and more:"
|
6619 |
msgstr ""
|
6620 |
|
6621 |
+
#: languages/vue.php:1577
|
6622 |
msgid "Dimensions- Track authors, categories, trags, searches, users and more."
|
6623 |
msgstr ""
|
6624 |
|
6625 |
+
#: languages/vue.php:1580
|
6626 |
msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
|
6627 |
msgstr ""
|
6628 |
|
6629 |
+
#: languages/vue.php:1583
|
6630 |
msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
|
6631 |
msgstr ""
|
6632 |
|
6633 |
+
#: languages/vue.php:1586
|
6634 |
msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
|
6635 |
msgstr ""
|
6636 |
|
6637 |
+
#: languages/vue.php:1589
|
6638 |
msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
|
6639 |
msgstr ""
|
6640 |
|
6641 |
+
#: languages/vue.php:1592
|
6642 |
msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
|
6643 |
msgstr ""
|
6644 |
|
6645 |
+
#: languages/vue.php:1595
|
6646 |
msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
|
6647 |
msgstr ""
|
6648 |
|
6649 |
+
#: languages/vue.php:1598
|
6650 |
msgid "Ads- See who’s clicking on your Google Adsense banner ads."
|
6651 |
msgstr ""
|
6652 |
|
6653 |
#. Translators: Error status and error text.
|
6654 |
+
#: languages/vue.php:1602
|
6655 |
msgid "Can't deauthenticate. Error: %1$s, %2$s"
|
6656 |
msgstr ""
|
6657 |
|
6658 |
+
#: languages/vue.php:1606
|
6659 |
msgid "You appear to be offline."
|
6660 |
msgstr ""
|
6661 |
|
6662 |
#. Translators: Error status and error text.
|
6663 |
+
#: languages/vue.php:1610
|
6664 |
msgid "Can't save settings. Error: %1$s, %2$s"
|
6665 |
msgstr ""
|
6666 |
|
6667 |
+
#: languages/vue.php:1613
|
6668 |
msgid "You appear to be offline. Settings not saved."
|
6669 |
msgstr ""
|
6670 |
|
6671 |
#. Translators: Error status and error text.
|
6672 |
+
#: languages/vue.php:1617
|
6673 |
msgid "Can't load authentication details. Error: %1$s, %2$s"
|
6674 |
msgstr ""
|
6675 |
|
6676 |
#. Translators: Error status and error text.
|
6677 |
+
#: languages/vue.php:1621
|
6678 |
msgid "Can't authenticate. Error: %1$s, %2$s"
|
6679 |
msgstr ""
|
6680 |
|
6681 |
#. Translators: Error status and error text.
|
6682 |
+
#: languages/vue.php:1625
|
6683 |
msgid "Can't reauthenticate. Error: %1$s, %2$s"
|
6684 |
msgstr ""
|
6685 |
|
6686 |
#. Translators: Error status and error text.
|
6687 |
+
#: languages/vue.php:1629
|
6688 |
msgid "Can't verify credentials. Error: %1$s, %2$s"
|
6689 |
msgstr ""
|
6690 |
|
6691 |
#. Translators: Number of days.
|
6692 |
+
#: languages/vue.php:1633
|
6693 |
msgid "vs. Previous Day"
|
6694 |
msgstr ""
|
6695 |
|
6696 |
+
#: languages/vue.php:1636
|
6697 |
msgid "No change"
|
6698 |
msgstr ""
|
6699 |
|
6700 |
+
#: languages/vue.php:1639
|
6701 |
msgid "You appear to be offline. WPForms not installed."
|
6702 |
msgstr ""
|
6703 |
|
6704 |
#. Translators: Error status and error text.
|
6705 |
+
#: languages/vue.php:1643
|
6706 |
msgid "Can't activate addon. Error: %1$s, %2$s"
|
6707 |
msgstr ""
|
6708 |
|
6709 |
+
#: languages/vue.php:1646
|
6710 |
msgid "You appear to be offline. Addon not activated."
|
6711 |
msgstr ""
|
6712 |
|
6713 |
#. Translators: Error status and error text.
|
6714 |
+
#: languages/vue.php:1650
|
6715 |
msgid "Can't deactivate addon. Error: %1$s, %2$s"
|
6716 |
msgstr ""
|
6717 |
|
6718 |
+
#: languages/vue.php:1653
|
6719 |
msgid "You appear to be offline. Addon not deactivated."
|
6720 |
msgstr ""
|
6721 |
|
6722 |
#. Translators: Error status and error text.
|
6723 |
+
#: languages/vue.php:1657
|
6724 |
msgid "Can't install plugin. Error: %1$s, %2$s"
|
6725 |
msgstr ""
|
6726 |
|
6727 |
+
#: languages/vue.php:1660
|
6728 |
msgid "You appear to be offline. Plugin not installed."
|
6729 |
msgstr ""
|
6730 |
|
6731 |
#. Translators: Error status and error text.
|
6732 |
+
#: languages/vue.php:1664
|
6733 |
msgid "Can't install addon. Error: %1$s, %2$s"
|
6734 |
msgstr ""
|
6735 |
|
6736 |
+
#: languages/vue.php:1667
|
6737 |
msgid "You appear to be offline. Addon not installed."
|
6738 |
msgstr ""
|
6739 |
|
6740 |
#. Translators: Error status and error text.
|
6741 |
+
#: languages/vue.php:1671
|
6742 |
msgid "Can't install WPForms. Error: %1$s, %2$s"
|
6743 |
msgstr ""
|
6744 |
|
6745 |
#. Translators: Error status and error text.
|
6746 |
+
#: languages/vue.php:1675
|
6747 |
msgid "Can't deactivate the license. Error: %1$s, %2$s"
|
6748 |
msgstr ""
|
6749 |
|
6750 |
#. Translators: Error status and error text.
|
6751 |
+
#: languages/vue.php:1679
|
6752 |
msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
|
6753 |
msgstr ""
|
6754 |
|
6755 |
#. Translators: Error status and error text.
|
6756 |
+
#: languages/vue.php:1683
|
6757 |
msgid "Can't load license details. Error: %1$s, %2$s"
|
6758 |
msgstr ""
|
6759 |
|
6760 |
+
#: languages/vue.php:1686
|
6761 |
msgid "Error loading license details"
|
6762 |
msgstr ""
|
6763 |
|
6764 |
#. Translators: Error status and error text.
|
6765 |
+
#: languages/vue.php:1690
|
6766 |
msgid "Can't verify the license. Error: %1$s, %2$s"
|
6767 |
msgstr ""
|
6768 |
|
6769 |
#. Translators: Error status and error text.
|
6770 |
+
#: languages/vue.php:1694
|
6771 |
msgid "Can't validate the license. Error: %1$s, %2$s"
|
6772 |
msgstr ""
|
6773 |
|
6774 |
#. Translators: Make text green.
|
6775 |
+
#: languages/vue.php:1698
|
6776 |
msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
|
6777 |
msgstr ""
|
6778 |
|
6779 |
+
#: languages/vue.php:1701
|
6780 |
msgid "Network Active"
|
6781 |
msgstr ""
|
6782 |
|
6783 |
+
#: languages/vue.php:1704
|
6784 |
msgid "Active"
|
6785 |
msgstr ""
|
6786 |
|
6787 |
+
#: languages/vue.php:1707
|
6788 |
msgid "Inactive"
|
6789 |
msgstr ""
|
6790 |
|
6791 |
#. Translators: Placeholder for the addon status (installed, active, etc).
|
6792 |
+
#: languages/vue.php:1711
|
6793 |
msgid "Status: %s"
|
6794 |
msgstr ""
|
6795 |
|
6796 |
+
#: languages/vue.php:1714
|
6797 |
msgid "Not Installed"
|
6798 |
msgstr ""
|
6799 |
|
6800 |
+
#: languages/vue.php:1717
|
6801 |
msgid "No options available"
|
6802 |
msgstr ""
|
6803 |
|
6804 |
+
#: languages/vue.php:1720
|
6805 |
msgid "Reset to default"
|
6806 |
msgstr ""
|
6807 |
|
6808 |
+
#: languages/vue.php:1723
|
6809 |
msgid "The value entered does not match the required format"
|
6810 |
msgstr ""
|
6811 |
|
6812 |
+
#: languages/vue.php:1726
|
6813 |
msgid "Help Us Improve"
|
6814 |
msgstr ""
|
6815 |
|
6816 |
+
#: languages/vue.php:1729
|
6817 |
msgid "Help us better understand our users and their website needs."
|
6818 |
msgstr ""
|
6819 |
|
6820 |
#. Translators: Adds a link to the documentation.
|
6821 |
+
#: languages/vue.php:1733
|
6822 |
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"
|
6823 |
msgstr ""
|
6824 |
|
6825 |
#. Translators: The name of the field that is throwing a validation error.
|
6826 |
+
#: languages/vue.php:1737
|
6827 |
msgid "%s can't be empty."
|
6828 |
msgstr ""
|
6829 |
|
6830 |
+
#: languages/vue.php:1740
|
6831 |
msgid "Duplicate values are not allowed."
|
6832 |
msgstr ""
|
6833 |
|
6834 |
+
#: languages/vue.php:1743
|
6835 |
msgid "Add Another Link Path"
|
6836 |
msgstr ""
|
6837 |
|
6838 |
+
#: languages/vue.php:1746
|
6839 |
msgid "Remove row"
|
6840 |
msgstr ""
|
6841 |
|
6842 |
+
#: languages/vue.php:1749
|
6843 |
msgid "Search Console Report"
|
6844 |
msgstr ""
|
6845 |
|
6846 |
+
#: languages/vue.php:1752
|
6847 |
msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
|
6848 |
msgstr ""
|
6849 |
|
6850 |
+
#: languages/vue.php:1755
|
6851 |
msgid "See Your Top Google Search Terms and Optimize Content"
|
6852 |
msgstr ""
|
6853 |
|
6854 |
+
#: languages/vue.php:1758
|
6855 |
msgid "See The Number of Clicks and Track Interests"
|
6856 |
msgstr ""
|
6857 |
|
6858 |
+
#: languages/vue.php:1761
|
6859 |
msgid "See The Click-Through-Ratio and Improve SEO"
|
6860 |
msgstr ""
|
6861 |
|
6862 |
+
#: languages/vue.php:1764
|
6863 |
msgid "See The Average Results Position and Focus on what works."
|
6864 |
msgstr ""
|
6865 |
|
6866 |
+
#: languages/vue.php:1767
|
6867 |
msgid "Show Overview Reports"
|
6868 |
msgstr ""
|
6869 |
|
6870 |
+
#: languages/vue.php:1770
|
6871 |
msgid "Show Publishers Reports"
|
6872 |
msgstr ""
|
6873 |
|
6874 |
+
#: languages/vue.php:1773
|
6875 |
msgid "Show eCommerce Reports"
|
6876 |
msgstr ""
|
6877 |
|
6878 |
+
#: languages/vue.php:1776
|
6879 |
msgid "Available in PRO version"
|
6880 |
msgstr ""
|
6881 |
|
6882 |
+
#: languages/vue.php:1779
|
6883 |
msgid "Real-Time Report"
|
6884 |
msgstr ""
|
6885 |
|
6886 |
+
#: languages/vue.php:1782
|
6887 |
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."
|
6888 |
msgstr ""
|
6889 |
|
6890 |
#. Translators: add link to blog.
|
6891 |
+
#: languages/vue.php:1786
|
6892 |
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."
|
6893 |
msgstr ""
|
6894 |
|
6895 |
+
#: languages/vue.php:1789
|
6896 |
msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
|
6897 |
msgstr ""
|
6898 |
|
6899 |
+
#: languages/vue.php:1792
|
6900 |
msgid "See Your Top Pages Immediately After Making Changes"
|
6901 |
msgstr ""
|
6902 |
|
6903 |
+
#: languages/vue.php:1795
|
6904 |
msgid "See Your Top Referral Sources and Adapt Faster"
|
6905 |
msgstr ""
|
6906 |
|
6907 |
+
#: languages/vue.php:1798
|
6908 |
msgid "See Your Traffic Demographics"
|
6909 |
msgstr ""
|
6910 |
|
6911 |
+
#: languages/vue.php:1801
|
6912 |
msgid "Get Fresh Reports Data Every 60 Seconds"
|
6913 |
msgstr ""
|
6914 |
|
6915 |
+
#: languages/vue.php:1804
|
6916 |
msgid "See Where Your Visitors are Connecting From (country & city)"
|
6917 |
msgstr ""
|
6918 |
|
6919 |
+
#: languages/vue.php:1807
|
6920 |
msgid "Show in widget mode"
|
6921 |
msgstr ""
|
6922 |
|
6923 |
+
#: languages/vue.php:1810
|
6924 |
msgid "Show in full-width mode"
|
6925 |
msgstr ""
|
6926 |
|
6927 |
+
#: languages/vue.php:1813
|
6928 |
msgid "Custom Dimensions Report"
|
6929 |
msgstr ""
|
6930 |
|
6931 |
+
#: languages/vue.php:1816
|
6932 |
msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
|
6933 |
msgstr ""
|
6934 |
|
6935 |
+
#: languages/vue.php:1819
|
6936 |
msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
|
6937 |
msgstr ""
|
6938 |
|
6939 |
+
#: languages/vue.php:1822
|
6940 |
msgid "Author tracking to see which author’s posts generate the most traffic"
|
6941 |
msgstr ""
|
6942 |
|
6943 |
+
#: languages/vue.php:1825
|
6944 |
msgid "Post Type tracking to see which WordPress post types perform better"
|
6945 |
msgstr ""
|
6946 |
|
6947 |
+
#: languages/vue.php:1828
|
6948 |
msgid "Category tracking to see which sections of your sites are the most popular"
|
6949 |
msgstr ""
|
6950 |
|
6951 |
+
#: languages/vue.php:1831
|
6952 |
msgid "SEO score tracking to see which blog SEO scores are the most popular"
|
6953 |
msgstr ""
|
6954 |
|
6955 |
+
#: languages/vue.php:1834
|
6956 |
msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
|
6957 |
msgstr ""
|
6958 |
|
6959 |
+
#: languages/vue.php:1837
|
6960 |
msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
|
6961 |
msgstr ""
|
6962 |
|
6963 |
#. Translators: Error status and error text.
|
6964 |
+
#: languages/vue.php:1841
|
6965 |
msgid "Can't load errors. Error: %1$s, %2$s"
|
6966 |
msgstr ""
|
6967 |
|
6968 |
#. Translators: Error status and error text.
|
6969 |
+
#: languages/vue.php:1845
|
6970 |
msgid "Can't load settings. Error: %1$s, %2$s"
|
6971 |
msgstr ""
|
6972 |
|
6973 |
+
#: languages/vue.php:1848
|
6974 |
msgid "Network error encountered. Settings not saved."
|
6975 |
msgstr ""
|
6976 |
|
6977 |
#. Translators: Placeholder adds a line break.
|
6978 |
+
#: languages/vue.php:1852
|
6979 |
msgid "You can customize your %sdate range only in the PRO version."
|
6980 |
msgstr ""
|
6981 |
|
6982 |
+
#: languages/vue.php:1855
|
6983 |
msgid "Check out the newly added classic mode"
|
6984 |
msgstr ""
|
6985 |
|
6986 |
+
#: languages/vue.php:1858
|
6987 |
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!"
|
6988 |
msgstr ""
|
6989 |
|
6990 |
+
#: languages/vue.php:1861
|
6991 |
msgid "To unlock more features consider upgrading to PRO."
|
6992 |
msgstr ""
|
6993 |
|
6994 |
+
#: languages/vue.php:1865
|
6995 |
msgid "Receive 50% off automatically applied at the checkout!"
|
6996 |
msgstr ""
|
6997 |
|
6998 |
+
#: languages/vue.php:1869
|
6999 |
msgid "See all features"
|
7000 |
msgstr ""
|
7001 |
|
7002 |
+
#: languages/vue.php:1872
|
7003 |
msgid "Upgrade to"
|
7004 |
msgstr ""
|
7005 |
|
7006 |
+
#: languages/vue.php:1875
|
7007 |
msgid "Last 30 days"
|
7008 |
msgstr ""
|
7009 |
|
7010 |
+
#: languages/vue.php:1878
|
7011 |
msgid "See All Reports"
|
7012 |
msgstr ""
|
7013 |
|
7014 |
+
#: languages/vue.php:1881
|
7015 |
msgid "Go to the Analytics Dashboard"
|
7016 |
msgstr ""
|
7017 |
|
7018 |
#. Translators: Add line break.
|
7019 |
+
#: languages/vue.php:1885
|
7020 |
msgid "See All Your Important Store%s Metrics in One Place"
|
7021 |
msgstr ""
|
7022 |
|
7023 |
+
#: languages/vue.php:1888
|
7024 |
msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
|
7025 |
msgstr ""
|
7026 |
|
7027 |
+
#: languages/vue.php:1891
|
7028 |
msgid "See your Top Conversion Sources and Focus on what's Working"
|
7029 |
msgstr ""
|
7030 |
|
7031 |
+
#: languages/vue.php:1894
|
7032 |
msgid "Proceed"
|
7033 |
msgstr ""
|
7034 |
|
7035 |
+
#: languages/vue.php:1897
|
7036 |
msgid "Connection Information"
|
7037 |
msgstr ""
|
7038 |
|
7039 |
+
#: languages/vue.php:1900
|
7040 |
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."
|
7041 |
msgstr ""
|
7042 |
|
7043 |
+
#: languages/vue.php:1903
|
7044 |
msgid "Hostname"
|
7045 |
msgstr ""
|
7046 |
|
7047 |
+
#: languages/vue.php:1906
|
7048 |
msgid "FTP Username"
|
7049 |
msgstr ""
|
7050 |
|
7051 |
+
#: languages/vue.php:1909
|
7052 |
msgid "FTP Password"
|
7053 |
msgstr ""
|
7054 |
|
7055 |
+
#: languages/vue.php:1912
|
7056 |
msgid "This password will not be stored on the server."
|
7057 |
msgstr ""
|
7058 |
|
7059 |
+
#: languages/vue.php:1915
|
7060 |
msgid "Connection Type"
|
7061 |
msgstr ""
|
7062 |
|
7063 |
+
#: languages/vue.php:1918
|
7064 |
msgid "Cancel"
|
7065 |
msgstr ""
|
7066 |
|
7067 |
+
#: languages/vue.php:1921
|
7068 |
msgid "Facebook Instant Articles"
|
7069 |
msgstr ""
|
7070 |
|
7071 |
+
#: languages/vue.php:1924
|
7072 |
msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
|
7073 |
msgstr ""
|
7074 |
|
7075 |
+
#: languages/vue.php:1927
|
7076 |
msgid "Google AMP"
|
7077 |
msgstr ""
|
7078 |
|
7079 |
+
#: languages/vue.php:1930
|
7080 |
msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
|
7081 |
msgstr ""
|
7082 |
|
7083 |
+
#: languages/vue.php:1933
|
7084 |
msgid "Ads Tracking"
|
7085 |
msgstr ""
|
7086 |
|
7087 |
+
#: languages/vue.php:1936
|
7088 |
msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
|
7089 |
msgstr ""
|
7090 |
|
7091 |
#. Translators: Adds link to the account area to retreive license key.
|
7092 |
+
#: languages/vue.php:1940
|
7093 |
msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
|
7094 |
msgstr ""
|
7095 |
|
7096 |
+
#: languages/vue.php:1943
|
7097 |
msgid "Paste your license key here"
|
7098 |
msgstr ""
|
7099 |
|
7100 |
+
#: languages/vue.php:1946
|
7101 |
msgid "Verify"
|
7102 |
msgstr ""
|
7103 |
|
7104 |
+
#: languages/vue.php:1949
|
7105 |
msgid "Setup Wizard"
|
7106 |
msgstr ""
|
7107 |
|
7108 |
+
#: languages/vue.php:1952
|
7109 |
msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
|
7110 |
msgstr ""
|
7111 |
|
7112 |
+
#: languages/vue.php:1955
|
7113 |
msgid "Relaunch Setup Wizard"
|
7114 |
msgstr ""
|
7115 |
|
7116 |
+
#: languages/vue.php:1958
|
7117 |
msgid "Connect ExactMetrics to Start Tracking Your Data"
|
7118 |
msgstr ""
|
7119 |
|
7120 |
+
#: languages/vue.php:1961
|
7121 |
msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
|
7122 |
msgstr ""
|
7123 |
|
7124 |
#. Translators: Adds link to upgrade.
|
7125 |
+
#: languages/vue.php:1965
|
7126 |
msgid "To unlock more features consider %1$supgrading to PRO%2$s."
|
7127 |
msgstr ""
|
7128 |
|
7129 |
+
#: languages/vue.php:1968
|
7130 |
msgid "Complete Upgrade"
|
7131 |
msgstr ""
|
7132 |
|
7133 |
+
#: languages/vue.php:1971
|
7134 |
msgid "Upgrade to Pro Version!"
|
7135 |
msgstr ""
|
7136 |
|
7137 |
#. Translators: Make text bold.
|
7138 |
+
#: languages/vue.php:1975
|
7139 |
msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
|
7140 |
msgstr ""
|
7141 |
|
7142 |
+
#: languages/vue.php:1978
|
7143 |
msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
|
7144 |
msgstr ""
|
7145 |
|
7146 |
+
#: languages/vue.php:1981
|
7147 |
msgid "Show"
|
7148 |
msgstr ""
|
7149 |
|
7150 |
#. Translators: The number of results.
|
7151 |
+
#: languages/vue.php:1985
|
7152 |
msgid "%s results"
|
7153 |
msgstr ""
|
7154 |
|
7155 |
+
#: languages/vue.php:1988
|
7156 |
+
#: languages/vue.php:2071
|
7157 |
msgid "Connect ExactMetrics"
|
7158 |
msgstr ""
|
7159 |
|
7160 |
+
#: languages/vue.php:1991
|
7161 |
msgid "Website profile"
|
7162 |
msgstr ""
|
7163 |
|
7164 |
+
#: languages/vue.php:1994
|
7165 |
msgid "Active profile"
|
7166 |
msgstr ""
|
7167 |
|
7168 |
+
#: languages/vue.php:1998
|
7169 |
msgid "Your website profile has been set at the network level of your WordPress Multisite."
|
7170 |
msgstr ""
|
7171 |
|
7172 |
+
#: languages/vue.php:2002
|
7173 |
msgid "If you would like to use a different profile for this subsite, you can authenticate below."
|
7174 |
msgstr ""
|
7175 |
|
7176 |
+
#: languages/vue.php:2005
|
7177 |
msgid "Skip and Keep Connection"
|
7178 |
msgstr ""
|
7179 |
|
7180 |
+
#: languages/vue.php:2009
|
7181 |
msgid "Authenticating"
|
7182 |
msgstr ""
|
7183 |
|
7184 |
+
#: languages/vue.php:2012
|
7185 |
msgid "Activating..."
|
7186 |
msgstr ""
|
7187 |
|
7188 |
+
#: languages/vue.php:2015
|
7189 |
msgid "Deactivating..."
|
7190 |
msgstr ""
|
7191 |
|
7192 |
+
#: languages/vue.php:2018
|
7193 |
msgid "Deactivate"
|
7194 |
msgstr ""
|
7195 |
|
7196 |
+
#: languages/vue.php:2021
|
7197 |
msgid "Scroll Tracking"
|
7198 |
msgstr ""
|
7199 |
|
7200 |
+
#: languages/vue.php:2024
|
7201 |
msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
|
7202 |
msgstr ""
|
7203 |
|
7204 |
+
#: languages/vue.php:2027
|
7205 |
msgid ""
|
7206 |
"The EU Compliance addon allows you to improve compliance with GDPR\n"
|
7207 |
" and other privacy regulations."
|
7208 |
msgstr ""
|
7209 |
|
7210 |
+
#: languages/vue.php:2031
|
7211 |
msgid "EU Compliance"
|
7212 |
msgstr ""
|
7213 |
|
7214 |
+
#: languages/vue.php:2034
|
7215 |
msgid "Classic mode"
|
7216 |
msgstr ""
|
7217 |
|
7218 |
+
#: languages/vue.php:2037
|
7219 |
msgid "Hide dashboard widget"
|
7220 |
msgstr ""
|
7221 |
|
7222 |
+
#: languages/vue.php:2040
|
7223 |
msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
|
7224 |
msgstr ""
|
7225 |
|
7226 |
+
#: languages/vue.php:2043
|
7227 |
msgid "Yes, hide it!"
|
7228 |
msgstr ""
|
7229 |
|
7230 |
+
#: languages/vue.php:2046
|
7231 |
msgid "No, cancel!"
|
7232 |
msgstr ""
|
7233 |
|
7234 |
+
#: languages/vue.php:2049
|
7235 |
msgid "ExactMetrics Widget Hidden"
|
7236 |
msgstr ""
|
7237 |
|
7238 |
+
#: languages/vue.php:2052
|
7239 |
msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
|
7240 |
msgstr ""
|
7241 |
|
7242 |
#. Translators: Make text bold.
|
7243 |
+
#: languages/vue.php:2056
|
7244 |
msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy!"
|
7245 |
msgstr ""
|
7246 |
|
7247 |
+
#: languages/vue.php:2059
|
7248 |
msgid "Verifying Credentials"
|
7249 |
msgstr ""
|
7250 |
|
7251 |
+
#: languages/vue.php:2062
|
7252 |
msgid "Your site is connected to ExactMetrics!"
|
7253 |
msgstr ""
|
7254 |
|
7255 |
+
#: languages/vue.php:2065
|
7256 |
msgid "Deauthenticating"
|
7257 |
msgstr ""
|
7258 |
|
7259 |
+
#: languages/vue.php:2068
|
7260 |
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."
|
7261 |
msgstr ""
|
7262 |
|
7263 |
+
#: languages/vue.php:2074
|
7264 |
msgid "Verify Credentials"
|
7265 |
msgstr ""
|
7266 |
|
7267 |
+
#: languages/vue.php:2080
|
7268 |
msgid "Website Profile"
|
7269 |
msgstr ""
|
7270 |
|
7271 |
+
#: languages/vue.php:2083
|
7272 |
msgid "Active Profile"
|
7273 |
msgstr ""
|
7274 |
|
7275 |
+
#: languages/vue.php:2086
|
7276 |
msgid "Force Deauthenticate"
|
7277 |
msgstr ""
|
7278 |
|
7279 |
+
#: languages/vue.php:2089
|
7280 |
msgid "Disconnect ExactMetrics"
|
7281 |
msgstr ""
|
7282 |
|
7283 |
+
#: languages/vue.php:2092
|
7284 |
msgid "Performance"
|
7285 |
msgstr ""
|
7286 |
|
7287 |
+
#: languages/vue.php:2095
|
7288 |
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."
|
7289 |
msgstr ""
|
7290 |
|
7291 |
+
#: languages/vue.php:2098
|
7292 |
msgid "Usage Tracking"
|
7293 |
msgstr ""
|
7294 |
|
7295 |
+
#: languages/vue.php:2101
|
7296 |
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."
|
7297 |
msgstr ""
|
7298 |
|
7299 |
+
#: languages/vue.php:2104
|
7300 |
msgid "Allow usage tracking"
|
7301 |
msgstr ""
|
7302 |
|
7303 |
#. Translators: Adds a link to the documentation.
|
7304 |
+
#: languages/vue.php:2108
|
7305 |
msgid "Complete documentation on usage tracking is available %1$shere%2$s."
|
7306 |
msgstr ""
|
7307 |
|
7308 |
#. Translators: Makes text bold and adds smiley.
|
7309 |
+
#: languages/vue.php:2112
|
7310 |
msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
|
7311 |
msgstr ""
|
7312 |
|
7313 |
#. Translators: Makes text green.
|
7314 |
+
#: languages/vue.php:2116
|
7315 |
msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
|
7316 |
msgstr ""
|
7317 |
|
7318 |
+
#: languages/vue.php:2119
|
7319 |
msgid "Unlock All Features and Upgrade to Pro"
|
7320 |
msgstr ""
|
7321 |
|
7322 |
+
#: languages/vue.php:2122
|
7323 |
msgid "Upgrade"
|
7324 |
msgstr ""
|
7325 |
|
7326 |
#. Translators: Line break.
|
7327 |
+
#: languages/vue.php:2126
|
7328 |
msgid "Unique %s Sessions"
|
7329 |
msgstr ""
|
7330 |
|
7331 |
#. Translators: Line break.
|
7332 |
+
#: languages/vue.php:2130
|
7333 |
msgid "Unique %s Pageviews"
|
7334 |
msgstr ""
|
7335 |
|
7336 |
+
#: languages/vue.php:2133
|
7337 |
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."
|
7338 |
msgstr ""
|
7339 |
|
7340 |
+
#: languages/vue.php:2136
|
7341 |
msgid "Email Summaries"
|
7342 |
msgstr ""
|
7343 |
|
7344 |
+
#: languages/vue.php:2139
|
7345 |
msgid "Export PDF Reports"
|
7346 |
msgstr ""
|
7347 |
|
7348 |
+
#: languages/vue.php:2142
|
7349 |
msgid "You can add maximum 5 items."
|
7350 |
msgstr ""
|
7351 |
|
7352 |
+
#: languages/vue.php:2145
|
7353 |
msgid "At least 0 item required."
|
7354 |
msgstr ""
|
7355 |
|
7356 |
+
#: languages/vue.php:2148
|
7357 |
msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
|
7358 |
msgstr ""
|
7359 |
|
7360 |
+
#: languages/vue.php:2151
|
7361 |
msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
|
7362 |
msgstr ""
|
7363 |
|
7364 |
+
#: languages/vue.php:2154
|
7365 |
msgid "Today"
|
7366 |
msgstr ""
|
7367 |
|
7368 |
+
#: languages/vue.php:2157
|
7369 |
msgid "Yesterday"
|
7370 |
msgstr ""
|
7371 |
|
7372 |
+
#: languages/vue.php:2160
|
7373 |
msgid "Last Week"
|
7374 |
msgstr ""
|
7375 |
|
7376 |
+
#: languages/vue.php:2163
|
7377 |
msgid "Last Month"
|
7378 |
msgstr ""
|
7379 |
|
7380 |
+
#: languages/vue.php:2166
|
7381 |
msgid "Last 7 days"
|
7382 |
msgstr ""
|
7383 |
|
7384 |
+
#: languages/vue.php:2169
|
7385 |
msgid "PrettyLinks Integration"
|
7386 |
msgstr ""
|
7387 |
|
7388 |
+
#: languages/vue.php:2172
|
7389 |
msgid "Make your ExactMetrics campaign links prettier with Pretty Links!"
|
7390 |
msgstr ""
|
7391 |
|
7392 |
+
#: languages/vue.php:2175
|
7393 |
msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
|
7394 |
msgstr ""
|
7395 |
|
7396 |
+
#: languages/vue.php:2178
|
7397 |
msgid "Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!"
|
7398 |
msgstr ""
|
7399 |
|
7400 |
+
#: languages/vue.php:2181
|
7401 |
msgid "Over 200,000 websites use Pretty Links!"
|
7402 |
msgstr ""
|
7403 |
|
7404 |
+
#: languages/vue.php:2184
|
7405 |
msgid "Install Pretty Links"
|
7406 |
msgstr ""
|
7407 |
|
7408 |
+
#: languages/vue.php:2187
|
7409 |
msgid "Pretty Links Installed & Activated"
|
7410 |
msgstr ""
|
7411 |
|
7412 |
+
#: languages/vue.php:2190
|
7413 |
msgid "Download Pretty Links"
|
7414 |
msgstr ""
|
7415 |
|
7416 |
+
#: languages/vue.php:2193
|
7417 |
msgid "Install Pretty Links from the WordPress.org plugin repository."
|
7418 |
msgstr ""
|
7419 |
|
7420 |
+
#: languages/vue.php:2196
|
7421 |
msgid "Activate Pretty Links"
|
7422 |
msgstr ""
|
7423 |
|
7424 |
+
#: languages/vue.php:2199
|
7425 |
msgid "Activating Pretty Links"
|
7426 |
msgstr ""
|
7427 |
|
7428 |
+
#: languages/vue.php:2202
|
7429 |
msgid "Create New Pretty Link"
|
7430 |
msgstr ""
|
7431 |
|
7432 |
+
#: languages/vue.php:2205
|
7433 |
msgid "Create a New Pretty Link"
|
7434 |
msgstr ""
|
7435 |
|
7436 |
+
#: languages/vue.php:2208
|
7437 |
msgid "Grab your campaign link and paste it into the Target URL field."
|
7438 |
msgstr ""
|
7439 |
|
7440 |
+
#: languages/vue.php:2211
|
7441 |
msgid "Copy to Pretty Links"
|
7442 |
msgstr ""
|
7443 |
|
7444 |
+
#: languages/vue.php:2214
|
7445 |
msgid "Make your campaign links prettier!"
|
7446 |
msgstr ""
|
7447 |
|
7448 |
+
#: languages/vue.php:2217
|
7449 |
msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
|
7450 |
msgstr ""
|
7451 |
|
7452 |
#. Translators: Add links to documentation.
|
7453 |
+
#: languages/vue.php:2221
|
7454 |
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."
|
7455 |
msgstr ""
|
7456 |
|
7457 |
+
#: languages/vue.php:2224
|
7458 |
msgid "View notifications"
|
7459 |
msgstr ""
|
7460 |
|
7461 |
+
#: languages/vue.php:2227
|
7462 |
msgid "Verifying License"
|
7463 |
msgstr ""
|
7464 |
|
7465 |
+
#: languages/vue.php:2230
|
7466 |
msgid "There was an error verifying your license"
|
7467 |
msgstr ""
|
7468 |
|
7469 |
+
#: languages/vue.php:2233
|
7470 |
msgid "Refreshing License"
|
7471 |
msgstr ""
|
7472 |
|
7473 |
+
#: languages/vue.php:2236
|
7474 |
msgid "There was an error refreshing your license"
|
7475 |
msgstr ""
|
7476 |
|
7477 |
+
#: languages/vue.php:2239
|
7478 |
msgid "Deactivating License"
|
7479 |
msgstr ""
|
7480 |
|
7481 |
+
#: languages/vue.php:2242
|
7482 |
msgid "Success"
|
7483 |
msgstr ""
|
7484 |
|
7485 |
+
#: languages/vue.php:2245
|
7486 |
msgid "There was an error deactivating your license"
|
7487 |
msgstr ""
|
7488 |
|
7489 |
+
#: languages/vue.php:2248
|
7490 |
msgid "Your license key has been set at the network level of your WordPress Multisite."
|
7491 |
msgstr ""
|
7492 |
|
7493 |
+
#: languages/vue.php:2251
|
7494 |
msgid "If you would like to use a different license for this subsite, you can enter it below."
|
7495 |
msgstr ""
|
7496 |
|
7497 |
+
#: languages/vue.php:2254
|
7498 |
msgid "No license key activated on this subsite"
|
7499 |
msgstr ""
|
7500 |
|
7501 |
#. Translators: License key type.
|
7502 |
+
#: languages/vue.php:2258
|
7503 |
msgid "Your license key type for this site is %s. "
|
7504 |
msgstr ""
|
7505 |
|
7506 |
+
#: languages/vue.php:2261
|
7507 |
msgid "Refresh Key"
|
7508 |
msgstr ""
|
7509 |
|
7510 |
+
#: languages/vue.php:2264
|
7511 |
msgid "Click refresh if your license has been upgraded or the type is incorrect."
|
7512 |
msgstr ""
|
7513 |
|
7514 |
+
#: languages/vue.php:2267
|
7515 |
msgid "Change Key"
|
7516 |
msgstr ""
|
7517 |
|
7518 |
+
#: languages/vue.php:2270
|
7519 |
msgid "Deactivate this license key"
|
7520 |
msgstr ""
|
7521 |
|
7522 |
+
#: languages/vue.php:2273
|
7523 |
msgid "The license key is used to enable updates for ExactMetrics Pro and addons, as well enable the ability to view reports. Deactivate your license if you want to use it on another WordPress site."
|
7524 |
msgstr ""
|
7525 |
|
7526 |
#. Translators: Make text green and add smiley face.
|
7527 |
+
#: languages/vue.php:2277
|
7528 |
msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
|
7529 |
msgstr ""
|
7530 |
|
7531 |
#. Translators: Make text green.
|
7532 |
+
#: languages/vue.php:2281
|
7533 |
msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
|
7534 |
msgstr ""
|
7535 |
|
7536 |
+
#: languages/vue.php:2284
|
7537 |
msgid "Unlock PRO Features Now"
|
7538 |
msgstr ""
|
7539 |
|
7540 |
#. Translators: Add link to retrieve license from account area.
|
7541 |
+
#: languages/vue.php:2288
|
7542 |
msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
|
7543 |
msgstr ""
|
7544 |
|
7545 |
+
#: languages/vue.php:2291
|
7546 |
msgid "Activating Pretty Links..."
|
7547 |
msgstr ""
|
7548 |
|
7549 |
+
#: languages/vue.php:2294
|
7550 |
msgid "Export PDF Report"
|
7551 |
msgstr ""
|
7552 |
|
7553 |
+
#: languages/vue.php:2297
|
7554 |
msgid "You can export PDF reports only in the PRO version."
|
7555 |
msgstr ""
|
7556 |
|
7557 |
#. Translators: Current WordPress version.
|
7558 |
+
#: languages/vue.php:2301
|
7559 |
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."
|
7560 |
msgstr ""
|
7561 |
|
7562 |
#. Translators: Current PHP version and recommended PHP version.
|
7563 |
+
#: languages/vue.php:2305
|
7564 |
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."
|
7565 |
msgstr ""
|
7566 |
|
7567 |
#. Translators: Current WordPress version.
|
7568 |
+
#: languages/vue.php:2309
|
7569 |
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."
|
7570 |
msgstr ""
|
7571 |
|
7572 |
+
#: languages/vue.php:2315
|
7573 |
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."
|
7574 |
msgstr ""
|
7575 |
|
7576 |
+
#: languages/vue.php:2318
|
7577 |
msgid "Disable the Headline Analyzer"
|
7578 |
msgstr ""
|
7579 |
|
languages/vue.php
CHANGED
@@ -7,7 +7,6 @@ $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/SettingsInputLicense-Lite.vue:71
|
11 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:174
|
12 |
// Reference: src/modules/widget/components/WidgetReportError.vue:25
|
13 |
__( 'Error', 'google-analytics-dashboard-for-wp' ),
|
@@ -29,7 +28,7 @@ $generated_i18n_strings = array(
|
|
29 |
// Reference: src/modules/widget/components/WidgetReminder.vue:36
|
30 |
__( 'See the full analytics report!', 'google-analytics-dashboard-for-wp' ),
|
31 |
|
32 |
-
// Reference: src/modules/
|
33 |
__( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
|
34 |
|
35 |
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:27
|
@@ -66,26 +65,26 @@ $generated_i18n_strings = array(
|
|
66 |
/* Translators: Placeholder gets replaced with an arrow icon. */
|
67 |
__( 'Get Started %s', 'google-analytics-dashboard-for-wp' ),
|
68 |
|
69 |
-
// Reference: src/modules/
|
70 |
__( 'Overview', 'google-analytics-dashboard-for-wp' ),
|
71 |
|
72 |
-
// Reference: src/modules/reports/
|
73 |
__( 'Publishers', 'google-analytics-dashboard-for-wp' ),
|
74 |
|
75 |
-
// Reference: src/modules/reports/routes/exactmetrics-routes.js:38
|
76 |
// Reference: src/modules/settings/routes/site.js:46
|
77 |
__( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
|
78 |
|
79 |
-
// Reference: src/modules/
|
|
|
80 |
__( 'Search Console', 'google-analytics-dashboard-for-wp' ),
|
81 |
|
82 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:54
|
83 |
__( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
|
84 |
|
85 |
-
// Reference: src/modules/reports/
|
86 |
__( 'Forms', 'google-analytics-dashboard-for-wp' ),
|
87 |
|
88 |
-
// Reference: src/modules/reports/
|
89 |
__( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
|
90 |
|
91 |
// Reference: src/modules/reports/api/index.js:21
|
@@ -95,15 +94,13 @@ $generated_i18n_strings = array(
|
|
95 |
// Reference: src/modules/reports/api/index.js:28
|
96 |
__( 'Error loading report data', 'google-analytics-dashboard-for-wp' ),
|
97 |
|
98 |
-
// Reference: src/modules/
|
99 |
// Reference: src/modules/settings/routes/site.js:117
|
100 |
__( 'About Us', 'google-analytics-dashboard-for-wp' ),
|
101 |
|
102 |
-
// Reference: src/modules/settings/routes/network.js:43
|
103 |
// Reference: src/modules/settings/routes/site.js:125
|
104 |
__( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
|
105 |
|
106 |
-
// Reference: src/modules/settings/routes/network.js:52
|
107 |
// Reference: src/modules/settings/routes/site.js:134
|
108 |
__( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
|
109 |
|
@@ -138,6 +135,7 @@ $generated_i18n_strings = array(
|
|
138 |
__( 'Connect ExactMetrics and Setup Website Analytics', 'google-analytics-dashboard-for-wp' ),
|
139 |
|
140 |
// Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
|
|
|
141 |
__( 'Learn More', 'google-analytics-dashboard-for-wp' ),
|
142 |
|
143 |
// Reference: src/modules/reports/components/ReportReAuth.vue:19
|
@@ -146,13 +144,15 @@ $generated_i18n_strings = array(
|
|
146 |
// Reference: src/modules/reports/components/ReportReAuth.vue:20
|
147 |
__( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-dashboard-for-wp' ),
|
148 |
|
149 |
-
// Reference: src/modules/
|
150 |
__( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
151 |
|
152 |
-
// Reference: src/modules/
|
|
|
153 |
__( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
|
154 |
|
155 |
-
// Reference: src/modules/
|
|
|
156 |
__( 'Ok', 'google-analytics-dashboard-for-wp' ),
|
157 |
|
158 |
// Reference: src/modules/reports/components/ReportNoAuth.vue:25
|
@@ -161,7 +161,6 @@ $generated_i18n_strings = array(
|
|
161 |
// Reference: src/modules/reports/components/ReportNoAuth.vue:26
|
162 |
__( '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' ),
|
163 |
|
164 |
-
// Reference: src/modules/reports/components/ReportNoAuth.vue:27
|
165 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:124
|
166 |
__( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
|
167 |
|
@@ -173,9 +172,11 @@ $generated_i18n_strings = array(
|
|
173 |
__( 'Recommended Plugin: %s', 'google-analytics-dashboard-for-wp' ),
|
174 |
|
175 |
// Reference: src/modules/addons/components/AddonButton.vue:51
|
|
|
176 |
__( 'Install', 'google-analytics-dashboard-for-wp' ),
|
177 |
|
178 |
// Reference: src/modules/addons/components/AddonButton.vue:47
|
|
|
179 |
__( 'Activate', 'google-analytics-dashboard-for-wp' ),
|
180 |
|
181 |
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:39
|
@@ -213,18 +214,15 @@ $generated_i18n_strings = array(
|
|
213 |
__( 'Step %1$s of %2$s', 'google-analytics-dashboard-for-wp' ),
|
214 |
|
215 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:154
|
216 |
-
|
217 |
-
/* Translators: Makes text bold. */
|
218 |
__( '%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' ),
|
219 |
|
220 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:159
|
221 |
-
|
222 |
-
/* Translators: Makes text bold. */
|
223 |
__( '%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights.', 'google-analytics-dashboard-for-wp' ),
|
224 |
|
225 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:164
|
226 |
-
|
227 |
-
/* Translators: Makes text bold. */
|
228 |
__( '%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' ),
|
229 |
|
230 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:117
|
@@ -232,18 +230,15 @@ $generated_i18n_strings = array(
|
|
232 |
__( '%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress.', 'google-analytics-dashboard-for-wp' ),
|
233 |
|
234 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:174
|
235 |
-
|
236 |
-
/* Translators: Makes text bold. */
|
237 |
__( '%1$sPage Level Analytics%2$s - Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site.', 'google-analytics-dashboard-for-wp' ),
|
238 |
|
239 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:179
|
240 |
-
|
241 |
-
/* Translators: Makes text bold. */
|
242 |
__( '%1$sAffiliate Link & Ads Tracking%2$s - Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking.', 'google-analytics-dashboard-for-wp' ),
|
243 |
|
244 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:184
|
245 |
-
|
246 |
-
/* Translators: Makes text bold. */
|
247 |
__( '%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically.', 'google-analytics-dashboard-for-wp' ),
|
248 |
|
249 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:137
|
@@ -251,145 +246,129 @@ $generated_i18n_strings = array(
|
|
251 |
__( '%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' ),
|
252 |
|
253 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:194
|
254 |
-
|
255 |
-
/* Translators: Adds link to the features page. */
|
256 |
__( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
|
257 |
|
258 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:197
|
259 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:145
|
260 |
__( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
|
261 |
|
262 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:198
|
263 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:146
|
264 |
__( 'per year', 'google-analytics-dashboard-for-wp' ),
|
265 |
|
|
|
266 |
// Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:46
|
267 |
-
// Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:22
|
268 |
__( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
|
269 |
|
270 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:148
|
271 |
__( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
|
272 |
|
273 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:204
|
274 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:153
|
275 |
__( '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' ),
|
276 |
|
277 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:205
|
278 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:154
|
279 |
__( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
|
280 |
|
281 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:209
|
282 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:158
|
283 |
__( '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' ),
|
284 |
|
285 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:210
|
286 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:159
|
287 |
__( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
|
288 |
|
289 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:214
|
290 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:163
|
291 |
__( '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' ),
|
292 |
|
293 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:215
|
294 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:164
|
295 |
__( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
|
296 |
|
297 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:218
|
298 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:167
|
299 |
__( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
|
300 |
|
301 |
-
// Reference: src/modules/reports/components/
|
302 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
303 |
-
// Reference: src/modules/
|
304 |
-
// Reference: src/modules/settings/components/input/tab-
|
305 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:133
|
306 |
-
// Reference: src/modules/widget/components/settings/WidgetSettingsIntervalUpsell.vue:30
|
307 |
__( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
|
308 |
|
309 |
-
// Reference: src/modules/about/components/exactmetrics-
|
|
|
310 |
__( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
|
311 |
|
312 |
-
// Reference: src/modules/about/components/exactmetrics-
|
|
|
|
|
313 |
__( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
|
314 |
|
315 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:94
|
316 |
-
// Reference: src/modules/wizard-onboarding/
|
317 |
__( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
|
318 |
|
319 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:95
|
320 |
-
// Reference: src/modules/wizard-onboarding/
|
321 |
__( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
|
322 |
|
323 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:96
|
324 |
-
// Reference: src/modules/wizard-onboarding/
|
325 |
__( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
|
326 |
|
327 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:99
|
328 |
-
// Reference: src/modules/wizard-onboarding/
|
329 |
__( 'EU Compliance Addon', 'google-analytics-dashboard-for-wp' ),
|
330 |
|
331 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:100
|
332 |
-
// Reference: src/modules/wizard-onboarding/
|
333 |
__( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
|
334 |
|
335 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:101
|
336 |
-
// Reference: src/modules/
|
|
|
337 |
__( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
|
338 |
|
339 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:103
|
340 |
-
// Reference: src/modules/wizard-onboarding/
|
341 |
__( 'Custom Date Ranges', 'google-analytics-dashboard-for-wp' ),
|
342 |
|
343 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:85
|
344 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:84
|
345 |
__( 'Getting Started with ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
346 |
|
347 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:86
|
348 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:85
|
349 |
__( 'ExactMetrics is the easiest analytics solution on the market to get started with, as we walk you through exactly what you need to do, in plain english, using our 3 minute setup wizard.', 'google-analytics-dashboard-for-wp' ),
|
350 |
|
351 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:87
|
352 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:86
|
353 |
__( 'To begin with, we’ll get your site authorized with Google Analytics, so we can start tracking and generating reports for you right away.', 'google-analytics-dashboard-for-wp' ),
|
354 |
|
355 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:88
|
356 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:87
|
357 |
__( 'In no time at all, and after just a few clicks, you\'ll have setup the most powerful Google Analytics tracking available for WordPress. It\'s easy to double your traffic and sales when you know exactly how people find and use your website. Let\'s get started!.', 'google-analytics-dashboard-for-wp' ),
|
358 |
|
359 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:89
|
360 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:88
|
361 |
__( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
|
362 |
|
363 |
// Reference: src/components/ContentIntroFullWidth.vue:46
|
364 |
__( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
|
365 |
|
366 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:144
|
367 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:92
|
368 |
/* Translators: Adds a line break. */
|
369 |
__( 'Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin', 'google-analytics-dashboard-for-wp' ),
|
370 |
|
371 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:146
|
372 |
-
|
373 |
-
/* Translators: Makes text bold. */
|
374 |
__( '%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' ),
|
375 |
|
376 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:148
|
377 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:96
|
378 |
__( 'ExactMetrics Features & Addons', 'google-analytics-dashboard-for-wp' ),
|
379 |
|
380 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:149
|
381 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:97
|
382 |
__( 'Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market.', 'google-analytics-dashboard-for-wp' ),
|
383 |
|
384 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
|
385 |
__( 'Loading new report data', 'google-analytics-dashboard-for-wp' ),
|
386 |
|
387 |
-
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:55
|
388 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:157
|
|
|
389 |
__( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
|
390 |
|
391 |
-
// Reference: src/
|
392 |
-
/* Translators:
|
393 |
__( 'Continue %s', 'google-analytics-dashboard-for-wp' ),
|
394 |
|
395 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:181
|
@@ -404,7 +383,7 @@ $generated_i18n_strings = array(
|
|
404 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:186
|
405 |
__( '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' ),
|
406 |
|
407 |
-
// Reference: src/
|
408 |
__( 'Unlock the eCommerce Report and See Your Important Store Metrics', 'google-analytics-dashboard-for-wp' ),
|
409 |
|
410 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:190
|
@@ -416,19 +395,19 @@ $generated_i18n_strings = array(
|
|
416 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:194
|
417 |
__( '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' ),
|
418 |
|
419 |
-
// Reference: src/
|
420 |
__( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-dashboard-for-wp' ),
|
421 |
|
422 |
-
// Reference: src/
|
423 |
__( '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' ),
|
424 |
|
425 |
-
// Reference: src/
|
426 |
__( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-dashboard-for-wp' ),
|
427 |
|
428 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:202
|
429 |
__( 'See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more.', 'google-analytics-dashboard-for-wp' ),
|
430 |
|
431 |
-
// Reference: src/
|
432 |
__( 'Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time', 'google-analytics-dashboard-for-wp' ),
|
433 |
|
434 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:206
|
@@ -475,22 +454,22 @@ $generated_i18n_strings = array(
|
|
475 |
// Reference: src/modules/widget/store/index.js:110
|
476 |
__( 'This list shows the number of sessions it took users before they purchased a product from your website.', 'google-analytics-dashboard-for-wp' ),
|
477 |
|
478 |
-
// Reference: src/modules/
|
479 |
__( 'Top Posts/Pages', 'google-analytics-dashboard-for-wp' ),
|
480 |
|
481 |
-
// Reference: src/modules/
|
482 |
__( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-dashboard-for-wp' ),
|
483 |
|
484 |
-
// Reference: src/modules/
|
485 |
__( 'New vs. Returning Visitors', 'google-analytics-dashboard-for-wp' ),
|
486 |
|
487 |
-
// Reference: src/modules/
|
488 |
__( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-dashboard-for-wp' ),
|
489 |
|
490 |
-
// Reference: src/modules/
|
491 |
__( 'Device Breakdown', 'google-analytics-dashboard-for-wp' ),
|
492 |
|
493 |
-
// Reference: src/modules/
|
494 |
__( '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' ),
|
495 |
|
496 |
// Reference: src/modules/widget/store/index.js:41
|
@@ -554,18 +533,15 @@ $generated_i18n_strings = array(
|
|
554 |
__( 'Mobile', 'google-analytics-dashboard-for-wp' ),
|
555 |
|
556 |
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:44
|
557 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:256
|
558 |
__( 'Sessions', 'google-analytics-dashboard-for-wp' ),
|
559 |
|
560 |
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:45
|
561 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:257
|
562 |
__( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
|
563 |
|
564 |
-
// Reference: src/modules/
|
565 |
__( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
|
566 |
|
567 |
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:47
|
568 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:259
|
569 |
__( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
|
570 |
|
571 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:262
|
@@ -583,13 +559,13 @@ $generated_i18n_strings = array(
|
|
583 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:267
|
584 |
__( 'View Full Posts/Pages Report', 'google-analytics-dashboard-for-wp' ),
|
585 |
|
586 |
-
// Reference: src/modules/
|
587 |
__( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
|
588 |
|
589 |
-
// Reference: src/modules/
|
590 |
__( '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' ),
|
591 |
|
592 |
-
// Reference: src/modules/
|
593 |
__( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
|
594 |
|
595 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:272
|
@@ -776,21 +752,17 @@ $generated_i18n_strings = array(
|
|
776 |
__( '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' ),
|
777 |
|
778 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:52
|
779 |
-
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:71
|
780 |
/* Translators: Example path (/go/). */
|
781 |
__( 'Path (example: %s)', 'google-analytics-dashboard-for-wp' ),
|
782 |
|
783 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:54
|
784 |
-
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:73
|
785 |
__( 'Path has to start with a / and have no spaces', 'google-analytics-dashboard-for-wp' ),
|
786 |
|
787 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:59
|
788 |
-
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:78
|
789 |
/* Translators: Example label (aff). */
|
790 |
__( 'Label (example: %s)', 'google-analytics-dashboard-for-wp' ),
|
791 |
|
792 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:61
|
793 |
-
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:80
|
794 |
__( 'Label can\'t contain any spaces', 'google-analytics-dashboard-for-wp' ),
|
795 |
|
796 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:83
|
@@ -840,9 +812,11 @@ $generated_i18n_strings = array(
|
|
840 |
__( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
|
841 |
|
842 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:118
|
|
|
843 |
__( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
|
844 |
|
845 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:119
|
|
|
846 |
__( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
|
847 |
|
848 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:52
|
@@ -1043,7 +1017,7 @@ $generated_i18n_strings = array(
|
|
1043 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:64
|
1044 |
__( 'Pro', 'google-analytics-dashboard-for-wp' ),
|
1045 |
|
1046 |
-
// Reference: src/modules/about/components/exactmetrics-
|
1047 |
__( 'Get ExactMetrics Pro Today and Unlock all the Powerful Features', 'google-analytics-dashboard-for-wp' ),
|
1048 |
|
1049 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:66
|
@@ -1136,7 +1110,7 @@ $generated_i18n_strings = array(
|
|
1136 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
|
1137 |
__( 'Continue & Install WPForms', 'google-analytics-dashboard-for-wp' ),
|
1138 |
|
1139 |
-
// Reference: src/modules/
|
1140 |
__( 'Installing...', 'google-analytics-dashboard-for-wp' ),
|
1141 |
|
1142 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:32
|
@@ -1158,7 +1132,7 @@ $generated_i18n_strings = array(
|
|
1158 |
/* Translators: Make text bold. */
|
1159 |
__( 'Publisher %1$s(Blog)%2$s', 'google-analytics-dashboard-for-wp' ),
|
1160 |
|
1161 |
-
// Reference: src/modules/
|
1162 |
__( 'Ecommerce', 'google-analytics-dashboard-for-wp' ),
|
1163 |
|
1164 |
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:101
|
@@ -1419,32 +1393,31 @@ $generated_i18n_strings = array(
|
|
1419 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:32
|
1420 |
__( 'Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value top products, top referral sources and more.', 'google-analytics-dashboard-for-wp' ),
|
1421 |
|
1422 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
1423 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:35
|
1424 |
__( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
|
1425 |
|
1426 |
-
// Reference: src/modules/
|
1427 |
__( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-dashboard-for-wp' ),
|
1428 |
|
1429 |
-
// Reference: src/modules/
|
1430 |
__( 'See The Number of Transactions and Make Data-Driven Decisions', 'google-analytics-dashboard-for-wp' ),
|
1431 |
|
1432 |
-
// Reference: src/modules/
|
1433 |
__( 'See The Total Revenue to Track Growth', 'google-analytics-dashboard-for-wp' ),
|
1434 |
|
1435 |
-
// Reference: src/modules/
|
1436 |
__( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-dashboard-for-wp' ),
|
1437 |
|
1438 |
-
// Reference: src/modules/
|
1439 |
__( 'See Your Top Products to See Individual Performance', 'google-analytics-dashboard-for-wp' ),
|
1440 |
|
1441 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:59
|
1442 |
__( 'See Your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
|
1443 |
|
1444 |
-
// Reference: src/modules/
|
1445 |
__( 'See The Time it Takes for Customers to Purchase', 'google-analytics-dashboard-for-wp' ),
|
1446 |
|
1447 |
-
// Reference: src/modules/
|
1448 |
__( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
|
1449 |
|
1450 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:31
|
@@ -1491,12 +1464,15 @@ $generated_i18n_strings = array(
|
|
1491 |
__( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
|
1492 |
|
1493 |
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:69
|
|
|
1494 |
__( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
|
1495 |
|
1496 |
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:71
|
|
|
1497 |
__( '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' ),
|
1498 |
|
1499 |
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:72
|
|
|
1500 |
__( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
|
1501 |
|
1502 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:107
|
@@ -1625,7 +1601,8 @@ $generated_i18n_strings = array(
|
|
1625 |
/* Translators: Error status and error text. */
|
1626 |
__( 'Can\'t deauthenticate. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1627 |
|
1628 |
-
// Reference: src/modules/
|
|
|
1629 |
__( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
|
1630 |
|
1631 |
// Reference: src/modules/settings/api/index.js:50
|
@@ -1883,9 +1860,11 @@ $generated_i18n_strings = array(
|
|
1883 |
// Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:33
|
1884 |
__( 'To unlock more features consider upgrading to PRO.', 'google-analytics-dashboard-for-wp' ),
|
1885 |
|
|
|
1886 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:132
|
1887 |
__( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
|
1888 |
|
|
|
1889 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:134
|
1890 |
__( 'See all features', 'google-analytics-dashboard-for-wp' ),
|
1891 |
|
@@ -1960,11 +1939,9 @@ $generated_i18n_strings = array(
|
|
1960 |
/* Translators: Adds link to the account area to retreive license key. */
|
1961 |
__( 'Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
|
1962 |
|
1963 |
-
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:36
|
1964 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:113
|
1965 |
__( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
|
1966 |
|
1967 |
-
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:37
|
1968 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:115
|
1969 |
__( 'Verify', 'google-analytics-dashboard-for-wp' ),
|
1970 |
|
@@ -1983,7 +1960,6 @@ $generated_i18n_strings = array(
|
|
1983 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:129
|
1984 |
__( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
|
1985 |
|
1986 |
-
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:32
|
1987 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:131
|
1988 |
/* Translators: Adds link to upgrade. */
|
1989 |
__( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
|
@@ -1998,7 +1974,6 @@ $generated_i18n_strings = array(
|
|
1998 |
/* Translators: Make text bold. */
|
1999 |
__( '%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process.', 'google-analytics-dashboard-for-wp' ),
|
2000 |
|
2001 |
-
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:69
|
2002 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:172
|
2003 |
__( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
|
2004 |
|
@@ -2018,15 +1993,18 @@ $generated_i18n_strings = array(
|
|
2018 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:49
|
2019 |
__( 'Active profile', 'google-analytics-dashboard-for-wp' ),
|
2020 |
|
|
|
2021 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:50
|
2022 |
__( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-dashboard-for-wp' ),
|
2023 |
|
|
|
2024 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:51
|
2025 |
__( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-dashboard-for-wp' ),
|
2026 |
|
2027 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:52
|
2028 |
__( 'Skip and Keep Connection', 'google-analytics-dashboard-for-wp' ),
|
2029 |
|
|
|
2030 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:79
|
2031 |
__( 'Authenticating', 'google-analytics-dashboard-for-wp' ),
|
2032 |
|
@@ -2140,7 +2118,7 @@ $generated_i18n_strings = array(
|
|
2140 |
// Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:32
|
2141 |
__( 'Unlock All Features and Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
|
2142 |
|
2143 |
-
// Reference: src/modules/settings/components/
|
2144 |
__( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
|
2145 |
|
2146 |
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:65
|
@@ -2208,7 +2186,7 @@ $generated_i18n_strings = array(
|
|
2208 |
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:88
|
2209 |
__( 'Pretty Links Installed & Activated', 'google-analytics-dashboard-for-wp' ),
|
2210 |
|
2211 |
-
// Reference: src/modules/tools/components/exactmetrics-
|
2212 |
__( 'Download Pretty Links', 'google-analytics-dashboard-for-wp' ),
|
2213 |
|
2214 |
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:90
|
7 |
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:97
|
8 |
__( '2', 'google-analytics-dashboard-for-wp' ),
|
9 |
|
|
|
10 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:174
|
11 |
// Reference: src/modules/widget/components/WidgetReportError.vue:25
|
12 |
__( 'Error', 'google-analytics-dashboard-for-wp' ),
|
28 |
// Reference: src/modules/widget/components/WidgetReminder.vue:36
|
29 |
__( 'See the full analytics report!', 'google-analytics-dashboard-for-wp' ),
|
30 |
|
31 |
+
// Reference: src/modules/widget/store/index.js:14
|
32 |
__( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
|
33 |
|
34 |
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:27
|
65 |
/* Translators: Placeholder gets replaced with an arrow icon. */
|
66 |
__( 'Get Started %s', 'google-analytics-dashboard-for-wp' ),
|
67 |
|
68 |
+
// Reference: src/modules/widget/store/index.js:76
|
69 |
__( 'Overview', 'google-analytics-dashboard-for-wp' ),
|
70 |
|
71 |
+
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:36
|
72 |
__( 'Publishers', 'google-analytics-dashboard-for-wp' ),
|
73 |
|
|
|
74 |
// Reference: src/modules/settings/routes/site.js:46
|
75 |
__( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
|
76 |
|
77 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:102
|
78 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:49
|
79 |
__( 'Search Console', 'google-analytics-dashboard-for-wp' ),
|
80 |
|
81 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:54
|
82 |
__( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
|
83 |
|
84 |
+
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:40
|
85 |
__( 'Forms', 'google-analytics-dashboard-for-wp' ),
|
86 |
|
87 |
+
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:41
|
88 |
__( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
|
89 |
|
90 |
// Reference: src/modules/reports/api/index.js:21
|
94 |
// Reference: src/modules/reports/api/index.js:28
|
95 |
__( 'Error loading report data', 'google-analytics-dashboard-for-wp' ),
|
96 |
|
97 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:36
|
98 |
// Reference: src/modules/settings/routes/site.js:117
|
99 |
__( 'About Us', 'google-analytics-dashboard-for-wp' ),
|
100 |
|
|
|
101 |
// Reference: src/modules/settings/routes/site.js:125
|
102 |
__( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
|
103 |
|
|
|
104 |
// Reference: src/modules/settings/routes/site.js:134
|
105 |
__( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
|
106 |
|
135 |
__( 'Connect ExactMetrics and Setup Website Analytics', 'google-analytics-dashboard-for-wp' ),
|
136 |
|
137 |
// Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
|
138 |
+
// Reference: src/modules/widget/components/WidgetFooter.vue:22
|
139 |
__( 'Learn More', 'google-analytics-dashboard-for-wp' ),
|
140 |
|
141 |
// Reference: src/modules/reports/components/ReportReAuth.vue:19
|
144 |
// Reference: src/modules/reports/components/ReportReAuth.vue:20
|
145 |
__( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-dashboard-for-wp' ),
|
146 |
|
147 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:47
|
148 |
__( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
149 |
|
150 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:127
|
151 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:108
|
152 |
__( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
|
153 |
|
154 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:110
|
155 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:126
|
156 |
__( 'Ok', 'google-analytics-dashboard-for-wp' ),
|
157 |
|
158 |
// Reference: src/modules/reports/components/ReportNoAuth.vue:25
|
161 |
// Reference: src/modules/reports/components/ReportNoAuth.vue:26
|
162 |
__( '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' ),
|
163 |
|
|
|
164 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:124
|
165 |
__( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
|
166 |
|
172 |
__( 'Recommended Plugin: %s', 'google-analytics-dashboard-for-wp' ),
|
173 |
|
174 |
// Reference: src/modules/addons/components/AddonButton.vue:51
|
175 |
+
// Reference: src/modules/addons/store/actions.js:49
|
176 |
__( 'Install', 'google-analytics-dashboard-for-wp' ),
|
177 |
|
178 |
// Reference: src/modules/addons/components/AddonButton.vue:47
|
179 |
+
// Reference: src/modules/addons/store/actions.js:49
|
180 |
__( 'Activate', 'google-analytics-dashboard-for-wp' ),
|
181 |
|
182 |
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:39
|
214 |
__( 'Step %1$s of %2$s', 'google-analytics-dashboard-for-wp' ),
|
215 |
|
216 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:154
|
217 |
+
/* Translators: Makes the text bold. */
|
|
|
218 |
__( '%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' ),
|
219 |
|
220 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:159
|
221 |
+
/* Translators: Makes the text bold. */
|
|
|
222 |
__( '%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights.', 'google-analytics-dashboard-for-wp' ),
|
223 |
|
224 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:164
|
225 |
+
/* Translators: Makes the text bold. */
|
|
|
226 |
__( '%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' ),
|
227 |
|
228 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:117
|
230 |
__( '%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress.', 'google-analytics-dashboard-for-wp' ),
|
231 |
|
232 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:174
|
233 |
+
/* Translators: Makes the text bold. */
|
|
|
234 |
__( '%1$sPage Level Analytics%2$s - Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site.', 'google-analytics-dashboard-for-wp' ),
|
235 |
|
236 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:179
|
237 |
+
/* Translators: Makes the text bold. */
|
|
|
238 |
__( '%1$sAffiliate Link & Ads Tracking%2$s - Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking.', 'google-analytics-dashboard-for-wp' ),
|
239 |
|
240 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:184
|
241 |
+
/* Translators: Makes the text bold. */
|
|
|
242 |
__( '%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically.', 'google-analytics-dashboard-for-wp' ),
|
243 |
|
244 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:137
|
246 |
__( '%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' ),
|
247 |
|
248 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:194
|
249 |
+
/* Translators: Adds a link and an arrow icon. */
|
|
|
250 |
__( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
|
251 |
|
252 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:197
|
|
|
253 |
__( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
|
254 |
|
255 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:198
|
|
|
256 |
__( 'per year', 'google-analytics-dashboard-for-wp' ),
|
257 |
|
258 |
+
// Reference: src/modules/addons/components/AddonButton.vue:27
|
259 |
// Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:46
|
|
|
260 |
__( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
|
261 |
|
262 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:148
|
263 |
__( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
|
264 |
|
265 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:204
|
|
|
266 |
__( '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' ),
|
267 |
|
268 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:205
|
|
|
269 |
__( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
|
270 |
|
271 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:209
|
|
|
272 |
__( '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' ),
|
273 |
|
274 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:210
|
|
|
275 |
__( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
|
276 |
|
277 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:214
|
|
|
278 |
__( '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' ),
|
279 |
|
280 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:215
|
|
|
281 |
__( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
|
282 |
|
283 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:218
|
|
|
284 |
__( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
|
285 |
|
286 |
+
// Reference: src/modules/reports/components/exactmetrics-ReportsPdfExport-Lite.vue:48
|
287 |
+
// Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:35
|
288 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:36
|
289 |
+
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputFbia-Lite.vue:24
|
290 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:133
|
|
|
291 |
__( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
|
292 |
|
293 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:92
|
294 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:42
|
295 |
__( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
|
296 |
|
297 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:93
|
298 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:49
|
299 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:44
|
300 |
__( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
|
301 |
|
302 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:94
|
303 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:46
|
304 |
__( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
|
305 |
|
306 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:95
|
307 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:48
|
308 |
__( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
|
309 |
|
310 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:96
|
311 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:50
|
312 |
__( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
|
313 |
|
314 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:99
|
315 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:43
|
316 |
__( 'EU Compliance Addon', 'google-analytics-dashboard-for-wp' ),
|
317 |
|
318 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:100
|
319 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:45
|
320 |
__( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
|
321 |
|
322 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:101
|
323 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:47
|
324 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:47
|
325 |
__( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
|
326 |
|
327 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:103
|
328 |
+
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:51
|
329 |
__( 'Custom Date Ranges', 'google-analytics-dashboard-for-wp' ),
|
330 |
|
331 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:85
|
|
|
332 |
__( 'Getting Started with ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
333 |
|
334 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:86
|
|
|
335 |
__( 'ExactMetrics is the easiest analytics solution on the market to get started with, as we walk you through exactly what you need to do, in plain english, using our 3 minute setup wizard.', 'google-analytics-dashboard-for-wp' ),
|
336 |
|
337 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:87
|
|
|
338 |
__( 'To begin with, we’ll get your site authorized with Google Analytics, so we can start tracking and generating reports for you right away.', 'google-analytics-dashboard-for-wp' ),
|
339 |
|
340 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:88
|
|
|
341 |
__( 'In no time at all, and after just a few clicks, you\'ll have setup the most powerful Google Analytics tracking available for WordPress. It\'s easy to double your traffic and sales when you know exactly how people find and use your website. Let\'s get started!.', 'google-analytics-dashboard-for-wp' ),
|
342 |
|
343 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:89
|
|
|
344 |
__( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
|
345 |
|
346 |
// Reference: src/components/ContentIntroFullWidth.vue:46
|
347 |
__( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
|
348 |
|
349 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:144
|
|
|
350 |
/* Translators: Adds a line break. */
|
351 |
__( 'Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin', 'google-analytics-dashboard-for-wp' ),
|
352 |
|
353 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:146
|
354 |
+
/* Translators: Makes the product name bold. */
|
|
|
355 |
__( '%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' ),
|
356 |
|
357 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:148
|
|
|
358 |
__( 'ExactMetrics Features & Addons', 'google-analytics-dashboard-for-wp' ),
|
359 |
|
360 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:149
|
|
|
361 |
__( 'Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market.', 'google-analytics-dashboard-for-wp' ),
|
362 |
|
363 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
|
364 |
__( 'Loading new report data', 'google-analytics-dashboard-for-wp' ),
|
365 |
|
|
|
366 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:157
|
367 |
+
// Reference: src/plugins/exactmetrics-settings-helper-plugin.js:113
|
368 |
__( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
|
369 |
|
370 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:228
|
371 |
+
/* Translators: Placeholder gets replaced with an arrow icon. */
|
372 |
__( 'Continue %s', 'google-analytics-dashboard-for-wp' ),
|
373 |
|
374 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:181
|
383 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:186
|
384 |
__( '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' ),
|
385 |
|
386 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:31
|
387 |
__( 'Unlock the eCommerce Report and See Your Important Store Metrics', 'google-analytics-dashboard-for-wp' ),
|
388 |
|
389 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:190
|
395 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:194
|
396 |
__( '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' ),
|
397 |
|
398 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:197
|
399 |
__( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-dashboard-for-wp' ),
|
400 |
|
401 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:198
|
402 |
__( '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' ),
|
403 |
|
404 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:201
|
405 |
__( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-dashboard-for-wp' ),
|
406 |
|
407 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:202
|
408 |
__( 'See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more.', 'google-analytics-dashboard-for-wp' ),
|
409 |
|
410 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:31
|
411 |
__( 'Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time', 'google-analytics-dashboard-for-wp' ),
|
412 |
|
413 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:206
|
454 |
// Reference: src/modules/widget/store/index.js:110
|
455 |
__( 'This list shows the number of sessions it took users before they purchased a product from your website.', 'google-analytics-dashboard-for-wp' ),
|
456 |
|
457 |
+
// Reference: src/modules/widget/store/index.js:20
|
458 |
__( 'Top Posts/Pages', 'google-analytics-dashboard-for-wp' ),
|
459 |
|
460 |
+
// Reference: src/modules/widget/store/index.js:21
|
461 |
__( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-dashboard-for-wp' ),
|
462 |
|
463 |
+
// Reference: src/modules/widget/store/index.js:27
|
464 |
__( 'New vs. Returning Visitors', 'google-analytics-dashboard-for-wp' ),
|
465 |
|
466 |
+
// Reference: src/modules/widget/store/index.js:28
|
467 |
__( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-dashboard-for-wp' ),
|
468 |
|
469 |
+
// Reference: src/modules/widget/store/index.js:34
|
470 |
__( 'Device Breakdown', 'google-analytics-dashboard-for-wp' ),
|
471 |
|
472 |
+
// Reference: src/modules/widget/store/index.js:35
|
473 |
__( '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' ),
|
474 |
|
475 |
// Reference: src/modules/widget/store/index.js:41
|
533 |
__( 'Mobile', 'google-analytics-dashboard-for-wp' ),
|
534 |
|
535 |
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:44
|
|
|
536 |
__( 'Sessions', 'google-analytics-dashboard-for-wp' ),
|
537 |
|
538 |
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:45
|
|
|
539 |
__( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
|
540 |
|
541 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:73
|
542 |
__( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
|
543 |
|
544 |
// Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:47
|
|
|
545 |
__( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
|
546 |
|
547 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:262
|
559 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:267
|
560 |
__( 'View Full Posts/Pages Report', 'google-analytics-dashboard-for-wp' ),
|
561 |
|
562 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:69
|
563 |
__( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
|
564 |
|
565 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:70
|
566 |
__( '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' ),
|
567 |
|
568 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:71
|
569 |
__( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
|
570 |
|
571 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:272
|
752 |
__( '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' ),
|
753 |
|
754 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:52
|
|
|
755 |
/* Translators: Example path (/go/). */
|
756 |
__( 'Path (example: %s)', 'google-analytics-dashboard-for-wp' ),
|
757 |
|
758 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:54
|
|
|
759 |
__( 'Path has to start with a / and have no spaces', 'google-analytics-dashboard-for-wp' ),
|
760 |
|
761 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:59
|
|
|
762 |
/* Translators: Example label (aff). */
|
763 |
__( 'Label (example: %s)', 'google-analytics-dashboard-for-wp' ),
|
764 |
|
765 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:61
|
|
|
766 |
__( 'Label can\'t contain any spaces', 'google-analytics-dashboard-for-wp' ),
|
767 |
|
768 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:83
|
812 |
__( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
|
813 |
|
814 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:118
|
815 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:50
|
816 |
__( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
|
817 |
|
818 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:119
|
819 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:51
|
820 |
__( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
|
821 |
|
822 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:52
|
1017 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:64
|
1018 |
__( 'Pro', 'google-analytics-dashboard-for-wp' ),
|
1019 |
|
1020 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:105
|
1021 |
__( 'Get ExactMetrics Pro Today and Unlock all the Powerful Features', 'google-analytics-dashboard-for-wp' ),
|
1022 |
|
1023 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:66
|
1110 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
|
1111 |
__( 'Continue & Install WPForms', 'google-analytics-dashboard-for-wp' ),
|
1112 |
|
1113 |
+
// Reference: src/modules/addons/components/AddonButton.vue:39
|
1114 |
__( 'Installing...', 'google-analytics-dashboard-for-wp' ),
|
1115 |
|
1116 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:32
|
1132 |
/* Translators: Make text bold. */
|
1133 |
__( 'Publisher %1$s(Blog)%2$s', 'google-analytics-dashboard-for-wp' ),
|
1134 |
|
1135 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:49
|
1136 |
__( 'Ecommerce', 'google-analytics-dashboard-for-wp' ),
|
1137 |
|
1138 |
// Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:101
|
1393 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:32
|
1394 |
__( 'Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value top products, top referral sources and more.', 'google-analytics-dashboard-for-wp' ),
|
1395 |
|
1396 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:37
|
|
|
1397 |
__( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
|
1398 |
|
1399 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:39
|
1400 |
__( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-dashboard-for-wp' ),
|
1401 |
|
1402 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:43
|
1403 |
__( 'See The Number of Transactions and Make Data-Driven Decisions', 'google-analytics-dashboard-for-wp' ),
|
1404 |
|
1405 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:47
|
1406 |
__( 'See The Total Revenue to Track Growth', 'google-analytics-dashboard-for-wp' ),
|
1407 |
|
1408 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:51
|
1409 |
__( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-dashboard-for-wp' ),
|
1410 |
|
1411 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:55
|
1412 |
__( 'See Your Top Products to See Individual Performance', 'google-analytics-dashboard-for-wp' ),
|
1413 |
|
1414 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:59
|
1415 |
__( 'See Your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
|
1416 |
|
1417 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:63
|
1418 |
__( 'See The Time it Takes for Customers to Purchase', 'google-analytics-dashboard-for-wp' ),
|
1419 |
|
1420 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:67
|
1421 |
__( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
|
1422 |
|
1423 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:31
|
1464 |
__( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
|
1465 |
|
1466 |
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:69
|
1467 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:32
|
1468 |
__( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
|
1469 |
|
1470 |
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:71
|
1471 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:34
|
1472 |
__( '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' ),
|
1473 |
|
1474 |
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:72
|
1475 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:35
|
1476 |
__( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
|
1477 |
|
1478 |
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:107
|
1601 |
/* Translators: Error status and error text. */
|
1602 |
__( 'Can\'t deauthenticate. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1603 |
|
1604 |
+
// Reference: src/modules/license/api/index.js:149
|
1605 |
+
// Reference: src/modules/wizard-onboarding/api/index.js:22
|
1606 |
__( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
|
1607 |
|
1608 |
// Reference: src/modules/settings/api/index.js:50
|
1860 |
// Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:33
|
1861 |
__( 'To unlock more features consider upgrading to PRO.', 'google-analytics-dashboard-for-wp' ),
|
1862 |
|
1863 |
+
// Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:34
|
1864 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:132
|
1865 |
__( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
|
1866 |
|
1867 |
+
// Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:37
|
1868 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:134
|
1869 |
__( 'See all features', 'google-analytics-dashboard-for-wp' ),
|
1870 |
|
1939 |
/* Translators: Adds link to the account area to retreive license key. */
|
1940 |
__( 'Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
|
1941 |
|
|
|
1942 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:113
|
1943 |
__( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
|
1944 |
|
|
|
1945 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:115
|
1946 |
__( 'Verify', 'google-analytics-dashboard-for-wp' ),
|
1947 |
|
1960 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:129
|
1961 |
__( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
|
1962 |
|
|
|
1963 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:131
|
1964 |
/* Translators: Adds link to upgrade. */
|
1965 |
__( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
|
1974 |
/* Translators: Make text bold. */
|
1975 |
__( '%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process.', 'google-analytics-dashboard-for-wp' ),
|
1976 |
|
|
|
1977 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:172
|
1978 |
__( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
|
1979 |
|
1993 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:49
|
1994 |
__( 'Active profile', 'google-analytics-dashboard-for-wp' ),
|
1995 |
|
1996 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:60
|
1997 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:50
|
1998 |
__( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-dashboard-for-wp' ),
|
1999 |
|
2000 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:61
|
2001 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:51
|
2002 |
__( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-dashboard-for-wp' ),
|
2003 |
|
2004 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:52
|
2005 |
__( 'Skip and Keep Connection', 'google-analytics-dashboard-for-wp' ),
|
2006 |
|
2007 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:96
|
2008 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:79
|
2009 |
__( 'Authenticating', 'google-analytics-dashboard-for-wp' ),
|
2010 |
|
2118 |
// Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:32
|
2119 |
__( 'Unlock All Features and Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
|
2120 |
|
2121 |
+
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputEmailSummaries-Lite.vue:16
|
2122 |
__( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
|
2123 |
|
2124 |
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:65
|
2186 |
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:88
|
2187 |
__( 'Pretty Links Installed & Activated', 'google-analytics-dashboard-for-wp' ),
|
2188 |
|
2189 |
+
// Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:191
|
2190 |
__( 'Download Pretty Links', 'google-analytics-dashboard-for-wp' ),
|
2191 |
|
2192 |
// Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:90
|
lite/includes/admin/connect.php
CHANGED
@@ -155,8 +155,7 @@ class ExactMetrics_Connect {
|
|
155 |
wp_send_json_error( $error );
|
156 |
}
|
157 |
// We do not need any extra credentials if we have gotten this far, so let's install the plugin.
|
158 |
-
|
159 |
-
require_once EXACTMETRICS_PLUGIN_DIR . 'includes/admin/licensing/skin.php';
|
160 |
// Do not allow WordPress to search/download translations, as this will break JS output.
|
161 |
remove_action( 'upgrader_process_complete', array( 'Language_Pack_Upgrader', 'async_upgrade' ), 20 );
|
162 |
// Create the plugin upgrader with our custom skin.
|
155 |
wp_send_json_error( $error );
|
156 |
}
|
157 |
// We do not need any extra credentials if we have gotten this far, so let's install the plugin.
|
158 |
+
exactmetrics_require_upgrader();
|
|
|
159 |
// Do not allow WordPress to search/download translations, as this will break JS output.
|
160 |
remove_action( 'upgrader_process_complete', array( 'Language_Pack_Upgrader', 'async_upgrade' ), 20 );
|
161 |
// Create the plugin upgrader with our custom skin.
|
lite/includes/admin/onboarding-wizard.php
CHANGED
@@ -293,9 +293,7 @@ class ExactMetrics_Onboarding_Wizard {
|
|
293 |
}
|
294 |
|
295 |
// We do not need any extra credentials if we have gotten this far, so let's install the plugin.
|
296 |
-
|
297 |
-
$base = ExactMetrics();
|
298 |
-
require_once plugin_dir_path( $base->file ) . '/includes/admin/licensing/skin.php';
|
299 |
|
300 |
// Create the plugin upgrader with our custom skin.
|
301 |
$installer = new Plugin_Upgrader( new ExactMetrics_Skin() );
|
293 |
}
|
294 |
|
295 |
// We do not need any extra credentials if we have gotten this far, so let's install the plugin.
|
296 |
+
exactmetrics_require_upgrader( false );
|
|
|
|
|
297 |
|
298 |
// Create the plugin upgrader with our custom skin.
|
299 |
$installer = new Plugin_Upgrader( new ExactMetrics_Skin() );
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: chriscct7, smub
|
|
3 |
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.
|
7 |
-
Stable tag: 6.2.
|
8 |
Requires PHP: 5.2
|
9 |
License: GPL v3
|
10 |
|
@@ -156,6 +156,9 @@ 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.2.0: August 5, 2020 =
|
160 |
- New: Our plugin now includes a Headline Analyzer tool to help you write more SEO-friendly headlines that drive traffic and social-media shares directly in the Gutenberg editor.
|
161 |
- Tweak: Large numbers are now better formatted across all reports so they are easier to read.
|
3 |
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.2.1
|
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.2.1: August 6, 2020 =
|
160 |
+
- Tweak: WordPress Core decided to merge some additional work into 5.5 later than usual into the release process. This update adds additional work to enable perfect compatibility with those changes.
|
161 |
+
|
162 |
= 6.2.0: August 5, 2020 =
|
163 |
- New: Our plugin now includes a Headline Analyzer tool to help you write more SEO-friendly headlines that drive traffic and social-media shares directly in the Gutenberg editor.
|
164 |
- Tweak: Large numbers are now better formatted across all reports so they are easier to read.
|