Version Description
Download this release
Release Info
Developer | manejaam |
Plugin | Google Analytics Dashboard for WP (GADWP) |
Version | 7.10.1 |
Comparing to | |
See all releases |
Code changes from version 7.10.0 to 7.10.1
- gadwp.php +2 -2
- includes/admin/licensing/autoupdate.php +8 -13
- languages/google-analytics-dashboard-for-wp.pot +1292 -1292
- languages/vue.php +130 -142
- readme.txt +4 -1
gadwp.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: https://exactmetrics.com
|
5 |
* Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
|
6 |
* Author: ExactMetrics
|
7 |
-
* Version: 7.10.
|
8 |
* Requires at least: 4.8.0
|
9 |
* Requires PHP: 5.6
|
10 |
* Author URI: https://exactmetrics.com/lite/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
|
@@ -44,7 +44,7 @@ final class ExactMetrics_Lite {
|
|
44 |
* @access public
|
45 |
* @var string $version Plugin version.
|
46 |
*/
|
47 |
-
public $version = '7.10.
|
48 |
|
49 |
/**
|
50 |
* Plugin file.
|
4 |
* Plugin URI: https://exactmetrics.com
|
5 |
* Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
|
6 |
* Author: ExactMetrics
|
7 |
+
* Version: 7.10.1
|
8 |
* Requires at least: 4.8.0
|
9 |
* Requires PHP: 5.6
|
10 |
* Author URI: https://exactmetrics.com/lite/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
|
44 |
* @access public
|
45 |
* @var string $version Plugin version.
|
46 |
*/
|
47 |
+
public $version = '7.10.1';
|
48 |
|
49 |
/**
|
50 |
* Plugin file.
|
includes/admin/licensing/autoupdate.php
CHANGED
@@ -145,12 +145,13 @@ function exactmetrics_automatic_updates( $update, $item ) {
|
|
145 |
return $update;
|
146 |
}
|
147 |
|
148 |
-
$
|
149 |
-
$
|
150 |
-
$
|
|
|
151 |
|
152 |
// If the opt in update allows major updates but there is no major version update, return early.
|
153 |
-
if ( $current_major
|
154 |
if ( $automatic_updates === 'all' ) {
|
155 |
return true;
|
156 |
} else {
|
@@ -159,7 +160,7 @@ function exactmetrics_automatic_updates( $update, $item ) {
|
|
159 |
}
|
160 |
|
161 |
// If the opt in update allows minor updates but there is no minor version update, return early.
|
162 |
-
if ( $current_major == $
|
163 |
if ( $automatic_updates === 'all' || $automatic_updates === 'minor' ) {
|
164 |
return true;
|
165 |
} else {
|
@@ -168,7 +169,7 @@ function exactmetrics_automatic_updates( $update, $item ) {
|
|
168 |
}
|
169 |
|
170 |
// All our checks have passed - this plugin can be updated!
|
171 |
-
return
|
172 |
}
|
173 |
|
174 |
add_filter( 'auto_update_plugin', 'exactmetrics_automatic_updates', 10, 2 );
|
@@ -197,13 +198,7 @@ add_filter( 'auto_update_plugin', 'exactmetrics_automatic_updates', 10, 2 );
|
|
197 |
* - Because WP's updater asks the OS if the file is writable, make sure you do not have any files/folders for the plugin you are trying to autoupdate open when testing.
|
198 |
* - You may need to delete the plugin info transient to get it to hard refresh the plugin info.
|
199 |
*/
|
200 |
-
|
201 |
-
|
202 |
function exactmetrics_get_major_version( $version ) {
|
203 |
$exploded_version = explode( '.', $version );
|
204 |
-
|
205 |
-
return $exploded_version[0] . '.' . $exploded_version[1] . '.' . $exploded_version[2];
|
206 |
-
} else {
|
207 |
-
return $exploded_version[0] . '.' . $exploded_version[1] . '.0';
|
208 |
-
}
|
209 |
}
|
145 |
return $update;
|
146 |
}
|
147 |
|
148 |
+
$current_version = $is_free ? EXACTMETRICS_LITE_VERSION : $item['old_version'];
|
149 |
+
$new_version = $item['new_version'];
|
150 |
+
$current_major = exactmetrics_get_major_version( $current_version );
|
151 |
+
$new_major = exactmetrics_get_major_version( $new_version );
|
152 |
|
153 |
// If the opt in update allows major updates but there is no major version update, return early.
|
154 |
+
if ( version_compare( $current_major, $new_major, '<' ) ) {
|
155 |
if ( $automatic_updates === 'all' ) {
|
156 |
return true;
|
157 |
} else {
|
160 |
}
|
161 |
|
162 |
// If the opt in update allows minor updates but there is no minor version update, return early.
|
163 |
+
if ( version_compare( $current_major, $new_major, '==' ) && version_compare( $current_version, $new_version, '<' ) ) {
|
164 |
if ( $automatic_updates === 'all' || $automatic_updates === 'minor' ) {
|
165 |
return true;
|
166 |
} else {
|
169 |
}
|
170 |
|
171 |
// All our checks have passed - this plugin can be updated!
|
172 |
+
return $update;
|
173 |
}
|
174 |
|
175 |
add_filter( 'auto_update_plugin', 'exactmetrics_automatic_updates', 10, 2 );
|
198 |
* - Because WP's updater asks the OS if the file is writable, make sure you do not have any files/folders for the plugin you are trying to autoupdate open when testing.
|
199 |
* - You may need to delete the plugin info transient to get it to hard refresh the plugin info.
|
200 |
*/
|
|
|
|
|
201 |
function exactmetrics_get_major_version( $version ) {
|
202 |
$exploded_version = explode( '.', $version );
|
203 |
+
return $exploded_version[0] . '.' . $exploded_version[1];
|
|
|
|
|
|
|
|
|
204 |
}
|
languages/google-analytics-dashboard-for-wp.pot
CHANGED
@@ -2,20 +2,20 @@
|
|
2 |
# This file is distributed under the same license as the ExactMetrics Pro plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: ExactMetrics Pro 7.10.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2022-11-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.6.0\n"
|
15 |
"X-Domain: google-analytics-dashboard-for-wp\n"
|
16 |
|
17 |
#. Plugin Name of the plugin
|
18 |
-
#: languages/vue.php:
|
19 |
msgid "ExactMetrics Pro"
|
20 |
msgstr ""
|
21 |
|
@@ -113,7 +113,7 @@ msgstr ""
|
|
113 |
#: includes/admin/admin.php:34
|
114 |
#: includes/admin/admin.php:42
|
115 |
#: includes/admin/admin.php:230
|
116 |
-
#: languages/vue.php:
|
117 |
msgid "Settings"
|
118 |
msgstr ""
|
119 |
|
@@ -129,7 +129,7 @@ msgstr ""
|
|
129 |
|
130 |
#: includes/admin/admin.php:39
|
131 |
#: includes/admin/admin.php:131
|
132 |
-
#: languages/vue.php:
|
133 |
msgid "Reports"
|
134 |
msgstr ""
|
135 |
|
@@ -139,7 +139,7 @@ msgstr ""
|
|
139 |
|
140 |
#: includes/admin/admin.php:51
|
141 |
#: languages/gutenberg.php:83
|
142 |
-
#: languages/vue.php:
|
143 |
msgid "Popular Posts"
|
144 |
msgstr ""
|
145 |
|
@@ -173,7 +173,7 @@ msgstr ""
|
|
173 |
|
174 |
#: includes/admin/admin.php:71
|
175 |
#: includes/admin/admin.php:147
|
176 |
-
#: languages/vue.php:
|
177 |
msgid "About Us"
|
178 |
msgstr ""
|
179 |
|
@@ -192,7 +192,7 @@ msgstr ""
|
|
192 |
#: includes/admin/admin.php:76
|
193 |
#: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
|
194 |
#: includes/admin/notifications/notification-upgrade-to-pro.php:33
|
195 |
-
#: languages/vue.php:
|
196 |
msgid "Upgrade to Pro"
|
197 |
msgstr ""
|
198 |
|
@@ -220,7 +220,7 @@ msgstr ""
|
|
220 |
|
221 |
#: includes/admin/admin.php:220
|
222 |
#: includes/admin/admin.php:223
|
223 |
-
#: languages/vue.php:
|
224 |
msgid "Support"
|
225 |
msgstr ""
|
226 |
|
@@ -232,7 +232,7 @@ msgstr ""
|
|
232 |
#: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
|
233 |
#: includes/admin/notifications/notification-upgrade-for-post-templates.php:31
|
234 |
#: includes/admin/reports/abstract-report.php:458
|
235 |
-
#: languages/vue.php:
|
236 |
msgid "Get ExactMetrics Pro"
|
237 |
msgstr ""
|
238 |
|
@@ -242,12 +242,12 @@ msgid "Please rate %1$sExactMetrics%2$s on %3$s %4$sWordPress.org%5$s to help us
|
|
242 |
msgstr ""
|
243 |
|
244 |
#: includes/admin/admin.php:335
|
245 |
-
#: languages/vue.php:
|
246 |
msgid "Please Setup Website Analytics to See Audience Insights"
|
247 |
msgstr ""
|
248 |
|
249 |
#: includes/admin/admin.php:336
|
250 |
-
#: languages/vue.php:
|
251 |
msgid "Connect ExactMetrics and Setup Website Analytics"
|
252 |
msgstr ""
|
253 |
|
@@ -261,12 +261,12 @@ msgstr ""
|
|
261 |
#: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
|
262 |
#: includes/admin/notifications/notification-returning-visitors.php:43
|
263 |
#: includes/admin/notifications/notification-traffic-dropping.php:43
|
264 |
-
#: languages/vue.php:
|
265 |
msgid "Learn More"
|
266 |
msgstr ""
|
267 |
|
268 |
#: includes/admin/admin.php:340
|
269 |
-
#: languages/vue.php:
|
270 |
msgid "ExactMetrics, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 3 million website owners use ExactMetrics to see the stats that matter and grow their business."
|
271 |
msgstr ""
|
272 |
|
@@ -277,18 +277,18 @@ msgstr ""
|
|
277 |
|
278 |
#. Translators: Adds a link to the license renewal.
|
279 |
#: includes/admin/admin.php:363
|
280 |
-
#: languages/vue.php:
|
281 |
msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
|
282 |
msgstr ""
|
283 |
|
284 |
#: includes/admin/admin.php:365
|
285 |
-
#: languages/vue.php:
|
286 |
msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
|
287 |
msgstr ""
|
288 |
|
289 |
#: includes/admin/admin.php:367
|
290 |
#: includes/admin/api-auth.php:303
|
291 |
-
#: languages/vue.php:
|
292 |
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."
|
293 |
msgstr ""
|
294 |
|
@@ -485,7 +485,7 @@ msgid "View 2021 Year in Review report!"
|
|
485 |
msgstr ""
|
486 |
|
487 |
#: includes/admin/common.php:951
|
488 |
-
#: languages/vue.php:
|
489 |
msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
|
490 |
msgstr ""
|
491 |
|
@@ -506,7 +506,7 @@ msgstr ""
|
|
506 |
|
507 |
#: includes/admin/exclude-page-metabox.php:144
|
508 |
#: languages/gutenberg.php:354
|
509 |
-
#: languages/vue.php:
|
510 |
msgid "Upgrade"
|
511 |
msgstr ""
|
512 |
|
@@ -703,7 +703,7 @@ msgstr ""
|
|
703 |
#: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:25
|
704 |
#: includes/admin/notifications/notification-upgrade-for-events-reporting.php:25
|
705 |
#: includes/admin/notifications/notification-upgrade-for-post-templates.php:25
|
706 |
-
#: languages/vue.php:
|
707 |
#: lite/includes/admin/helpers.php:85
|
708 |
msgid "Upgrade to ExactMetrics Pro"
|
709 |
msgstr ""
|
@@ -739,7 +739,7 @@ msgstr ""
|
|
739 |
#: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
|
740 |
#: includes/admin/notifications/notification-upgrade-for-search-console.php:32
|
741 |
#: includes/admin/reports/abstract-report.php:455
|
742 |
-
#: languages/vue.php:
|
743 |
msgid "Upgrade Now"
|
744 |
msgstr ""
|
745 |
|
@@ -917,7 +917,7 @@ msgid "Please ask your webmaster to enable this addon."
|
|
917 |
msgstr ""
|
918 |
|
919 |
#: includes/admin/reports/overview.php:34
|
920 |
-
#: languages/vue.php:
|
921 |
msgid "Overview"
|
922 |
msgstr ""
|
923 |
|
@@ -1018,7 +1018,7 @@ msgid "ThirstyAffiliates is a revolution in affiliate link management. Collect,
|
|
1018 |
msgstr ""
|
1019 |
|
1020 |
#: includes/admin/routes.php:535
|
1021 |
-
#: languages/vue.php:
|
1022 |
msgid "Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required."
|
1023 |
msgstr ""
|
1024 |
|
@@ -1474,7 +1474,7 @@ msgid "Question"
|
|
1474 |
msgstr ""
|
1475 |
|
1476 |
#: includes/gutenberg/headline-tool/headline-tool.php:318
|
1477 |
-
#: languages/vue.php:
|
1478 |
msgid "General"
|
1479 |
msgstr ""
|
1480 |
|
@@ -4874,7 +4874,7 @@ msgid "Theme"
|
|
4874 |
msgstr ""
|
4875 |
|
4876 |
#: languages/gutenberg.php:77
|
4877 |
-
#: languages/vue.php:
|
4878 |
msgid "Inline Popular Posts"
|
4879 |
msgstr ""
|
4880 |
|
@@ -4911,7 +4911,7 @@ msgid "Comment Color"
|
|
4911 |
msgstr ""
|
4912 |
|
4913 |
#: languages/gutenberg.php:107
|
4914 |
-
#: languages/vue.php:
|
4915 |
msgid "Wide-Layout Options"
|
4916 |
msgstr ""
|
4917 |
|
@@ -4920,12 +4920,12 @@ msgid "Choose Layout"
|
|
4920 |
msgstr ""
|
4921 |
|
4922 |
#: languages/gutenberg.php:113
|
4923 |
-
#: languages/vue.php:
|
4924 |
msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
|
4925 |
msgstr ""
|
4926 |
|
4927 |
#: languages/gutenberg.php:116
|
4928 |
-
#: languages/vue.php:
|
4929 |
msgid "Post Count"
|
4930 |
msgstr ""
|
4931 |
|
@@ -4934,7 +4934,7 @@ msgid "Number of posts displayed."
|
|
4934 |
msgstr ""
|
4935 |
|
4936 |
#: languages/gutenberg.php:122
|
4937 |
-
#: languages/vue.php:
|
4938 |
msgid "Display Options"
|
4939 |
msgstr ""
|
4940 |
|
@@ -4947,7 +4947,7 @@ msgid "Display Widget Title"
|
|
4947 |
msgstr ""
|
4948 |
|
4949 |
#: languages/gutenberg.php:131
|
4950 |
-
#: languages/vue.php:
|
4951 |
msgid "Widget Title"
|
4952 |
msgstr ""
|
4953 |
|
@@ -4956,17 +4956,17 @@ msgid "Only Show Posts From These Categories"
|
|
4956 |
msgstr ""
|
4957 |
|
4958 |
#: languages/gutenberg.php:137
|
4959 |
-
#: languages/vue.php:
|
4960 |
msgid "Display Author"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
#: languages/gutenberg.php:140
|
4964 |
-
#: languages/vue.php:
|
4965 |
msgid "Display Date"
|
4966 |
msgstr ""
|
4967 |
|
4968 |
#: languages/gutenberg.php:143
|
4969 |
-
#: languages/vue.php:
|
4970 |
msgid "Display Comments"
|
4971 |
msgstr ""
|
4972 |
|
@@ -5187,7 +5187,7 @@ msgid "Goal: "
|
|
5187 |
msgstr ""
|
5188 |
|
5189 |
#: languages/gutenberg.php:312
|
5190 |
-
#: languages/vue.php:
|
5191 |
msgid "Headline Analyzer"
|
5192 |
msgstr ""
|
5193 |
|
@@ -5200,19 +5200,19 @@ msgid "This headline analyzer is part of ExactMetrics to help you increase your
|
|
5200 |
msgstr ""
|
5201 |
|
5202 |
#: languages/gutenberg.php:321
|
5203 |
-
#: languages/vue.php:
|
5204 |
#: lite/includes/admin/metaboxes.php:47
|
5205 |
msgid "Last 30 days"
|
5206 |
msgstr ""
|
5207 |
|
5208 |
#: languages/gutenberg.php:324
|
5209 |
-
#: languages/vue.php:
|
5210 |
#: lite/includes/admin/metaboxes.php:51
|
5211 |
msgid "Yesterday"
|
5212 |
msgstr ""
|
5213 |
|
5214 |
#: languages/gutenberg.php:327
|
5215 |
-
#: languages/vue.php:
|
5216 |
#: lite/includes/admin/metaboxes.php:65
|
5217 |
#: lite/includes/admin/metaboxes.php:127
|
5218 |
msgid "Bounce Rate"
|
@@ -5298,5140 +5298,5140 @@ msgstr ""
|
|
5298 |
msgid "Continue %s"
|
5299 |
msgstr ""
|
5300 |
|
5301 |
-
#: languages/vue.php:
|
5302 |
msgid "Error"
|
5303 |
msgstr ""
|
5304 |
|
5305 |
-
#: languages/vue.php:
|
5306 |
msgid "Please try again."
|
5307 |
msgstr ""
|
5308 |
|
5309 |
-
#: languages/vue.php:
|
5310 |
msgid "Unlock the Publishers Report and Focus on the Content that Matters"
|
5311 |
msgstr ""
|
5312 |
|
5313 |
-
#: languages/vue.php:
|
5314 |
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."
|
5315 |
msgstr ""
|
5316 |
|
5317 |
-
#: languages/vue.php:
|
5318 |
msgid "Unlock the Publishers Report and Focus on the Content That Matters"
|
5319 |
msgstr ""
|
5320 |
|
5321 |
-
#: languages/vue.php:
|
5322 |
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."
|
5323 |
msgstr ""
|
5324 |
|
5325 |
-
#: languages/vue.php:
|
5326 |
msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
|
5327 |
msgstr ""
|
5328 |
|
5329 |
-
#: languages/vue.php:
|
5330 |
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."
|
5331 |
msgstr ""
|
5332 |
|
5333 |
-
#: languages/vue.php:
|
5334 |
msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
|
5335 |
msgstr ""
|
5336 |
|
5337 |
-
#: languages/vue.php:
|
5338 |
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."
|
5339 |
msgstr ""
|
5340 |
|
5341 |
-
#: languages/vue.php:
|
5342 |
msgid "Unlock the Forms Report and Improve Conversions"
|
5343 |
msgstr ""
|
5344 |
|
5345 |
-
#: languages/vue.php:
|
5346 |
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."
|
5347 |
msgstr ""
|
5348 |
|
5349 |
-
#: languages/vue.php:
|
5350 |
msgid "Unlock the Search Console Report and See How People Find Your Website"
|
5351 |
msgstr ""
|
5352 |
|
5353 |
-
#: languages/vue.php:
|
5354 |
msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
|
5355 |
msgstr ""
|
5356 |
|
5357 |
-
#: languages/vue.php:
|
5358 |
msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
|
5359 |
msgstr ""
|
5360 |
|
5361 |
-
#: languages/vue.php:
|
5362 |
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."
|
5363 |
msgstr ""
|
5364 |
|
5365 |
-
#: languages/vue.php:
|
5366 |
msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
|
5367 |
msgstr ""
|
5368 |
|
5369 |
-
#: languages/vue.php:
|
5370 |
msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
|
5371 |
msgstr ""
|
5372 |
|
5373 |
-
#: languages/vue.php:
|
5374 |
msgid "Today"
|
5375 |
msgstr ""
|
5376 |
|
5377 |
-
#: languages/vue.php:
|
5378 |
msgid "Last Week"
|
5379 |
msgstr ""
|
5380 |
|
5381 |
-
#: languages/vue.php:
|
5382 |
msgid "Last Month"
|
5383 |
msgstr ""
|
5384 |
|
5385 |
-
#: languages/vue.php:
|
5386 |
msgid "Last 7 days"
|
5387 |
msgstr ""
|
5388 |
|
5389 |
-
#: languages/vue.php:
|
5390 |
msgid "Loading settings"
|
5391 |
msgstr ""
|
5392 |
|
5393 |
#. Translators: Number of visitors.
|
5394 |
-
#: languages/vue.php:
|
5395 |
msgid "See how %s visitors found your site!"
|
5396 |
msgstr ""
|
5397 |
|
5398 |
#. Translators: Number of visitors.
|
5399 |
-
#: languages/vue.php:
|
5400 |
msgid "Your website was visited by %s users in the last 30 days."
|
5401 |
msgstr ""
|
5402 |
|
5403 |
-
#: languages/vue.php:
|
5404 |
msgid "See the full analytics report!"
|
5405 |
msgstr ""
|
5406 |
|
5407 |
-
#: languages/vue.php:
|
5408 |
msgid "Overview Report"
|
5409 |
msgstr ""
|
5410 |
|
5411 |
#. Translators: Current PHP version and recommended PHP version.
|
5412 |
-
#: languages/vue.php:
|
5413 |
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."
|
5414 |
msgstr ""
|
5415 |
|
5416 |
#. Translators: Current WordPress version.
|
5417 |
-
#: languages/vue.php:
|
5418 |
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."
|
5419 |
msgstr ""
|
5420 |
|
5421 |
-
#: languages/vue.php:
|
5422 |
msgid "Yikes! PHP Update Required"
|
5423 |
msgstr ""
|
5424 |
|
5425 |
#. Translators: Current PHP version and recommended PHP version.
|
5426 |
-
#: languages/vue.php:
|
5427 |
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."
|
5428 |
msgstr ""
|
5429 |
|
5430 |
-
#: languages/vue.php:
|
5431 |
msgid "Learn more about updating PHP"
|
5432 |
msgstr ""
|
5433 |
|
5434 |
-
#: languages/vue.php:
|
5435 |
msgid "Yikes! WordPress Update Required"
|
5436 |
msgstr ""
|
5437 |
|
5438 |
#. Translators: Current WordPress version.
|
5439 |
-
#: languages/vue.php:
|
5440 |
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."
|
5441 |
msgstr ""
|
5442 |
|
5443 |
-
#: languages/vue.php:
|
5444 |
msgid "Learn more about updating WordPress"
|
5445 |
msgstr ""
|
5446 |
|
5447 |
-
#: languages/vue.php:
|
5448 |
msgid "Getting Started"
|
5449 |
msgstr ""
|
5450 |
|
5451 |
-
#: languages/vue.php:
|
5452 |
msgid "Lite vs Pro"
|
5453 |
msgstr ""
|
5454 |
|
5455 |
-
#: languages/vue.php:
|
5456 |
msgid "Success! "
|
5457 |
msgstr ""
|
5458 |
|
5459 |
-
#: languages/vue.php:
|
5460 |
msgid "You're now using ExactMetrics Pro with all the features."
|
5461 |
msgstr ""
|
5462 |
|
5463 |
#. Translators: Placeholder gets replaced with an arrow icon.
|
5464 |
-
#: languages/vue.php:
|
5465 |
msgid "Get Started %s"
|
5466 |
msgstr ""
|
5467 |
|
5468 |
#. Translators: Error status and error text.
|
5469 |
-
#: languages/vue.php:
|
5470 |
msgid "Can't load report data. Error: %1$s, %2$s"
|
5471 |
msgstr ""
|
5472 |
|
5473 |
-
#: languages/vue.php:
|
5474 |
msgid "Error loading report data"
|
5475 |
msgstr ""
|
5476 |
|
5477 |
-
#. Translators: Makes text bold.
|
5478 |
-
#: languages/vue.php:
|
5479 |
msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#. Translators: Makes text bold.
|
5483 |
-
#: languages/vue.php:
|
5484 |
msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
|
5485 |
msgstr ""
|
5486 |
|
5487 |
-
#. Translators: Makes text bold.
|
5488 |
-
#: languages/vue.php:
|
5489 |
msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
|
5490 |
msgstr ""
|
5491 |
|
5492 |
#. Translators: Makes text bold.
|
5493 |
-
#: languages/vue.php:
|
5494 |
msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
|
5495 |
msgstr ""
|
5496 |
|
5497 |
-
#. Translators: Makes text bold.
|
5498 |
-
#: languages/vue.php:
|
5499 |
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."
|
5500 |
msgstr ""
|
5501 |
|
5502 |
-
#. Translators: Makes text bold.
|
5503 |
-
#: languages/vue.php:
|
5504 |
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."
|
5505 |
msgstr ""
|
5506 |
|
5507 |
-
#. Translators: Makes text bold.
|
5508 |
-
#: languages/vue.php:
|
5509 |
msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
|
5510 |
msgstr ""
|
5511 |
|
5512 |
#. Translators: Makes text bold.
|
5513 |
-
#: languages/vue.php:
|
5514 |
msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
|
5515 |
msgstr ""
|
5516 |
|
5517 |
-
#. Translators: Adds link
|
5518 |
-
#: languages/vue.php:
|
5519 |
msgid "%1$sSee All Features%2$s"
|
5520 |
msgstr ""
|
5521 |
|
5522 |
-
#: languages/vue.php:
|
5523 |
msgid "Pro Plan"
|
5524 |
msgstr ""
|
5525 |
|
5526 |
-
#: languages/vue.php:
|
5527 |
msgid "per year"
|
5528 |
msgstr ""
|
5529 |
|
5530 |
-
#: languages/vue.php:
|
5531 |
msgid "Upgrade to ExactMetrics Pro Now"
|
5532 |
msgstr ""
|
5533 |
|
5534 |
-
#: languages/vue.php:
|
5535 |
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!"
|
5536 |
msgstr ""
|
5537 |
|
5538 |
-
#: languages/vue.php:
|
5539 |
msgid "Daniel Monaghan - Experienced"
|
5540 |
msgstr ""
|
5541 |
|
5542 |
-
#: languages/vue.php:
|
5543 |
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."
|
5544 |
msgstr ""
|
5545 |
|
5546 |
-
#: languages/vue.php:
|
5547 |
msgid "Naomi Spirit - From This Day"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
-
#: languages/vue.php:
|
5551 |
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!"
|
5552 |
msgstr ""
|
5553 |
|
5554 |
-
#: languages/vue.php:
|
5555 |
msgid "Julie Dupuis - Faraway Land Travel"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
-
#: languages/vue.php:
|
5559 |
msgid "Guides and Documentation:"
|
5560 |
msgstr ""
|
5561 |
|
5562 |
-
#: languages/vue.php:
|
5563 |
msgid "Upgrade to PRO"
|
5564 |
msgstr ""
|
5565 |
|
5566 |
-
#: languages/vue.php:
|
5567 |
msgid "eCommerce Tracking"
|
5568 |
msgstr ""
|
5569 |
|
5570 |
-
#: languages/vue.php:
|
5571 |
msgid "Custom Dimensions"
|
5572 |
msgstr ""
|
5573 |
|
5574 |
-
#: languages/vue.php:
|
5575 |
msgid "Form Tracking"
|
5576 |
msgstr ""
|
5577 |
|
5578 |
-
#: languages/vue.php:
|
5579 |
msgid "AMP Support"
|
5580 |
msgstr ""
|
5581 |
|
5582 |
-
#: languages/vue.php:
|
5583 |
msgid "Author Tracking"
|
5584 |
msgstr ""
|
5585 |
|
5586 |
-
#: languages/vue.php:
|
5587 |
msgid "EU Compliance Addon"
|
5588 |
msgstr ""
|
5589 |
|
5590 |
-
#: languages/vue.php:
|
5591 |
msgid "Real Time Report"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
-
#: languages/vue.php:
|
5595 |
msgid "Google Optimize"
|
5596 |
msgstr ""
|
5597 |
|
5598 |
-
#: languages/vue.php:
|
5599 |
#: lite/includes/admin/reports/report-queries.php:22
|
5600 |
msgid "Search Console"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
-
#: languages/vue.php:
|
5604 |
msgid "Custom Date Ranges"
|
5605 |
msgstr ""
|
5606 |
|
5607 |
-
#: languages/vue.php:
|
5608 |
-
#: languages/vue.php:
|
5609 |
msgid "Getting Started with ExactMetrics"
|
5610 |
msgstr ""
|
5611 |
|
5612 |
-
#: languages/vue.php:
|
5613 |
-
#: languages/vue.php:
|
5614 |
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."
|
5615 |
msgstr ""
|
5616 |
|
5617 |
-
#: languages/vue.php:
|
5618 |
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."
|
5619 |
msgstr ""
|
5620 |
|
5621 |
-
#: languages/vue.php:
|
5622 |
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!."
|
5623 |
msgstr ""
|
5624 |
|
5625 |
-
#: languages/vue.php:
|
5626 |
msgid "Launch the wizard!"
|
5627 |
msgstr ""
|
5628 |
|
5629 |
-
#: languages/vue.php:
|
5630 |
msgid "Welcome to"
|
5631 |
msgstr ""
|
5632 |
|
5633 |
#. Translators: Adds a line break.
|
5634 |
-
#: languages/vue.php:
|
5635 |
msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
-
#. Translators: Makes
|
5639 |
-
#: languages/vue.php:
|
5640 |
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."
|
5641 |
msgstr ""
|
5642 |
|
5643 |
-
#: languages/vue.php:
|
5644 |
msgid "ExactMetrics Features & Addons"
|
5645 |
msgstr ""
|
5646 |
|
5647 |
-
#: languages/vue.php:
|
5648 |
msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
|
5649 |
msgstr ""
|
5650 |
|
5651 |
#. Translators: Placeholder is replaced with WPForms.
|
5652 |
-
#: languages/vue.php:
|
5653 |
msgid "Recommended Plugin: %s"
|
5654 |
msgstr ""
|
5655 |
|
5656 |
-
#: languages/vue.php:
|
5657 |
msgid "Install"
|
5658 |
msgstr ""
|
5659 |
|
5660 |
-
#: languages/vue.php:
|
5661 |
msgid "Activate"
|
5662 |
msgstr ""
|
5663 |
|
5664 |
-
#: languages/vue.php:
|
5665 |
msgid "ExactMetrics encountered an error loading your report data"
|
5666 |
msgstr ""
|
5667 |
|
5668 |
-
#: languages/vue.php:
|
5669 |
msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
|
5670 |
msgstr ""
|
5671 |
|
5672 |
-
#: languages/vue.php:
|
5673 |
-
#: languages/vue.php:
|
5674 |
msgid "Reconnect ExactMetrics"
|
5675 |
msgstr ""
|
5676 |
|
5677 |
-
#: languages/vue.php:
|
5678 |
msgid "Re-Authenticating"
|
5679 |
msgstr ""
|
5680 |
|
5681 |
-
#: languages/vue.php:
|
5682 |
msgid "Ok"
|
5683 |
msgstr ""
|
5684 |
|
5685 |
-
#: languages/vue.php:
|
5686 |
-
#: languages/vue.php:
|
5687 |
msgid "ExactMetrics Addons"
|
5688 |
msgstr ""
|
5689 |
|
5690 |
-
#: languages/vue.php:
|
5691 |
msgid "Search Addons"
|
5692 |
msgstr ""
|
5693 |
|
5694 |
-
#: languages/vue.php:
|
5695 |
msgid "Save Changes"
|
5696 |
msgstr ""
|
5697 |
|
5698 |
-
#: languages/vue.php:
|
5699 |
msgid "Exit Setup"
|
5700 |
msgstr ""
|
5701 |
|
5702 |
-
#: languages/vue.php:
|
5703 |
msgid "Time to Purchase"
|
5704 |
msgstr ""
|
5705 |
|
5706 |
-
#: languages/vue.php:
|
5707 |
msgid "This list shows how many days from first visit it took users to purchase products from your site."
|
5708 |
msgstr ""
|
5709 |
|
5710 |
-
#: languages/vue.php:
|
5711 |
msgid "Sessions to Purchase"
|
5712 |
msgstr ""
|
5713 |
|
5714 |
-
#: languages/vue.php:
|
5715 |
msgid "This list shows the number of sessions it took users before they purchased a product from your website."
|
5716 |
msgstr ""
|
5717 |
|
5718 |
-
#: languages/vue.php:
|
5719 |
msgid "New Customers"
|
5720 |
msgstr ""
|
5721 |
|
5722 |
-
#: languages/vue.php:
|
5723 |
msgid "This list shows the percentage of new customers who purchased a product from your website."
|
5724 |
msgstr ""
|
5725 |
|
5726 |
-
#: languages/vue.php:
|
5727 |
msgid "Abandoned Checkouts"
|
5728 |
msgstr ""
|
5729 |
|
5730 |
-
#: languages/vue.php:
|
5731 |
msgid "This list shows the percentage of carts that never went through the checkout process."
|
5732 |
msgstr ""
|
5733 |
|
5734 |
-
#: languages/vue.php:
|
5735 |
msgid "Top Posts/Pages"
|
5736 |
msgstr ""
|
5737 |
|
5738 |
-
#: languages/vue.php:
|
5739 |
msgid "This list shows the most viewed posts and pages on your website."
|
5740 |
msgstr ""
|
5741 |
|
5742 |
-
#: languages/vue.php:
|
5743 |
msgid "New vs. Returning Visitors"
|
5744 |
msgstr ""
|
5745 |
|
5746 |
-
#: languages/vue.php:
|
5747 |
msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
|
5748 |
msgstr ""
|
5749 |
|
5750 |
-
#: languages/vue.php:
|
5751 |
msgid "Device Breakdown"
|
5752 |
msgstr ""
|
5753 |
|
5754 |
-
#: languages/vue.php:
|
5755 |
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."
|
5756 |
msgstr ""
|
5757 |
|
5758 |
-
#: languages/vue.php:
|
5759 |
msgid "Top Landing Pages"
|
5760 |
msgstr ""
|
5761 |
|
5762 |
-
#: languages/vue.php:
|
5763 |
msgid "This list shows the top pages users first land on when visiting your website."
|
5764 |
msgstr ""
|
5765 |
|
5766 |
-
#: languages/vue.php:
|
5767 |
msgid "Top Exit Pages"
|
5768 |
msgstr ""
|
5769 |
|
5770 |
-
#: languages/vue.php:
|
5771 |
msgid "This list shows the top pages users exit your website from."
|
5772 |
msgstr ""
|
5773 |
|
5774 |
-
#: languages/vue.php:
|
5775 |
msgid "Top Outbound Links"
|
5776 |
msgstr ""
|
5777 |
|
5778 |
-
#: languages/vue.php:
|
5779 |
msgid "This list shows the top links clicked on your website that go to another website."
|
5780 |
msgstr ""
|
5781 |
|
5782 |
-
#: languages/vue.php:
|
5783 |
msgid "Top Affiliate Links"
|
5784 |
msgstr ""
|
5785 |
|
5786 |
-
#: languages/vue.php:
|
5787 |
msgid "This list shows the top affiliate links your visitors clicked on."
|
5788 |
msgstr ""
|
5789 |
|
5790 |
-
#: languages/vue.php:
|
5791 |
msgid "Top Download Links"
|
5792 |
msgstr ""
|
5793 |
|
5794 |
-
#: languages/vue.php:
|
5795 |
msgid "This list shows the download links your visitors clicked the most."
|
5796 |
msgstr ""
|
5797 |
|
5798 |
-
#: languages/vue.php:
|
5799 |
msgid "Top Products"
|
5800 |
msgstr ""
|
5801 |
|
5802 |
-
#: languages/vue.php:
|
5803 |
msgid "This list shows the top selling products on your website."
|
5804 |
msgstr ""
|
5805 |
|
5806 |
-
#: languages/vue.php:
|
5807 |
msgid "Top Conversion Sources"
|
5808 |
msgstr ""
|
5809 |
|
5810 |
-
#: languages/vue.php:
|
5811 |
msgid "This list shows the top referral websites in terms of product revenue."
|
5812 |
msgstr ""
|
5813 |
|
5814 |
-
#: languages/vue.php:
|
5815 |
msgid "Total Add/Remove"
|
5816 |
msgstr ""
|
5817 |
|
5818 |
-
#: languages/vue.php:
|
5819 |
msgid "Analytics"
|
5820 |
msgstr ""
|
5821 |
|
5822 |
#. Translators: Adds an arrow icon.
|
5823 |
-
#: languages/vue.php:
|
5824 |
msgid "View All Reports %s"
|
5825 |
msgstr ""
|
5826 |
|
5827 |
-
#: languages/vue.php:
|
5828 |
msgid "You must connect with ExactMetrics before you can view reports."
|
5829 |
msgstr ""
|
5830 |
|
5831 |
-
#: languages/vue.php:
|
5832 |
msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
|
5833 |
msgstr ""
|
5834 |
|
5835 |
-
#: languages/vue.php:
|
5836 |
msgid "Launch Setup Wizard"
|
5837 |
msgstr ""
|
5838 |
|
5839 |
-
#: languages/vue.php:
|
5840 |
msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
|
5841 |
msgstr ""
|
5842 |
|
5843 |
-
#: languages/vue.php:
|
5844 |
msgid "See Quick Links"
|
5845 |
msgstr ""
|
5846 |
|
5847 |
-
#: languages/vue.php:
|
5848 |
msgid "Suggest a Feature"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
-
#: languages/vue.php:
|
5852 |
msgid "Join Our Community"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
-
#: languages/vue.php:
|
5856 |
msgid "Support & Docs"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
-
#: languages/vue.php:
|
5860 |
msgid "Upgrade to Pro »"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
-
#: languages/vue.php:
|
5864 |
#: lite/includes/admin/reports/report-publisher.php:22
|
5865 |
msgid "Publishers"
|
5866 |
msgstr ""
|
5867 |
|
5868 |
-
#: languages/vue.php:
|
5869 |
#: lite/includes/admin/reports/report-ecommerce.php:22
|
5870 |
msgid "eCommerce"
|
5871 |
msgstr ""
|
5872 |
|
5873 |
-
#: languages/vue.php:
|
5874 |
msgid "Dimensions Report"
|
5875 |
msgstr ""
|
5876 |
|
5877 |
-
#: languages/vue.php:
|
5878 |
#: lite/includes/admin/reports/report-forms.php:22
|
5879 |
msgid "Forms"
|
5880 |
msgstr ""
|
5881 |
|
5882 |
-
#: languages/vue.php:
|
5883 |
msgid "Real-Time"
|
5884 |
msgstr ""
|
5885 |
|
5886 |
-
#: languages/vue.php:
|
5887 |
msgid "Site Speed Report"
|
5888 |
msgstr ""
|
5889 |
|
5890 |
-
#: languages/vue.php:
|
5891 |
msgid "2020 Year in Review"
|
5892 |
msgstr ""
|
5893 |
|
5894 |
-
#: languages/vue.php:
|
5895 |
msgid "Import Export"
|
5896 |
msgstr ""
|
5897 |
|
5898 |
-
#: languages/vue.php:
|
5899 |
msgid "PrettyLinks Integration"
|
5900 |
msgstr ""
|
5901 |
|
5902 |
-
#: languages/vue.php:
|
5903 |
msgid "Popular Posts Widget"
|
5904 |
msgstr ""
|
5905 |
|
5906 |
-
#: languages/vue.php:
|
5907 |
msgid "Popular Products"
|
5908 |
msgstr ""
|
5909 |
|
5910 |
-
#: languages/vue.php:
|
5911 |
msgid "Sub menu item for WooCommerce Analytics"
|
5912 |
msgstr ""
|
5913 |
|
5914 |
-
#: languages/vue.php:
|
5915 |
msgid "Engagement"
|
5916 |
msgstr ""
|
5917 |
|
5918 |
-
#: languages/vue.php:
|
5919 |
msgid "Publisher"
|
5920 |
msgstr ""
|
5921 |
|
5922 |
-
#: languages/vue.php:
|
5923 |
msgid "Conversions"
|
5924 |
msgstr ""
|
5925 |
|
5926 |
-
#: languages/vue.php:
|
5927 |
msgid "Advanced"
|
5928 |
msgstr ""
|
5929 |
|
5930 |
-
#: languages/vue.php:
|
5931 |
msgid "URL Builder"
|
5932 |
msgstr ""
|
5933 |
|
5934 |
#. Translators: Adds a link to documentation.
|
5935 |
-
#: languages/vue.php:
|
5936 |
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"
|
5937 |
msgstr ""
|
5938 |
|
5939 |
#. Translators: Adds link to activate/install plugin and documentation.
|
5940 |
-
#: languages/vue.php:
|
5941 |
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"
|
5942 |
msgstr ""
|
5943 |
|
5944 |
#. Translators: Adds a link to documentation.
|
5945 |
-
#: languages/vue.php:
|
5946 |
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"
|
5947 |
msgstr ""
|
5948 |
|
5949 |
#. Translators: Adds link to activate/install plugin and documentation.
|
5950 |
-
#: languages/vue.php:
|
5951 |
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"
|
5952 |
msgstr ""
|
5953 |
|
5954 |
-
#: languages/vue.php:
|
5955 |
msgid "Installing Addon"
|
5956 |
msgstr ""
|
5957 |
|
5958 |
-
#: languages/vue.php:
|
5959 |
msgid "Activating Addon"
|
5960 |
msgstr ""
|
5961 |
|
5962 |
-
#: languages/vue.php:
|
5963 |
msgid "Addon Activated"
|
5964 |
msgstr ""
|
5965 |
|
5966 |
-
#: languages/vue.php:
|
5967 |
msgid "Loading report data"
|
5968 |
msgstr ""
|
5969 |
|
5970 |
-
#: languages/vue.php:
|
5971 |
msgid "Please activate manually"
|
5972 |
msgstr ""
|
5973 |
|
5974 |
#. Translators: Adds the error status and status text.
|
5975 |
-
#: languages/vue.php:
|
5976 |
msgid "Error: %1$s, %2$s"
|
5977 |
msgstr ""
|
5978 |
|
5979 |
-
#: languages/vue.php:
|
5980 |
msgid "Error Activating Addon"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
-
#: languages/vue.php:
|
5984 |
#: lite/includes/admin/wp-site-health.php:375
|
5985 |
#: lite/includes/admin/wp-site-health.php:401
|
5986 |
#: lite/includes/admin/wp-site-health.php:428
|
5987 |
msgid "View Addons"
|
5988 |
msgstr ""
|
5989 |
|
5990 |
-
#: languages/vue.php:
|
5991 |
msgid "Dismiss"
|
5992 |
msgstr ""
|
5993 |
|
5994 |
-
#: languages/vue.php:
|
5995 |
msgid "Redirecting"
|
5996 |
msgstr ""
|
5997 |
|
5998 |
-
#: languages/vue.php:
|
5999 |
msgid "Please wait"
|
6000 |
msgstr ""
|
6001 |
|
6002 |
-
#: languages/vue.php:
|
6003 |
msgid "activate"
|
6004 |
msgstr ""
|
6005 |
|
6006 |
-
#: languages/vue.php:
|
6007 |
msgid "install"
|
6008 |
msgstr ""
|
6009 |
|
6010 |
-
#: languages/vue.php:
|
6011 |
msgid "Visit addons page"
|
6012 |
msgstr ""
|
6013 |
|
6014 |
-
#: languages/vue.php:
|
6015 |
msgid "Report Unavailable"
|
6016 |
msgstr ""
|
6017 |
|
6018 |
#. Translators: Install/Activate the addon.
|
6019 |
-
#: languages/vue.php:
|
6020 |
msgid "%s Addon"
|
6021 |
msgstr ""
|
6022 |
|
6023 |
-
#: languages/vue.php:
|
6024 |
msgid "Go Back To Reports"
|
6025 |
msgstr ""
|
6026 |
|
6027 |
-
#: languages/vue.php:
|
6028 |
msgid "Enable Enhanced eCommerce"
|
6029 |
msgstr ""
|
6030 |
|
6031 |
#. Translators: Placeholders are replaced with the current step number out of the total number of steps.
|
6032 |
-
#: languages/vue.php:
|
6033 |
msgid "Step %1$s of %2$s"
|
6034 |
msgstr ""
|
6035 |
|
6036 |
-
#: languages/vue.php:
|
6037 |
msgid "Go back"
|
6038 |
msgstr ""
|
6039 |
|
6040 |
-
#: languages/vue.php:
|
6041 |
msgid "Welcome to ExactMetrics!"
|
6042 |
msgstr ""
|
6043 |
|
6044 |
-
#: languages/vue.php:
|
6045 |
msgid "Let's get you set up."
|
6046 |
msgstr ""
|
6047 |
|
6048 |
-
#: languages/vue.php:
|
6049 |
msgid "Save and Continue"
|
6050 |
msgstr ""
|
6051 |
|
6052 |
-
#: languages/vue.php:
|
6053 |
msgid "Which category best describes your website?"
|
6054 |
msgstr ""
|
6055 |
|
6056 |
-
#: languages/vue.php:
|
6057 |
msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
|
6058 |
msgstr ""
|
6059 |
|
6060 |
-
#: languages/vue.php:
|
6061 |
msgid "Business Website"
|
6062 |
msgstr ""
|
6063 |
|
6064 |
#. Translators: Make text bold.
|
6065 |
-
#: languages/vue.php:
|
6066 |
msgid "Publisher %1$s(Blog)%2$s"
|
6067 |
msgstr ""
|
6068 |
|
6069 |
-
#: languages/vue.php:
|
6070 |
msgid "Ecommerce"
|
6071 |
msgstr ""
|
6072 |
|
6073 |
-
#: languages/vue.php:
|
6074 |
msgid "Connect ExactMetrics to Your Website"
|
6075 |
msgstr ""
|
6076 |
|
6077 |
-
#: languages/vue.php:
|
6078 |
msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
|
6079 |
msgstr ""
|
6080 |
|
6081 |
-
#: languages/vue.php:
|
6082 |
msgid "Connect Google Analytics + WordPress"
|
6083 |
msgstr ""
|
6084 |
|
6085 |
-
#: languages/vue.php:
|
6086 |
msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
|
6087 |
msgstr ""
|
6088 |
|
6089 |
-
#: languages/vue.php:
|
6090 |
msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
|
6091 |
msgstr ""
|
6092 |
|
6093 |
-
#: languages/vue.php:
|
6094 |
msgid "Manually enter your UA code"
|
6095 |
msgstr ""
|
6096 |
|
6097 |
-
#: languages/vue.php:
|
6098 |
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."
|
6099 |
msgstr ""
|
6100 |
|
6101 |
-
#: languages/vue.php:
|
6102 |
msgid "UA code can't be empty"
|
6103 |
msgstr ""
|
6104 |
|
6105 |
-
#: languages/vue.php:
|
6106 |
msgid "Saving UA code..."
|
6107 |
msgstr ""
|
6108 |
|
6109 |
-
#: languages/vue.php:
|
6110 |
msgid "ExactMetrics Recommends WPForms"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
-
#: languages/vue.php:
|
6114 |
msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
|
6115 |
msgstr ""
|
6116 |
|
6117 |
-
#: languages/vue.php:
|
6118 |
msgid "Used on over 4,000,000 websites!"
|
6119 |
msgstr ""
|
6120 |
|
6121 |
-
#: languages/vue.php:
|
6122 |
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!"
|
6123 |
msgstr ""
|
6124 |
|
6125 |
-
#: languages/vue.php:
|
6126 |
msgid "Skip this Step"
|
6127 |
msgstr ""
|
6128 |
|
6129 |
-
#: languages/vue.php:
|
6130 |
msgid "Continue & Install WPForms"
|
6131 |
msgstr ""
|
6132 |
|
6133 |
-
#: languages/vue.php:
|
6134 |
msgid "Installing..."
|
6135 |
msgstr ""
|
6136 |
|
6137 |
-
#: languages/vue.php:
|
6138 |
msgid "Recommended Settings"
|
6139 |
msgstr ""
|
6140 |
|
6141 |
-
#: languages/vue.php:
|
6142 |
msgid "ExactMetrics recommends the following settings based on your configuration."
|
6143 |
msgstr ""
|
6144 |
|
6145 |
-
#: languages/vue.php:
|
6146 |
msgid "Events Tracking"
|
6147 |
msgstr ""
|
6148 |
|
6149 |
-
#: languages/vue.php:
|
6150 |
msgid "Must have for all click tracking on site."
|
6151 |
msgstr ""
|
6152 |
|
6153 |
-
#: languages/vue.php:
|
6154 |
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."
|
6155 |
msgstr ""
|
6156 |
|
6157 |
-
#: languages/vue.php:
|
6158 |
msgid "Enhanced Link Attribution"
|
6159 |
msgstr ""
|
6160 |
|
6161 |
-
#: languages/vue.php:
|
6162 |
msgid "Improves the accuracy of your In-Page Analytics."
|
6163 |
msgstr ""
|
6164 |
|
6165 |
-
#: languages/vue.php:
|
6166 |
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."
|
6167 |
msgstr ""
|
6168 |
|
6169 |
-
#: languages/vue.php:
|
6170 |
msgid "Install Updates Automatically"
|
6171 |
msgstr ""
|
6172 |
|
6173 |
-
#: languages/vue.php:
|
6174 |
msgid "Get the latest features, bug fixes, and security updates as they are released."
|
6175 |
msgstr ""
|
6176 |
|
6177 |
-
#: languages/vue.php:
|
6178 |
msgid "To ensure you get the latest bug fixes and security updates and avoid needing to spend time logging into your WordPress site to update ExactMetrics, we offer the ability to automatically have ExactMetrics update itself."
|
6179 |
msgstr ""
|
6180 |
|
6181 |
-
#: languages/vue.php:
|
6182 |
msgid "File Download Tracking"
|
6183 |
msgstr ""
|
6184 |
|
6185 |
-
#: languages/vue.php:
|
6186 |
msgid "Helps you see file downloads data."
|
6187 |
msgstr ""
|
6188 |
|
6189 |
-
#: languages/vue.php:
|
6190 |
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."
|
6191 |
msgstr ""
|
6192 |
|
6193 |
#. Translators: Example path (/go/).
|
6194 |
-
#: languages/vue.php:
|
6195 |
msgid "Path (example: %s)"
|
6196 |
msgstr ""
|
6197 |
|
6198 |
-
#: languages/vue.php:
|
6199 |
msgid "Path has to start with a / and have no spaces"
|
6200 |
msgstr ""
|
6201 |
|
6202 |
#. Translators: Example label (aff).
|
6203 |
-
#: languages/vue.php:
|
6204 |
msgid "Label (example: %s)"
|
6205 |
msgstr ""
|
6206 |
|
6207 |
-
#: languages/vue.php:
|
6208 |
msgid "Label can't contain any spaces"
|
6209 |
msgstr ""
|
6210 |
|
6211 |
-
#: languages/vue.php:
|
6212 |
msgid "Helps you increase affiliate revenue."
|
6213 |
msgstr ""
|
6214 |
|
6215 |
-
#: languages/vue.php:
|
6216 |
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."
|
6217 |
msgstr ""
|
6218 |
|
6219 |
-
#: languages/vue.php:
|
6220 |
msgid "Affiliate Link Tracking"
|
6221 |
msgstr ""
|
6222 |
|
6223 |
-
#: languages/vue.php:
|
6224 |
msgid "Who Can See Reports"
|
6225 |
msgstr ""
|
6226 |
|
6227 |
-
#: languages/vue.php:
|
6228 |
msgid "These user roles will be able to access ExactMetrics' reports in the WordPress admin area."
|
6229 |
msgstr ""
|
6230 |
|
6231 |
-
#: languages/vue.php:
|
6232 |
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."
|
6233 |
msgstr ""
|
6234 |
|
6235 |
-
#: languages/vue.php:
|
6236 |
msgid "Save and continue"
|
6237 |
msgstr ""
|
6238 |
|
6239 |
-
#: languages/vue.php:
|
6240 |
msgid "Events Tracking is enabled the moment you set up ExactMetrics"
|
6241 |
msgstr ""
|
6242 |
|
6243 |
-
#: languages/vue.php:
|
6244 |
msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
|
6245 |
msgstr ""
|
6246 |
|
6247 |
-
#: languages/vue.php:
|
6248 |
msgid "+ Add Role"
|
6249 |
msgstr ""
|
6250 |
|
6251 |
#. Translators: Placeholders are used for making text bold and adding a link.
|
6252 |
-
#: languages/vue.php:
|
6253 |
msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
|
6254 |
msgstr ""
|
6255 |
|
6256 |
-
#: languages/vue.php:
|
6257 |
#: lite/includes/admin/reports/report-dimensions.php:22
|
6258 |
msgid "Dimensions"
|
6259 |
msgstr ""
|
6260 |
|
6261 |
-
#: languages/vue.php:
|
6262 |
msgid "Site Speed"
|
6263 |
msgstr ""
|
6264 |
|
6265 |
-
#: languages/vue.php:
|
6266 |
msgid "License Key"
|
6267 |
msgstr ""
|
6268 |
|
6269 |
#. Translators: Add link to retrieve license key from account.
|
6270 |
-
#: languages/vue.php:
|
6271 |
msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
|
6272 |
msgstr ""
|
6273 |
|
6274 |
-
#: languages/vue.php:
|
6275 |
msgid "Google Authentication"
|
6276 |
msgstr ""
|
6277 |
|
6278 |
-
#: languages/vue.php:
|
6279 |
msgid "Miscellaneous"
|
6280 |
msgstr ""
|
6281 |
|
6282 |
-
#: languages/vue.php:
|
6283 |
msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
|
6284 |
msgstr ""
|
6285 |
|
6286 |
-
#: languages/vue.php:
|
6287 |
msgid "Hide Announcements"
|
6288 |
msgstr ""
|
6289 |
|
6290 |
-
#: languages/vue.php:
|
6291 |
msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
|
6292 |
msgstr ""
|
6293 |
|
6294 |
-
#. Translators:
|
6295 |
-
#: languages/vue.php:
|
6296 |
msgid "To unlock more features consider %1$supgrading to PRO%2$s."
|
6297 |
msgstr ""
|
6298 |
|
6299 |
-
#: languages/vue.php:
|
6300 |
msgid "Receive 50% off automatically applied at the checkout!"
|
6301 |
msgstr ""
|
6302 |
|
6303 |
-
#: languages/vue.php:
|
6304 |
msgid "See all features"
|
6305 |
msgstr ""
|
6306 |
|
6307 |
-
#: languages/vue.php:
|
6308 |
msgid "Setup Wizard"
|
6309 |
msgstr ""
|
6310 |
|
6311 |
-
#: languages/vue.php:
|
6312 |
msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
|
6313 |
msgstr ""
|
6314 |
|
6315 |
-
#: languages/vue.php:
|
6316 |
msgid "Relaunch Setup Wizard"
|
6317 |
msgstr ""
|
6318 |
|
6319 |
-
#: languages/vue.php:
|
6320 |
msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
|
6321 |
msgstr ""
|
6322 |
|
6323 |
-
#: languages/vue.php:
|
6324 |
msgid "No addons found."
|
6325 |
msgstr ""
|
6326 |
|
6327 |
-
#: languages/vue.php:
|
6328 |
msgid "Refresh Addons"
|
6329 |
msgstr ""
|
6330 |
|
6331 |
#. Translators: Adds a line break.
|
6332 |
-
#: languages/vue.php:
|
6333 |
msgid "Upgrade to Pro to unlock addons and other great features."
|
6334 |
msgstr ""
|
6335 |
|
6336 |
-
#: languages/vue.php:
|
6337 |
msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
|
6338 |
msgstr ""
|
6339 |
|
6340 |
-
#: languages/vue.php:
|
6341 |
msgid "Refreshing Addons"
|
6342 |
msgstr ""
|
6343 |
|
6344 |
-
#: languages/vue.php:
|
6345 |
msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
|
6346 |
msgstr ""
|
6347 |
|
6348 |
#. Translators: Placeholders make the text green.
|
6349 |
-
#: languages/vue.php:
|
6350 |
msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
|
6351 |
msgstr ""
|
6352 |
|
6353 |
-
#: languages/vue.php:
|
6354 |
msgid "How to Connect to Google Analytics"
|
6355 |
msgstr ""
|
6356 |
|
6357 |
-
#: languages/vue.php:
|
6358 |
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."
|
6359 |
msgstr ""
|
6360 |
|
6361 |
-
#: languages/vue.php:
|
6362 |
msgid "Guide and Checklist for Advanced Insights"
|
6363 |
msgstr ""
|
6364 |
|
6365 |
-
#: languages/vue.php:
|
6366 |
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."
|
6367 |
msgstr ""
|
6368 |
|
6369 |
-
#: languages/vue.php:
|
6370 |
msgid "GDPR Guide"
|
6371 |
msgstr ""
|
6372 |
|
6373 |
-
#: languages/vue.php:
|
6374 |
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. "
|
6375 |
msgstr ""
|
6376 |
|
6377 |
-
#: languages/vue.php:
|
6378 |
msgid "How to Install and Activate ExactMetrics Addons"
|
6379 |
msgstr ""
|
6380 |
|
6381 |
-
#: languages/vue.php:
|
6382 |
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."
|
6383 |
msgstr ""
|
6384 |
|
6385 |
-
#: languages/vue.php:
|
6386 |
msgid "Enabling eCommerce Tracking and Reports"
|
6387 |
msgstr ""
|
6388 |
|
6389 |
-
#: languages/vue.php:
|
6390 |
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."
|
6391 |
msgstr ""
|
6392 |
|
6393 |
-
#: languages/vue.php:
|
6394 |
msgid "Read Documentation"
|
6395 |
msgstr ""
|
6396 |
|
6397 |
#. Translators: Makes the text bold.
|
6398 |
-
#: languages/vue.php:
|
6399 |
msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
|
6400 |
msgstr ""
|
6401 |
|
6402 |
#. Translators: Makes the text bold.
|
6403 |
-
#: languages/vue.php:
|
6404 |
msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
|
6405 |
msgstr ""
|
6406 |
|
6407 |
-
#: languages/vue.php:
|
6408 |
msgid "One-click Complete eCommerce tracking"
|
6409 |
msgstr ""
|
6410 |
|
6411 |
-
#: languages/vue.php:
|
6412 |
msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
|
6413 |
msgstr ""
|
6414 |
|
6415 |
-
#: languages/vue.php:
|
6416 |
msgid "Forms Tracking"
|
6417 |
msgstr ""
|
6418 |
|
6419 |
-
#: languages/vue.php:
|
6420 |
msgid "One-click Form Events Tracking"
|
6421 |
msgstr ""
|
6422 |
|
6423 |
-
#: languages/vue.php:
|
6424 |
msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
|
6425 |
msgstr ""
|
6426 |
|
6427 |
-
#: languages/vue.php:
|
6428 |
msgid "WordPress Admin Area Reports"
|
6429 |
msgstr ""
|
6430 |
|
6431 |
-
#: languages/vue.php:
|
6432 |
msgid "Standard Reports"
|
6433 |
msgstr ""
|
6434 |
|
6435 |
-
#: languages/vue.php:
|
6436 |
msgid "Overview Reports for the last 30 days."
|
6437 |
msgstr ""
|
6438 |
|
6439 |
-
#: languages/vue.php:
|
6440 |
msgid "Advanced Reports"
|
6441 |
msgstr ""
|
6442 |
|
6443 |
-
#: languages/vue.php:
|
6444 |
msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
|
6445 |
msgstr ""
|
6446 |
|
6447 |
-
#: languages/vue.php:
|
6448 |
msgid "Dashboard Widget"
|
6449 |
msgstr ""
|
6450 |
|
6451 |
-
#: languages/vue.php:
|
6452 |
msgid "Basic Widget"
|
6453 |
msgstr ""
|
6454 |
|
6455 |
-
#: languages/vue.php:
|
6456 |
msgid "Overview Report Synopsis"
|
6457 |
msgstr ""
|
6458 |
|
6459 |
-
#: languages/vue.php:
|
6460 |
msgid "Advanced Dashboard Widget"
|
6461 |
msgstr ""
|
6462 |
|
6463 |
-
#: languages/vue.php:
|
6464 |
msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
|
6465 |
msgstr ""
|
6466 |
|
6467 |
-
#: languages/vue.php:
|
6468 |
msgid "Publisher Reports"
|
6469 |
msgstr ""
|
6470 |
|
6471 |
-
#: languages/vue.php:
|
6472 |
msgid "Advanced Publisher Reports & Tracking"
|
6473 |
msgstr ""
|
6474 |
|
6475 |
-
#: languages/vue.php:
|
6476 |
msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
|
6477 |
msgstr ""
|
6478 |
|
6479 |
-
#: languages/vue.php:
|
6480 |
msgid "Email Summaries"
|
6481 |
msgstr ""
|
6482 |
|
6483 |
-
#: languages/vue.php:
|
6484 |
msgid "Included"
|
6485 |
msgstr ""
|
6486 |
|
6487 |
-
#: languages/vue.php:
|
6488 |
msgid "Get weekly traffic reports directly in your inbox."
|
6489 |
msgstr ""
|
6490 |
|
6491 |
-
#: languages/vue.php:
|
6492 |
msgid "Basic Options"
|
6493 |
msgstr ""
|
6494 |
|
6495 |
-
#: languages/vue.php:
|
6496 |
msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
|
6497 |
msgstr ""
|
6498 |
|
6499 |
-
#: languages/vue.php:
|
6500 |
msgid "Dynamic Popular Posts & Popular Products"
|
6501 |
msgstr ""
|
6502 |
|
6503 |
-
#: languages/vue.php:
|
6504 |
msgid "Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks."
|
6505 |
msgstr ""
|
6506 |
|
6507 |
-
#: languages/vue.php:
|
6508 |
msgid "Not Available"
|
6509 |
msgstr ""
|
6510 |
|
6511 |
-
#: languages/vue.php:
|
6512 |
msgid "Complete Custom Dimensions Tracking"
|
6513 |
msgstr ""
|
6514 |
|
6515 |
-
#: languages/vue.php:
|
6516 |
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"
|
6517 |
msgstr ""
|
6518 |
|
6519 |
-
#: languages/vue.php:
|
6520 |
msgid "Limited Support"
|
6521 |
msgstr ""
|
6522 |
|
6523 |
-
#: languages/vue.php:
|
6524 |
msgid "Priority Support"
|
6525 |
msgstr ""
|
6526 |
|
6527 |
-
#: languages/vue.php:
|
6528 |
msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
|
6529 |
msgstr ""
|
6530 |
|
6531 |
-
#: languages/vue.php:
|
6532 |
msgid "Feature"
|
6533 |
msgstr ""
|
6534 |
|
6535 |
-
#: languages/vue.php:
|
6536 |
msgid "Lite"
|
6537 |
msgstr ""
|
6538 |
|
6539 |
-
#: languages/vue.php:
|
6540 |
msgid "Pro"
|
6541 |
msgstr ""
|
6542 |
|
6543 |
-
#: languages/vue.php:
|
6544 |
msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
|
6545 |
msgstr ""
|
6546 |
|
6547 |
-
#: languages/vue.php:
|
6548 |
msgid "Universal Tracking"
|
6549 |
msgstr ""
|
6550 |
|
6551 |
-
#: languages/vue.php:
|
6552 |
msgid "Custom Google Analytics Link Tracking"
|
6553 |
msgstr ""
|
6554 |
|
6555 |
-
#: languages/vue.php:
|
6556 |
msgid "Standard Tracking"
|
6557 |
msgstr ""
|
6558 |
|
6559 |
-
#: languages/vue.php:
|
6560 |
msgid "Advanced Tracking"
|
6561 |
msgstr ""
|
6562 |
|
6563 |
-
#: languages/vue.php:
|
6564 |
msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
|
6565 |
msgstr ""
|
6566 |
|
6567 |
-
#: languages/vue.php:
|
6568 |
msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
|
6569 |
msgstr ""
|
6570 |
|
6571 |
-
#: languages/vue.php:
|
6572 |
msgid "No-Code-Needed Tracking Features"
|
6573 |
msgstr ""
|
6574 |
|
6575 |
-
#: languages/vue.php:
|
6576 |
msgid "Basic Tracking Options"
|
6577 |
msgstr ""
|
6578 |
|
6579 |
-
#: languages/vue.php:
|
6580 |
msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
|
6581 |
msgstr ""
|
6582 |
|
6583 |
-
#: languages/vue.php:
|
6584 |
msgid "Advanced Tracking Options"
|
6585 |
msgstr ""
|
6586 |
|
6587 |
-
#: languages/vue.php:
|
6588 |
msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
|
6589 |
msgstr ""
|
6590 |
|
6591 |
-
#: languages/vue.php:
|
6592 |
msgid "Inbox"
|
6593 |
msgstr ""
|
6594 |
|
6595 |
-
#: languages/vue.php:
|
6596 |
msgid "Back to Inbox"
|
6597 |
msgstr ""
|
6598 |
|
6599 |
-
#: languages/vue.php:
|
6600 |
msgid "View Dismissed"
|
6601 |
msgstr ""
|
6602 |
|
6603 |
-
#: languages/vue.php:
|
6604 |
msgid "Notifications"
|
6605 |
msgstr ""
|
6606 |
|
6607 |
-
#: languages/vue.php:
|
6608 |
msgid "Dismiss All"
|
6609 |
msgstr ""
|
6610 |
|
6611 |
-
#: languages/vue.php:
|
6612 |
msgid "Dismissed"
|
6613 |
msgstr ""
|
6614 |
|
6615 |
-
#: languages/vue.php:
|
6616 |
msgid "No Notifications"
|
6617 |
msgstr ""
|
6618 |
|
6619 |
#. Translators: Error status and error text.
|
6620 |
-
#: languages/vue.php:
|
6621 |
msgid "Can't load settings. Error: %1$s, %2$s"
|
6622 |
msgstr ""
|
6623 |
|
6624 |
-
#: languages/vue.php:
|
6625 |
msgid "You appear to be offline."
|
6626 |
msgstr ""
|
6627 |
|
6628 |
#. Translators: Error status and error text.
|
6629 |
-
#: languages/vue.php:
|
6630 |
msgid "Can't save settings. Error: %1$s, %2$s"
|
6631 |
msgstr ""
|
6632 |
|
6633 |
-
#: languages/vue.php:
|
6634 |
msgid "Network error encountered. Settings not saved."
|
6635 |
msgstr ""
|
6636 |
|
6637 |
-
#: languages/vue.php:
|
6638 |
msgid "Show in widget mode"
|
6639 |
msgstr ""
|
6640 |
|
6641 |
-
#: languages/vue.php:
|
6642 |
msgid "Show in full-width mode"
|
6643 |
msgstr ""
|
6644 |
|
6645 |
-
#: languages/vue.php:
|
6646 |
msgid "Show Overview Reports"
|
6647 |
msgstr ""
|
6648 |
|
6649 |
-
#: languages/vue.php:
|
6650 |
msgid "Show Publishers Reports"
|
6651 |
msgstr ""
|
6652 |
|
6653 |
-
#: languages/vue.php:
|
6654 |
msgid "Show eCommerce Reports"
|
6655 |
msgstr ""
|
6656 |
|
6657 |
-
#: languages/vue.php:
|
6658 |
msgid "Settings Menu"
|
6659 |
msgstr ""
|
6660 |
|
6661 |
-
#: languages/vue.php:
|
6662 |
msgid "Available in PRO version"
|
6663 |
msgstr ""
|
6664 |
|
6665 |
-
#: languages/vue.php:
|
6666 |
msgid "See All Reports"
|
6667 |
msgstr ""
|
6668 |
|
6669 |
-
#: languages/vue.php:
|
6670 |
msgid "Go to the Analytics Dashboard"
|
6671 |
msgstr ""
|
6672 |
|
6673 |
-
#: languages/vue.php:
|
6674 |
msgid "Cart Funnel"
|
6675 |
msgstr ""
|
6676 |
|
6677 |
-
#: languages/vue.php:
|
6678 |
msgid "Customer Insights"
|
6679 |
msgstr ""
|
6680 |
|
6681 |
-
#: languages/vue.php:
|
6682 |
msgid "Campaign Measurement"
|
6683 |
msgstr ""
|
6684 |
|
6685 |
-
#: languages/vue.php:
|
6686 |
msgid "Customer Profiles"
|
6687 |
msgstr ""
|
6688 |
|
6689 |
-
#: languages/vue.php:
|
6690 |
msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
|
6691 |
msgstr ""
|
6692 |
|
6693 |
-
#: languages/vue.php:
|
6694 |
msgid "Truly Understand Your%1$s Customers With %2$sExactMetrics%3$s"
|
6695 |
msgstr ""
|
6696 |
|
6697 |
-
#: languages/vue.php:
|
6698 |
msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from ExactMetrics!"
|
6699 |
msgstr ""
|
6700 |
|
6701 |
-
#: languages/vue.php:
|
6702 |
msgid "Track all-new metrics!"
|
6703 |
msgstr ""
|
6704 |
|
6705 |
-
#: languages/vue.php:
|
6706 |
msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
|
6707 |
msgstr ""
|
6708 |
|
6709 |
-
#: languages/vue.php:
|
6710 |
msgid "FEATURES"
|
6711 |
msgstr ""
|
6712 |
|
6713 |
-
#: languages/vue.php:
|
6714 |
msgid "Get The Unique Metrics Neccessary for Growth"
|
6715 |
msgstr ""
|
6716 |
|
6717 |
-
#: languages/vue.php:
|
6718 |
msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
|
6719 |
msgstr ""
|
6720 |
|
6721 |
-
#: languages/vue.php:
|
6722 |
msgid "Get Answers to the important questions %1$syou should know."
|
6723 |
msgstr ""
|
6724 |
|
6725 |
-
#: languages/vue.php:
|
6726 |
msgid "Did the login/registration step of the checkout put users off?"
|
6727 |
msgstr ""
|
6728 |
|
6729 |
-
#: languages/vue.php:
|
6730 |
msgid "Which ad campaign is driving the most revenue?"
|
6731 |
msgstr ""
|
6732 |
|
6733 |
-
#: languages/vue.php:
|
6734 |
msgid "Who is my typical customer?"
|
6735 |
msgstr ""
|
6736 |
|
6737 |
-
#: languages/vue.php:
|
6738 |
msgid "Level-up Your eCommerce store with %1$sExactMetrics + WooCommerce!%1$s"
|
6739 |
msgstr ""
|
6740 |
|
6741 |
#. Translators: Error status and error text.
|
6742 |
-
#: languages/vue.php:
|
6743 |
msgid "Can't deactivate the license. Error: %1$s, %2$s"
|
6744 |
msgstr ""
|
6745 |
|
6746 |
#. Translators: Error status and error text.
|
6747 |
-
#: languages/vue.php:
|
6748 |
msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
|
6749 |
msgstr ""
|
6750 |
|
6751 |
#. Translators: Error status and error text.
|
6752 |
-
#: languages/vue.php:
|
6753 |
msgid "Can't load license details. Error: %1$s, %2$s"
|
6754 |
msgstr ""
|
6755 |
|
6756 |
-
#: languages/vue.php:
|
6757 |
msgid "Error loading license details"
|
6758 |
msgstr ""
|
6759 |
|
6760 |
#. Translators: Error status and error text.
|
6761 |
-
#: languages/vue.php:
|
6762 |
msgid "Can't verify the license. Error: %1$s, %2$s"
|
6763 |
msgstr ""
|
6764 |
|
6765 |
#. Translators: Error status and error text.
|
6766 |
-
#: languages/vue.php:
|
6767 |
msgid "Can't validate the license. Error: %1$s, %2$s"
|
6768 |
msgstr ""
|
6769 |
|
6770 |
-
#: languages/vue.php:
|
6771 |
msgid "Reset to default"
|
6772 |
msgstr ""
|
6773 |
|
6774 |
-
#: languages/vue.php:
|
6775 |
msgid "The value entered does not match the required format"
|
6776 |
msgstr ""
|
6777 |
|
6778 |
-
#: languages/vue.php:
|
6779 |
msgid "Check out the newly added classic mode"
|
6780 |
msgstr ""
|
6781 |
|
6782 |
#. Translators: Placeholder adds a line break.
|
6783 |
-
#: languages/vue.php:
|
6784 |
msgid "You can customize your %sdate range only in the PRO version."
|
6785 |
msgstr ""
|
6786 |
|
6787 |
-
#: languages/vue.php:
|
6788 |
msgid "Help Us Improve"
|
6789 |
msgstr ""
|
6790 |
|
6791 |
-
#: languages/vue.php:
|
6792 |
msgid "Help us better understand our users and their website needs."
|
6793 |
msgstr ""
|
6794 |
|
6795 |
#. Translators: Adds a link to the documentation.
|
6796 |
-
#: languages/vue.php:
|
6797 |
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"
|
6798 |
msgstr ""
|
6799 |
|
6800 |
#. Translators: The name of the field that is throwing a validation error.
|
6801 |
-
#: languages/vue.php:
|
6802 |
msgid "%s can't be empty."
|
6803 |
msgstr ""
|
6804 |
|
6805 |
-
#: languages/vue.php:
|
6806 |
msgid "Duplicate values are not allowed."
|
6807 |
msgstr ""
|
6808 |
|
6809 |
-
#: languages/vue.php:
|
6810 |
msgid "You can add maximum 5 items."
|
6811 |
msgstr ""
|
6812 |
|
6813 |
-
#: languages/vue.php:
|
6814 |
msgid "At least 0 item required."
|
6815 |
msgstr ""
|
6816 |
|
6817 |
-
#: languages/vue.php:
|
6818 |
msgid "Add Another Link Path"
|
6819 |
msgstr ""
|
6820 |
|
6821 |
-
#: languages/vue.php:
|
6822 |
msgid "Remove row"
|
6823 |
msgstr ""
|
6824 |
|
6825 |
-
#: languages/vue.php:
|
6826 |
msgid "Sessions"
|
6827 |
msgstr ""
|
6828 |
|
6829 |
#. Translators: Line break.
|
6830 |
-
#: languages/vue.php:
|
6831 |
msgid "Unique %s Sessions"
|
6832 |
msgstr ""
|
6833 |
|
6834 |
-
#: languages/vue.php:
|
6835 |
msgid "Pageviews"
|
6836 |
msgstr ""
|
6837 |
|
6838 |
#. Translators: Line break.
|
6839 |
-
#: languages/vue.php:
|
6840 |
msgid "Unique %s Pageviews"
|
6841 |
msgstr ""
|
6842 |
|
6843 |
-
#: languages/vue.php:
|
6844 |
msgid "A session is the browsing session of a single user to your site."
|
6845 |
msgstr ""
|
6846 |
|
6847 |
-
#: languages/vue.php:
|
6848 |
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."
|
6849 |
msgstr ""
|
6850 |
|
6851 |
-
#: languages/vue.php:
|
6852 |
msgid "Total duration of all sessions (in seconds) / number of sessions."
|
6853 |
msgstr ""
|
6854 |
|
6855 |
-
#: languages/vue.php:
|
6856 |
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."
|
6857 |
msgstr ""
|
6858 |
|
6859 |
-
#: languages/vue.php:
|
6860 |
msgid "The number of distinct tracked users"
|
6861 |
msgstr ""
|
6862 |
|
6863 |
-
#: languages/vue.php:
|
6864 |
msgid "Avg. Session Duration"
|
6865 |
msgstr ""
|
6866 |
|
6867 |
-
#: languages/vue.php:
|
6868 |
msgid "Total Users"
|
6869 |
msgstr ""
|
6870 |
|
6871 |
-
#: languages/vue.php:
|
6872 |
msgid "No options available"
|
6873 |
msgstr ""
|
6874 |
|
6875 |
#. Translators: Placeholders make the text highlighted.
|
6876 |
-
#: languages/vue.php:
|
6877 |
msgid "%1$sNeed%2$s to Grow FASTER??"
|
6878 |
msgstr ""
|
6879 |
|
6880 |
-
#: languages/vue.php:
|
6881 |
msgid "Get additional, actionable insights by going Pro."
|
6882 |
msgstr ""
|
6883 |
|
6884 |
-
#: languages/vue.php:
|
6885 |
msgid "Skip"
|
6886 |
msgstr ""
|
6887 |
|
6888 |
-
#: languages/vue.php:
|
6889 |
msgid "See All Features"
|
6890 |
msgstr ""
|
6891 |
|
6892 |
-
#: languages/vue.php:
|
6893 |
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."
|
6894 |
msgstr ""
|
6895 |
|
6896 |
-
#: languages/vue.php:
|
6897 |
msgid "Our Pro plan includes:"
|
6898 |
msgstr ""
|
6899 |
|
6900 |
#. Translators: Error status and error text.
|
6901 |
-
#: languages/vue.php:
|
6902 |
msgid "Can't load errors. Error: %1$s, %2$s"
|
6903 |
msgstr ""
|
6904 |
|
6905 |
-
#: languages/vue.php:
|
6906 |
msgid "Real-Time Report"
|
6907 |
msgstr ""
|
6908 |
|
6909 |
-
#: languages/vue.php:
|
6910 |
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."
|
6911 |
msgstr ""
|
6912 |
|
6913 |
#. Translators: add link to blog.
|
6914 |
-
#: languages/vue.php:
|
6915 |
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."
|
6916 |
msgstr ""
|
6917 |
|
6918 |
-
#: languages/vue.php:
|
6919 |
msgid "Here's what you get:"
|
6920 |
msgstr ""
|
6921 |
|
6922 |
-
#: languages/vue.php:
|
6923 |
msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
|
6924 |
msgstr ""
|
6925 |
|
6926 |
-
#: languages/vue.php:
|
6927 |
msgid "See Your Top Pages Immediately After Making Changes"
|
6928 |
msgstr ""
|
6929 |
|
6930 |
-
#: languages/vue.php:
|
6931 |
msgid "See Your Top Referral Sources and Adapt Faster"
|
6932 |
msgstr ""
|
6933 |
|
6934 |
-
#: languages/vue.php:
|
6935 |
msgid "See Your Traffic Demographics"
|
6936 |
msgstr ""
|
6937 |
|
6938 |
-
#: languages/vue.php:
|
6939 |
msgid "Get Fresh Report Data Every 60 Seconds"
|
6940 |
msgstr ""
|
6941 |
|
6942 |
-
#: languages/vue.php:
|
6943 |
msgid "See Where Your Visitors are Connecting From (country & city)"
|
6944 |
msgstr ""
|
6945 |
|
6946 |
-
#: languages/vue.php:
|
6947 |
msgid "Forms Report"
|
6948 |
msgstr ""
|
6949 |
|
6950 |
-
#: languages/vue.php:
|
6951 |
msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
|
6952 |
msgstr ""
|
6953 |
|
6954 |
-
#: languages/vue.php:
|
6955 |
msgid "See Your Top Converting Forms and Optimize"
|
6956 |
msgstr ""
|
6957 |
|
6958 |
-
#: languages/vue.php:
|
6959 |
msgid "See Your Forms Impressions Count to Find the Best Placement"
|
6960 |
msgstr ""
|
6961 |
|
6962 |
-
#: languages/vue.php:
|
6963 |
msgid "Awesome, You're All Set!"
|
6964 |
msgstr ""
|
6965 |
|
6966 |
-
#: languages/vue.php:
|
6967 |
msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
|
6968 |
msgstr ""
|
6969 |
|
6970 |
#. Translators: Make text bold.
|
6971 |
-
#: languages/vue.php:
|
6972 |
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."
|
6973 |
msgstr ""
|
6974 |
|
6975 |
#. Translators: Add link to blog.
|
6976 |
#. Translators: Link to our blog.
|
6977 |
-
#: languages/vue.php:
|
6978 |
-
#: languages/vue.php:
|
6979 |
msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
|
6980 |
msgstr ""
|
6981 |
|
6982 |
-
#: languages/vue.php:
|
6983 |
msgid "Finish Setup & Exit Wizard"
|
6984 |
msgstr ""
|
6985 |
|
6986 |
-
#: languages/vue.php:
|
6987 |
msgid "Google Analytics"
|
6988 |
msgstr ""
|
6989 |
|
6990 |
-
#: languages/vue.php:
|
6991 |
msgid "Subscribe"
|
6992 |
msgstr ""
|
6993 |
|
6994 |
-
#: languages/vue.php:
|
6995 |
msgid "Checking your website..."
|
6996 |
msgstr ""
|
6997 |
|
6998 |
-
#: languages/vue.php:
|
6999 |
msgid "Recommended Addons"
|
7000 |
msgstr ""
|
7001 |
|
7002 |
#. Translators: Add a link to upgrade and make the text green.
|
7003 |
-
#: languages/vue.php:
|
7004 |
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!"
|
7005 |
msgstr ""
|
7006 |
|
7007 |
-
#: languages/vue.php:
|
7008 |
msgid "Upgrade to PRO Now"
|
7009 |
msgstr ""
|
7010 |
|
7011 |
-
#: languages/vue.php:
|
7012 |
msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
|
7013 |
msgstr ""
|
7014 |
|
7015 |
-
#: languages/vue.php:
|
7016 |
msgid "See All Your Important Store Metrics in One Place."
|
7017 |
msgstr ""
|
7018 |
|
7019 |
-
#: languages/vue.php:
|
7020 |
msgid "... and more:"
|
7021 |
msgstr ""
|
7022 |
|
7023 |
-
#: languages/vue.php:
|
7024 |
msgid "Dimensions- Track authors, categories, trags, searches, users and more."
|
7025 |
msgstr ""
|
7026 |
|
7027 |
-
#: languages/vue.php:
|
7028 |
msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
|
7029 |
msgstr ""
|
7030 |
|
7031 |
-
#: languages/vue.php:
|
7032 |
msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
|
7033 |
msgstr ""
|
7034 |
|
7035 |
-
#: languages/vue.php:
|
7036 |
msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
|
7037 |
msgstr ""
|
7038 |
|
7039 |
-
#: languages/vue.php:
|
7040 |
msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
|
7041 |
msgstr ""
|
7042 |
|
7043 |
-
#: languages/vue.php:
|
7044 |
msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
|
7045 |
msgstr ""
|
7046 |
|
7047 |
-
#: languages/vue.php:
|
7048 |
msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
|
7049 |
msgstr ""
|
7050 |
|
7051 |
-
#: languages/vue.php:
|
7052 |
msgid "Ads- See who’s clicking on your Google Adsense banner ads."
|
7053 |
msgstr ""
|
7054 |
|
7055 |
-
#: languages/vue.php:
|
7056 |
msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
|
7057 |
msgstr ""
|
7058 |
|
7059 |
-
#: languages/vue.php:
|
7060 |
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."
|
7061 |
msgstr ""
|
7062 |
|
7063 |
-
#: languages/vue.php:
|
7064 |
msgid "The ExactMetrics Team"
|
7065 |
msgstr ""
|
7066 |
|
7067 |
-
#: languages/vue.php:
|
7068 |
msgid "Custom Dimensions Report"
|
7069 |
msgstr ""
|
7070 |
|
7071 |
-
#: languages/vue.php:
|
7072 |
msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
|
7073 |
msgstr ""
|
7074 |
|
7075 |
-
#: languages/vue.php:
|
7076 |
msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
|
7077 |
msgstr ""
|
7078 |
|
7079 |
-
#: languages/vue.php:
|
7080 |
msgid "Author tracking to see which author’s posts generate the most traffic"
|
7081 |
msgstr ""
|
7082 |
|
7083 |
-
#: languages/vue.php:
|
7084 |
msgid "Post Type tracking to see which WordPress post types perform better"
|
7085 |
msgstr ""
|
7086 |
|
7087 |
-
#: languages/vue.php:
|
7088 |
msgid "Category tracking to see which sections of your sites are the most popular"
|
7089 |
msgstr ""
|
7090 |
|
7091 |
-
#: languages/vue.php:
|
7092 |
msgid "SEO score tracking to see which blog SEO scores are the most popular"
|
7093 |
msgstr ""
|
7094 |
|
7095 |
-
#: languages/vue.php:
|
7096 |
msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
|
7097 |
msgstr ""
|
7098 |
|
7099 |
-
#: languages/vue.php:
|
7100 |
msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
|
7101 |
msgstr ""
|
7102 |
|
7103 |
#. Translators: add link to blog.
|
7104 |
-
#: languages/vue.php:
|
7105 |
msgid "One of the factors that help deliver an outstanding user experience is having a website that loads quickly. With the Site Speed report you'll be able to check your site's performance directly from your ExactMetrics dashboard."
|
7106 |
msgstr ""
|
7107 |
|
7108 |
-
#: languages/vue.php:
|
7109 |
msgid "See Your Homepage's Overall Performance Score"
|
7110 |
msgstr ""
|
7111 |
|
7112 |
-
#: languages/vue.php:
|
7113 |
msgid "Run an Audit on Your Homepage and See Your Server Response Time"
|
7114 |
msgstr ""
|
7115 |
|
7116 |
-
#: languages/vue.php:
|
7117 |
msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
|
7118 |
msgstr ""
|
7119 |
|
7120 |
-
#: languages/vue.php:
|
7121 |
msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
|
7122 |
msgstr ""
|
7123 |
|
7124 |
-
#: languages/vue.php:
|
7125 |
msgid "Hide dashboard widget"
|
7126 |
msgstr ""
|
7127 |
|
7128 |
-
#: languages/vue.php:
|
7129 |
msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
|
7130 |
msgstr ""
|
7131 |
|
7132 |
-
#: languages/vue.php:
|
7133 |
msgid "Yes, hide it!"
|
7134 |
msgstr ""
|
7135 |
|
7136 |
-
#: languages/vue.php:
|
7137 |
msgid "No, cancel!"
|
7138 |
msgstr ""
|
7139 |
|
7140 |
-
#: languages/vue.php:
|
7141 |
msgid "ExactMetrics Widget Hidden"
|
7142 |
msgstr ""
|
7143 |
|
7144 |
-
#: languages/vue.php:
|
7145 |
msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
|
7146 |
msgstr ""
|
7147 |
|
7148 |
#. Translators: Error status and error text.
|
7149 |
-
#: languages/vue.php:
|
7150 |
msgid "Can't deauthenticate. Error: %1$s, %2$s"
|
7151 |
msgstr ""
|
7152 |
|
7153 |
#. Translators: Error status and error text.
|
7154 |
-
#: languages/vue.php:
|
7155 |
msgid "Can't load authentication details. Error: %1$s, %2$s"
|
7156 |
msgstr ""
|
7157 |
|
7158 |
-
#: languages/vue.php:
|
7159 |
msgid "You appear to be offline. Settings not saved."
|
7160 |
msgstr ""
|
7161 |
|
7162 |
#. Translators: Error status and error text.
|
7163 |
-
#: languages/vue.php:
|
7164 |
msgid "Can't authenticate. Error: %1$s, %2$s"
|
7165 |
msgstr ""
|
7166 |
|
7167 |
#. Translators: Error status and error text.
|
7168 |
-
#: languages/vue.php:
|
7169 |
msgid "Can't reauthenticate. Error: %1$s, %2$s"
|
7170 |
msgstr ""
|
7171 |
|
7172 |
#. Translators: Error status and error text.
|
7173 |
-
#: languages/vue.php:
|
7174 |
msgid "Can't verify credentials. Error: %1$s, %2$s"
|
7175 |
msgstr ""
|
7176 |
|
7177 |
-
#: languages/vue.php:
|
7178 |
msgid "Still Calculating..."
|
7179 |
msgstr ""
|
7180 |
|
7181 |
-
#: languages/vue.php:
|
7182 |
msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
|
7183 |
msgstr ""
|
7184 |
|
7185 |
-
#: languages/vue.php:
|
7186 |
msgid "Back to Overview Report"
|
7187 |
msgstr ""
|
7188 |
|
7189 |
-
#: languages/vue.php:
|
7190 |
msgid "Your 2020 Analytics Report"
|
7191 |
msgstr ""
|
7192 |
|
7193 |
-
#: languages/vue.php:
|
7194 |
msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
|
7195 |
msgstr ""
|
7196 |
|
7197 |
-
#: languages/vue.php:
|
7198 |
msgid "Audience"
|
7199 |
msgstr ""
|
7200 |
|
7201 |
-
#: languages/vue.php:
|
7202 |
msgid "Congrats"
|
7203 |
msgstr ""
|
7204 |
|
7205 |
-
#: languages/vue.php:
|
7206 |
msgid "Your website was quite popular this year! "
|
7207 |
msgstr ""
|
7208 |
|
7209 |
-
#: languages/vue.php:
|
7210 |
msgid "You had "
|
7211 |
msgstr ""
|
7212 |
|
7213 |
-
#: languages/vue.php:
|
7214 |
msgid " visitors!"
|
7215 |
msgstr ""
|
7216 |
|
7217 |
-
#: languages/vue.php:
|
7218 |
msgid " visitors"
|
7219 |
msgstr ""
|
7220 |
|
7221 |
-
#: languages/vue.php:
|
7222 |
msgid "Total Visitors"
|
7223 |
msgstr ""
|
7224 |
|
7225 |
-
#: languages/vue.php:
|
7226 |
msgid "Total Sessions"
|
7227 |
msgstr ""
|
7228 |
|
7229 |
-
#: languages/vue.php:
|
7230 |
msgid "Visitors by Month"
|
7231 |
msgstr ""
|
7232 |
|
7233 |
-
#: languages/vue.php:
|
7234 |
msgid "January 1, 2020 - December 31, 2020"
|
7235 |
msgstr ""
|
7236 |
|
7237 |
-
#: languages/vue.php:
|
7238 |
msgid "A Tip for 2021"
|
7239 |
msgstr ""
|
7240 |
|
7241 |
-
#: languages/vue.php:
|
7242 |
msgid "Demographics"
|
7243 |
msgstr ""
|
7244 |
|
7245 |
-
#: languages/vue.php:
|
7246 |
msgid "#1"
|
7247 |
msgstr ""
|
7248 |
|
7249 |
-
#: languages/vue.php:
|
7250 |
msgid "You Top 5 Countries"
|
7251 |
msgstr ""
|
7252 |
|
7253 |
-
#: languages/vue.php:
|
7254 |
msgid "Let’s get to know your visitors a little better, shall we?"
|
7255 |
msgstr ""
|
7256 |
|
7257 |
-
#: languages/vue.php:
|
7258 |
msgid "Gender"
|
7259 |
msgstr ""
|
7260 |
|
7261 |
-
#: languages/vue.php:
|
7262 |
msgid "Female"
|
7263 |
msgstr ""
|
7264 |
|
7265 |
-
#: languages/vue.php:
|
7266 |
msgid "Women"
|
7267 |
msgstr ""
|
7268 |
|
7269 |
-
#: languages/vue.php:
|
7270 |
msgid "Male"
|
7271 |
msgstr ""
|
7272 |
|
7273 |
-
#: languages/vue.php:
|
7274 |
msgid "Average Age"
|
7275 |
msgstr ""
|
7276 |
|
7277 |
-
#: languages/vue.php:
|
7278 |
msgid "Behavior"
|
7279 |
msgstr ""
|
7280 |
|
7281 |
-
#: languages/vue.php:
|
7282 |
msgid "Your Top 5 Pages"
|
7283 |
msgstr ""
|
7284 |
|
7285 |
-
#: languages/vue.php:
|
7286 |
msgid "Time Spent on Site"
|
7287 |
msgstr ""
|
7288 |
|
7289 |
-
#: languages/vue.php:
|
7290 |
msgid "minutes"
|
7291 |
msgstr ""
|
7292 |
|
7293 |
-
#: languages/vue.php:
|
7294 |
msgid "Device Type"
|
7295 |
msgstr ""
|
7296 |
|
7297 |
-
#: languages/vue.php:
|
7298 |
msgid "A Tip For 2021"
|
7299 |
msgstr ""
|
7300 |
|
7301 |
-
#: languages/vue.php:
|
7302 |
msgid "Are you looking for a way to track your landing pages and see which one gets the most conversions on your website?"
|
7303 |
msgstr ""
|
7304 |
|
7305 |
-
#: languages/vue.php:
|
7306 |
msgid "Read - How to Track Google Analytics Landing Page Conversions"
|
7307 |
msgstr ""
|
7308 |
|
7309 |
-
#: languages/vue.php:
|
7310 |
msgid "So, where did all of these visitors come from?"
|
7311 |
msgstr ""
|
7312 |
|
7313 |
-
#: languages/vue.php:
|
7314 |
msgid "Clicks"
|
7315 |
msgstr ""
|
7316 |
|
7317 |
-
#: languages/vue.php:
|
7318 |
msgid "Your Top 5 Keywords"
|
7319 |
msgstr ""
|
7320 |
|
7321 |
-
#: languages/vue.php:
|
7322 |
msgid "What keywords visitors searched for to find your site"
|
7323 |
msgstr ""
|
7324 |
|
7325 |
-
#: languages/vue.php:
|
7326 |
msgid "Your Top 5 Referrals"
|
7327 |
msgstr ""
|
7328 |
|
7329 |
-
#: languages/vue.php:
|
7330 |
msgid "The websites that link back to your website"
|
7331 |
msgstr ""
|
7332 |
|
7333 |
-
#: languages/vue.php:
|
7334 |
msgid "Opportunity"
|
7335 |
msgstr ""
|
7336 |
|
7337 |
-
#: languages/vue.php:
|
7338 |
msgid "Learn how to boost your SEO rankings using ExactMetrics so more visitors reach your articles and increase engagement."
|
7339 |
msgstr ""
|
7340 |
|
7341 |
-
#: languages/vue.php:
|
7342 |
msgid "Read - 5 Ways to Skyrocket Your SEO Rankings with Google Analytics"
|
7343 |
msgstr ""
|
7344 |
|
7345 |
-
#: languages/vue.php:
|
7346 |
msgid "Thank you for using ExactMetrics!"
|
7347 |
msgstr ""
|
7348 |
|
7349 |
-
#: languages/vue.php:
|
7350 |
msgid "We’re grateful for your continued support. If there’s anything we can do to help you grow your business, please don’t hesitate to contact our team."
|
7351 |
msgstr ""
|
7352 |
|
7353 |
-
#: languages/vue.php:
|
7354 |
msgid "Here's to an amazing 2021!"
|
7355 |
msgstr ""
|
7356 |
|
7357 |
-
#: languages/vue.php:
|
7358 |
msgid "Enjoying ExactMetrics"
|
7359 |
msgstr ""
|
7360 |
|
7361 |
-
#: languages/vue.php:
|
7362 |
msgid "Leave a five star review!"
|
7363 |
msgstr ""
|
7364 |
|
7365 |
-
#: languages/vue.php:
|
7366 |
msgid "Syed Balkhi"
|
7367 |
msgstr ""
|
7368 |
|
7369 |
-
#: languages/vue.php:
|
7370 |
msgid "Chris Christoff"
|
7371 |
msgstr ""
|
7372 |
|
7373 |
-
#: languages/vue.php:
|
7374 |
msgid "Write Review"
|
7375 |
msgstr ""
|
7376 |
|
7377 |
-
#: languages/vue.php:
|
7378 |
msgid "Did you know over 10 million websites use our plugins?"
|
7379 |
msgstr ""
|
7380 |
|
7381 |
-
#: languages/vue.php:
|
7382 |
msgid "Try our other popular WordPress plugins to grow your website in 2021."
|
7383 |
msgstr ""
|
7384 |
|
7385 |
-
#: languages/vue.php:
|
7386 |
msgid "Join our Communities!"
|
7387 |
msgstr ""
|
7388 |
|
7389 |
-
#: languages/vue.php:
|
7390 |
msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
|
7391 |
msgstr ""
|
7392 |
|
7393 |
-
#: languages/vue.php:
|
7394 |
msgid "Facebook Group"
|
7395 |
msgstr ""
|
7396 |
|
7397 |
-
#: languages/vue.php:
|
7398 |
msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
|
7399 |
msgstr ""
|
7400 |
|
7401 |
-
#: languages/vue.php:
|
7402 |
msgid "Join Now...It’s Free!"
|
7403 |
msgstr ""
|
7404 |
|
7405 |
-
#: languages/vue.php:
|
7406 |
msgid "WordPress Tutorials by WPBeginner"
|
7407 |
msgstr ""
|
7408 |
|
7409 |
-
#: languages/vue.php:
|
7410 |
msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
|
7411 |
msgstr ""
|
7412 |
|
7413 |
-
#: languages/vue.php:
|
7414 |
msgid "Visit WPBeginner"
|
7415 |
msgstr ""
|
7416 |
|
7417 |
-
#: languages/vue.php:
|
7418 |
msgid "Follow Us!"
|
7419 |
msgstr ""
|
7420 |
|
7421 |
-
#: languages/vue.php:
|
7422 |
msgid "Follow ExactMetrics on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
|
7423 |
msgstr ""
|
7424 |
|
7425 |
-
#: languages/vue.php:
|
7426 |
msgid "Copyright ExactMetrics, 2021"
|
7427 |
msgstr ""
|
7428 |
|
7429 |
-
#: languages/vue.php:
|
7430 |
msgid "Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights"
|
7431 |
msgstr ""
|
7432 |
|
7433 |
-
#: languages/vue.php:
|
7434 |
msgid "January"
|
7435 |
msgstr ""
|
7436 |
|
7437 |
-
#: languages/vue.php:
|
7438 |
msgid "February"
|
7439 |
msgstr ""
|
7440 |
|
7441 |
-
#: languages/vue.php:
|
7442 |
msgid "March"
|
7443 |
msgstr ""
|
7444 |
|
7445 |
-
#: languages/vue.php:
|
7446 |
msgid "April"
|
7447 |
msgstr ""
|
7448 |
|
7449 |
-
#: languages/vue.php:
|
7450 |
msgid "May"
|
7451 |
msgstr ""
|
7452 |
|
7453 |
-
#: languages/vue.php:
|
7454 |
msgid "June"
|
7455 |
msgstr ""
|
7456 |
|
7457 |
-
#: languages/vue.php:
|
7458 |
msgid "July"
|
7459 |
msgstr ""
|
7460 |
|
7461 |
-
#: languages/vue.php:
|
7462 |
msgid "August"
|
7463 |
msgstr ""
|
7464 |
|
7465 |
-
#: languages/vue.php:
|
7466 |
msgid "September"
|
7467 |
msgstr ""
|
7468 |
|
7469 |
-
#: languages/vue.php:
|
7470 |
msgid "October"
|
7471 |
msgstr ""
|
7472 |
|
7473 |
-
#: languages/vue.php:
|
7474 |
msgid "November"
|
7475 |
msgstr ""
|
7476 |
|
7477 |
-
#: languages/vue.php:
|
7478 |
msgid "December"
|
7479 |
msgstr ""
|
7480 |
|
7481 |
#. Translators: Number of visitors.
|
7482 |
-
#: languages/vue.php:
|
7483 |
msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
|
7484 |
msgstr ""
|
7485 |
|
7486 |
-
#: languages/vue.php:
|
7487 |
msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
|
7488 |
msgstr ""
|
7489 |
|
7490 |
#. Translators: Number of visitors.
|
7491 |
-
#: languages/vue.php:
|
7492 |
msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
|
7493 |
msgstr ""
|
7494 |
|
7495 |
#. Translators: Number of visitors.
|
7496 |
-
#: languages/vue.php:
|
7497 |
msgid "%s Visitors"
|
7498 |
msgstr ""
|
7499 |
|
7500 |
#. Translators: Percent and Number of visitors.
|
7501 |
-
#: languages/vue.php:
|
7502 |
msgid "%1$s% of your visitors were %2$s"
|
7503 |
msgstr ""
|
7504 |
|
7505 |
#. Translators: Number of visitors and their age.
|
7506 |
-
#: languages/vue.php:
|
7507 |
msgid "%1$s% of your visitors were between the ages of %2$s"
|
7508 |
msgstr ""
|
7509 |
|
7510 |
-
#: languages/vue.php:
|
7511 |
msgid "Your <strong>%1$s</strong> visitors viewed a total of <strong>%2$s</strong> pages. <span class='average-page-per-user' style='font-size: 20px;margin-top:25px;display:block;font-family:Lato'>That's an average of %3$s pages for each visitor!</span>"
|
7512 |
msgstr ""
|
7513 |
|
7514 |
#. Translators: Number of minutes spent on site.
|
7515 |
-
#: languages/vue.php:
|
7516 |
msgid "Each visitor spent an average of %s minutes on your website in 2020."
|
7517 |
msgstr ""
|
7518 |
|
7519 |
#. Translators: Name of device type.
|
7520 |
-
#: languages/vue.php:
|
7521 |
msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
|
7522 |
msgstr ""
|
7523 |
|
7524 |
#. Translators: Number of visitors and device percentage.
|
7525 |
-
#: languages/vue.php:
|
7526 |
msgid "%1$s% of your visitors were on a %2$s device."
|
7527 |
msgstr ""
|
7528 |
|
7529 |
-
#: languages/vue.php:
|
7530 |
msgid "Desktop"
|
7531 |
msgstr ""
|
7532 |
|
7533 |
-
#: languages/vue.php:
|
7534 |
msgid "Tablet"
|
7535 |
msgstr ""
|
7536 |
|
7537 |
-
#: languages/vue.php:
|
7538 |
msgid "Mobile"
|
7539 |
msgstr ""
|
7540 |
|
7541 |
-
#: languages/vue.php:
|
7542 |
msgid "Force Deauthenticate"
|
7543 |
msgstr ""
|
7544 |
|
7545 |
-
#: languages/vue.php:
|
7546 |
msgid "Disconnect ExactMetrics"
|
7547 |
msgstr ""
|
7548 |
|
7549 |
-
#: languages/vue.php:
|
7550 |
msgid "Authenticating"
|
7551 |
msgstr ""
|
7552 |
|
7553 |
-
#: languages/vue.php:
|
7554 |
msgid "Verifying Credentials"
|
7555 |
msgstr ""
|
7556 |
|
7557 |
-
#: languages/vue.php:
|
7558 |
msgid "Your site is connected to ExactMetrics!"
|
7559 |
msgstr ""
|
7560 |
|
7561 |
-
#: languages/vue.php:
|
7562 |
msgid "Deauthenticating"
|
7563 |
msgstr ""
|
7564 |
|
7565 |
-
#: languages/vue.php:
|
7566 |
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."
|
7567 |
msgstr ""
|
7568 |
|
7569 |
-
#: languages/vue.php:
|
7570 |
-
#: languages/vue.php:
|
7571 |
msgid "Connect ExactMetrics"
|
7572 |
msgstr ""
|
7573 |
|
7574 |
-
#: languages/vue.php:
|
7575 |
msgid "Verify Credentials"
|
7576 |
msgstr ""
|
7577 |
|
7578 |
-
#: languages/vue.php:
|
7579 |
msgid "Website Profile"
|
7580 |
msgstr ""
|
7581 |
|
7582 |
-
#: languages/vue.php:
|
7583 |
msgid "Active Profile"
|
7584 |
msgstr ""
|
7585 |
|
7586 |
-
#: languages/vue.php:
|
7587 |
msgid "Your website profile has been set at the network level of your WordPress Multisite."
|
7588 |
msgstr ""
|
7589 |
|
7590 |
-
#: languages/vue.php:
|
7591 |
msgid "If you would like to use a different profile for this subsite, you can authenticate below."
|
7592 |
msgstr ""
|
7593 |
|
7594 |
-
#: languages/vue.php:
|
7595 |
msgid "Dual Tracking Profile"
|
7596 |
msgstr ""
|
7597 |
|
7598 |
-
#: languages/vue.php:
|
7599 |
msgid "The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s."
|
7600 |
msgstr ""
|
7601 |
|
7602 |
-
#: languages/vue.php:
|
7603 |
msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
|
7604 |
msgstr ""
|
7605 |
|
7606 |
-
#: languages/vue.php:
|
7607 |
msgid "The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s."
|
7608 |
msgstr ""
|
7609 |
|
7610 |
-
#: languages/vue.php:
|
7611 |
msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
|
7612 |
msgstr ""
|
7613 |
|
7614 |
-
#: languages/vue.php:
|
7615 |
msgid "Measurement Protocol API Secret"
|
7616 |
msgstr ""
|
7617 |
|
7618 |
-
#: languages/vue.php:
|
7619 |
msgid "The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s."
|
7620 |
msgstr ""
|
7621 |
|
7622 |
-
#: languages/vue.php:
|
7623 |
msgid "Classic mode"
|
7624 |
msgstr ""
|
7625 |
|
7626 |
-
#: languages/vue.php:
|
7627 |
msgid "Proceed"
|
7628 |
msgstr ""
|
7629 |
|
7630 |
-
#: languages/vue.php:
|
7631 |
msgid "Connection Information"
|
7632 |
msgstr ""
|
7633 |
|
7634 |
-
#: languages/vue.php:
|
7635 |
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."
|
7636 |
msgstr ""
|
7637 |
|
7638 |
-
#: languages/vue.php:
|
7639 |
msgid "Hostname"
|
7640 |
msgstr ""
|
7641 |
|
7642 |
-
#: languages/vue.php:
|
7643 |
msgid "FTP Username"
|
7644 |
msgstr ""
|
7645 |
|
7646 |
-
#: languages/vue.php:
|
7647 |
msgid "FTP Password"
|
7648 |
msgstr ""
|
7649 |
|
7650 |
-
#: languages/vue.php:
|
7651 |
msgid "This password will not be stored on the server."
|
7652 |
msgstr ""
|
7653 |
|
7654 |
-
#: languages/vue.php:
|
7655 |
msgid "Connection Type"
|
7656 |
msgstr ""
|
7657 |
|
7658 |
-
#: languages/vue.php:
|
7659 |
msgid "Cancel"
|
7660 |
msgstr ""
|
7661 |
|
7662 |
-
#: languages/vue.php:
|
7663 |
msgid "Website profile"
|
7664 |
msgstr ""
|
7665 |
|
7666 |
-
#: languages/vue.php:
|
7667 |
msgid "Active profile"
|
7668 |
msgstr ""
|
7669 |
|
7670 |
-
#: languages/vue.php:
|
7671 |
msgid "Skip and Keep Connection"
|
7672 |
msgstr ""
|
7673 |
|
7674 |
#. Translators: Replaced with the number of days
|
7675 |
-
#: languages/vue.php:
|
7676 |
msgid "vs. Previous Day"
|
7677 |
msgstr ""
|
7678 |
|
7679 |
-
#: languages/vue.php:
|
7680 |
msgid "No change"
|
7681 |
msgstr ""
|
7682 |
|
7683 |
-
#: languages/vue.php:
|
7684 |
msgid "Choose Theme"
|
7685 |
msgstr ""
|
7686 |
|
7687 |
-
#: languages/vue.php:
|
7688 |
msgid "Widget Styling"
|
7689 |
msgstr ""
|
7690 |
|
7691 |
-
#: languages/vue.php:
|
7692 |
msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
|
7693 |
msgstr ""
|
7694 |
|
7695 |
-
#: languages/vue.php:
|
7696 |
msgid "Sort By"
|
7697 |
msgstr ""
|
7698 |
|
7699 |
-
#: languages/vue.php:
|
7700 |
msgid "Choose how you'd like the widget to determine your popular posts."
|
7701 |
msgstr ""
|
7702 |
|
7703 |
-
#: languages/vue.php:
|
7704 |
msgid "Display Title"
|
7705 |
msgstr ""
|
7706 |
|
7707 |
-
#: languages/vue.php:
|
7708 |
msgid "Title your widget and set its display preferences."
|
7709 |
msgstr ""
|
7710 |
|
7711 |
-
#: languages/vue.php:
|
7712 |
msgid "Include in Post Types"
|
7713 |
msgstr ""
|
7714 |
|
7715 |
-
#: languages/vue.php:
|
7716 |
msgid "Exclude from specific posts"
|
7717 |
msgstr ""
|
7718 |
|
7719 |
#. Translators: Placeholders make the text bold.
|
7720 |
-
#: languages/vue.php:
|
7721 |
msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
|
7722 |
msgstr ""
|
7723 |
|
7724 |
#. Translators: Placeholders make the text bold.
|
7725 |
-
#: languages/vue.php:
|
7726 |
msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
|
7727 |
msgstr ""
|
7728 |
|
7729 |
-
#: languages/vue.php:
|
7730 |
msgid "Loading Themes"
|
7731 |
msgstr ""
|
7732 |
|
7733 |
#. Translators: placeholders make text small.
|
7734 |
-
#: languages/vue.php:
|
7735 |
msgid "Default Styles %1$s- As seen above.%2$s"
|
7736 |
msgstr ""
|
7737 |
|
7738 |
#. Translators: placeholders make text small.
|
7739 |
-
#: languages/vue.php:
|
7740 |
msgid "No Styles %1$s- Use your own CSS.%2$s"
|
7741 |
msgstr ""
|
7742 |
|
7743 |
#. Translators: placeholders make text small.
|
7744 |
-
#: languages/vue.php:
|
7745 |
msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
|
7746 |
msgstr ""
|
7747 |
|
7748 |
#. Translators: placeholders make text small.
|
7749 |
-
#: languages/vue.php:
|
7750 |
msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
|
7751 |
msgstr ""
|
7752 |
|
7753 |
#. Translators: placeholders make text small.
|
7754 |
-
#: languages/vue.php:
|
7755 |
msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
|
7756 |
msgstr ""
|
7757 |
|
7758 |
-
#: languages/vue.php:
|
7759 |
msgid "Placement"
|
7760 |
msgstr ""
|
7761 |
|
7762 |
-
#: languages/vue.php:
|
7763 |
msgid "Choose how you'd like to place the widget."
|
7764 |
msgstr ""
|
7765 |
|
7766 |
-
#: languages/vue.php:
|
7767 |
msgid "Insert After"
|
7768 |
msgstr ""
|
7769 |
|
7770 |
-
#: languages/vue.php:
|
7771 |
msgid "Choose where in the post body the widget will be placed."
|
7772 |
msgstr ""
|
7773 |
|
7774 |
-
#: languages/vue.php:
|
7775 |
msgid "Customize Design"
|
7776 |
msgstr ""
|
7777 |
|
7778 |
-
#: languages/vue.php:
|
7779 |
msgid "words"
|
7780 |
msgstr ""
|
7781 |
|
7782 |
-
#: languages/vue.php:
|
7783 |
msgid "Please select at least one post to display."
|
7784 |
msgstr ""
|
7785 |
|
7786 |
#. Translators: placeholders make text small.
|
7787 |
-
#: languages/vue.php:
|
7788 |
msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
|
7789 |
msgstr ""
|
7790 |
|
7791 |
#. Translators: placeholders make text small.
|
7792 |
-
#: languages/vue.php:
|
7793 |
msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
|
7794 |
msgstr ""
|
7795 |
|
7796 |
-
#: languages/vue.php:
|
7797 |
msgid "Caching"
|
7798 |
msgstr ""
|
7799 |
|
7800 |
-
#: languages/vue.php:
|
7801 |
msgid "Enable Data Caching"
|
7802 |
msgstr ""
|
7803 |
|
7804 |
-
#: languages/vue.php:
|
7805 |
msgid "Refresh Cache Every"
|
7806 |
msgstr ""
|
7807 |
|
7808 |
-
#: languages/vue.php:
|
7809 |
msgid "Choose how often to refresh the cache."
|
7810 |
msgstr ""
|
7811 |
|
7812 |
-
#: languages/vue.php:
|
7813 |
msgid "Enable Ajaxify"
|
7814 |
msgstr ""
|
7815 |
|
7816 |
-
#: languages/vue.php:
|
7817 |
msgid "Ajaxify Widget"
|
7818 |
msgstr ""
|
7819 |
|
7820 |
-
#: languages/vue.php:
|
7821 |
msgid "Use to bypass page caching."
|
7822 |
msgstr ""
|
7823 |
|
7824 |
-
#: languages/vue.php:
|
7825 |
msgid "Empty Cache"
|
7826 |
msgstr ""
|
7827 |
|
7828 |
-
#: languages/vue.php:
|
7829 |
msgid "Click to manually wipe the cache right now."
|
7830 |
msgstr ""
|
7831 |
|
7832 |
-
#: languages/vue.php:
|
7833 |
msgid "Popular posts cache emptied"
|
7834 |
msgstr ""
|
7835 |
|
7836 |
-
#: languages/vue.php:
|
7837 |
msgid "Error emptying the popular posts cache. Please try again."
|
7838 |
msgstr ""
|
7839 |
|
7840 |
-
#: languages/vue.php:
|
7841 |
msgid "Last 30 Days Analytics for "
|
7842 |
msgstr ""
|
7843 |
|
7844 |
-
#: languages/vue.php:
|
7845 |
msgid "Your Website"
|
7846 |
msgstr ""
|
7847 |
|
7848 |
-
#: languages/vue.php:
|
7849 |
msgid "Avg. Duration"
|
7850 |
msgstr ""
|
7851 |
|
7852 |
-
#: languages/vue.php:
|
7853 |
msgid "More data is available"
|
7854 |
msgstr ""
|
7855 |
|
7856 |
-
#: languages/vue.php:
|
7857 |
msgid "Want to see page-specific stats?"
|
7858 |
msgstr ""
|
7859 |
|
7860 |
-
#: languages/vue.php:
|
7861 |
msgid "You appear to be offline. WPForms not installed."
|
7862 |
msgstr ""
|
7863 |
|
7864 |
#. Translators: Error status and error text.
|
7865 |
-
#: languages/vue.php:
|
7866 |
msgid "Can't activate addon. Error: %1$s, %2$s"
|
7867 |
msgstr ""
|
7868 |
|
7869 |
-
#: languages/vue.php:
|
7870 |
msgid "You appear to be offline. Addon not activated."
|
7871 |
msgstr ""
|
7872 |
|
7873 |
#. Translators: Error status and error text.
|
7874 |
-
#: languages/vue.php:
|
7875 |
msgid "Can't deactivate addon. Error: %1$s, %2$s"
|
7876 |
msgstr ""
|
7877 |
|
7878 |
-
#: languages/vue.php:
|
7879 |
msgid "You appear to be offline. Addon not deactivated."
|
7880 |
msgstr ""
|
7881 |
|
7882 |
#. Translators: Error status and error text.
|
7883 |
-
#: languages/vue.php:
|
7884 |
msgid "Can't install plugin. Error: %1$s, %2$s"
|
7885 |
msgstr ""
|
7886 |
|
7887 |
-
#: languages/vue.php:
|
7888 |
msgid "You appear to be offline. Plugin not installed."
|
7889 |
msgstr ""
|
7890 |
|
7891 |
#. Translators: Error status and error text.
|
7892 |
-
#: languages/vue.php:
|
7893 |
msgid "Can't install addon. Error: %1$s, %2$s"
|
7894 |
msgstr ""
|
7895 |
|
7896 |
-
#: languages/vue.php:
|
7897 |
msgid "You appear to be offline. Addon not installed."
|
7898 |
msgstr ""
|
7899 |
|
7900 |
#. Translators: Error status and error text.
|
7901 |
-
#: languages/vue.php:
|
7902 |
msgid "Can't install WPForms. Error: %1$s, %2$s"
|
7903 |
msgstr ""
|
7904 |
|
7905 |
-
#: languages/vue.php:
|
7906 |
msgid "Network Active"
|
7907 |
msgstr ""
|
7908 |
|
7909 |
-
#: languages/vue.php:
|
7910 |
msgid "Active"
|
7911 |
msgstr ""
|
7912 |
|
7913 |
-
#: languages/vue.php:
|
7914 |
msgid "Inactive"
|
7915 |
msgstr ""
|
7916 |
|
7917 |
#. Translators: Placeholder for the addon status (installed, active, etc).
|
7918 |
-
#: languages/vue.php:
|
7919 |
msgid "Status: %s"
|
7920 |
msgstr ""
|
7921 |
|
7922 |
-
#: languages/vue.php:
|
7923 |
msgid "Not Installed"
|
7924 |
msgstr ""
|
7925 |
|
7926 |
#. Translators: Makes text bold and adds smiley.
|
7927 |
-
#: languages/vue.php:
|
7928 |
msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
|
7929 |
msgstr ""
|
7930 |
|
7931 |
#. Translators: Makes text green.
|
7932 |
-
#: languages/vue.php:
|
7933 |
msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
|
7934 |
msgstr ""
|
7935 |
|
7936 |
-
#: languages/vue.php:
|
7937 |
msgid "Unlock All Features and Upgrade to Pro"
|
7938 |
msgstr ""
|
7939 |
|
7940 |
#. Translators: Make text green and add smiley face.
|
7941 |
-
#: languages/vue.php:
|
7942 |
msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
|
7943 |
msgstr ""
|
7944 |
|
7945 |
#. Translators: Make text green.
|
7946 |
-
#: languages/vue.php:
|
7947 |
msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
|
7948 |
msgstr ""
|
7949 |
|
7950 |
-
#: languages/vue.php:
|
7951 |
msgid "Unlock PRO Features Now"
|
7952 |
msgstr ""
|
7953 |
|
7954 |
-
#: languages/vue.php:
|
7955 |
msgid "Paste your license key here"
|
7956 |
msgstr ""
|
7957 |
|
7958 |
-
#: languages/vue.php:
|
7959 |
msgid "Verify"
|
7960 |
msgstr ""
|
7961 |
|
7962 |
#. Translators: Add link to retrieve license from account area.
|
7963 |
-
#: languages/vue.php:
|
7964 |
msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
|
7965 |
msgstr ""
|
7966 |
|
7967 |
-
#: languages/vue.php:
|
7968 |
-
#: languages/vue.php:
|
7969 |
msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
|
7970 |
msgstr ""
|
7971 |
|
7972 |
-
#: languages/vue.php:
|
7973 |
msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
|
7974 |
msgstr ""
|
7975 |
|
7976 |
-
#: languages/vue.php:
|
7977 |
msgid "Automatically migrate all of your SEO settings with just 1 click!"
|
7978 |
msgstr ""
|
7979 |
|
7980 |
-
#: languages/vue.php:
|
7981 |
msgid "1,938"
|
7982 |
msgstr ""
|
7983 |
|
7984 |
-
#: languages/vue.php:
|
7985 |
msgid "2+ Million Active Installs"
|
7986 |
msgstr ""
|
7987 |
|
7988 |
-
#: languages/vue.php:
|
7989 |
msgid "AIOSEO is the DIY Solution for Managing your SEO"
|
7990 |
msgstr ""
|
7991 |
|
7992 |
-
|