Version Description
Download this release
Release Info
Developer | manejaam |
Plugin | Google Analytics for WordPress by MonsterInsights |
Version | 8.10.1 |
Comparing to | |
See all releases |
Code changes from version 8.10.0 to 8.10.1
- googleanalytics.php +2 -2
- includes/admin/licensing/autoupdate.php +8 -13
- languages/google-analytics-for-wordpress.pot +1299 -1299
- languages/vue.php +124 -102
- readme.txt +4 -1
googleanalytics.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
* Author: MonsterInsights
|
7 |
* Author URI: https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
|
8 |
*
|
9 |
-
* Version: 8.10.
|
10 |
* Requires at least: 4.8.0
|
11 |
* Requires PHP: 5.6
|
12 |
*
|
@@ -69,7 +69,7 @@ final class MonsterInsights_Lite {
|
|
69 |
* @access public
|
70 |
* @var string $version Plugin version.
|
71 |
*/
|
72 |
-
public $version = '8.10.
|
73 |
|
74 |
/**
|
75 |
* Plugin file.
|
6 |
* Author: MonsterInsights
|
7 |
* Author URI: https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
|
8 |
*
|
9 |
+
* Version: 8.10.1
|
10 |
* Requires at least: 4.8.0
|
11 |
* Requires PHP: 5.6
|
12 |
*
|
69 |
* @access public
|
70 |
* @var string $version Plugin version.
|
71 |
*/
|
72 |
+
public $version = '8.10.1';
|
73 |
|
74 |
/**
|
75 |
* Plugin file.
|
includes/admin/licensing/autoupdate.php
CHANGED
@@ -145,12 +145,13 @@ function monsterinsights_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 monsterinsights_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 monsterinsights_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', 'monsterinsights_automatic_updates', 10, 2 );
|
@@ -197,13 +198,7 @@ add_filter( 'auto_update_plugin', 'monsterinsights_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 monsterinsights_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 ? MONSTERINSIGHTS_LITE_VERSION : $item['old_version'];
|
149 |
+
$new_version = $item['new_version'];
|
150 |
+
$current_major = monsterinsights_get_major_version( $current_version );
|
151 |
+
$new_major = monsterinsights_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', 'monsterinsights_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 monsterinsights_get_major_version( $version ) {
|
202 |
$exploded_version = explode( '.', $version );
|
203 |
+
return $exploded_version[0] . '.' . $exploded_version[1];
|
|
|
|
|
|
|
|
|
204 |
}
|
languages/google-analytics-for-wordpress.pot
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the same license as the ExactMetrics Pro plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: ExactMetrics Pro 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-for-wordpress\n"
|
@@ -120,14 +120,14 @@ msgstr ""
|
|
120 |
#: includes/admin/admin.php:127
|
121 |
#: includes/admin/em-admin.php:19
|
122 |
#: includes/admin/em-admin.php:22
|
123 |
-
#: languages/vue.php:
|
124 |
msgid "Insights"
|
125 |
msgstr ""
|
126 |
|
127 |
#: includes/admin/admin.php:34
|
128 |
#: includes/admin/admin.php:42
|
129 |
#: includes/admin/admin.php:230
|
130 |
-
#: languages/vue.php:
|
131 |
msgid "Settings"
|
132 |
msgstr ""
|
133 |
|
@@ -143,7 +143,7 @@ msgstr ""
|
|
143 |
|
144 |
#: includes/admin/admin.php:39
|
145 |
#: includes/admin/admin.php:131
|
146 |
-
#: languages/vue.php:
|
147 |
msgid "Reports"
|
148 |
msgstr ""
|
149 |
|
@@ -153,7 +153,7 @@ msgstr ""
|
|
153 |
|
154 |
#: includes/admin/admin.php:51
|
155 |
#: languages/gutenberg.php:83
|
156 |
-
#: languages/vue.php:
|
157 |
msgid "Popular Posts"
|
158 |
msgstr ""
|
159 |
|
@@ -187,7 +187,7 @@ msgstr ""
|
|
187 |
|
188 |
#: includes/admin/admin.php:71
|
189 |
#: includes/admin/admin.php:147
|
190 |
-
#: languages/vue.php:
|
191 |
msgid "About Us"
|
192 |
msgstr ""
|
193 |
|
@@ -206,7 +206,7 @@ msgstr ""
|
|
206 |
#: includes/admin/admin.php:76
|
207 |
#: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
|
208 |
#: includes/admin/notifications/notification-upgrade-to-pro.php:33
|
209 |
-
#: languages/vue.php:
|
210 |
msgid "Upgrade to Pro"
|
211 |
msgstr ""
|
212 |
|
@@ -234,7 +234,7 @@ msgstr ""
|
|
234 |
|
235 |
#: includes/admin/admin.php:220
|
236 |
#: includes/admin/admin.php:223
|
237 |
-
#: languages/vue.php:
|
238 |
msgid "Support"
|
239 |
msgstr ""
|
240 |
|
@@ -246,7 +246,7 @@ msgstr ""
|
|
246 |
#: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
|
247 |
#: includes/admin/notifications/notification-upgrade-for-post-templates.php:31
|
248 |
#: includes/admin/reports/abstract-report.php:458
|
249 |
-
#: languages/vue.php:
|
250 |
msgid "Get MonsterInsights Pro"
|
251 |
msgstr ""
|
252 |
|
@@ -256,12 +256,12 @@ msgid "Please rate %1$sMonsterInsights%2$s on %3$s %4$sWordPress.org%5$s to help
|
|
256 |
msgstr ""
|
257 |
|
258 |
#: includes/admin/admin.php:335
|
259 |
-
#: languages/vue.php:
|
260 |
msgid "Please Setup Website Analytics to See Audience Insights"
|
261 |
msgstr ""
|
262 |
|
263 |
#: includes/admin/admin.php:336
|
264 |
-
#: languages/vue.php:
|
265 |
msgid "Connect MonsterInsights and Setup Website Analytics"
|
266 |
msgstr ""
|
267 |
|
@@ -275,12 +275,12 @@ msgstr ""
|
|
275 |
#: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
|
276 |
#: includes/admin/notifications/notification-returning-visitors.php:43
|
277 |
#: includes/admin/notifications/notification-traffic-dropping.php:43
|
278 |
-
#: languages/vue.php:
|
279 |
msgid "Learn More"
|
280 |
msgstr ""
|
281 |
|
282 |
#: includes/admin/admin.php:340
|
283 |
-
#: languages/vue.php:
|
284 |
msgid "MonsterInsights, 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 MonsterInsights to see the stats that matter and grow their business."
|
285 |
msgstr ""
|
286 |
|
@@ -291,18 +291,18 @@ msgstr ""
|
|
291 |
|
292 |
#. Translators: Adds a link to the license renewal.
|
293 |
#: includes/admin/admin.php:363
|
294 |
-
#: languages/vue.php:
|
295 |
msgid "Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s"
|
296 |
msgstr ""
|
297 |
|
298 |
#: includes/admin/admin.php:365
|
299 |
-
#: languages/vue.php:
|
300 |
msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
|
301 |
msgstr ""
|
302 |
|
303 |
#: includes/admin/admin.php:367
|
304 |
#: includes/admin/api-auth.php:303
|
305 |
-
#: languages/vue.php:
|
306 |
msgid "Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
|
307 |
msgstr ""
|
308 |
|
@@ -499,7 +499,7 @@ msgid "View 2021 Year in Review report!"
|
|
499 |
msgstr ""
|
500 |
|
501 |
#: includes/admin/common.php:951
|
502 |
-
#: languages/vue.php:
|
503 |
msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
|
504 |
msgstr ""
|
505 |
|
@@ -520,7 +520,7 @@ msgstr ""
|
|
520 |
|
521 |
#: includes/admin/exclude-page-metabox.php:144
|
522 |
#: languages/gutenberg.php:179
|
523 |
-
#: languages/vue.php:
|
524 |
msgid "Upgrade"
|
525 |
msgstr ""
|
526 |
|
@@ -717,7 +717,7 @@ msgstr ""
|
|
717 |
#: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:25
|
718 |
#: includes/admin/notifications/notification-upgrade-for-events-reporting.php:25
|
719 |
#: includes/admin/notifications/notification-upgrade-for-post-templates.php:25
|
720 |
-
#: languages/vue.php:
|
721 |
#: lite/includes/admin/helpers.php:85
|
722 |
msgid "Upgrade to MonsterInsights Pro"
|
723 |
msgstr ""
|
@@ -753,7 +753,7 @@ msgstr ""
|
|
753 |
#: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
|
754 |
#: includes/admin/notifications/notification-upgrade-for-search-console.php:32
|
755 |
#: includes/admin/reports/abstract-report.php:455
|
756 |
-
#: languages/vue.php:
|
757 |
msgid "Upgrade Now"
|
758 |
msgstr ""
|
759 |
|
@@ -931,7 +931,7 @@ msgid "Please ask your webmaster to enable this addon."
|
|
931 |
msgstr ""
|
932 |
|
933 |
#: includes/admin/reports/overview.php:34
|
934 |
-
#: languages/vue.php:
|
935 |
msgid "Overview"
|
936 |
msgstr ""
|
937 |
|
@@ -1032,7 +1032,7 @@ msgid "ThirstyAffiliates is a revolution in affiliate link management. Collect,
|
|
1032 |
msgstr ""
|
1033 |
|
1034 |
#: includes/admin/routes.php:535
|
1035 |
-
#: languages/vue.php:
|
1036 |
msgid "Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required."
|
1037 |
msgstr ""
|
1038 |
|
@@ -1488,7 +1488,7 @@ msgid "Question"
|
|
1488 |
msgstr ""
|
1489 |
|
1490 |
#: includes/gutenberg/headline-tool/headline-tool.php:318
|
1491 |
-
#: languages/vue.php:
|
1492 |
msgid "General"
|
1493 |
msgstr ""
|
1494 |
|
@@ -4888,7 +4888,7 @@ msgid "Theme"
|
|
4888 |
msgstr ""
|
4889 |
|
4890 |
#: languages/gutenberg.php:77
|
4891 |
-
#: languages/vue.php:
|
4892 |
msgid "Inline Popular Posts"
|
4893 |
msgstr ""
|
4894 |
|
@@ -4925,7 +4925,7 @@ msgid "Comment Color"
|
|
4925 |
msgstr ""
|
4926 |
|
4927 |
#: languages/gutenberg.php:107
|
4928 |
-
#: languages/vue.php:
|
4929 |
msgid "Wide-Layout Options"
|
4930 |
msgstr ""
|
4931 |
|
@@ -4934,12 +4934,12 @@ msgid "Choose Layout"
|
|
4934 |
msgstr ""
|
4935 |
|
4936 |
#: languages/gutenberg.php:113
|
4937 |
-
#: languages/vue.php:
|
4938 |
msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
|
4939 |
msgstr ""
|
4940 |
|
4941 |
#: languages/gutenberg.php:116
|
4942 |
-
#: languages/vue.php:
|
4943 |
msgid "Post Count"
|
4944 |
msgstr ""
|
4945 |
|
@@ -4948,7 +4948,7 @@ msgid "Number of posts displayed."
|
|
4948 |
msgstr ""
|
4949 |
|
4950 |
#: languages/gutenberg.php:122
|
4951 |
-
#: languages/vue.php:
|
4952 |
msgid "Display Options"
|
4953 |
msgstr ""
|
4954 |
|
@@ -4961,7 +4961,7 @@ msgid "Display Widget Title"
|
|
4961 |
msgstr ""
|
4962 |
|
4963 |
#: languages/gutenberg.php:131
|
4964 |
-
#: languages/vue.php:
|
4965 |
msgid "Widget Title"
|
4966 |
msgstr ""
|
4967 |
|
@@ -4970,34 +4970,34 @@ msgid "Only Show Posts From These Categories"
|
|
4970 |
msgstr ""
|
4971 |
|
4972 |
#: languages/gutenberg.php:137
|
4973 |
-
#: languages/vue.php:
|
4974 |
msgid "Display Author"
|
4975 |
msgstr ""
|
4976 |
|
4977 |
#: languages/gutenberg.php:140
|
4978 |
-
#: languages/vue.php:
|
4979 |
msgid "Display Date"
|
4980 |
msgstr ""
|
4981 |
|
4982 |
#: languages/gutenberg.php:143
|
4983 |
-
#: languages/vue.php:
|
4984 |
msgid "Display Comments"
|
4985 |
msgstr ""
|
4986 |
|
4987 |
#: languages/gutenberg.php:146
|
4988 |
-
#: languages/vue.php:
|
4989 |
#: lite/includes/admin/metaboxes.php:47
|
4990 |
msgid "Last 30 days"
|
4991 |
msgstr ""
|
4992 |
|
4993 |
#: languages/gutenberg.php:149
|
4994 |
-
#: languages/vue.php:
|
4995 |
#: lite/includes/admin/metaboxes.php:51
|
4996 |
msgid "Yesterday"
|
4997 |
msgstr ""
|
4998 |
|
4999 |
#: languages/gutenberg.php:152
|
5000 |
-
#: languages/vue.php:
|
5001 |
#: lite/includes/admin/metaboxes.php:65
|
5002 |
#: lite/includes/admin/metaboxes.php:127
|
5003 |
msgid "Bounce Rate"
|
@@ -5258,7 +5258,7 @@ msgid "Goal: "
|
|
5258 |
msgstr ""
|
5259 |
|
5260 |
#: languages/gutenberg.php:354
|
5261 |
-
#: languages/vue.php:
|
5262 |
msgid "Headline Analyzer"
|
5263 |
msgstr ""
|
5264 |
|
@@ -5278,5201 +5278,5201 @@ msgstr ""
|
|
5278 |
msgid "2"
|
5279 |
msgstr ""
|
5280 |
|
5281 |
-
#: languages/vue.php:
|
5282 |
msgid "Error"
|
5283 |
msgstr ""
|
5284 |
|
5285 |
-
#: languages/vue.php:
|
5286 |
msgid "Please try again."
|
5287 |
msgstr ""
|
5288 |
|
5289 |
-
#: languages/vue.php:
|
5290 |
msgid "Today"
|
5291 |
msgstr ""
|
5292 |
|
5293 |
-
#: languages/vue.php:
|
5294 |
msgid "Last Week"
|
5295 |
msgstr ""
|
5296 |
|
5297 |
-
#: languages/vue.php:
|
5298 |
msgid "Last Month"
|
5299 |
msgstr ""
|
5300 |
|
5301 |
-
#: languages/vue.php:
|
5302 |
msgid "Last 7 days"
|
5303 |
msgstr ""
|
5304 |
|
5305 |
-
#: languages/vue.php:
|
5306 |
msgid "Loading settings"
|
5307 |
msgstr ""
|
5308 |
|
5309 |
-
#: languages/vue.php:
|
5310 |
msgid "Loading new report data"
|
5311 |
msgstr ""
|
5312 |
|
5313 |
-
#: languages/vue.php:
|
5314 |
msgid "Please wait..."
|
5315 |
msgstr ""
|
5316 |
|
5317 |
#. Translators: Adds an arrow icon.
|
5318 |
-
#: languages/vue.php:
|
5319 |
msgid "Continue %s"
|
5320 |
msgstr ""
|
5321 |
|
5322 |
-
#: languages/vue.php:
|
5323 |
msgid "Unlock the Publishers Report and Focus on the Content that Matters"
|
5324 |
msgstr ""
|
5325 |
|
5326 |
-
#: languages/vue.php:
|
5327 |
msgid "Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
|
5328 |
msgstr ""
|
5329 |
|
5330 |
-
#: languages/vue.php:
|
5331 |
msgid "Unlock the Publishers Report and Focus on the Content That Matters"
|
5332 |
msgstr ""
|
5333 |
|
5334 |
-
#: languages/vue.php:
|
5335 |
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."
|
5336 |
msgstr ""
|
5337 |
|
5338 |
-
#: languages/vue.php:
|
5339 |
msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
|
5340 |
msgstr ""
|
5341 |
|
5342 |
-
#: languages/vue.php:
|
5343 |
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."
|
5344 |
msgstr ""
|
5345 |
|
5346 |
-
#: languages/vue.php:
|
5347 |
msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
|
5348 |
msgstr ""
|
5349 |
|
5350 |
-
#: languages/vue.php:
|
5351 |
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."
|
5352 |
msgstr ""
|
5353 |
|
5354 |
-
#: languages/vue.php:
|
5355 |
msgid "Unlock the Forms Report and Improve Conversions"
|
5356 |
msgstr ""
|
5357 |
|
5358 |
-
#: languages/vue.php:
|
5359 |
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."
|
5360 |
msgstr ""
|
5361 |
|
5362 |
-
#: languages/vue.php:
|
5363 |
msgid "Unlock the Search Console Report and See How People Find Your Website"
|
5364 |
msgstr ""
|
5365 |
|
5366 |
-
#: languages/vue.php:
|
5367 |
msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
|
5368 |
msgstr ""
|
5369 |
|
5370 |
-
#: languages/vue.php:
|
5371 |
msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
|
5372 |
msgstr ""
|
5373 |
|
5374 |
-
#: languages/vue.php:
|
5375 |
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."
|
5376 |
msgstr ""
|
5377 |
|
5378 |
-
#: languages/vue.php:
|
5379 |
msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
|
5380 |
msgstr ""
|
5381 |
|
5382 |
-
#: languages/vue.php:
|
5383 |
msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
|
5384 |
msgstr ""
|
5385 |
|
5386 |
-
#: languages/vue.php:
|
5387 |
msgid "Loading Settings"
|
5388 |
msgstr ""
|
5389 |
|
5390 |
-
#: languages/vue.php:
|
5391 |
msgid "Saving Changes..."
|
5392 |
msgstr ""
|
5393 |
|
5394 |
-
#: languages/vue.php:
|
5395 |
msgid "Settings Updated"
|
5396 |
msgstr ""
|
5397 |
|
5398 |
#. Translators: Adds a link to the settings panel.
|
5399 |
-
#: languages/vue.php:
|
5400 |
msgid "You need to %1$sconnect MonsterInsights%2$s first"
|
5401 |
msgstr ""
|
5402 |
|
5403 |
-
#: languages/vue.php:
|
5404 |
msgid "Could Not Save Changes"
|
5405 |
msgstr ""
|
5406 |
|
5407 |
-
#: languages/vue.php:
|
5408 |
msgid "Refreshing Report"
|
5409 |
msgstr ""
|
5410 |
|
5411 |
-
#: languages/vue.php:
|
5412 |
msgid "Loading new report data..."
|
5413 |
msgstr ""
|
5414 |
|
5415 |
-
#: languages/vue.php:
|
5416 |
msgid "See Your Top Landing Pages to Improve Engagement"
|
5417 |
msgstr ""
|
5418 |
|
5419 |
-
#: languages/vue.php:
|
5420 |
msgid "See Your Top Exit Pages to Reduce Abandonment"
|
5421 |
msgstr ""
|
5422 |
|
5423 |
-
#: languages/vue.php:
|
5424 |
msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
|
5425 |
msgstr ""
|
5426 |
|
5427 |
-
#: languages/vue.php:
|
5428 |
msgid "See Your Top Affiliate Links and Focus on What's Working"
|
5429 |
msgstr ""
|
5430 |
|
5431 |
-
#: languages/vue.php:
|
5432 |
msgid "See Your Top Downloads and Improve Conversions"
|
5433 |
msgstr ""
|
5434 |
|
5435 |
-
#: languages/vue.php:
|
5436 |
msgid "See Audience Demographic Report ( Age / Gender / Interests )"
|
5437 |
msgstr ""
|
5438 |
|
5439 |
-
#: languages/vue.php:
|
5440 |
msgid "Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
|
5441 |
msgstr ""
|
5442 |
|
5443 |
-
#: languages/vue.php:
|
5444 |
msgid "See Your Conversion Rate to Improve Your Funnel"
|
5445 |
msgstr ""
|
5446 |
|
5447 |
-
#: languages/vue.php:
|
5448 |
msgid "See The Number of Transactions and Make Data-Driven Decisions"
|
5449 |
msgstr ""
|
5450 |
|
5451 |
-
#: languages/vue.php:
|
5452 |
msgid "See The Total Revenue to Track Growth"
|
5453 |
msgstr ""
|
5454 |
|
5455 |
-
#: languages/vue.php:
|
5456 |
msgid "See Average Order Value to Find Offer Opportunities"
|
5457 |
msgstr ""
|
5458 |
|
5459 |
-
#: languages/vue.php:
|
5460 |
msgid "See Your Top Products to See Individual Performance"
|
5461 |
msgstr ""
|
5462 |
|
5463 |
-
#: languages/vue.php:
|
5464 |
msgid "See Your Top Conversion Sources and Focus on What's Working"
|
5465 |
msgstr ""
|
5466 |
|
5467 |
-
#: languages/vue.php:
|
5468 |
msgid "See The Time it Takes for Customers to Purchase"
|
5469 |
msgstr ""
|
5470 |
|
5471 |
-
#: languages/vue.php:
|
5472 |
msgid "See How Many Sessions are Needed for a Purchase"
|
5473 |
msgstr ""
|
5474 |
|
5475 |
-
#: languages/vue.php:
|
5476 |
msgid "See Which Authors Generate the Most Traffic"
|
5477 |
msgstr ""
|
5478 |
|
5479 |
-
#: languages/vue.php:
|
5480 |
msgid "See Which Post Types Perform Better"
|
5481 |
msgstr ""
|
5482 |
|
5483 |
-
#: languages/vue.php:
|
5484 |
msgid "See Which Categories are the Most Popular"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
-
#: languages/vue.php:
|
5488 |
msgid "See Your Blog's Most Popular SEO Scores"
|
5489 |
msgstr ""
|
5490 |
|
5491 |
-
#: languages/vue.php:
|
5492 |
msgid "See Which Focus Keyword is Performing Better in Search Engines"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
-
#: languages/vue.php:
|
5496 |
msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
-
#: languages/vue.php:
|
5500 |
msgid "See Your Top Converting Forms and Optimize"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
-
#: languages/vue.php:
|
5504 |
msgid "See Your Forms Impressions Count to Find the Best Placement"
|
5505 |
msgstr ""
|
5506 |
|
5507 |
-
#: languages/vue.php:
|
5508 |
msgid "See Your Top Google Search Terms and Optimize Content"
|
5509 |
msgstr ""
|
5510 |
|
5511 |
-
#: languages/vue.php:
|
5512 |
msgid "See The Number of Clicks and Track Interests"
|
5513 |
msgstr ""
|
5514 |
|
5515 |
-
#: languages/vue.php:
|
5516 |
msgid "See The Click-Through-Ratio and Improve SEO"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
-
#: languages/vue.php:
|
5520 |
msgid "See The Average Results Position and Focus on what works"
|
5521 |
msgstr ""
|
5522 |
|
5523 |
-
#: languages/vue.php:
|
5524 |
msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
|
5525 |
msgstr ""
|
5526 |
|
5527 |
-
#: languages/vue.php:
|
5528 |
msgid "See Your Top Pages Immediately After Making Changes"
|
5529 |
msgstr ""
|
5530 |
|
5531 |
-
#: languages/vue.php:
|
5532 |
msgid "See Your Top Referral Sources and Adapt Faster"
|
5533 |
msgstr ""
|
5534 |
|
5535 |
-
#: languages/vue.php:
|
5536 |
msgid "See Your Traffic Demographics"
|
5537 |
msgstr ""
|
5538 |
|
5539 |
-
#: languages/vue.php:
|
5540 |
msgid "Get Fresh Report Data Every 60 Seconds"
|
5541 |
msgstr ""
|
5542 |
|
5543 |
-
#: languages/vue.php:
|
5544 |
msgid "See Your Homepage's Overall Performance Score"
|
5545 |
msgstr ""
|
5546 |
|
5547 |
-
#: languages/vue.php:
|
5548 |
msgid "Run an Audit on Your Homepage and See Your Server Response Time"
|
5549 |
msgstr ""
|
5550 |
|
5551 |
-
#: languages/vue.php:
|
5552 |
msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
|
5553 |
msgstr ""
|
5554 |
|
5555 |
-
#: languages/vue.php:
|
5556 |
msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
#. Translators: Number of visitors.
|
5560 |
-
#: languages/vue.php:
|
5561 |
msgid "See how %s visitors found your site!"
|
5562 |
msgstr ""
|
5563 |
|
5564 |
#. Translators: Number of visitors.
|
5565 |
-
#: languages/vue.php:
|
5566 |
msgid "Your website was visited by %s users in the last 30 days."
|
5567 |
msgstr ""
|
5568 |
|
5569 |
-
#: languages/vue.php:
|
5570 |
msgid "See the full analytics report!"
|
5571 |
msgstr ""
|
5572 |
|
5573 |
-
#: languages/vue.php:
|
5574 |
msgid "Congratulations! "
|
5575 |
msgstr ""
|
5576 |
|
5577 |
-
#: languages/vue.php:
|
5578 |
msgid "You Successfully Unlocked the most powerful Analytics plugin"
|
5579 |
msgstr ""
|
5580 |
|
5581 |
-
#: languages/vue.php:
|
5582 |
msgid "Overview Report"
|
5583 |
msgstr ""
|
5584 |
|
5585 |
-
#: languages/vue.php:
|
5586 |
#: lite/includes/admin/welcome.php:56
|
5587 |
#: lite/includes/admin/welcome.php:57
|
5588 |
msgid "Welcome to MonsterInsights"
|
5589 |
msgstr ""
|
5590 |
|
5591 |
-
#: languages/vue.php:
|
5592 |
msgid "Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin"
|
5593 |
msgstr ""
|
5594 |
|
5595 |
-
#: languages/vue.php:
|
5596 |
msgid "MonsterInsights 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."
|
5597 |
msgstr ""
|
5598 |
|
5599 |
-
#: languages/vue.php:
|
5600 |
msgid "Launch the Wizard!"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
-
#: languages/vue.php:
|
5604 |
msgid "Read the Full Guide"
|
5605 |
msgstr ""
|
5606 |
|
5607 |
-
#: languages/vue.php:
|
5608 |
msgid "MonsterInsights Features & Addons"
|
5609 |
msgstr ""
|
5610 |
|
5611 |
-
#: languages/vue.php:
|
5612 |
msgid "Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market."
|
5613 |
msgstr ""
|
5614 |
|
5615 |
-
#: languages/vue.php:
|
5616 |
msgid "See All Features"
|
5617 |
msgstr ""
|
5618 |
|
5619 |
-
#: languages/vue.php:
|
5620 |
msgid "Upgrade to PRO"
|
5621 |
msgstr ""
|
5622 |
|
5623 |
-
#: languages/vue.php:
|
5624 |
msgid "per year"
|
5625 |
msgstr ""
|
5626 |
|
5627 |
-
#: languages/vue.php:
|
5628 |
msgid "Testimonials"
|
5629 |
msgstr ""
|
5630 |
|
5631 |
-
#: languages/vue.php:
|
5632 |
msgid "Universal Tracking"
|
5633 |
msgstr ""
|
5634 |
|
5635 |
-
#: languages/vue.php:
|
5636 |
msgid "Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
|
5637 |
msgstr ""
|
5638 |
|
5639 |
-
#: languages/vue.php:
|
5640 |
msgid "Google Analytics Dashboard"
|
5641 |
msgstr ""
|
5642 |
|
5643 |
-
#: languages/vue.php:
|
5644 |
msgid "See your website analytics report right inside your WordPress dashboard with actionable insights."
|
5645 |
msgstr ""
|
5646 |
|
5647 |
-
#: languages/vue.php:
|
5648 |
msgid "Real-time Stats"
|
5649 |
msgstr ""
|
5650 |
|
5651 |
-
#: languages/vue.php:
|
5652 |
msgid "Get real-time stats right inside WordPress to see who is online, what are they doing, and more."
|
5653 |
msgstr ""
|
5654 |
|
5655 |
-
#: languages/vue.php:
|
5656 |
msgid "Enhanced Ecommerce Tracking"
|
5657 |
msgstr ""
|
5658 |
|
5659 |
-
#: languages/vue.php:
|
5660 |
msgid "1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress."
|
5661 |
msgstr ""
|
5662 |
|
5663 |
-
#: languages/vue.php:
|
5664 |
msgid "Page Level Analytics"
|
5665 |
msgstr ""
|
5666 |
|
5667 |
-
#: languages/vue.php:
|
5668 |
msgid "Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
|
5669 |
msgstr ""
|
5670 |
|
5671 |
-
#: languages/vue.php:
|
5672 |
msgid "Affiliate Link & Ads Tracking"
|
5673 |
msgstr ""
|
5674 |
|
5675 |
-
#: languages/vue.php:
|
5676 |
msgid "Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
|
5677 |
msgstr ""
|
5678 |
|
5679 |
-
#: languages/vue.php:
|
5680 |
msgid "EU Compliance (GDPR Friendly)"
|
5681 |
msgstr ""
|
5682 |
|
5683 |
-
#: languages/vue.php:
|
5684 |
msgid "Make Google Analytics compliant with GDPR and other privacy regulations automatically."
|
5685 |
msgstr ""
|
5686 |
|
5687 |
-
#: languages/vue.php:
|
5688 |
msgid "Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click."
|
5689 |
msgstr ""
|
5690 |
|
5691 |
-
#: languages/vue.php:
|
5692 |
msgid "Ecommerce Report"
|
5693 |
msgstr ""
|
5694 |
|
5695 |
-
#: languages/vue.php:
|
5696 |
msgid "Form Conversions"
|
5697 |
msgstr ""
|
5698 |
|
5699 |
-
#: languages/vue.php:
|
5700 |
msgid "Custom Dimensions"
|
5701 |
msgstr ""
|
5702 |
|
5703 |
-
#: languages/vue.php:
|
5704 |
msgid "Author Tracking"
|
5705 |
msgstr ""
|
5706 |
|
5707 |
-
#: languages/vue.php:
|
5708 |
msgid "Google Optimize"
|
5709 |
msgstr ""
|
5710 |
|
5711 |
-
#: languages/vue.php:
|
5712 |
msgid "Category / Tags Tracking"
|
5713 |
msgstr ""
|
5714 |
|
5715 |
-
#: languages/vue.php:
|
5716 |
msgid "WooCommerce"
|
5717 |
msgstr ""
|
5718 |
|
5719 |
-
#: languages/vue.php:
|
5720 |
msgid "Easy Digital Downloads"
|
5721 |
msgstr ""
|
5722 |
|
5723 |
-
#: languages/vue.php:
|
5724 |
msgid "MemberPress"
|
5725 |
msgstr ""
|
5726 |
|
5727 |
-
#: languages/vue.php:
|
5728 |
msgid "LifterLMS"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
#. Translators: Current PHP version and recommended PHP version.
|
5732 |
-
#: languages/vue.php:
|
5733 |
msgid "MonsterInsights 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."
|
5734 |
msgstr ""
|
5735 |
|
5736 |
#. Translators: Current WordPress version.
|
5737 |
-
#: languages/vue.php:
|
5738 |
msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights 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."
|
5739 |
msgstr ""
|
5740 |
|
5741 |
-
#: languages/vue.php:
|
5742 |
msgid "Yikes! PHP Update Required"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
#. Translators: Current PHP version and recommended PHP version.
|
5746 |
-
#: languages/vue.php:
|
5747 |
msgid "MonsterInsights 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."
|
5748 |
msgstr ""
|
5749 |
|
5750 |
-
#: languages/vue.php:
|
5751 |
msgid "Learn more about updating PHP"
|
5752 |
msgstr ""
|
5753 |
|
5754 |
-
#: languages/vue.php:
|
5755 |
msgid "Yikes! WordPress Update Required"
|
5756 |
msgstr ""
|
5757 |
|
5758 |
#. Translators: Current WordPress version.
|
5759 |
-
#: languages/vue.php:
|
5760 |
msgid "MonsterInsights 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."
|
5761 |
msgstr ""
|
5762 |
|
5763 |
-
#: languages/vue.php:
|
5764 |
msgid "Learn more about updating WordPress"
|
5765 |
msgstr ""
|
5766 |
|
5767 |
-
#: languages/vue.php:
|
5768 |
msgid "MonsterInsights encountered an error loading your report data"
|
5769 |
msgstr ""
|
5770 |
|
5771 |
-
#: languages/vue.php:
|
5772 |
msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
|
5773 |
msgstr ""
|
5774 |
|
5775 |
-
#: languages/vue.php:
|
5776 |
msgid "Reconnect MonsterInsights"
|
5777 |
msgstr ""
|
5778 |
|
5779 |
-
#: languages/vue.php:
|
5780 |
msgid "Re-Authenticating"
|
5781 |
msgstr ""
|
5782 |
|
5783 |
-
#: languages/vue.php:
|
5784 |
msgid "Ok"
|
5785 |
msgstr ""
|
5786 |
|
5787 |
-
#: languages/vue.php:
|
5788 |
msgid "See Quick Links"
|
5789 |
msgstr ""
|
5790 |
|
5791 |
-
#: languages/vue.php:
|
5792 |
msgid "Suggest a Feature"
|
5793 |
msgstr ""
|
5794 |
|
5795 |
-
#: languages/vue.php:
|
5796 |
msgid "Join Our Community"
|
5797 |
msgstr ""
|
5798 |
|
5799 |
-
#: languages/vue.php:
|
5800 |
msgid "Support & Docs"
|
5801 |
msgstr ""
|
5802 |
|
5803 |
-
#: languages/vue.php:
|
5804 |
msgid "Upgrade to Pro »"
|
5805 |
msgstr ""
|
5806 |
|
5807 |
#. Translators: Placeholder is replaced with WPForms.
|
5808 |
-
#: languages/vue.php:
|
5809 |
msgid "Recommended Plugin: %s"
|
5810 |
msgstr ""
|
5811 |
|
5812 |
-
#: languages/vue.php:
|
5813 |
msgid "Install"
|
5814 |
msgstr ""
|
5815 |
|
5816 |
-
#: languages/vue.php:
|
5817 |
msgid "Activate"
|
5818 |
msgstr ""
|
5819 |
|
5820 |
-
#: languages/vue.php:
|
5821 |
msgid "Powered by MonsterInsights"
|
5822 |
msgstr ""
|
5823 |
|
5824 |
-
#: languages/vue.php:
|
5825 |
#: lite/includes/admin/wp-site-health.php:256
|
5826 |
msgid "View Reports"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
-
#: languages/vue.php:
|
5830 |
msgid "Congratulations!"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
#. Translators: Add link to YouTube video and Onboarding Wizard.
|
5834 |
-
#: languages/vue.php:
|
5835 |
msgid "MonsterInsights makes it easy to connect your website with Google Analytics and see all important website stats right inside your WordPress dashboard. In order to setup website analytics, please take a look at our %1$sGetting started video%2$s or use our %3$s to get you quickly set up."
|
5836 |
msgstr ""
|
5837 |
|
5838 |
#. Translators: Add link to YouTube video and Onboarding Wizard.
|
5839 |
-
#: languages/vue.php:
|
5840 |
msgid "Onboarding Wizard"
|
5841 |
msgstr ""
|
5842 |
|
5843 |
-
#: languages/vue.php:
|
5844 |
msgid "You are now connected with MonsterInsights. We make it effortless for you to implement Google Analytics tracking and see the stats that matter, right inside the WordPress dashboard."
|
5845 |
msgstr ""
|
5846 |
|
5847 |
-
#: languages/vue.php:
|
5848 |
msgid "Save Changes"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
-
#: languages/vue.php:
|
5852 |
msgid "Inbox"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
-
#: languages/vue.php:
|
5856 |
msgid "Back to Inbox"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
-
#: languages/vue.php:
|
5860 |
msgid "View Dismissed"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
-
#: languages/vue.php:
|
5864 |
msgid "Notifications"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
-
#: languages/vue.php:
|
5868 |
msgid "Dismiss All"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
-
#: languages/vue.php:
|
5872 |
msgid "Dismissed"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
-
#: languages/vue.php:
|
5876 |
msgid "No Notifications"
|
5877 |
msgstr ""
|
5878 |
|
5879 |
-
#: languages/vue.php:
|
5880 |
msgid "Import Export"
|
5881 |
msgstr ""
|
5882 |
|
5883 |
-
#: languages/vue.php:
|
5884 |
msgid "PrettyLinks Integration"
|
5885 |
msgstr ""
|
5886 |
|
5887 |
-
#: languages/vue.php:
|
5888 |
msgid "Getting Started"
|
5889 |
msgstr ""
|
5890 |
|
5891 |
-
#: languages/vue.php:
|
5892 |
msgid "Lite vs Pro"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
-
#: languages/vue.php:
|
5896 |
msgid "Popular Posts Widget"
|
5897 |
msgstr ""
|
5898 |
|
5899 |
-
#: languages/vue.php:
|
5900 |
msgid "Popular Products"
|
5901 |
msgstr ""
|
5902 |
|
5903 |
-
#: languages/vue.php:
|
5904 |
msgid "Sub menu item for WooCommerce Analytics"
|
5905 |
msgstr ""
|
5906 |
|
5907 |
-
#: languages/vue.php:
|
5908 |
msgid "Engagement"
|
5909 |
msgstr ""
|
5910 |
|
5911 |
-
#: languages/vue.php:
|
5912 |
#: lite/includes/admin/reports/report-ecommerce.php:22
|
5913 |
msgid "eCommerce"
|
5914 |
msgstr ""
|
5915 |
|
5916 |
-
#: languages/vue.php:
|
5917 |
msgid "Publisher"
|
5918 |
msgstr ""
|
5919 |
|
5920 |
-
#: languages/vue.php:
|
5921 |
msgid "Conversions"
|
5922 |
msgstr ""
|
5923 |
|
5924 |
-
#: languages/vue.php:
|
5925 |
msgid "Advanced"
|
5926 |
msgstr ""
|
5927 |
|
5928 |
-
#: languages/vue.php:
|
5929 |
msgid "URL Builder"
|
5930 |
msgstr ""
|
5931 |
|
5932 |
-
#: languages/vue.php:
|
5933 |
msgid "MonsterInsights Addons"
|
5934 |
msgstr ""
|
5935 |
|
5936 |
-
#: languages/vue.php:
|
5937 |
msgid "Search Addons"
|
5938 |
msgstr ""
|
5939 |
|
5940 |
-
#: languages/vue.php:
|
5941 |
msgid "Exit Setup"
|
5942 |
msgstr ""
|
5943 |
|
5944 |
-
#: languages/vue.php:
|
5945 |
msgid "You must connect with MonsterInsights before you can view reports."
|
5946 |
msgstr ""
|
5947 |
|
5948 |
-
#: languages/vue.php:
|
5949 |
msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
|
5950 |
msgstr ""
|
5951 |
|
5952 |
-
#: languages/vue.php:
|
5953 |
msgid "Launch Setup Wizard"
|
5954 |
msgstr ""
|
5955 |
|
5956 |
-
#: languages/vue.php:
|
5957 |
msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
|
5958 |
msgstr ""
|
5959 |
|
5960 |
-
#: languages/vue.php:
|
5961 |
#: lite/includes/admin/reports/report-publisher.php:22
|
5962 |
msgid "Publishers"
|
5963 |
msgstr ""
|
5964 |
|
5965 |
-
#: languages/vue.php:
|
5966 |
#: lite/includes/admin/reports/report-queries.php:22
|
5967 |
msgid "Search Console"
|
5968 |
msgstr ""
|
5969 |
|
5970 |
-
#: languages/vue.php:
|
5971 |
#: lite/includes/admin/reports/report-dimensions.php:22
|
5972 |
msgid "Dimensions"
|
5973 |
msgstr ""
|
5974 |
|
5975 |
-
#: languages/vue.php:
|
5976 |
#: lite/includes/admin/reports/report-forms.php:22
|
5977 |
msgid "Forms"
|
5978 |
msgstr ""
|
5979 |
|
5980 |
-
#: languages/vue.php:
|
5981 |
msgid "Real-Time"
|
5982 |
msgstr ""
|
5983 |
|
5984 |
-
#: languages/vue.php:
|
5985 |
msgid "Site Speed"
|
5986 |
msgstr ""
|
5987 |
|
5988 |
-
#: languages/vue.php:
|
5989 |
msgid "2020 Year in Review"
|
5990 |
msgstr ""
|
5991 |
|
5992 |
#. Translators: Error status and error text.
|
5993 |
-
#: languages/vue.php:
|
5994 |
msgid "Can't load report data. Error: %1$s, %2$s"
|
5995 |
msgstr ""
|
5996 |
|
5997 |
-
#: languages/vue.php:
|
5998 |
msgid "Error loading report data"
|
5999 |
msgstr ""
|
6000 |
|
6001 |
-
#: languages/vue.php:
|
6002 |
msgid "Publishers Report"
|
6003 |
msgstr ""
|
6004 |
|
6005 |
-
#: languages/vue.php:
|
6006 |
msgid "eCommerce Report"
|
6007 |
msgstr ""
|
6008 |
|
6009 |
-
#: languages/vue.php:
|
6010 |
msgid "Search Console Report"
|
6011 |
msgstr ""
|
6012 |
|
6013 |
-
#: languages/vue.php:
|
6014 |
msgid "Dimensions Report"
|
6015 |
msgstr ""
|
6016 |
|
6017 |
-
#: languages/vue.php:
|
6018 |
msgid "Forms Report"
|
6019 |
msgstr ""
|
6020 |
|
6021 |
-
#: languages/vue.php:
|
6022 |
msgid "Real-Time Report"
|
6023 |
msgstr ""
|
6024 |
|
6025 |
-
#: languages/vue.php:
|
6026 |
msgid "Site Speed Report"
|
6027 |
msgstr ""
|
6028 |
|
6029 |
-
#: languages/vue.php:
|
6030 |
msgid "Time to Purchase"
|
6031 |
msgstr ""
|
6032 |
|
6033 |
-
#: languages/vue.php:
|
6034 |
msgid "This list shows how many days from first visit it took users to purchase products from your site."
|
6035 |
msgstr ""
|
6036 |
|
6037 |
-
#: languages/vue.php:
|
6038 |
msgid "Sessions to Purchase"
|
6039 |
msgstr ""
|
6040 |
|
6041 |
-
#: languages/vue.php:
|
6042 |
msgid "This list shows the number of sessions it took users before they purchased a product from your website."
|
6043 |
msgstr ""
|
6044 |
|
6045 |
-
#: languages/vue.php:
|
6046 |
msgid "New Customers"
|
6047 |
msgstr ""
|
6048 |
|
6049 |
-
#: languages/vue.php:
|
6050 |
msgid "This list shows the percentage of new customers who purchased a product from your website."
|
6051 |
msgstr ""
|
6052 |
|
6053 |
-
#: languages/vue.php:
|
6054 |
msgid "Abandoned Checkouts"
|
6055 |
msgstr ""
|
6056 |
|
6057 |
-
#: languages/vue.php:
|
6058 |
msgid "This list shows the percentage of carts that never went through the checkout process."
|
6059 |
msgstr ""
|
6060 |
|
6061 |
-
#: languages/vue.php:
|
6062 |
msgid "Top Posts/Pages"
|
6063 |
msgstr ""
|
6064 |
|
6065 |
-
#: languages/vue.php:
|
6066 |
msgid "This list shows the most viewed posts and pages on your website."
|
6067 |
msgstr ""
|
6068 |
|
6069 |
-
#: languages/vue.php:
|
6070 |
msgid "New vs. Returning Visitors"
|
6071 |
msgstr ""
|
6072 |
|
6073 |
-
#: languages/vue.php:
|
6074 |
msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
|
6075 |
msgstr ""
|
6076 |
|
6077 |
-
#: languages/vue.php:
|
6078 |
msgid "Device Breakdown"
|
6079 |
msgstr ""
|
6080 |
|
6081 |
-
#: languages/vue.php:
|
6082 |
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."
|
6083 |
msgstr ""
|
6084 |
|
6085 |
-
#: languages/vue.php:
|
6086 |
msgid "Top Landing Pages"
|
6087 |
msgstr ""
|
6088 |
|
6089 |
-
#: languages/vue.php:
|
6090 |
msgid "This list shows the top pages users first land on when visiting your website."
|
6091 |
msgstr ""
|
6092 |
|
6093 |
-
#: languages/vue.php:
|
6094 |
msgid "Top Exit Pages"
|
6095 |
msgstr ""
|
6096 |
|
6097 |
-
#: languages/vue.php:
|
6098 |
msgid "This list shows the top pages users exit your website from."
|
6099 |
msgstr ""
|
6100 |
|
6101 |
-
#: languages/vue.php:
|
6102 |
msgid "Top Outbound Links"
|
6103 |
msgstr ""
|
6104 |
|
6105 |
-
#: languages/vue.php:
|
6106 |
msgid "This list shows the top links clicked on your website that go to another website."
|
6107 |
msgstr ""
|
6108 |
|
6109 |
-
#: languages/vue.php:
|
6110 |
msgid "Top Affiliate Links"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
-
#: languages/vue.php:
|
6114 |
msgid "This list shows the top affiliate links your visitors clicked on."
|
6115 |
msgstr ""
|
6116 |
|
6117 |
-
#: languages/vue.php:
|
6118 |
msgid "Top Download Links"
|
6119 |
msgstr ""
|
6120 |
|
6121 |
-
#: languages/vue.php:
|
6122 |
msgid "This list shows the download links your visitors clicked the most."
|
6123 |
msgstr ""
|
6124 |
|
6125 |
-
#: languages/vue.php:
|
6126 |
msgid "Top Products"
|
6127 |
msgstr ""
|
6128 |
|
6129 |
-
#: languages/vue.php:
|
6130 |
msgid "This list shows the top selling products on your website."
|
6131 |
msgstr ""
|
6132 |
|
6133 |
-
#: languages/vue.php:
|
6134 |
msgid "Top Conversion Sources"
|
6135 |
msgstr ""
|
6136 |
|
6137 |
-
#: languages/vue.php:
|
6138 |
msgid "This list shows the top referral websites in terms of product revenue."
|
6139 |
msgstr ""
|
6140 |
|
6141 |
-
#: languages/vue.php:
|
6142 |
msgid "Total Add/Remove"
|
6143 |
msgstr ""
|
6144 |
|
6145 |
#. Translators: Adds a link to documentation.
|
6146 |
-
#: languages/vue.php:
|
6147 |
msgid "In order for the MonsterInsights Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s"
|
6148 |
msgstr ""
|
6149 |
|
6150 |
#. Translators: Adds link to activate/install plugin and documentation.
|
6151 |
-
#: languages/vue.php:
|
6152 |
msgid "In order for the MonsterInsights 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"
|
6153 |
msgstr ""
|
6154 |
|
6155 |
#. Translators: Adds a link to documentation.
|
6156 |
-
#: languages/vue.php:
|
6157 |
msgid "In order for the MonsterInsights 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"
|
6158 |
msgstr ""
|
6159 |
|
6160 |
#. Translators: Adds link to activate/install plugin and documentation.
|
6161 |
-
#: languages/vue.php:
|
6162 |
msgid "In order for the MonsterInsights 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"
|
6163 |
msgstr ""
|
6164 |
|
6165 |
-
#: languages/vue.php:
|
6166 |
msgid "GDPR Guide"
|
6167 |
msgstr ""
|
6168 |
|
6169 |
-
#: languages/vue.php:
|
6170 |
msgid "Compliance with European data laws including GDPR can be confusing and time-consuming. In order to help MonsterInsights users comply with these laws, we’ve created an addon that automates a lot of the necessary configuration changes for you. "
|
6171 |
msgstr ""
|
6172 |
|
6173 |
-
#: languages/vue.php:
|
6174 |
msgid "How to Install and Activate MonsterInsights Addons"
|
6175 |
msgstr ""
|
6176 |
|
6177 |
-
#: languages/vue.php:
|
6178 |
msgid "The process for installing and activating addons is quick and easy after you install the MonsterInsights plugin. In this guide we’ll walk you through the process, step by step."
|
6179 |
msgstr ""
|
6180 |
|
6181 |
-
#: languages/vue.php:
|
6182 |
msgid "Enabling eCommerce Tracking and Reports"
|
6183 |
msgstr ""
|
6184 |
|
6185 |
-
#: languages/vue.php:
|
6186 |
msgid "Want to track your eCommerce sales data for your WooCommerce, MemberPress, or Easy Digital Downloads store with MonsterInsights? In this guide, we’ll show you how to enable eCommerce tracking in Google Analytics in just a few clicks."
|
6187 |
msgstr ""
|
6188 |
|
6189 |
-
#: languages/vue.php:
|
6190 |
msgid "Read Documentation"
|
6191 |
msgstr ""
|
6192 |
|
6193 |
-
#: languages/vue.php:
|
6194 |
msgid "Getting Started with MonsterInsights"
|
6195 |
msgstr ""
|
6196 |
|
6197 |
-
#: languages/vue.php:
|
6198 |
msgid "MonsterInsights 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."
|
6199 |
msgstr ""
|
6200 |
|
6201 |
-
#: languages/vue.php:
|
6202 |
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."
|
6203 |
msgstr ""
|
6204 |
|
6205 |
-
#: languages/vue.php:
|
6206 |
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!."
|
6207 |
msgstr ""
|
6208 |
|
6209 |
-
#: languages/vue.php:
|
6210 |
msgid "Launch the wizard!"
|
6211 |
msgstr ""
|
6212 |
|
6213 |
-
#: languages/vue.php:
|
6214 |
msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
|
6215 |
msgstr ""
|
6216 |
|
6217 |
#. Translators: Makes text bold.
|
6218 |
-
#: languages/vue.php:
|
6219 |
msgid "Thanks for being a loyal MonsterInsights Lite user. %1$sUpgrade to MonsterInsights Pro%2$s to unlock all the awesome features and experience why MonsterInsights is consistently rated the best Google Analytics solution for WordPress."
|
6220 |
msgstr ""
|
6221 |
|
6222 |
-
#: languages/vue.php:
|
6223 |
msgid "Universal Tracking across devices and campaigns with just a few clicks."
|
6224 |
msgstr ""
|
6225 |
|
6226 |
-
#: languages/vue.php:
|
6227 |
msgid "See your website analytics reports inside the WordPress dashboard"
|
6228 |
msgstr ""
|
6229 |
|
6230 |
-
#: languages/vue.php:
|
6231 |
msgid "Get real-time stats right inside WordPress"
|
6232 |
msgstr ""
|
6233 |
|
6234 |
-
#: languages/vue.php:
|
6235 |
msgid "1-click Google Analytics Enhanced eCommerce tracking"
|
6236 |
msgstr ""
|
6237 |
|
6238 |
-
#: languages/vue.php:
|
6239 |
msgid "Get detailed stats for each post and page."
|
6240 |
msgstr ""
|
6241 |
|
6242 |
-
#: languages/vue.php:
|
6243 |
msgid "Automatically track clicks on your affiliate links and ads."
|
6244 |
msgstr ""
|
6245 |
|
6246 |
-
#: languages/vue.php:
|
6247 |
msgid "Make Google Analytics GDPR compliant automatically"
|
6248 |
msgstr ""
|
6249 |
|
6250 |
-
#: languages/vue.php:
|
6251 |
msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
|
6252 |
msgstr ""
|
6253 |
|
6254 |
-
#: languages/vue.php:
|
6255 |
msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
|
6256 |
msgstr ""
|
6257 |
|
6258 |
-
#: languages/vue.php:
|
6259 |
msgid "More advanced features"
|
6260 |
msgstr ""
|
6261 |
|
6262 |
-
#: languages/vue.php:
|
6263 |
msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
|
6264 |
msgstr ""
|
6265 |
|
6266 |
#. Translators: Makes text green.
|
6267 |
-
#: languages/vue.php:
|
6268 |
msgid "Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
|
6269 |
msgstr ""
|
6270 |
|
6271 |
-
#: languages/vue.php:
|
6272 |
msgid "How to Connect to Google Analytics"
|
6273 |
msgstr ""
|
6274 |
|
6275 |
-
#: languages/vue.php:
|
6276 |
msgid "After you install MonsterInsights, you’ll need to connect your WordPress site with your Google Analytics account. MonsterInsights makes the process easy, with no coding required."
|
6277 |
msgstr ""
|
6278 |
|
6279 |
-
#: languages/vue.php:
|
6280 |
msgid "Guide and Checklist for Advanced Insights"
|
6281 |
msgstr ""
|
6282 |
|
6283 |
-
#: languages/vue.php:
|
6284 |
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 MonsterInsights’ advanced tracking."
|
6285 |
msgstr ""
|
6286 |
|
6287 |
-
#: languages/vue.php:
|
6288 |
msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
|
6289 |
msgstr ""
|
6290 |
|
6291 |
-
#: languages/vue.php:
|
6292 |
msgid "WordPress Admin Area Reports"
|
6293 |
msgstr ""
|
6294 |
|
6295 |
-
#: languages/vue.php:
|
6296 |
msgid "Standard Reports"
|
6297 |
msgstr ""
|
6298 |
|
6299 |
-
#: languages/vue.php:
|
6300 |
msgid "Overview Reports for the last 30 days."
|
6301 |
msgstr ""
|
6302 |
|
6303 |
-
#: languages/vue.php:
|
6304 |
msgid "Advanced Reports"
|
6305 |
msgstr ""
|
6306 |
|
6307 |
-
#: languages/vue.php:
|
6308 |
msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
|
6309 |
msgstr ""
|
6310 |
|
6311 |
-
#: languages/vue.php:
|
6312 |
msgid "Dashboard Widget"
|
6313 |
msgstr ""
|
6314 |
|
6315 |
-
#: languages/vue.php:
|
6316 |
msgid "Basic Widget"
|
6317 |
msgstr ""
|
6318 |
|
6319 |
-
#: languages/vue.php:
|
6320 |
msgid "Overview Report Synopsis"
|
6321 |
msgstr ""
|
6322 |
|
6323 |
-
#: languages/vue.php:
|
6324 |
msgid "Advanced Dashboard Widget"
|
6325 |
msgstr ""
|
6326 |
|
6327 |
-
#: languages/vue.php:
|
6328 |
msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
|
6329 |
msgstr ""
|
6330 |
|
6331 |
-
#: languages/vue.php:
|
6332 |
msgid "Email Summaries"
|
6333 |
msgstr ""
|
6334 |
|
6335 |
-
#: languages/vue.php:
|
6336 |
msgid "Included"
|
6337 |
msgstr ""
|
6338 |
|
6339 |
-
#: languages/vue.php:
|
6340 |
msgid "Get weekly traffic reports directly in your inbox."
|
6341 |
msgstr ""
|
6342 |
|
6343 |
-
#: languages/vue.php:
|
6344 |
msgid "Publisher Reports"
|
6345 |
msgstr ""
|
6346 |
|
6347 |
-
#: languages/vue.php:
|
6348 |
msgid "Advanced Publisher Reports & Tracking"
|
6349 |
msgstr ""
|
6350 |
|
6351 |
-
#: languages/vue.php:
|
6352 |
msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
|
6353 |
msgstr ""
|
6354 |
|
6355 |
-
#: languages/vue.php:
|
6356 |
msgid "Basic Options"
|
6357 |
msgstr ""
|
6358 |
|
6359 |
-
#: languages/vue.php:
|
6360 |
msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
|
6361 |
msgstr ""
|
6362 |
|
6363 |
-
#: languages/vue.php:
|
6364 |
msgid "Dynamic Popular Posts & Popular Products"
|
6365 |
msgstr ""
|
6366 |
|
6367 |
-
#: languages/vue.php:
|
6368 |
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."
|
6369 |
msgstr ""
|
6370 |
|
6371 |
-
#: languages/vue.php:
|
6372 |
msgid "Not Available"
|
6373 |
msgstr ""
|
6374 |
|
6375 |
-
#: languages/vue.php:
|
6376 |
msgid "Complete Custom Dimensions Tracking"
|
6377 |
msgstr ""
|
6378 |
|
6379 |
-
#: languages/vue.php:
|
6380 |
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"
|
6381 |
msgstr ""
|
6382 |
|
6383 |
-
#: languages/vue.php:
|
6384 |
msgid "Limited Support"
|
6385 |
msgstr ""
|
6386 |
|
6387 |
-
#: languages/vue.php:
|
6388 |
msgid "Priority Support"
|
6389 |
msgstr ""
|
6390 |
|
6391 |
-
#: languages/vue.php:
|
6392 |
msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
|
6393 |
msgstr ""
|
6394 |
|
6395 |
-
#: languages/vue.php:
|
6396 |
msgid "Feature"
|
6397 |
msgstr ""
|
6398 |
|
6399 |
-
#: languages/vue.php:
|
6400 |
msgid "Lite"
|
6401 |
msgstr ""
|
6402 |
|
6403 |
-
#: languages/vue.php:
|
6404 |
msgid "Pro"
|
6405 |
msgstr ""
|
6406 |
|
6407 |
-
#: languages/vue.php:
|
6408 |
msgid "Custom Google Analytics Link Tracking"
|
6409 |
msgstr ""
|
6410 |
|
6411 |
-
#: languages/vue.php:
|
6412 |
msgid "Standard Tracking"
|
6413 |
msgstr ""
|
6414 |
|
6415 |
-
#: languages/vue.php:
|
6416 |
msgid "Advanced Tracking"
|
6417 |
msgstr ""
|
6418 |
|
6419 |
-
#: languages/vue.php:
|
6420 |
msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
|
6421 |
msgstr ""
|
6422 |
|
6423 |
-
#: languages/vue.php:
|
6424 |
msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
|
6425 |
msgstr ""
|
6426 |
|
6427 |
-
#: languages/vue.php:
|
6428 |
msgid "No-Code-Needed Tracking Features"
|
6429 |
msgstr ""
|
6430 |
|
6431 |
-
#: languages/vue.php:
|
6432 |
msgid "Basic Tracking Options"
|
6433 |
msgstr ""
|
6434 |
|
6435 |
-
#: languages/vue.php:
|
6436 |
msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
|
6437 |
msgstr ""
|
6438 |
|
6439 |
-
#: languages/vue.php:
|
6440 |
msgid "Advanced Tracking Options"
|
6441 |
msgstr ""
|
6442 |
|
6443 |
-
#: languages/vue.php:
|
6444 |
msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
|
6445 |
msgstr ""
|
6446 |
|
6447 |
-
#: languages/vue.php:
|
6448 |
msgid "eCommerce Tracking"
|
6449 |
msgstr ""
|
6450 |
|
6451 |
-
#: languages/vue.php:
|
6452 |
msgid "One-click Complete eCommerce tracking"
|
6453 |
msgstr ""
|
6454 |
|
6455 |
-
#: languages/vue.php:
|
6456 |
msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
|
6457 |
msgstr ""
|
6458 |
|
6459 |
-
#: languages/vue.php:
|
6460 |
msgid "Forms Tracking"
|
6461 |
msgstr ""
|
6462 |
|
6463 |
-
#: languages/vue.php:
|
6464 |
msgid "One-click Form Events Tracking"
|
6465 |
msgstr ""
|
6466 |
|
6467 |
-
#: languages/vue.php:
|
6468 |
msgid "License Key"
|
6469 |
msgstr ""
|
6470 |
|
6471 |
#. Translators: Add link to retrieve license key from account.
|
6472 |
-
#: languages/vue.php:
|
6473 |
msgid "Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
|
6474 |
msgstr ""
|
6475 |
|
6476 |
-
#: languages/vue.php:
|
6477 |
msgid "Google Authentication"
|
6478 |
msgstr ""
|
6479 |
|
6480 |
-
#: languages/vue.php:
|
6481 |
msgid "Connect Google Analytics + WordPress"
|
6482 |
msgstr ""
|
6483 |
|
6484 |
-
#: languages/vue.php:
|
6485 |
msgid "You will be taken to the MonsterInsights website where you'll need to connect your Analytics account."
|
6486 |
msgstr ""
|
6487 |
|
6488 |
-
#: languages/vue.php:
|
6489 |
msgid "Miscellaneous"
|
6490 |
msgstr ""
|
6491 |
|
6492 |
-
#: languages/vue.php:
|
6493 |
msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
|
6494 |
msgstr ""
|
6495 |
|
6496 |
-
#: languages/vue.php:
|
6497 |
msgid "Hide Announcements"
|
6498 |
msgstr ""
|
6499 |
|
6500 |
-
#: languages/vue.php:
|
6501 |
msgid "Setup Wizard"
|
6502 |
msgstr ""
|
6503 |
|
6504 |
-
#: languages/vue.php:
|
6505 |
msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
|
6506 |
msgstr ""
|
6507 |
|
6508 |
-
#: languages/vue.php:
|
6509 |
msgid "Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
|
6510 |
msgstr ""
|
6511 |
|
6512 |
-
#: languages/vue.php:
|
6513 |
msgid "Over the years, we found that in order to get the most out of Google Analytics, you needed a full time developer who could implement custom tracking, so that Google Analytics would integrate with things like WooCommerce, and track things which Google doesn't by default, like outbound links."
|
6514 |
msgstr ""
|
6515 |
|
6516 |
-
#: languages/vue.php:
|
6517 |
msgid "Our goal is to take the pain out of analytics, making it simple and easy, by eliminating the need to have to worry about code, putting the best reports directly into the area you already go to (your WordPress dashboard), and adding the most advanced insights and features without complicating our plugin with tons of settings. Quite simply, it should \"just work\"."
|
6518 |
msgstr ""
|
6519 |
|
6520 |
-
#: languages/vue.php:
|
6521 |
msgid "MonsterInsights is brought to you by the same team that's behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, and the best WordPress forms plugin, WPForms."
|
6522 |
msgstr ""
|
6523 |
|
6524 |
-
#: languages/vue.php:
|
6525 |
msgid "Yup, we know a thing or two about building awesome products that customers love."
|
6526 |
msgstr ""
|
6527 |
|
6528 |
-
#: languages/vue.php:
|
6529 |
msgid "The MonsterInsights Team"
|
6530 |
msgstr ""
|
6531 |
|
6532 |
-
#: languages/vue.php:
|
6533 |
msgid "Make your MonsterInsights campaign links prettier with Pretty Links!"
|
6534 |
msgstr ""
|
6535 |
|
6536 |
-
#: languages/vue.php:
|
6537 |
msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
|
6538 |
msgstr ""
|
6539 |
|
6540 |
-
#: languages/vue.php:
|
6541 |
msgid "Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!"
|
6542 |
msgstr ""
|
6543 |
|
6544 |
-
#: languages/vue.php:
|
6545 |
msgid "Over 200,000 websites use Pretty Links!"
|
6546 |
msgstr ""
|
6547 |
|
6548 |
-
#: languages/vue.php:
|
6549 |
msgid "Install Pretty Links"
|
6550 |
msgstr ""
|
6551 |
|
6552 |
-
#: languages/vue.php:
|
6553 |
msgid "Pretty Links Installed & Activated"
|
6554 |
msgstr ""
|
6555 |
|
6556 |
-
#: languages/vue.php:
|
6557 |
msgid "Download Pretty Links"
|
6558 |
msgstr ""
|
6559 |
|
6560 |
-
#: languages/vue.php:
|
6561 |
msgid "Install Pretty Links from the WordPress.org plugin repository."
|
6562 |
msgstr ""
|
6563 |
|
6564 |
-
#: languages/vue.php:
|
6565 |
msgid "Activate Pretty Links"
|
6566 |
msgstr ""
|
6567 |
|
6568 |
-
#: languages/vue.php:
|
6569 |
msgid "Activating Pretty Links..."
|
6570 |
msgstr ""
|
6571 |
|
6572 |
-
#: languages/vue.php:
|
6573 |
msgid "Create New Pretty Link"
|
6574 |
msgstr ""
|
6575 |
|
6576 |
-
#: languages/vue.php:
|
6577 |
msgid "Create a New Pretty Link"
|
6578 |
msgstr ""
|
6579 |
|
6580 |
-
#: languages/vue.php:
|
6581 |
msgid "Grab your campaign link and paste it into the Target URL field."
|
6582 |
msgstr ""
|
6583 |
|
6584 |
-
#: languages/vue.php:
|
6585 |
msgid "Custom Campaign Parameters"
|
6586 |
msgstr ""
|
6587 |
|
6588 |
-
#: languages/vue.php:
|
6589 |
msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
|
6590 |
msgstr ""
|
6591 |
|
6592 |
-
#: languages/vue.php:
|
6593 |
msgid "A custom campaign is any ad campaign not using the AdWords auto-tagging feature. When users click one of the custom links, the unique parameters are sent to your Analytics account, so you can identify the URLs that are the most effective in attracting users to your content."
|
6594 |
msgstr ""
|
6595 |
|
6596 |
#. Translators: Marks the field as required.
|
6597 |
-
#: languages/vue.php:
|
6598 |
msgid "Website URL %s"
|
6599 |
msgstr ""
|
6600 |
|
6601 |
#. Translators: Display the current website url in italic.
|
6602 |
-
#: languages/vue.php:
|
6603 |
msgid "The full website URL (e.g. %1$s %2$s%3$s)"
|
6604 |
msgstr ""
|
6605 |
|
6606 |
#. Translators: Marks the field as required.
|
6607 |
-
#: languages/vue.php:
|
6608 |
msgid "Campaign Source %s"
|
6609 |
msgstr ""
|
6610 |
|
6611 |
#. Translators: Make the text italic.
|
6612 |
-
#: languages/vue.php:
|
6613 |
msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
|
6614 |
msgstr ""
|
6615 |
|
6616 |
#. Translators: Make the text italic.
|
6617 |
-
#: languages/vue.php:
|
6618 |
msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
|
6619 |
msgstr ""
|
6620 |
|
6621 |
#. Translators: Make the text italic.
|
6622 |
-
#: languages/vue.php:
|
6623 |
msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
-
#: languages/vue.php:
|
6627 |
msgid "Enter the paid keyword"
|
6628 |
msgstr ""
|
6629 |
|
6630 |
-
#: languages/vue.php:
|
6631 |
msgid "Enter something to differentiate ads"
|
6632 |
msgstr ""
|
6633 |
|
6634 |
-
#: languages/vue.php:
|
6635 |
msgid "Use Fragment"
|
6636 |
msgstr ""
|
6637 |
|
6638 |
#. Translators: Make the text bold.
|
6639 |
-
#: languages/vue.php:
|
6640 |
msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
|
6641 |
msgstr ""
|
6642 |
|
6643 |
-
#: languages/vue.php:
|
6644 |
msgid "URL to use"
|
6645 |
msgstr ""
|
6646 |
|
6647 |
-
#: languages/vue.php:
|
6648 |
msgid "(Updates automatically)"
|
6649 |
msgstr ""
|
6650 |
|
6651 |
-
#: languages/vue.php:
|
6652 |
msgid "Copy to Clipboard"
|
6653 |
msgstr ""
|
6654 |
|
6655 |
-
#: languages/vue.php:
|
6656 |
msgid "Copy to Pretty Links"
|
6657 |
msgstr ""
|
6658 |
|
6659 |
-
#: languages/vue.php:
|
6660 |
msgid "Make your campaign links prettier!"
|
6661 |
msgstr ""
|
6662 |
|
6663 |
-
#: languages/vue.php:
|
6664 |
msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
|
6665 |
msgstr ""
|
6666 |
|
6667 |
-
#: languages/vue.php:
|
6668 |
msgid "More Information & Examples"
|
6669 |
msgstr ""
|
6670 |
|
6671 |
-
#: languages/vue.php:
|
6672 |
msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
|
6673 |
msgstr ""
|
6674 |
|
6675 |
-
#: languages/vue.php:
|
6676 |
msgid "Campaign Source"
|
6677 |
msgstr ""
|
6678 |
|
6679 |
-
#: languages/vue.php:
|
6680 |
msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
|
6681 |
msgstr ""
|
6682 |
|
6683 |
-
#: languages/vue.php:
|
6684 |
msgid "Campaign Medium"
|
6685 |
msgstr ""
|
6686 |
|
6687 |
-
#: languages/vue.php:
|
6688 |
msgid "Use utm_medium to identify a medium such as email or cost-per-click."
|
6689 |
msgstr ""
|
6690 |
|
6691 |
-
#: languages/vue.php:
|
6692 |
msgid "Campaign Name"
|
6693 |
msgstr ""
|
6694 |
|
6695 |
-
#: languages/vue.php:
|
6696 |
msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
|
6697 |
msgstr ""
|
6698 |
|
6699 |
-
#: languages/vue.php:
|
6700 |
msgid "Campaign Term"
|
6701 |
msgstr ""
|
6702 |
|
6703 |
-
#: languages/vue.php:
|
6704 |
msgid "Used for paid search. Use utm_term to note the keywords for this ad."
|
6705 |
msgstr ""
|
6706 |
|
6707 |
-
#: languages/vue.php:
|
6708 |
msgid "Campaign Content"
|
6709 |
msgstr ""
|
6710 |
|
6711 |
-
#: languages/vue.php:
|
6712 |
msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
|
6713 |
msgstr ""
|
6714 |
|
6715 |
#. Translators: Example.
|
6716 |
-
#: languages/vue.php:
|
6717 |
msgid "Example: %s"
|
6718 |
msgstr ""
|
6719 |
|
6720 |
#. Translators: Examples.
|
6721 |
-
#: languages/vue.php:
|
6722 |
msgid "Examples: %s"
|
6723 |
msgstr ""
|
6724 |
|
6725 |
-
#: languages/vue.php:
|
6726 |
msgid "About Campaigns"
|
6727 |
msgstr ""
|
6728 |
|
6729 |
-
#: languages/vue.php:
|
6730 |
msgid "About Custom Campaigns"
|
6731 |
msgstr ""
|
6732 |
|
6733 |
-
#: languages/vue.php:
|
6734 |
msgid "Best Practices for Creating Custom Campaigns"
|
6735 |
msgstr ""
|
6736 |
|
6737 |
-
#: languages/vue.php:
|
6738 |
msgid "About the Referral Traffic Report"
|
6739 |
msgstr ""
|
6740 |
|
6741 |
-
#: languages/vue.php:
|
6742 |
msgid "About Traffic Source Dimensions"
|
6743 |
msgstr ""
|
6744 |
|
6745 |
-
#: languages/vue.php:
|
6746 |
msgid "AdWords Auto-Tagging"
|
6747 |
msgstr ""
|
6748 |
|
6749 |
-
#: languages/vue.php:
|
6750 |
msgid "Additional Information"
|
6751 |
msgstr ""
|
6752 |
|
6753 |
-
#: languages/vue.php:
|
6754 |
msgid "Import/Export"
|
6755 |
msgstr ""
|
6756 |
|
6757 |
-
#: languages/vue.php:
|
6758 |
msgid "Import"
|
6759 |
msgstr ""
|
6760 |
|
6761 |
-
#: languages/vue.php:
|
6762 |
msgid "Import settings from another MonsterInsights website."
|
6763 |
msgstr ""
|
6764 |
|
6765 |
-
#: languages/vue.php:
|
6766 |
msgid "Export"
|
6767 |
msgstr ""
|
6768 |
|
6769 |
-
#: languages/vue.php:
|
6770 |
msgid "Export settings to import into another MonsterInsights install."
|
6771 |
msgstr ""
|
6772 |
|
6773 |
-
#: languages/vue.php:
|
6774 |
msgid "Import Settings"
|
6775 |
msgstr ""
|
6776 |
|
6777 |
-
#: languages/vue.php:
|
6778 |
msgid "Export Settings"
|
6779 |
msgstr ""
|
6780 |
|
6781 |
-
#: languages/vue.php:
|
6782 |
msgid "Please choose a file to import"
|
6783 |
msgstr ""
|
6784 |
|
6785 |
-
#: languages/vue.php:
|
6786 |
msgid "Click Choose file below to select the settings export file from another site."
|
6787 |
msgstr ""
|
6788 |
|
6789 |
-
#: languages/vue.php:
|
6790 |
msgid "Use the button below to export a file with your MonsterInsights settings."
|
6791 |
msgstr ""
|
6792 |
|
6793 |
-
#: languages/vue.php:
|
6794 |
msgid "Uploading file..."
|
6795 |
msgstr ""
|
6796 |
|
6797 |
-
#: languages/vue.php:
|
6798 |
msgid "File imported"
|
6799 |
msgstr ""
|
6800 |
|
6801 |
-
#: languages/vue.php:
|
6802 |
msgid "Settings successfully updated!"
|
6803 |
msgstr ""
|
6804 |
|
6805 |
-
#: languages/vue.php:
|
6806 |
msgid "Error importing settings"
|
6807 |
msgstr ""
|
6808 |
|
6809 |
-
#: languages/vue.php:
|
6810 |
msgid "Please choose a .json file generated by a MonsterInsights settings export."
|
6811 |
msgstr ""
|
6812 |
|
6813 |
-
#: languages/vue.php:
|
6814 |
msgid "MonsterInsights Recommends WPForms"
|
6815 |
msgstr ""
|
6816 |
|
6817 |
-
#: languages/vue.php:
|
6818 |
msgid "Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market."
|
6819 |
msgstr ""
|
6820 |
|
6821 |
-
#: languages/vue.php:
|
6822 |
msgid "Used on over 4,000,000 websites!"
|
6823 |
msgstr ""
|
6824 |
|
6825 |
-
#: languages/vue.php:
|
6826 |
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!"
|
6827 |
msgstr ""
|
6828 |
|
6829 |
-
#: languages/vue.php:
|
6830 |
msgid "Skip this Step"
|
6831 |
msgstr ""
|
6832 |
|
6833 |
-
#: languages/vue.php:
|
6834 |
msgid "Continue & Install WPForms"
|
6835 |
msgstr ""
|
6836 |
|
6837 |
-
#: languages/vue.php:
|
6838 |
msgid "Installing..."
|
6839 |
msgstr ""
|
6840 |
|
6841 |
-
#: languages/vue.php:
|
6842 |
msgid "Show in widget mode"
|
6843 |
msgstr ""
|
6844 |
|
6845 |
-
#: languages/vue.php:
|
6846 |
msgid "Show in full-width mode"
|
6847 |
msgstr ""
|
6848 |
|
6849 |
-
#: languages/vue.php:
|
6850 |
msgid "Installing Addon"
|
6851 |
msgstr ""
|
6852 |
|
6853 |
-
#: languages/vue.php:
|
6854 |
msgid "Activating Addon"
|
6855 |
msgstr ""
|
6856 |
|
6857 |
-
#: languages/vue.php:
|
6858 |
msgid "Addon Activated"
|
6859 |
msgstr ""
|
6860 |
|
6861 |
-
#: languages/vue.php:
|
6862 |
msgid "Loading report data"
|
6863 |
msgstr ""
|
6864 |
|
6865 |
-
#: languages/vue.php:
|
6866 |
msgid "Please activate manually"
|
6867 |
msgstr ""
|
6868 |
|
6869 |
#. Translators: Adds the error status and status text.
|
6870 |
-
#: languages/vue.php:
|
6871 |
msgid "Error: %1$s, %2$s"
|
6872 |
msgstr ""
|
6873 |
|
6874 |
-
#: languages/vue.php:
|
6875 |
msgid "Error Activating Addon"
|
6876 |
msgstr ""
|
6877 |
|
6878 |
-
#: languages/vue.php:
|
6879 |
#: lite/includes/admin/wp-site-health.php:375
|
6880 |
#: lite/includes/admin/wp-site-health.php:401
|
6881 |
#: lite/includes/admin/wp-site-health.php:428
|
6882 |
msgid "View Addons"
|
6883 |
msgstr ""
|
6884 |
|
6885 |
-
#: languages/vue.php:
|
6886 |
msgid "Dismiss"
|
6887 |
msgstr ""
|
6888 |
|
6889 |
-
#: languages/vue.php:
|
6890 |
msgid "Redirecting"
|
6891 |
msgstr ""
|
6892 |
|
6893 |
-
#: languages/vue.php:
|
6894 |
msgid "Please wait"
|
6895 |
msgstr ""
|
6896 |
|
6897 |
-
#: languages/vue.php:
|
6898 |
msgid "activate"
|
6899 |
msgstr ""
|
6900 |
|
6901 |
-
#: languages/vue.php:
|
6902 |
msgid "install"
|
6903 |
msgstr ""
|
6904 |
|
6905 |
-
#: languages/vue.php:
|
6906 |
msgid "Visit addons page"
|
6907 |
msgstr ""
|
6908 |
|
6909 |
-
#: languages/vue.php:
|
6910 |
msgid "Report Unavailable"
|
6911 |
msgstr ""
|
6912 |
|
6913 |
#. Translators: Install/Activate the addon.
|
6914 |
-
#: languages/vue.php:
|
6915 |
msgid "%s Addon"
|
6916 |
msgstr ""
|
6917 |
|
6918 |
-
#: languages/vue.php:
|
6919 |
msgid "Go Back To Reports"
|
6920 |
msgstr ""
|
6921 |
|
6922 |
-
#: languages/vue.php:
|
6923 |
msgid "Enable Enhanced eCommerce"
|
6924 |
msgstr ""
|
6925 |
|
6926 |
#. Translators: Placeholders are used for making text bold and adding a link.
|
6927 |
-
#: languages/vue.php:
|
6928 |
msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
|
6929 |
msgstr ""
|
6930 |
|
6931 |
-
#: languages/vue.php:
|
6932 |
msgid "Last 30 Days Insights for:"
|
6933 |
msgstr ""
|
6934 |
|
6935 |
-
#: languages/vue.php:
|
6936 |
msgid "Your Website"
|
6937 |
msgstr ""
|
6938 |
|
6939 |
-
#: languages/vue.php:
|
6940 |
msgid "Sessions"
|
6941 |
msgstr ""
|
6942 |
|
6943 |
-
#: languages/vue.php:
|
6944 |
msgid "Pageviews"
|
6945 |
msgstr ""
|
6946 |
|
6947 |
-
#: languages/vue.php:
|
6948 |
msgid "Avg. Duration"
|
6949 |
msgstr ""
|
6950 |
|
6951 |
-
#: languages/vue.php:
|
6952 |
msgid "Total Users"
|
6953 |
msgstr ""
|
6954 |
|
6955 |
-
#: languages/vue.php:
|
6956 |
msgid "More data is available"
|
6957 |
msgstr ""
|
6958 |
|
6959 |
-
#: languages/vue.php:
|
6960 |
msgid "Want to see page-specific stats?"
|
6961 |
msgstr ""
|
6962 |
|
6963 |
-
#: languages/vue.php:
|
6964 |
msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
|
6965 |
msgstr ""
|
6966 |
|
6967 |
-
#: languages/vue.php:
|
6968 |
msgid "No addons found."
|
6969 |
msgstr ""
|
6970 |
|
6971 |
-
#: languages/vue.php:
|
6972 |
msgid "Refresh Addons"
|
6973 |
msgstr ""
|
6974 |
|
6975 |
-
#: languages/vue.php:
|
6976 |
msgid "Refreshing Addons"
|
6977 |
msgstr ""
|
6978 |
|
6979 |
#. Translators: Make text green.
|
6980 |
-
#: languages/vue.php:
|
6981 |
msgid "Upgrade to Pro to unlock addons and other great features. As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
|
6982 |
msgstr ""
|
6983 |
|
6984 |
-
#: languages/vue.php:
|
6985 |
msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
|
6986 |
msgstr ""
|
6987 |
|
6988 |
-
#: languages/vue.php:
|
6989 |
msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
|
6990 |
msgstr ""
|
6991 |
|
6992 |
-
#: languages/vue.php:
|
6993 |
msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
|
6994 |
msgstr ""
|
6995 |
|
6996 |
-
#: languages/vue.php:
|
6997 |
msgid "See All Your Important Store Metrics in One Place"
|
6998 |
msgstr ""
|
6999 |
|
7000 |
-
#: languages/vue.php:
|
7001 |
msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
|
7002 |
msgstr ""
|
7003 |
|
7004 |
-
#: languages/vue.php:
|
7005 |
msgid "ONE-CLICK INTEGRATIONS"
|
7006 |
msgstr ""
|
7007 |
|
7008 |
-
#: languages/vue.php:
|
7009 |
msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
|
7010 |
msgstr ""
|
7011 |
|
7012 |
-
#: languages/vue.php:
|
7013 |
msgid "MonsterInsights Ecommerce Addon makes it easy to setup enhanced eCommerce tracking, so you can see all your important eCommerce metrics like total revenue, conversion rate, average order value, top products, top referral sources, and more in a single report right inside your WordPress dashboard."
|
7014 |
msgstr ""
|
7015 |
|
7016 |
-
#: languages/vue.php:
|
7017 |
msgid "Affiliate Tracking"
|
7018 |
msgstr ""
|
7019 |
|
7020 |
-
#: languages/vue.php:
|
7021 |
msgid "Automatically Track Affiliate Sales"
|
7022 |
msgstr ""
|
7023 |
|
7024 |
-
#: languages/vue.php:
|
7025 |
msgid "The MonsterInsights eCommerce addon works with EasyAffiliate to automatically attribute orders originating from an EasyAffiliate link in Google Analytics. Gain valuable insights into your top affiliates with no coding required."
|
7026 |
msgstr ""
|
7027 |
|
7028 |
-
#: languages/vue.php:
|
7029 |
msgid "Works with WooCommerce, MemberPress and Easy Digital Downloads."
|
7030 |
msgstr ""
|
7031 |
|
7032 |
-
#: languages/vue.php:
|
7033 |
msgid "Cart Funnel"
|
7034 |
msgstr ""
|
7035 |
|
7036 |
-
#: languages/vue.php:
|
7037 |
msgid "Customer Insights"
|
7038 |
msgstr ""
|
7039 |
|
7040 |
-
#: languages/vue.php:
|
7041 |
msgid "Campaign Measurement"
|
7042 |
msgstr ""
|
7043 |
|
7044 |
-
#: languages/vue.php:
|
7045 |
msgid "Customer Profiles"
|
7046 |
msgstr ""
|
7047 |
|
7048 |
-
#: languages/vue.php:
|
7049 |
msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
|
7050 |
msgstr ""
|
7051 |
|
7052 |
-
#: languages/vue.php:
|
7053 |
msgid "Truly Understand Your%1$s Customers With %2$sMonsterInsights%3$s"
|
7054 |
msgstr ""
|
7055 |
|
7056 |
-
#: languages/vue.php:
|
7057 |
msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from MonsterInsights!"
|
7058 |
msgstr ""
|
7059 |
|
7060 |
-
#: languages/vue.php:
|
7061 |
msgid "Track all-new metrics!"
|
7062 |
msgstr ""
|
7063 |
|
7064 |
-
#: languages/vue.php:
|
7065 |
msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
|
7066 |
msgstr ""
|
7067 |
|
7068 |
-
#: languages/vue.php:
|
7069 |
msgid "FEATURES"
|
7070 |
msgstr ""
|
7071 |
|
7072 |
-
#: languages/vue.php:
|
7073 |
msgid "Get The Unique Metrics Neccessary for Growth"
|
7074 |
msgstr ""
|
7075 |
|
7076 |
-
#: languages/vue.php:
|
7077 |
msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
|
7078 |
msgstr ""
|
7079 |
|
7080 |
-
#: languages/vue.php:
|
7081 |
msgid "Get Answers to the important questions %1$syou should know."
|
7082 |
msgstr ""
|
7083 |
|
7084 |
-
#: languages/vue.php:
|
7085 |
msgid "Did the login/registration step of the checkout put users off?"
|
7086 |
msgstr ""
|
7087 |
|
7088 |
-
#: languages/vue.php:
|
7089 |
msgid "Which ad campaign is driving the most revenue?"
|
7090 |
msgstr ""
|
7091 |
|
7092 |
-
#: languages/vue.php:
|
7093 |
msgid "Who is my typical customer?"
|
7094 |
msgstr ""
|
7095 |
|
7096 |
-
#: languages/vue.php:
|
7097 |
msgid "Level-up Your eCommerce store with %1$sMonsterInsights + WooCommerce!%1$s"
|
7098 |
msgstr ""
|
7099 |
|
7100 |
#. Translators: placeholders make text small.
|
7101 |
-
#: languages/vue.php:
|
7102 |
msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
|
7103 |
msgstr ""
|
7104 |
|
7105 |
#. Translators: placeholders make text small.
|
7106 |
-
#: languages/vue.php:
|
7107 |
msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
|
7108 |
msgstr ""
|
7109 |
|
7110 |
#. Translators: placeholders make text small.
|
7111 |
-
#: languages/vue.php:
|
7112 |
msgid "None %1$s- Manually update everything.%2$s"
|
7113 |
msgstr ""
|
7114 |
|
7115 |
-
#: languages/vue.php:
|
7116 |
msgid "Automatic Updates"
|
7117 |
msgstr ""
|
7118 |
|
7119 |
-
#: languages/vue.php:
|
7120 |
msgid "Awesome, You're All Set!"
|
7121 |
msgstr ""
|
7122 |
|
7123 |
-
#: languages/vue.php:
|
7124 |
msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
|
7125 |
msgstr ""
|
7126 |
|
7127 |
#. Translators: Make text bold.
|
7128 |
-
#: languages/vue.php:
|
7129 |
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."
|
7130 |
msgstr ""
|
7131 |
|
7132 |
#. Translators: Link to our blog.
|
7133 |
-
#: languages/vue.php:
|
7134 |
msgid "%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business."
|
7135 |
msgstr ""
|
7136 |
|
7137 |
-
#: languages/vue.php:
|
7138 |
msgid "Finish Setup & Exit Wizard"
|
7139 |
msgstr ""
|
7140 |
|
7141 |
-
#: languages/vue.php:
|
7142 |
msgid "Checking your website..."
|
7143 |
msgstr ""
|
7144 |
|
7145 |
-
#: languages/vue.php:
|
7146 |
msgid "See All Reports"
|
7147 |
msgstr ""
|
7148 |
|
7149 |
-
#: languages/vue.php:
|
7150 |
msgid "Go to the Analytics Dashboard"
|
7151 |
msgstr ""
|
7152 |
|
7153 |
-
#. Translators:
|
7154 |
-
#: languages/vue.php:
|
7155 |
msgid "Unique %s Sessions"
|
7156 |
msgstr ""
|
7157 |
|
7158 |
-
#. Translators:
|
7159 |
-
#: languages/vue.php:
|
7160 |
msgid "Unique %s Pageviews"
|
7161 |
msgstr ""
|
7162 |
|
7163 |
-
#: languages/vue.php:
|
7164 |
msgid "A session is the browsing session of a single user to your site."
|
7165 |
msgstr ""
|
7166 |
|
7167 |
-
#: languages/vue.php:
|
7168 |
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."
|
7169 |
msgstr ""
|
7170 |
|
7171 |
-
#: languages/vue.php:
|
7172 |
msgid "Total duration of all sessions (in seconds) / number of sessions."
|
7173 |
msgstr ""
|
7174 |
|
7175 |
-
#: languages/vue.php:
|
7176 |
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."
|
7177 |
msgstr ""
|
7178 |
|
7179 |
-
#: languages/vue.php:
|
7180 |
msgid "The number of distinct tracked users"
|
7181 |
msgstr ""
|
7182 |
|
7183 |
-
#: languages/vue.php:
|
7184 |
msgid "Avg. Session Duration"
|
7185 |
msgstr ""
|
7186 |
|
7187 |
-
#: languages/vue.php:
|
7188 |
msgid "Still Calculating..."
|
7189 |
msgstr ""
|
7190 |
|
7191 |
-
#: languages/vue.php:
|
7192 |
msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
|
7193 |
msgstr ""
|
7194 |
|
7195 |
-
#: languages/vue.php:
|
7196 |
msgid "Back to Overview Report"
|
7197 |
msgstr ""
|
7198 |
|
7199 |
-
#: languages/vue.php:
|
7200 |
msgid "Your 2020 Analytics Report"
|
7201 |
msgstr ""
|
7202 |
|
7203 |
-
#: languages/vue.php:
|
7204 |
msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
|
7205 |
msgstr ""
|
7206 |
|
7207 |
-
#: languages/vue.php:
|
7208 |
msgid "Audience"
|
7209 |
msgstr ""
|
7210 |
|
7211 |
-
#: languages/vue.php:
|
7212 |
msgid "Congrats"
|
7213 |
msgstr ""
|
7214 |
|
7215 |
-
#: languages/vue.php:
|
7216 |
msgid "Your website was quite popular this year! "
|
7217 |
msgstr ""
|
7218 |
|
7219 |
-
#: languages/vue.php:
|
7220 |
msgid "You had "
|
7221 |
msgstr ""
|
7222 |
|
7223 |
-
#: languages/vue.php:
|
7224 |
msgid " visitors!"
|
7225 |
msgstr ""
|
7226 |
|
7227 |
-
#: languages/vue.php:
|
7228 |
msgid " visitors"
|
7229 |
msgstr ""
|
7230 |
|
7231 |
-
#: languages/vue.php:
|
7232 |
msgid "Total Visitors"
|
7233 |
msgstr ""
|
7234 |
|
7235 |
-
#: languages/vue.php:
|
7236 |
msgid "Total Sessions"
|
7237 |
msgstr ""
|
7238 |
|
7239 |
-
#: languages/vue.php:
|
7240 |
msgid "Visitors by Month"
|
7241 |
msgstr ""
|
7242 |
|
7243 |
-
#: languages/vue.php:
|
7244 |
msgid "January 1, 2020 - December 31, 2020"
|
7245 |
msgstr ""
|
7246 |
|
7247 |
-
#: languages/vue.php:
|
7248 |
msgid "A Tip for 2021"
|
7249 |
msgstr ""
|
7250 |
|
7251 |
-
#: languages/vue.php:
|
7252 |
msgid "Demographics"
|
7253 |
msgstr ""
|
7254 |
|
7255 |
-
#: languages/vue.php:
|
7256 |
msgid "#1"
|
7257 |
msgstr ""
|
7258 |
|
7259 |
-
#: languages/vue.php:
|
7260 |
msgid "You Top 5 Countries"
|
7261 |
msgstr ""
|
7262 |
|
7263 |
-
#: languages/vue.php:
|
7264 |
msgid "Let’s get to know your visitors a little better, shall we?"
|
7265 |
msgstr ""
|
7266 |
|
7267 |
-
#: languages/vue.php:
|
7268 |
msgid "Gender"
|
7269 |
msgstr ""
|
7270 |
|
7271 |
-
#: languages/vue.php:
|
7272 |
msgid "Female"
|
7273 |
msgstr ""
|
7274 |
|
7275 |
-
#: languages/vue.php:
|
7276 |
msgid "Women"
|
7277 |
msgstr ""
|
7278 |
|
7279 |
-
#: languages/vue.php:
|
7280 |
msgid "Male"
|
7281 |
msgstr ""
|
7282 |
|
7283 |
-
#: languages/vue.php:
|
7284 |
msgid "Average Age"
|
7285 |
msgstr ""
|
7286 |
|
7287 |
-
#: languages/vue.php:
|
7288 |
msgid "Behavior"
|
7289 |
msgstr ""
|
7290 |
|
7291 |
-
#: languages/vue.php:
|
7292 |
msgid "Your Top 5 Pages"
|
7293 |
msgstr ""
|
7294 |
|
7295 |
-
#: languages/vue.php:
|
7296 |
msgid "Time Spent on Site"
|
7297 |
msgstr ""
|
7298 |
|
7299 |
-
#: languages/vue.php:
|
7300 |
msgid "minutes"
|
7301 |
msgstr ""
|
7302 |
|
7303 |
-
#: languages/vue.php:
|
7304 |
msgid "Device Type"
|
7305 |
msgstr ""
|
7306 |
|
7307 |
-
#: languages/vue.php:
|
7308 |
msgid "A Tip For 2021"
|
7309 |
msgstr ""
|
7310 |
|
7311 |
-
#: languages/vue.php:
|
7312 |
msgid "Take advantage of what you’ve already built. See how to get more traffic from existing content in our 32 Marketing Hacks to Grow Your Traffic."
|
7313 |
msgstr ""
|
7314 |
|
7315 |
-
#: languages/vue.php:
|
7316 |
msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
|
7317 |
msgstr ""
|
7318 |
|
7319 |
-
#: languages/vue.php:
|
7320 |
msgid "So, where did all of these visitors come from?"
|
7321 |
msgstr ""
|
7322 |
|
7323 |
-
#: languages/vue.php:
|
7324 |
msgid "Clicks"
|
7325 |
msgstr ""
|
7326 |
|
7327 |
-
#: languages/vue.php:
|
7328 |
msgid "Your Top 5 Keywords"
|
7329 |
msgstr ""
|
7330 |
|
7331 |
-
#: languages/vue.php:
|
7332 |
msgid "What keywords visitors searched for to find your site"
|
7333 |
msgstr ""
|
7334 |
|
7335 |
-
#: languages/vue.php:
|
7336 |
msgid "Your Top 5 Referrals"
|
7337 |
msgstr ""
|
7338 |
|
7339 |
-
#: languages/vue.php:
|
7340 |
msgid "The websites that link back to your website"
|
7341 |
msgstr ""
|
7342 |
|
7343 |
-
#: languages/vue.php:
|
7344 |
msgid "Opportunity"
|
7345 |
msgstr ""
|
7346 |
|
7347 |
-
#: languages/vue.php:
|
7348 |
msgid "Use referral sources to create new partnerships or expand existing ones. See our guide on how to spy on your competitors and ethically steal their traffic."
|
7349 |
msgstr ""
|
7350 |
|
7351 |
-
#: languages/vue.php:
|
7352 |
msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
|
7353 |
msgstr ""
|
7354 |
|
7355 |
-
#: languages/vue.php:
|
7356 |
msgid "Thank you for using MonsterInsights!"
|
7357 |
msgstr ""
|
7358 |
|
7359 |
-
#: languages/vue.php:
|
7360 |
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."
|
7361 |
msgstr ""
|
7362 |
|
7363 |
-
#: languages/vue.php:
|
7364 |
msgid "Here's to an amazing 2021!"
|
7365 |
msgstr ""
|
7366 |
|
7367 |
-
#: languages/vue.php:
|
7368 |
msgid "Enjoying MonsterInsights"
|
7369 |
msgstr ""
|
7370 |
|
7371 |
-
#: languages/vue.php:
|
7372 |
msgid "Leave a five star review!"
|
7373 |
msgstr ""
|
7374 |
|
7375 |
-
#: languages/vue.php:
|
7376 |
msgid "Syed Balkhi"
|
7377 |
msgstr ""
|
7378 |
|
7379 |
-
#: languages/vue.php:
|
7380 |
msgid "Chris Christoff"
|
7381 |
msgstr ""
|
7382 |
|
7383 |
-
#: languages/vue.php:
|
7384 |
msgid "Write Review"
|
7385 |
msgstr ""
|
7386 |
|
7387 |
-
#: languages/vue.php:
|
7388 |
msgid "Did you know over 10 million websites use our plugins?"
|
7389 |
msgstr ""
|
7390 |
|
7391 |
-
#: languages/vue.php:
|
7392 |
msgid "Try our other popular WordPress plugins to grow your website in 2021."
|
7393 |
msgstr ""
|
7394 |
|
7395 |
-
#: languages/vue.php:
|
7396 |
msgid "Join our Communities!"
|
7397 |
msgstr ""
|
7398 |
|
7399 |
-
#: languages/vue.php:
|
7400 |
msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
|
7401 |
msgstr ""
|
7402 |
|
7403 |
-
#: languages/vue.php:
|
7404 |
msgid "Facebook Group"
|
7405 |
msgstr ""
|
7406 |
|
7407 |
-
#: languages/vue.php:
|
7408 |
msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
|
7409 |
msgstr ""
|
7410 |
|
7411 |
-
#: languages/vue.php:
|
7412 |
msgid "Join Now...It’s Free!"
|
7413 |
msgstr ""
|
7414 |
|
7415 |
-
#: languages/vue.php:
|
7416 |
msgid "WordPress Tutorials by WPBeginner"
|
7417 |
msgstr ""
|
7418 |
|
7419 |
-
#: languages/vue.php:
|
7420 |
msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
|
7421 |
msgstr ""
|
7422 |
|
7423 |
-
#: languages/vue.php:
|
7424 |
msgid "Visit WPBeginner"
|
7425 |
msgstr ""
|
7426 |
|
7427 |
-
#: languages/vue.php:
|
7428 |
msgid "Follow Us!"
|
7429 |
msgstr ""
|
7430 |
|
7431 |
-
#: languages/vue.php:
|
7432 |
msgid "Follow MonsterInsights on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
|
7433 |
msgstr ""
|
7434 |
|
7435 |
-
#: languages/vue.php:
|
7436 |
msgid "Copyright MonsterInsights, 2021"
|
7437 |
msgstr ""
|
7438 |
|
7439 |
-
#: languages/vue.php:
|
7440 |
msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
|
7441 |
msgstr ""
|
7442 |
|
7443 |
-
#: languages/vue.php:
|
7444 |
msgid "January"
|
7445 |
msgstr ""
|
7446 |
|
7447 |
-
#: languages/vue.php:
|
7448 |
msgid "February"
|
7449 |
msgstr ""
|
7450 |
|
7451 |
-
#: languages/vue.php:
|
7452 |
msgid "March"
|
7453 |
msgstr ""
|
7454 |
|
7455 |
-
#: languages/vue.php:
|
7456 |
msgid "April"
|
7457 |
msgstr ""
|
7458 |
|
7459 |
-
#: languages/vue.php:
|
7460 |
msgid "May"
|
7461 |
msgstr ""
|
7462 |
|
7463 |
-
#: languages/vue.php:
|
7464 |
msgid "June"
|
7465 |
msgstr ""
|
7466 |
|
7467 |
-
#: languages/vue.php:
|
7468 |
msgid "July"
|
7469 |
msgstr ""
|
7470 |
|
7471 |
-
#: languages/vue.php:
|
7472 |
msgid "August"
|
7473 |
msgstr ""
|
7474 |
|
7475 |
-
#: languages/vue.php:
|
7476 |
msgid "September"
|
7477 |
msgstr ""
|
7478 |
|
7479 |
-
#: languages/vue.php:
|
7480 |
msgid "October"
|
7481 |
msgstr ""
|
7482 |
|
7483 |
-
#: languages/vue.php:
|
7484 |
msgid "November"
|
7485 |
msgstr ""
|
7486 |
|
7487 |
-
#: languages/vue.php:
|
7488 |
msgid "December"
|
7489 |
msgstr ""
|
7490 |
|
7491 |
#. Translators: Number of visitors.
|
7492 |
-
#: languages/vue.php:
|
7493 |
msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
|
7494 |
msgstr ""
|
7495 |
|
7496 |
-
#: languages/vue.php:
|
7497 |
msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
|
7498 |
msgstr ""
|
7499 |
|
7500 |
#. Translators: Number of visitors.
|
7501 |
-
#: languages/vue.php:
|
7502 |
msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
|
7503 |
msgstr ""
|
7504 |
|
7505 |
#. Translators: Number of visitors.
|
7506 |
-
#: languages/vue.php:
|
7507 |
msgid "%s Visitors"
|
7508 |
msgstr ""
|
7509 |
|
7510 |
#. Translators: Percent and Number of visitors.
|
7511 |
-
#: languages/vue.php:
|
7512 |
msgid "%1$s% of your visitors were %2$s"
|
7513 |
msgstr ""
|
7514 |
|
7515 |
#. Translators: Number of visitors and their age.
|
7516 |
-
#: languages/vue.php:
|
7517 |
msgid "%1$s% of your visitors were between the ages of %2$s"
|
7518 |
msgstr ""
|
7519 |
|
7520 |
-
#: languages/vue.php:
|
7521 |
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>"
|
7522 |
msgstr ""
|
7523 |
|
7524 |
#. Translators: Number of minutes spent on site.
|
7525 |
-
#: languages/vue.php:
|
7526 |
msgid "Each visitor spent an average of %s minutes on your website in 2020."
|
7527 |
msgstr ""
|
7528 |
|
7529 |
#. Translators: Name of device type.
|
7530 |
-
#: languages/vue.php:
|
7531 |
msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
|
7532 |
msgstr ""
|
7533 |
|
7534 |
#. Translators: Number of visitors and device percentage.
|
7535 |
-
#: languages/vue.php:
|
7536 |
msgid "%1$s% of your visitors were on a %2$s device."
|
7537 |
msgstr ""
|
7538 |
|
7539 |
-
#: languages/vue.php:
|
7540 |
msgid "Desktop"
|
7541 |
msgstr ""
|
7542 |
|
7543 |
-
#: languages/vue.php:
|
7544 |
msgid "Tablet"
|
7545 |
msgstr ""
|
7546 |
|
7547 |
-
#: languages/vue.php:
|
7548 |
msgid "Mobile"
|
7549 |
msgstr ""
|
7550 |
|
7551 |
-
#: languages/vue.php:
|
7552 |
msgid "Right Now"
|
7553 |
msgstr ""
|
7554 |
|
7555 |
-
#: languages/vue.php:
|
7556 |
msgid "Active users on site"
|
7557 |
msgstr ""
|
7558 |
|
7559 |
-
#: languages/vue.php:
|
7560 |
msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
|
7561 |
msgstr ""
|
7562 |
|
7563 |
-
#: languages/vue.php:
|
7564 |
msgid "Important: this only includes users who are tracked in real-time. Not all users are tracked in real-time including (but not limited to) logged-in site administrators, certain mobile users, and users who match a Google Analytics filter."
|
7565 |
msgstr ""
|
7566 |
|
7567 |
-
#: languages/vue.php:
|
7568 |
msgid "The real-time report automatically updates approximately every 60 seconds."
|
7569 |
msgstr ""
|
7570 |
|
7571 |
#. Translators: Number of seconds that have passed since the report was refreshed.
|
7572 |
-
#: languages/vue.php:
|
7573 |
msgid "The real-time report was last updated %s seconds ago."
|
7574 |
msgstr ""
|
7575 |
|
7576 |
-
#: languages/vue.php:
|
7577 |
msgid "The latest data will be automatically shown on this page when it becomes available."
|
7578 |
msgstr ""
|
7579 |
|
7580 |
-
#: languages/vue.php:
|
7581 |
msgid "There is no need to refresh the browser (doing so won't have any effect)."
|
7582 |
msgstr ""
|
7583 |
|
7584 |
-
#: languages/vue.php:
|
7585 |
msgid "Pageviews Per Minute"
|
7586 |
msgstr ""
|
7587 |
|
7588 |
-
#: languages/vue.php:
|
7589 |
msgid "Top Pages"
|
7590 |
msgstr ""
|
7591 |
|
7592 |
-
#: languages/vue.php:
|
7593 |
msgid "No pageviews currently."
|
7594 |
msgstr ""
|
7595 |
|
7596 |
-
#: languages/vue.php:
|
7597 |
msgid "Page"
|
7598 |
msgstr ""
|
7599 |
|
7600 |
-
#: languages/vue.php:
|
7601 |
msgid "Pageview Count"
|
7602 |
msgstr ""
|
7603 |
|
7604 |
-
#: languages/vue.php:
|
7605 |
msgid "Percent of Total"
|
7606 |
msgstr ""
|
7607 |
|
7608 |
-
#: languages/vue.php:
|
7609 |
msgid "This is the number of active users currently on your site."
|
7610 |
msgstr ""
|
7611 |
|
7612 |
-
#: languages/vue.php:
|
7613 |
msgid "This graph shows the number of pageviews for each of the last 30 minutes."
|
7614 |
msgstr ""
|
7615 |
|
7616 |
-
#: languages/vue.php:
|
7617 |
msgid "This list shows the top pages users are currently viewing on your site."
|
7618 |
msgstr ""
|
7619 |
|
7620 |
-
#: languages/vue.php:
|
7621 |
msgid "View All Real-Time Pageviews"
|
7622 |
msgstr ""
|
7623 |
|
7624 |
-
#: languages/vue.php:
|
7625 |
msgid "View All Real-Time Traffic Sources"
|
7626 |
msgstr ""
|
7627 |
|
7628 |
-
#: languages/vue.php:
|
7629 |
msgid "View All Real-Time Traffic by Country"
|
7630 |
msgstr ""
|
7631 |
|
7632 |
-
#: languages/vue.php:
|
7633 |
msgid "View All Real-Time Traffic by City"
|
7634 |
msgstr ""
|
7635 |
|
7636 |
-
#: languages/vue.php:
|
7637 |
msgid "Show Overview Reports"
|
7638 |
msgstr ""
|
7639 |
|
7640 |
-
#: languages/vue.php:
|
7641 |
msgid "Show Publishers Reports"
|
7642 |
msgstr ""
|
7643 |
|
7644 |
-
#: languages/vue.php:
|
7645 |
msgid "Show eCommerce Reports"
|
7646 |
msgstr ""
|
7647 |
|
7648 |
-
#: languages/vue.php:
|
7649 |
msgid "Settings Menu"
|
7650 |
msgstr ""
|
7651 |
|
7652 |
-
#: languages/vue.php:
|
7653 |
msgid "Available in PRO version"
|
7654 |
msgstr ""
|
7655 |
|
7656 |
-
#: languages/vue.php:
|
7657 |
msgid "Thank you for being a loyal MonsterInsights Lite user."
|
7658 |
msgstr ""
|
7659 |
|
7660 |
-
#: languages/vue.php:
|
7661 |
msgid "Upgrade to MonsterInsights Pro and unlock all the awesome features."
|
7662 |
msgstr ""
|
7663 |
|
7664 |
#. Translators: Gets replaced with the coupon code.
|
7665 |
-
#: languages/vue.php:
|
7666 |
msgid "Use coupon code %s to get 50%% off."
|
7667 |
msgstr ""
|
7668 |
|
7669 |
-
#: languages/vue.php:
|
7670 |
msgid "Dashboard widget"
|
7671 |
msgstr ""
|
7672 |
|
7673 |
-
#: languages/vue.php:
|
7674 |
msgid "Affiliate Links"
|
7675 |
msgstr ""
|
7676 |
|
7677 |
-
#: languages/vue.php:
|
7678 |
msgid "Enhanced Ecommerce"
|
7679 |
msgstr ""
|
7680 |
|
7681 |
-
#: languages/vue.php:
|
7682 |
msgid "Banner Ads"
|
7683 |
msgstr ""
|
7684 |
|
7685 |
-
#: languages/vue.php:
|
7686 |
msgid "Google AMP"
|
7687 |
msgstr ""
|
7688 |
|
7689 |
-
#: languages/vue.php:
|
7690 |
msgid "SEO Score Tracking"
|
7691 |
msgstr ""
|
7692 |
|
7693 |
-
#: languages/vue.php:
|
7694 |
msgid "Activating..."
|
7695 |
msgstr ""
|
7696 |
|
7697 |
-
#: languages/vue.php:
|
7698 |
msgid "Deactivating..."
|
7699 |
msgstr ""
|
7700 |
|
7701 |
-
#: languages/vue.php:
|
7702 |
msgid "Deactivate"
|
7703 |
msgstr ""
|
7704 |
|
7705 |
#. Translators: The status of the addon (installed/active/inactive).
|
7706 |
-
#: languages/vue.php:
|
7707 |
msgid "Status: %s"
|
7708 |
msgstr ""
|
7709 |
|
7710 |
-
#: languages/vue.php:
|
7711 |
msgid "Not Installed"
|
7712 |
msgstr ""
|
7713 |
|
7714 |
-
#: languages/vue.php:
|
7715 |
msgid "Network Active"
|
7716 |
msgstr ""
|
7717 |
|
7718 |
-
#: languages/vue.php:
|
7719 |
msgid "Active"
|
7720 |
msgstr ""
|
7721 |
|
7722 |
-
#: languages/vue.php:
|
7723 |
msgid "Inactive"
|
7724 |
msgstr ""
|
7725 |
|
7726 |
#. Translators: Adds a link to the general settings tab.
|
7727 |
-
#: languages/vue.php:
|
7728 |
msgid "It looks like you added a Google Analytics tracking code in the custom code area, this can potentially prevent proper tracking. If you want to use a manual UA please use the setting in the %1$sGeneral%2$s tab."
|
7729 |
msgstr ""
|
7730 |
|
7731 |
-
#: languages/vue.php:
|
7732 |
msgid "Export PDF Reports"
|
7733 |
msgstr ""
|
7734 |
|
7735 |
-
#: languages/vue.php:
|
7736 |
msgid "Permissions"
|
7737 |
msgstr ""
|
7738 |
|
7739 |
-
#: languages/vue.php:
|
7740 |
msgid "Allow These User Roles to See Reports"
|
7741 |
msgstr ""
|
7742 |
|
7743 |
-
#: languages/vue.php:
|
7744 |
msgid "Users that have at least one of these roles will be able to view the reports."
|
7745 |
msgstr ""
|
7746 |
|
7747 |
-
#: languages/vue.php:
|
7748 |
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."
|
7749 |
msgstr ""
|
7750 |
|
7751 |
-
#: languages/vue.php:
|
7752 |
msgid "Allow These User Roles to Save Settings"
|
7753 |
msgstr ""
|
7754 |
|
7755 |
-
#: languages/vue.php:
|
7756 |
msgid "Users that have at least one of these roles will be able to view and save the settings panel."
|
7757 |
msgstr ""
|
7758 |
|
7759 |
-
#: languages/vue.php:
|
7760 |
msgid "Users that have at least one of these roles will be able to view and save the settings panel, along with any user with the manage_options capability."
|
7761 |
msgstr ""
|
7762 |
|
7763 |
-
#: languages/vue.php:
|
7764 |
msgid "Exclude These User Roles From Tracking"
|
7765 |
msgstr ""
|
7766 |
|
7767 |
-
#: languages/vue.php:
|
7768 |
msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
|
7769 |
msgstr ""
|
7770 |
|
7771 |
-
#: languages/vue.php:
|
7772 |
msgid "Performance"
|
7773 |
msgstr ""
|
7774 |
|
7775 |
-
#: languages/vue.php:
|
7776 |
msgid "Custom code"
|
7777 |
msgstr ""
|
7778 |
|
7779 |
#. Translators: Adds a link to the Google reference.
|
7780 |
-
#: languages/vue.php:
|
7781 |
msgid "Not for the average user: this allows you to add a line of code, to be added before the %1$spageview is sent%2$s."
|
7782 |
msgstr ""
|
7783 |
|
7784 |
-
#: languages/vue.php:
|
7785 |
msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
|
7786 |
msgstr ""
|
7787 |
|
7788 |
-
#: languages/vue.php:
|
7789 |
msgid "Hide Admin Bar Reports"
|
7790 |
msgstr ""
|
7791 |
|
7792 |
#. Translators: placeholders make text small.
|
7793 |
-
#: languages/vue.php:
|
7794 |
msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
|
7795 |
msgstr ""
|
7796 |
|
7797 |
#. Translators: placeholders make text small.
|
7798 |
-
#: languages/vue.php:
|
7799 |
msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
|
7800 |
msgstr ""
|
7801 |
|
7802 |
#. Translators: placeholders make text small.
|
7803 |
-
#: languages/vue.php:
|
7804 |
msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
|
7805 |
msgstr ""
|
7806 |
|
7807 |
-
#: languages/vue.php:
|
7808 |
msgid "View notifications"
|
7809 |
msgstr ""
|
7810 |
|
7811 |
#. Translators: Error status and error text.
|
7812 |
-
#: languages/vue.php:
|
7813 |
msgid "Can't load settings. Error: %1$s, %2$s"
|
7814 |
msgstr ""
|
7815 |
|
7816 |
-
#: languages/vue.php:
|
7817 |
msgid "You appear to be offline."
|
7818 |
msgstr ""
|
7819 |
|
7820 |
#. Translators: Error status and error text.
|
7821 |
-
#: languages/vue.php:
|
7822 |
msgid "Can't save settings. Error: %1$s, %2$s"
|
7823 |
msgstr ""
|
7824 |
|
7825 |
-
#: languages/vue.php:
|
7826 |
msgid "Network error encountered. Settings not saved."
|
7827 |
msgstr ""
|
7828 |
|
7829 |
#. Translators: Error status and error text.
|
7830 |
-
#: languages/vue.php:
|
7831 |
msgid "Can't deactivate the license. Error: %1$s, %2$s"
|
7832 |
msgstr ""
|
7833 |
|
7834 |
#. Translators: Error status and error text.
|
7835 |
-
#: languages/vue.php:
|
7836 |
msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
|
7837 |
msgstr ""
|
7838 |
|
7839 |
#. Translators: Error status and error text.
|
7840 |
-
#: languages/vue.php:
|
7841 |
msgid "Can't load license details. Error: %1$s, %2$s"
|
7842 |
msgstr ""
|
7843 |
|
7844 |
-
#: languages/vue.php:
|
7845 |
msgid "Error loading license details"
|
7846 |
msgstr ""
|
7847 |
|
7848 |
#. Translators: Error status and error text.
|
7849 |
-
#: languages/vue.php:
|
7850 |
msgid "Can't verify the license. Error: %1$s, %2$s"
|
7851 |
msgstr ""
|
7852 |
|
7853 |
#. Translators: Error status and error text.
|
7854 |
-
#: languages/vue.php:
|
7855 |
msgid "Can't validate the license. Error: %1$s, %2$s"
|
7856 |
msgstr ""
|
7857 |
|
7858 |
#. Translators: Error status and error text.
|
7859 |
-
#: languages/vue.php:
|
7860 |
msgid "Can't deauthenticate. Error: %1$s, %2$s"
|
7861 |
msgstr ""
|
7862 |
|
7863 |
#. Translators: Error status and error text.
|
7864 |
-
#: languages/vue.php:
|
7865 |
msgid "Can't load authentication details. Error: %1$s, %2$s"
|
7866 |
msgstr ""
|
7867 |
|
7868 |
-
#: languages/vue.php:
|
7869 |
msgid "You appear to be offline. Settings not saved."
|
7870 |
msgstr ""
|
7871 |
|
7872 |
#. Translators: Error status and error text.
|
7873 |
-
#: languages/vue.php:
|
7874 |
msgid "Can't authenticate. Error: %1$s, %2$s"
|
7875 |
msgstr ""
|
7876 |
|
7877 |
#. Translators: Error status and error text.
|
7878 |
-
#: languages/vue.php:
|
7879 |
msgid "Can't reauthenticate. Error: %1$s, %2$s"
|
7880 |
msgstr ""
|
7881 |
|
7882 |
#. Translators: Error status and error text.
|
7883 |
-
#: languages/vue.php:
|
7884 |
msgid "Can't verify credentials. Error: %1$s, %2$s"
|
7885 |
msgstr ""
|
7886 |
|
7887 |
-
#: languages/vue.php:
|
7888 |
msgid "Proceed"
|
7889 |
msgstr ""
|
7890 |
|
7891 |
-
#: languages/vue.php:
|
7892 |
msgid "Connection Information"
|
7893 |
msgstr ""
|
7894 |
|
7895 |
-
#: languages/vue.php:
|
7896 |
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."
|
7897 |
msgstr ""
|
7898 |
|
7899 |
-
#: languages/vue.php:
|
7900 |
msgid "Hostname"
|
7901 |
msgstr ""
|
7902 |
|
7903 |
-
#: languages/vue.php:
|
7904 |
msgid "FTP Username"
|
7905 |
msgstr ""
|
7906 |
|
7907 |
-
#: languages/vue.php:
|
7908 |
msgid "FTP Password"
|
7909 |
msgstr ""
|
7910 |
|
7911 |
-
#: languages/vue.php:
|
7912 |
msgid "This password will not be stored on the server."
|
7913 |
msgstr ""
|
7914 |
|
7915 |
-
#: languages/vue.php:
|
7916 |
msgid "Connection Type"
|
7917 |
msgstr ""
|
7918 |
|
7919 |
-
#: languages/vue.php:
|
7920 |
msgid "Cancel"
|
7921 |
msgstr ""
|
7922 |
|
7923 |
-
#: languages/vue.php:
|
7924 |
msgid "You appear to be offline. WPForms not installed."
|
7925 |
msgstr ""
|
7926 |
|
7927 |
#. Translators: Error status and error text.
|
7928 |
-
#: languages/vue.php:
|
7929 |
msgid "Can't activate addon. Error: %1$s, %2$s"
|
7930 |
msgstr ""
|
7931 |
|
7932 |
-
#: languages/vue.php:
|
7933 |
msgid "You appear to be offline. Addon not activated."
|
7934 |
msgstr ""
|
7935 |
|
7936 |
#. Translators: Error status and error text.
|
7937 |
-
#: languages/vue.php:
|
7938 |
msgid "Can't deactivate addon. Error: %1$s, %2$s"
|
7939 |
msgstr ""
|
7940 |
|
7941 |
-
#: languages/vue.php:
|
7942 |
msgid "You appear to be offline. Addon not deactivated."
|
7943 |
msgstr ""
|
7944 |
|
7945 |
#. Translators: Error status and error text.
|
7946 |
-
#: languages/vue.php:
|
7947 |
msgid "Can't install plugin. Error: %1$s, %2$s"
|
7948 |
msgstr ""
|
7949 |
|
7950 |
-
#: languages/vue.php:
|
7951 |
msgid "You appear to be offline. Plugin not installed."
|
7952 |
msgstr ""
|
7953 |
|
7954 |
#. Translators: Error status and error text.
|
7955 |
-
#: languages/vue.php:
|
7956 |
msgid "Can't install addon. Error: %1$s, %2$s"
|
7957 |
msgstr ""
|
7958 |
|
7959 |
-
#: languages/vue.php:
|
7960 |
msgid "You appear to be offline. Addon not installed."
|
7961 |
msgstr ""
|
7962 |
|
7963 |
#. Translators: Error status and error text.
|
7964 |
-
#: languages/vue.php:
|
7965 |
msgid "Can't install WPForms. Error: %1$s, %2$s"
|
7966 |
msgstr ""
|
7967 |
|
7968 |
#. Translators: Example path (/go/).
|
7969 |
-
#: languages/vue.php:
|
7970 |
msgid "Path (example: %s)"
|
7971 |
msgstr ""
|
7972 |
|
7973 |
-
#: languages/vue.php:
|
7974 |
msgid "Path has to start with a / and have no spaces"
|
7975 |
msgstr ""
|
7976 |
|
7977 |
#. Translators: Example label (aff).
|
7978 |
-
#: languages/vue.php:
|
7979 |
msgid "Label (example: %s)"
|
7980 |
msgstr ""
|
7981 |
|
7982 |
-
#: languages/vue.php:
|
7983 |
msgid "Label can't contain any spaces"
|
7984 |
msgstr ""
|
7985 |
|
7986 |
#. Translators: Add links to documentation.
|
7987 |
-
#: languages/vue.php:
|
7988 |
msgid "This allows you to track custom affiliate links. A path of /go/ would match urls that start with that. The label is appended onto the end of the string \"outbound-link-\", to provide unique labels for these links in Google Analytics. Complete documentation on affiliate links is available %1$shere%2$s."
|
7989 |
msgstr ""
|
7990 |
|
7991 |
-
#: languages/vue.php:
|
7992 |
msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
|
7993 |
msgstr ""
|
7994 |
|
7995 |
-
#: languages/vue.php:
|
7996 |
msgid "The MonsterInsights Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results."
|
7997 |
msgstr ""
|
7998 |
|
7999 |
-
#: languages/vue.php:
|
8000 |
msgid "Disable the Headline Analyzer"
|
8001 |
msgstr ""
|
8002 |
|
8003 |
-
#: languages/vue.php:
|
8004 |
msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
|
8005 |
msgstr ""
|
8006 |
|
8007 |
-
#: languages/vue.php:
|
8008 |
msgid "Or manually enter UA code (limited functionality)"
|
8009 |
msgstr ""
|
8010 |
|
8011 |
-
#: languages/vue.php:
|
8012 |
msgid "Dual Tracking Profile"
|
8013 |
msgstr ""
|
8014 |
|
8015 |
-
#: languages/vue.php:
|
8016 |
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."
|
8017 |
msgstr ""
|
8018 |
|
8019 |
-
#: languages/vue.php:
|
8020 |
msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
|
8021 |
msgstr ""
|
8022 |
|
8023 |
-
#: languages/vue.php:
|
8024 |
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."
|
8025 |
msgstr ""
|
8026 |
|
8027 |
-
#: languages/vue.php:
|
8028 |
msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
|
8029 |
msgstr ""
|
8030 |
|
8031 |
-
#: languages/vue.php:
|
8032 |
msgid "Measurement Protocol API Secret"
|
8033 |
msgstr ""
|
8034 |
|
8035 |
-
#: languages/vue.php:
|
8036 |
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."
|
8037 |
msgstr ""
|
8038 |
|
8039 |
-
#: languages/vue.php:
|
8040 |
msgid "Force Deauthenticate"
|
8041 |
msgstr ""
|
8042 |
|
8043 |
-
#: languages/vue.php:
|
8044 |
msgid "Disconnect MonsterInsights"
|
8045 |
msgstr ""
|
8046 |
|
8047 |
-
#: languages/vue.php:
|
8048 |
msgid "Authenticating"
|
8049 |
msgstr ""
|
8050 |
|
8051 |
-
#: languages/vue.php:
|
8052 |
msgid "Verifying Credentials"
|
8053 |
msgstr ""
|
8054 |
|
8055 |
-
#: languages/vue.php:
|
8056 |
msgid "Your site is connected to MonsterInsights!"
|
8057 |
msgstr ""
|
8058 |
|
8059 |
-
#: languages/vue.php:
|
8060 |
msgid "Deauthenticating"
|
8061 |
msgstr ""
|
8062 |
|
8063 |
-
#: languages/vue.php:
|
8064 |
msgid "You've disconnected your site from MonsterInsights. Your site is no longer being tracked by Google Analytics and you won't see reports anymore."
|
8065 |
msgstr ""
|
8066 |
|
8067 |
-
#: languages/vue.php:
|
8068 |
msgid "Connect MonsterInsights"
|
8069 |
msgstr ""
|
8070 |
|
8071 |
-
#: languages/vue.php:
|
8072 |
msgid "Verify Credentials"
|
8073 |
msgstr ""
|
8074 |
|
8075 |
-
#: languages/vue.php:
|
8076 |
msgid "Website Profile"
|
8077 |
msgstr ""
|
8078 |
|
8079 |
-
#: languages/vue.php:
|
8080 |
msgid "Active Profile"
|
8081 |
msgstr ""
|
8082 |
|
8083 |
-
#: languages/vue.php:
|
8084 |
msgid "Your website profile has been set at the network level of your WordPress Multisite."
|
8085 |
msgstr ""
|
8086 |
|
8087 |
-
#: languages/vue.php:
|
8088 |
msgid "If you would like to use a different profile for this subsite, you can authenticate below."
|
8089 |
msgstr ""
|
8090 |
|
8091 |
-
#: languages/vue.php:
|
8092 |
msgid "Manually enter your UA code"
|
8093 |
msgstr ""
|
8094 |
|
8095 |
-
#: languages/vue.php:
|
8096 |
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."
|
8097 |
msgstr ""
|
8098 |
|
8099 |
-
#: languages/vue.php:
|
8100 |
msgid "Manually enter your GA4 Measurement ID"
|
8101 |
msgstr ""
|
8102 |
|
8103 |
-
#: languages/vue.php:
|
8104 |
msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
|
8105 |
msgstr ""
|
8106 |
|
8107 |
-
#: languages/vue.php:
|
8108 |
msgid "Anonymize IP Addresses"
|
8109 |
msgstr ""
|
8110 |
|
8111 |
-
#: languages/vue.php:
|
8112 |
msgid "Link Attribution"
|
8113 |
msgstr ""
|
8114 |
|
8115 |
-
#: languages/vue.php:
|
8116 |
msgid "Enable Enhanced Link Attribution"
|
8117 |
msgstr ""
|
8118 |
|
8119 |
-
#: languages/vue.php:
|
8120 |
msgid "Enable Anchor Tracking"
|
8121 |
msgstr ""
|
8122 |
|
8123 |
-
#: languages/vue.php:
|
8124 |
msgid "Enable allowAnchor"
|
8125 |
msgstr ""
|
8126 |
|
8127 |
-
#: languages/vue.php:
|
8128 |
msgid "Enable allowLinker"
|
8129 |
msgstr ""
|
8130 |
|
8131 |
-
#: languages/vue.php:
|
8132 |
msgid "Enable Tag Links in RSS"
|
8133 |
msgstr ""
|
8134 |
|
8135 |
-
#: languages/vue.php:
|
8136 |
msgid "File Downloads"
|
8137 |
msgstr ""
|
8138 |
|
8139 |
-
#: languages/vue.php:
|
8140 |
msgid "Extensions of Files to Track as Downloads"
|
8141 |
msgstr ""
|
8142 |
|
8143 |
-
#: languages/vue.php:
|
8144 |
msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
|
8145 |
msgstr ""
|
8146 |
|
8147 |
#. Translators: Add links to the documentation.
|
8148 |
-
#: languages/vue.php:
|
8149 |
msgid "Enable this setting to add the Demographics and Remarketing features to your Google Analytics tracking code. Make sure to enable Demographics and Remarketing in your Google Analytics account. We have a guide for how to do that in our %1$sknowledge base%2$s. For more information about Remarketing, we refer you to %3$sGoogle's documentation%4$s. Note that usage of this function is affected by privacy and cookie laws around the world. Be sure to follow the laws that affect your target audience."
|
8150 |
msgstr ""
|
8151 |
|
8152 |
#. Translators: Adds a link to the documentation.
|
8153 |
-
#: languages/vue.php:
|
8154 |
msgid "This adds %1$sanonymizeIp%2$s, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage."
|
8155 |
msgstr ""
|
8156 |
|
8157 |
#. Translators: Adds a link to the documentation.
|
8158 |
-
#: languages/vue.php:
|
8159 |
msgid "Adds the Enhanced Link Attribution (retain link) code to improve the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs."
|
8160 |
msgstr ""
|
8161 |
|
8162 |
-
#: languages/vue.php:
|
8163 |
msgid "Many WordPress \"1-page\" style themes rely on anchor tags for navigation to show virtual pages. The problem is that to Google Analytics, these are all just a single page, and it makes it hard to get meaningful statistics about pages viewed. This feature allows proper tracking in those themes."
|
8164 |
msgstr ""
|
8165 |
|
8166 |
#. Translators: Adds a link to the documentation.
|
8167 |
-
#: languages/vue.php:
|
8168 |
msgid "This adds %1$sallowAnchor%2$s to the create command of the pageview hit tracking code, and makes RSS link tagging use a # as well."
|
8169 |
msgstr ""
|
8170 |
|
8171 |
#. Translators: Adds a link to the documentation.
|
8172 |
-
#: languages/vue.php:
|
8173 |
msgid "Enabling %1$scross-domain tracking (additional setup required)%2$s allows you to track users across multiple properties you own (such as example-1.com and example-2.com as a single session. It also allows you fix an issue so that when a user has to go to an off-site hosted payment gateway to finish a purchase it doesn't count it as referral traffic from that gateway but maintains the visit as part of the same session.) It is required that the other site includes a Google Analytics tracker with the same UA Code."
|
8174 |
msgstr ""
|
8175 |
|
8176 |
#. Translators: Adds a link to the documentation.
|
8177 |
-
#: languages/vue.php:
|
8178 |
msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check this %1$shelp page%2$s for info on how to enable this feature in FeedBurner."
|
8179 |
msgstr ""
|
8180 |
|
8181 |
-
#: languages/vue.php:
|
8182 |
msgid "Add domain"
|
8183 |
msgstr ""
|
8184 |
|
8185 |
#. Translators: Example domain.
|
8186 |
-
#: languages/vue.php:
|
8187 |
msgid "Domain (example: %s)"
|
8188 |
msgstr ""
|
8189 |
|
8190 |
#. Translators: Current site domain to be avoided.
|
8191 |
-
#: languages/vue.php:
|
8192 |
msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
|
8193 |
msgstr ""
|
8194 |
|
8195 |
-
#: languages/vue.php:
|
8196 |
msgid "Cross Domain Tracking"
|
8197 |
msgstr ""
|
8198 |
|
8199 |
#. Translators: Adds a link to the documentation.
|
8200 |
-
#: languages/vue.php:
|
8201 |
msgid "Cross domain tracking makes it possible for Analytics to see sessions on two related sites as a single session. More info on specific setup steps can be found in our %1$sknowledge base%2$s."
|
8202 |
msgstr ""
|
8203 |
|
8204 |
#. Translators: Number of days.
|
8205 |
-
#: languages/vue.php:
|
8206 |
msgid "vs. Previous Day"
|
8207 |
msgstr ""
|
8208 |
|
8209 |
-
#: languages/vue.php:
|
8210 |
msgid "No change"
|
8211 |
msgstr ""
|
8212 |
|
8213 |
-
#: languages/vue.php:
|
8214 |
msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
|
8215 |
msgstr ""
|
8216 |
|
8217 |
-
#: languages/vue.php:
|
8218 |
msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
|
8219 |
msgstr ""
|
8220 |
|
8221 |
-
#: languages/vue.php:
|
8222 |
msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
|
8223 |
msgstr ""
|
8224 |
|
8225 |
-
#: languages/vue.php:
|
8226 |
msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
|
8227 |
msgstr ""
|
8228 |
|
8229 |
-
#: languages/vue.php:
|
8230 |
msgid "Use Google Optimize to easily perform A/B split tests on your site."
|
8231 |
msgstr ""
|
8232 |
|
8233 |
-
#: languages/vue.php:
|
8234 |
msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
|
8235 |
msgstr ""
|
8236 |
|
8237 |
-
#: languages/vue.php:
|
8238 |
msgid "Unlock search console report to see your top performing keywords in Google."
|
8239 |
msgstr ""
|
8240 |
|
8241 |
-
#: languages/vue.php:
|
8242 |
msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
|
8243 |
msgstr ""
|
8244 |
|
8245 |
-
#: languages/vue.php:
|
8246 |
msgid "Publishers Report shows your top performing pages, audience demographics, and more."
|
8247 |
msgstr ""
|
8248 |
|
8249 |
-
#: languages/vue.php:
|
8250 |
msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
|
8251 |
msgstr ""
|
8252 |
|
8253 |
-
#: languages/vue.php:
|
8254 |
msgid "Upgrade to Pro »"
|
8255 |
msgstr ""
|
8256 |
|
8257 |
-
#: languages/vue.php:
|
8258 |
msgid "Pro Tip:"
|
8259 |
msgstr ""
|
8260 |
|
8261 |
-
#: languages/vue.php:
|
8262 |
msgid "Show"
|
8263 |
msgstr ""
|
8264 |
|
8265 |
-
#: languages/vue.php:
|
8266 |
msgid "Hide dashboard widget"
|
8267 |
msgstr ""
|
8268 |
|
8269 |
-
#: languages/vue.php:
|
8270 |
msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
|
8271 |
msgstr ""
|
8272 |
|
8273 |
-
#: languages/vue.php:
|
8274 |
msgid "Yes, hide it!"
|
8275 |
msgstr ""
|
8276 |
|
8277 |
-
#: languages/vue.php:
|
8278 |
msgid "No, cancel!"
|
8279 |
msgstr ""
|
8280 |
|
8281 |
-
#: languages/vue.php:
|
8282 |
msgid "MonsterInsights Widget Hidden"
|
8283 |
msgstr ""
|
8284 |
|
8285 |
-
#: languages/vue.php:
|
8286 |
msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
|
8287 |
msgstr ""
|
8288 |
|
8289 |
-
#: languages/vue.php:
|
8290 |
msgid "Usage Tracking"
|
8291 |
msgstr ""
|
8292 |
|
8293 |
-
#: languages/vue.php:
|
8294 |
msgid "Allow Usage Tracking"
|
8295 |
msgstr ""
|
8296 |
|
8297 |
-
#: languages/vue.php:
|
8298 |
msgid "By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test."
|
8299 |
msgstr ""
|
8300 |
|
8301 |
#. Translators: Add links to documentation.
|
8302 |
-
#: languages/vue.php:
|
8303 |
msgid "Complete documentation on usage tracking is available %1$shere%2$s."
|
8304 |
msgstr ""
|
8305 |
|
8306 |
#. Translators: Make text green and add smiley face.
|
8307 |
-
#: languages/vue.php:
|
8308 |
msgid "You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s"
|
8309 |
msgstr ""
|
8310 |
|
8311 |
#. Translators: Add link to upgrade.
|
8312 |
-
#: languages/vue.php:
|
8313 |
msgid "To unlock more features consider %1$supgrading to PRO%2$s."
|
8314 |
msgstr ""
|
8315 |
|
8316 |
#. Translators: Make text green.
|
8317 |
-
#: languages/vue.php:
|
8318 |
msgid "As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
|
8319 |
msgstr ""
|
8320 |
|
8321 |
-
#: languages/vue.php:
|
8322 |
msgid "Unlock PRO Features Now"
|
8323 |
msgstr ""
|
8324 |
|
8325 |
-
#: languages/vue.php:
|
8326 |
msgid "Paste your license key here"
|
8327 |
msgstr ""
|
8328 |
|
8329 |
-
#: languages/vue.php:
|
8330 |
msgid "Verify"
|
8331 |
msgstr ""
|
8332 |
|
8333 |
#. Translators: Add link to retrieve license from account area.
|
8334 |
-
#: languages/vue.php:
|
8335 |
msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s."
|
8336 |
msgstr ""
|
8337 |
|
8338 |
-
#: languages/vue.php:
|
8339 |
msgid "There was an error unlocking MonsterInsights PRO please try again or install manually."
|
8340 |
msgstr ""
|
8341 |
|
8342 |
#. Translators: Error status and error text.
|
8343 |
-
#: languages/vue.php:
|
8344 |
msgid "Can't load errors. Error: %1$s, %2$s"
|
8345 |
msgstr ""
|
8346 |
|
8347 |
-
#: languages/vue.php:
|
8348 |
msgid "No options available"
|
8349 |
msgstr ""
|
8350 |
|
8351 |
-
#: languages/vue.php:
|
8352 |
msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
|
8353 |
msgstr ""
|
8354 |
|
8355 |
-
#: languages/vue.php:
|
8356 |
msgid "Automatically migrate all of your SEO settings with just 1 click!"
|
8357 |
msgstr ""
|
8358 |
|
8359 |
-
#: languages/vue.php:
|
8360 |
msgid "1,938"
|
8361 |
msgstr ""
|
8362 |
|
8363 |
-
#: languages/vue.php:
|
8364 |
msgid "2+ Million Active Installs"
|
8365 |
msgstr ""
|
8366 |
|
8367 |
-
#: languages/vue.php:
|
8368 |
msgid "AIOSEO is the DIY Solution for Managing your SEO"
|
8369 |
msgstr ""
|
8370 |
|
8371 |
-
#: languages/vue.php:
|
8372 |
msgid "Set up the proper SEO foundations in less than 10 minutes."
|
8373 |
msgstr ""
|
8374 |
|
8375 |
-
#: languages/vue.php:
|
8376 |
msgid "SEO Audit Checklist"
|
8377 |
msgstr ""
|
8378 |
|
8379 |
-
#: languages/vue.php:
|
8380 |
msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
|
8381 |
msgstr ""
|
8382 |
|
8383 |
-
#: languages/vue.php:
|
8384 |
msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
|
8385 |
msgstr ""
|
8386 |
|
8387 |
-
#: languages/vue.php:
|
8388 |
msgid "TruSEO Score gives you a more in-depth analysis into your optimization efforts than just a pass or fail. Our actionable checklist helps you to unlock maximum traffic with each page."
|
8389 |
msgstr ""
|
8390 |
|
8391 |
-
#: languages/vue.php:
|
8392 |
msgid "Get AIOSEO for WordPress"
|
8393 |
msgstr ""
|
8394 |
|
8395 |
-
#: languages/vue.php:
|
8396 |
msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
|
8397 |
msgstr ""
|
8398 |
|
8399 |
-
#: languages/vue.php:
|
8400 |
msgid "Try it out today, for free."
|
8401 |
msgstr ""
|
8402 |
|
8403 |
-
#: languages/vue.php:
|
8404 |
msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
|
8405 |
msgstr ""
|
8406 |
|
8407 |
-
#: languages/vue.php:
|
8408 |
msgid "Activate and Install the Plugin with just one click!"
|
8409 |
msgstr ""
|
8410 |
|
8411 |
-
#: languages/vue.php:
|
8412 |
msgid "Installing AIOSEO..."
|
8413 |
msgstr ""
|
8414 |
|
8415 |
-
#: languages/vue.php:
|
8416 |
msgid "Congrats! All-in-One SEO Installed."
|
8417 |
msgstr ""
|
8418 |
|
8419 |
-
#: languages/vue.php:
|
8420 |
msgid "Switch to AIOSEO"
|
8421 |
msgstr ""
|
8422 |
|
8423 |
-
#: languages/vue.php:
|
8424 |
msgid "Installation Failed. Please refresh and try again."
|
8425 |
msgstr ""
|
8426 |
|
8427 |
-
#: languages/vue.php:
|
8428 |
msgid "Activating AIOSEO..."
|
8429 |
msgstr ""
|
8430 |
|
8431 |
-
#: languages/vue.php:
|
8432 |
msgid "Activate AIOSEO"
|
8433 |
msgstr ""
|
8434 |
|
8435 |
-
#: languages/vue.php:
|
8436 |
msgid "Activation Failed. Please refresh and try again."
|
8437 |
msgstr ""
|
8438 |
|
8439 |
#. Translators: The name of the field that is throwing a validation error.
|
8440 |
-
#: languages/vue.php:
|
8441 |
msgid "%s can't be empty."
|
8442 |
msgstr ""
|
8443 |
|
8444 |
-
#: languages/vue.php:
|
8445 |
msgid "Duplicate values are not allowed."
|
8446 |
msgstr ""
|
8447 |
|
8448 |
-
#: languages/vue.php:
|
8449 |
msgid "You can add maximum 5 items."
|
8450 |
msgstr ""
|
8451 |
|
8452 |
-
#: languages/vue.php:
|
8453 |
msgid "At least 0 item required."
|
8454 |
msgstr ""
|
8455 |
|
8456 |
-
#: languages/vue.php:
|
8457 |
msgid "Add Another Link Path"
|
8458 |
msgstr ""
|
8459 |
|
8460 |
-
#: languages/vue.php:
|
8461 |
msgid "Remove row"
|
8462 |
msgstr ""
|
8463 |
|
8464 |
-
#: languages/vue.php:
|
8465 |
msgid "New"
|
8466 |
msgstr ""
|
8467 |
|
8468 |
-
#: languages/vue.php:
|
8469 |
msgid "Returning"
|
8470 |
msgstr ""
|
8471 |
|
8472 |
-
#: languages/vue.php:
|
8473 |
msgid "Top 10 Countries"
|
8474 |
msgstr ""
|
8475 |
|
8476 |
-
#: languages/vue.php:
|
8477 |
msgid "View Countries Report"
|
8478 |
msgstr ""
|
8479 |
|
8480 |
-
#: languages/vue.php:
|
8481 |
msgid "Top 10 Referrals"
|
8482 |
msgstr ""
|
8483 |
|
8484 |
-
#: languages/vue.php:
|
8485 |
msgid "View All Referral Sources"
|
8486 |
msgstr ""
|
8487 |
|
8488 |
-
#: languages/vue.php:
|
8489 |
msgid "View Full Posts/Pages Report"
|
8490 |
msgstr ""
|
8491 |
|
8492 |
-
#: languages/vue.php:
|
8493 |
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."
|
8494 |
msgstr ""
|
8495 |
|
8496 |
-
#: languages/vue.php:
|
8497 |
msgid "This list shows the top countries your website visitors are from."
|
8498 |
msgstr ""
|
8499 |
|
8500 |
-
#: languages/vue.php:
|
8501 |
msgid "This list shows the top websites that send your website traffic, known as referral traffic."
|
8502 |
msgstr ""
|
8503 |
|
8504 |
-
#: languages/vue.php:
|
8505 |
msgid "Export PDF Overview Report"
|
8506 |
msgstr ""
|
8507 |
|
8508 |
-
#: languages/vue.php:
|
8509 |
msgid "Reset to default"
|
8510 |
msgstr ""
|
8511 |
|
8512 |
-
#: languages/vue.php:
|
8513 |
msgid "The value entered does not match the required format"
|
8514 |
msgstr ""
|
8515 |
|
8516 |
-
#: languages/vue.php:
|
8517 |
msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
|
8518 |
msgstr ""
|
8519 |
|
8520 |
-
#: languages/vue.php:
|
8521 |
msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
|
8522 |
msgstr ""
|
8523 |
|
8524 |
-
#: languages/vue.php:
|
8525 |
msgid "Recommended Settings"
|
8526 |
msgstr ""
|
8527 |
|
8528 |
-
#: languages/vue.php:
|
8529 |
msgid "MonsterInsights recommends the following settings based on your configuration."
|
8530 |
msgstr ""
|
8531 |
|
8532 |
-
#: languages/vue.php:
|
8533 |
msgid "Events Tracking"
|
8534 |
msgstr ""
|
8535 |
|
8536 |
-
#: languages/vue.php:
|
8537 |
msgid "Must have for all click tracking on site."
|
8538 |
msgstr ""
|
8539 |
|
8540 |
-
#: languages/vue.php:
|
8541 |
msgid "MonsterInsights 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."
|
8542 |
msgstr ""
|
8543 |
|
8544 |
-
#: languages/vue.php:
|
8545 |
msgid "Enhanced Link Attribution"
|
8546 |
msgstr ""
|
8547 |
|
8548 |
-
#: languages/vue.php:
|
8549 |
msgid "Improves the accuracy of your In-Page Analytics."
|
8550 |
msgstr ""
|
8551 |
|
8552 |
-
#: languages/vue.php:
|
8553 |
msgid "MonsterInsights 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."
|
8554 |
msgstr ""
|
8555 |
|
8556 |
-
#: languages/vue.php:
|
8557 |
msgid "Install Updates Automatically"
|
8558 |
msgstr ""
|
8559 |
|
8560 |
-
#: languages/vue.php:
|
8561 |
msgid "Get the latest features, bug fixes, and security updates as they are released."
|
8562 |
msgstr ""
|
8563 |
|
8564 |
-
#: languages/vue.php:
|
8565 |
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 MonsterInsights, we offer the ability to automatically have MonsterInsights update itself."
|
8566 |
msgstr ""
|
8567 |
|
8568 |
-
#: languages/vue.php:
|
8569 |
msgid "File Download Tracking"
|
8570 |
msgstr ""
|
8571 |
|
8572 |
-
#: languages/vue.php:
|
8573 |
msgid "Helps you see file downloads data."
|
8574 |
msgstr ""
|
8575 |
|
8576 |
-
#: languages/vue.php:
|
8577 |
msgid "MonsterInsights 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? MonsterInsights makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
|
8578 |
msgstr ""
|
8579 |
|
8580 |
-
#: languages/vue.php:
|
8581 |
msgid "Helps you increase affiliate revenue."
|
8582 |
msgstr ""
|
8583 |
|
8584 |
-
#: languages/vue.php:
|
8585 |
msgid "MonsterInsights 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."
|
8586 |
msgstr ""
|
8587 |
|
8588 |
-
#: languages/vue.php:
|
8589 |
msgid "Affiliate Link Tracking"
|
8590 |
msgstr ""
|
8591 |
|
8592 |
-
#: languages/vue.php:
|
8593 |
msgid "Who Can See Reports"
|
8594 |
msgstr ""
|
8595 |
|
8596 |
-
#: languages/vue.php:
|
8597 |
msgid "These user roles will be able to access MonsterInsights' reports in the WordPress admin area."
|
8598 |
msgstr ""
|
8599 |
|
8600 |
-
#: languages/vue.php:
|
8601 |
msgid "Save and continue"
|
8602 |
msgstr ""
|
8603 |
|
8604 |
-
#: languages/vue.php:
|
8605 |
msgid "Events Tracking is enabled the moment you set up MonsterInsights"
|
8606 |
msgstr ""
|
8607 |
|
8608 |
-
#: languages/vue.php:
|
8609 |
msgid "Enhanced Link Attribution is enabled the moment you set up MonsterInsights"
|
8610 |
msgstr ""
|
8611 |
|
8612 |
-
#: languages/vue.php:
|
8613 |
msgid "+ Add Role"
|
8614 |
msgstr ""
|
8615 |
|
8616 |
-
#: languages/vue.php:
|
8617 |
msgid "Connect MonsterInsights to Your Website"
|
8618 |
msgstr ""
|
8619 |
|
8620 |
-
#: languages/vue.php:
|
8621 |
msgid "MonsterInsights connects Google Analytics to WordPress and shows you stats that matter."
|
8622 |
msgstr ""
|
8623 |
|
8624 |
-
#: languages/vue.php:
|
8625 |
msgid "Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
|
8626 |
msgstr ""
|
8627 |
|
8628 |
-
#: languages/vue.php:
|
8629 |
msgid "Save and Continue"
|
8630 |
msgstr ""
|
8631 |
|
8632 |
-
#: languages/vue.php:
|
8633 |
msgid "UA code can't be empty"
|
8634 |
msgstr ""
|
8635 |
|
8636 |
-
#: languages/vue.php:
|
8637 |
msgid "Saving UA code..."
|
8638 |
msgstr ""
|
8639 |
|
8640 |
-
#: languages/vue.php:
|
8641 |
msgid "Allow usage tracking"
|
8642 |
msgstr ""
|
8643 |
|
8644 |
-
#: languages/vue.php:
|
8645 |
msgid "Adjust the sample rate so you don't exceed Google Analytics' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization."
|
8646 |
msgstr ""
|
8647 |
|
8648 |
-
#: languages/vue.php:
|
8649 |
msgid "Install All-in-One SEO"
|
8650 |
msgstr ""
|
8651 |
|
8652 |
-
#: languages/vue.php:
|
8653 |
msgid "Improve Your Website Search Rankings With All-In-One SEO"
|
8654 |
msgstr ""
|
8655 |
|
8656 |
-
#: languages/vue.php:
|
8657 |
msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
|
8658 |
msgstr ""
|
8659 |
|
8660 |
-
#: languages/vue.php:
|
8661 |
msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
|
8662 |
msgstr ""
|
8663 |
|
8664 |
-
#: languages/vue.php:
|
8665 |
msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
|
8666 |
msgstr ""
|
8667 |
|
8668 |
-
#: languages/vue.php:
|
8669 |
msgid "Local SEO"
|
8670 |
msgstr ""
|
8671 |
|
8672 |
-
#: languages/vue.php:
|
8673 |
msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
|
8674 |
msgstr ""
|
8675 |
|
8676 |
-
#: languages/vue.php:
|
8677 |
msgid "WooCommerce SEO"
|
8678 |
msgstr ""
|
8679 |
|
8680 |
-
#: languages/vue.php:
|
8681 |
msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
|
8682 |
msgstr ""
|
8683 |
|
8684 |
-
#: languages/vue.php:
|
8685 |
msgid "SEO Custom User Roles"
|
8686 |
msgstr ""
|
8687 |
|
8688 |
-
#: languages/vue.php:
|
8689 |
msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
|
8690 |
msgstr ""
|
8691 |
|
8692 |
-
#: languages/vue.php:
|
8693 |
msgid "Google News Sitemap"
|
8694 |
msgstr ""
|
8695 |
|
8696 |
-
#: languages/vue.php:
|
8697 |
msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
|
8698 |
msgstr ""
|
8699 |
|
8700 |
-
#: languages/vue.php:
|
8701 |
msgid "Smart XML Sitemaps"
|
8702 |
msgstr ""
|
8703 |
|
8704 |
-
#: languages/vue.php:
|
8705 |
msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
|
8706 |
msgstr ""
|
8707 |
|
8708 |
-
#: languages/vue.php:
|
8709 |
msgid "Social Media Integration"
|
8710 |
msgstr ""
|
8711 |
|
8712 |
-
#: languages/vue.php:
|
8713 |
msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
|
8714 |
msgstr ""
|
8715 |
|
8716 |
-
#: languages/vue.php:
|
8717 |
msgid "TruSEO On-Page Analysis"
|
8718 |
msgstr ""
|
8719 |
|
8720 |
-
#: languages/vue.php:
|
8721 |
msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
|
8722 |
msgstr ""
|
8723 |
|
8724 |
-
#: languages/vue.php:
|
8725 |
msgid "& Many More!"
|
8726 |
msgstr ""
|
8727 |
|
8728 |
-
#: languages/vue.php:
|
8729 |
msgid "Installing. Please wait.."
|
8730 |
msgstr ""
|
8731 |
|
8732 |
-
#: languages/vue.php:
|
8733 |
msgid "Install All-in-One-SEO"
|
8734 |
msgstr ""
|
8735 |
|
8736 |
-
#: languages/vue.php:
|
8737 |
msgid "Welcome to MonsterInsights!"
|
8738 |
msgstr ""
|
8739 |
|
8740 |
-
#: languages/vue.php:
|
8741 |
msgid "Let's get you set up."
|
8742 |
msgstr ""
|
8743 |
|
8744 |
-
#: languages/vue.php:
|
8745 |
msgid "Which category best describes your website?"
|
8746 |
msgstr ""
|
8747 |
|
8748 |
-
#: languages/vue.php:
|
8749 |
msgid "We will recommend the optimal settings for MonsterInsights based on your choice."
|
8750 |
msgstr ""
|
8751 |
|
8752 |
-
#: languages/vue.php:
|
8753 |
msgid "Business Website"
|
8754 |
msgstr ""
|
8755 |
|
8756 |
#. Translators: Make text bold.
|
8757 |
-
#: languages/vue.php:
|
8758 |
msgid "Publisher %1$s(Blog)%2$s"
|
8759 |
msgstr ""
|
8760 |
|
8761 |
-
#: languages/vue.php:
|
8762 |
msgid "Ecommerce"
|
8763 |
msgstr ""
|
8764 |
|
8765 |
-
#: languages/vue.php:
|
8766 |
msgid "Caching"
|
8767 |
msgstr ""
|
8768 |
|
8769 |
-
#: languages/vue.php:
|
8770 |
msgid "Enable Data Caching"
|
8771 |
msgstr ""
|
8772 |
|
8773 |
-
#: languages/vue.php:
|
8774 |
msgid "Refresh Cache Every"
|
8775 |
msgstr ""
|
8776 |
|
8777 |
-
#: languages/vue.php:
|
8778 |
msgid "Choose how often to refresh the cache."
|
8779 |
msgstr ""
|
8780 |
|
8781 |
-
#: languages/vue.php:
|
8782 |
msgid "Enable Ajaxify"
|
8783 |
msgstr ""
|
8784 |
|
8785 |
-
#: languages/vue.php:
|
8786 |
msgid "Ajaxify Widget"
|
8787 |
msgstr ""
|
8788 |
|
8789 |
-
#: languages/vue.php:
|
8790 |
msgid "Use to bypass page caching."
|
8791 |
msgstr ""
|
8792 |
|
8793 |
-
#: languages/vue.php:
|
8794 |
msgid "Empty Cache"
|
8795 |
msgstr ""
|
8796 |
|
8797 |
-
#: languages/vue.php:
|
8798 |
msgid "Click to manually wipe the cache right now."
|
8799 |
msgstr ""
|
8800 |
|
8801 |
-
#: languages/vue.php:
|
8802 |
msgid "Popular posts cache emptied"
|
8803 |
msgstr ""
|
8804 |
|
8805 |
-
#: languages/vue.php:
|
8806 |
msgid "Error emptying the popular posts cache. Please try again."
|
8807 |
msgstr ""
|
8808 |
|
8809 |
-
#: languages/vue.php:
|
8810 |
msgid "Choose Theme"
|
8811 |
msgstr ""
|
8812 |
|
8813 |
-
#: languages/vue.php:
|
8814 |
msgid "Widget Styling"
|
8815 |
msgstr ""
|
8816 |
|
8817 |
-
#: languages/vue.php:
|
8818 |
msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
|
8819 |
msgstr ""
|
8820 |
|
8821 |
-
#: languages/vue.php:
|
8822 |
msgid "Sort By"
|
8823 |
msgstr ""
|
8824 |
|
8825 |
-
#: languages/vue.php:
|
8826 |
msgid "Choose how you'd like the widget to determine your popular posts."
|
8827 |
msgstr ""
|
8828 |
|
8829 |
-
#: languages/vue.php:
|
8830 |
msgid "Display Title"
|
8831 |
msgstr ""
|
8832 |
|
8833 |
-
#: languages/vue.php:
|
8834 |
msgid "Title your widget and set its display preferences."
|
8835 |
msgstr ""
|
8836 |
|
8837 |
-
#: languages/vue.php:
|
8838 |
msgid "Include in Post Types"
|
8839 |
msgstr ""
|
8840 |
|
8841 |
-
#: languages/vue.php:
|
8842 |
msgid "Exclude from specific posts"
|
8843 |
msgstr ""
|
8844 |
|
8845 |
#. Translators: Placeholders make the text bold.
|
8846 |
-
#: languages/vue.php:
|
8847 |
msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
|
8848 |
msgstr ""
|
8849 |
|
8850 |
#. Translators: Placeholders make the text bold.
|
8851 |
-
#: languages/vue.php:
|
8852 |
msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
|
8853 |
msgstr ""
|
8854 |
|
8855 |
-
#: languages/vue.php:
|
8856 |
msgid "Loading Themes"
|
8857 |
msgstr ""
|
8858 |
|
8859 |
#. Translators: placeholders make text small.
|
8860 |
-
#: languages/vue.php:
|
8861 |
msgid "Default Styles %1$s- As seen above.%2$s"
|
8862 |
msgstr ""
|
8863 |
|
8864 |
#. Translators: placeholders make text small.
|
8865 |
-
#: languages/vue.php:
|
8866 |
msgid "No Styles %1$s- Use your own CSS.%2$s"
|
8867 |
msgstr ""
|
8868 |
|
8869 |
#. Translators: placeholders make text small.
|
8870 |
-
#: languages/vue.php:
|
8871 |
msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
|
8872 |
msgstr ""
|
8873 |
|
8874 |
#. Translators: placeholders make text small.
|
8875 |
-
#: languages/vue.php:
|
8876 |
msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
|
8877 |
msgstr ""
|
8878 |
|
8879 |
#. Translators: placeholders make text small.
|
8880 |
-
#: languages/vue.php:
|
8881 |
msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
|
8882 |
msgstr ""
|
8883 |
|
8884 |
-
#: languages/vue.php:
|
8885 |
msgid "Placement"
|
8886 |
msgstr ""
|
8887 |
|
8888 |
-
#: languages/vue.php:
|
8889 |
msgid "Choose how you'd like to place the widget."
|
8890 |
msgstr ""
|
8891 |
|
8892 |
-
#: languages/vue.php:
|
8893 |
msgid "Insert After"
|
8894 |
msgstr ""
|
8895 |
|
8896 |
-
#: languages/vue.php:
|
8897 |
msgid "Choose where in the post body the widget will be placed."
|
8898 |
msgstr ""
|
8899 |
|
8900 |
-
#: languages/vue.php:
|
8901 |
msgid "Customize Design"
|
8902 |
msgstr ""
|
8903 |
|
8904 |
-
#: languages/vue.php:
|
8905 |
msgid "words"
|
8906 |
msgstr ""
|
8907 |
|
8908 |
-
#: languages/vue.php:
|
8909 |
msgid "Please select at least one post to display."
|
8910 |
msgstr ""
|
8911 |
|
8912 |
#. Translators: placeholders make text small.
|
8913 |
-
#: languages/vue.php:
|
8914 |
msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
|
8915 |
msgstr ""
|
8916 |
|
8917 |
#. Translators: placeholders make text small.
|
8918 |
-
#: languages/vue.php:
|
8919 |
msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
|
8920 |
msgstr ""
|
8921 |
|
8922 |
-
#: languages/vue.php:
|
8923 |
msgid "Facebook Instant Articles"
|
8924 |
msgstr ""
|
8925 |
|
8926 |
-
#: languages/vue.php:
|
8927 |
msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
|
8928 |
msgstr ""
|
8929 |
|
8930 |
-
#: languages/vue.php:
|
8931 |
msgid "Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
|
8932 |
msgstr ""
|
8933 |
|
8934 |
-
#: languages/vue.php:
|
8935 |
msgid "Ads Tracking"
|
8936 |
msgstr ""
|
8937 |
|
8938 |
-
#: languages/vue.php:
|
8939 |
msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
|
8940 |
msgstr ""
|
8941 |
|
8942 |
-
#: languages/vue.php:
|
8943 |
msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
|
8944 |
msgstr ""
|
8945 |
|
8946 |
-
#: languages/vue.php:
|
8947 |
msgid "All-in-One SEO is a great product. I have been using it on all my WP sites for several years. I highly recommend it."
|
8948 |
msgstr ""
|
8949 |
|
8950 |
-
#: languages/vue.php:
|
8951 |
msgid "Jack Brown"
|
8952 |
msgstr ""
|
8953 |
|
8954 |
-
#: languages/vue.php:
|
8955 |
msgid "PJB Internet Marketing"
|
8956 |
msgstr ""
|
8957 |
|
8958 |
-
#: languages/vue.php:
|
8959 |
msgid "I’m a professional SEO and used many tools and extensions. Regarding simplicity, individuality and configurability All in One SEO Pro is by far the best SEO plugin out there for WordPress."
|
8960 |
msgstr ""
|
8961 |
|
8962 |
-
#: languages/vue.php:
|
8963 |
msgid "Joel Steinmann"
|
8964 |
msgstr ""
|
8965 |
|
8966 |
-
#: languages/vue.php:
|
8967 |
msgid "CEO, Solergo"
|
8968 |
msgstr ""
|
8969 |
|
8970 |
-
#: languages/vue.php:
|
8971 |
msgid "Recommended Addons"
|
8972 |
msgstr ""
|
8973 |
|
8974 |
-
#: languages/vue.php:
|
8975 |
msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
|
8976 |
msgstr ""
|
8977 |
|
8978 |
-
#: languages/vue.php:
|
8979 |
msgid "Other Addons"
|
8980 |
msgstr ""
|
8981 |
|
8982 |
-
#: languages/vue.php:
|
8983 |
msgid "View all MonsterInsights addons"
|
8984 |
msgstr ""
|
8985 |
|
8986 |
-
#: languages/vue.php:
|
8987 |
msgid "Scroll Tracking"
|
8988 |
msgstr ""
|
8989 |
|
8990 |
-
#: languages/vue.php:
|
8991 |
msgid "Scroll depth tracking allows you to see how far your users scroll before they leave a page. This is great for publishers (bloggers), and eCommerce websites to boost conversions."
|
8992 |
msgstr ""
|
8993 |
|
8994 |
-
#: languages/vue.php:
|
8995 |
msgid ""
|
8996 |
"The EU Compliance addon allows you to improve compliance with GDPR\n"
|
8997 |
" and other privacy regulations."
|
8998 |
msgstr ""
|
8999 |
|
9000 |
-
#: languages/vue.php:
|
9001 |
msgid "EU Compliance"
|
9002 |
msgstr ""
|
9003 |
|
9004 |
-
#: languages/vue.php:
|
9005 |
msgid "Compatibility mode"
|
9006 |
msgstr ""
|
9007 |
|
9008 |
-
#: languages/vue.php:
|
9009 |
msgid "Enable _gtagTracker Compatibility"
|
9010 |
msgstr ""
|
9011 |
|
9012 |
#. Translators: Placeholder gets replaced with default GA js function.
|
9013 |
-
#: languages/vue.php:
|
9014 |
msgid "This enables MonsterInsights to work with plugins that use %1$s and don't support %2$s"
|
9015 |
msgstr ""
|
9016 |
|
9017 |
#. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
|
9018 |
-
#: languages/vue.php:
|
9019 |
msgid "%1$sPage %3$s%2$s of %4$s"
|
9020 |
msgstr ""
|
9021 |
|
9022 |
-
#: languages/vue.php:
|
9023 |
#: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
|
9024 |
msgid "Theme Preview"
|
9025 |
msgstr ""
|
9026 |
|
9027 |
-
#: languages/vue.php:
|
9028 |
msgid "Wide"
|
9029 |
msgstr ""
|
9030 |
|
9031 |
-
#: languages/vue.php:
|
9032 |
msgid "Narrow"
|
9033 |
msgstr ""
|
9034 |
|
9035 |
-
#: languages/vue.php:
|
9036 |
msgid "Title"
|
9037 |
msgstr ""
|
9038 |
|
9039 |
-
#: languages/vue.php:
|
9040 |
msgid "Color"
|
9041 |
msgstr ""
|
9042 |
|
9043 |
-
#: languages/vue.php:
|
9044 |
msgid "Size"
|
9045 |
msgstr ""
|
9046 |
|
9047 |
-
#: languages/vue.php:
|
9048 |
msgid "Border"
|
9049 |
msgstr ""
|
9050 |
|
9051 |
-
#: languages/vue.php:
|
9052 |
msgid "Author/Date"
|
9053 |
msgstr ""
|
9054 |
|
9055 |
-
#: languages/vue.php:
|
9056 |
msgid "Label"
|
9057 |
msgstr ""
|
9058 |
|
9059 |
-
#: languages/vue.php:
|
9060 |
msgid "Background"
|
9061 |
msgstr ""
|
9062 |
|
9063 |
-
#: languages/vue.php:
|
9064 |
msgid "Choose which content you would like displayed in the widget."
|
9065 |
msgstr ""
|
9066 |
|
9067 |
-
#: languages/vue.php:
|
9068 |
msgid "Comments"
|
9069 |
msgstr ""
|
9070 |
|
9071 |
-
#: languages/vue.php:
|
9072 |
msgid "Choose how many posts you’d like displayed in the widget."
|
9073 |
msgstr ""
|
9074 |
|
9075 |
-
#: languages/vue.php:
|
9076 |
msgid "Popular Posts data can be fetched correctly"
|
9077 |
msgstr ""
|
9078 |
|
9079 |
-
#: languages/vue.php:
|
9080 |
msgid "Please note: depending on when you set up the Custom Dimensions settings, it may take up to 7 days to see relevant Popular Posts data loading from Google Analytics."
|
9081 |
msgstr ""
|
9082 |
|
9083 |
-
#: languages/vue.php:
|
9084 |
msgid "Close"
|
9085 |
msgstr ""
|
9086 |
|
9087 |
-
#: languages/vue.php:
|
9088 |
msgid "Add Top 5 Posts from Google Analytics"
|
9089 |
msgstr ""
|
9090 |
|
9091 |
-
#: languages/vue.php:
|
9092 |
msgid "In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both MonsterInsights and Google Analytics settings."
|
9093 |
msgstr ""
|
9094 |
|
9095 |
-
#: languages/vue.php:
|
9096 |
msgid "Test Automated Posts"
|
9097 |
msgstr ""
|
9098 |
|
9099 |
#. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
|
9100 |
-
#: languages/vue.php:
|
9101 |
msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
|
9102 |
msgstr ""
|
9103 |
|
9104 |
-
#: languages/vue.php:
|
9105 |
msgid "Automated + Curated"
|
9106 |
msgstr ""
|
9107 |
|
9108 |
#. Translators: Placeholder adds a link to the Custom Dimensions settings.
|
9109 |
-
#: languages/vue.php:
|
9110 |
msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using %1$sCustom Dimensions%2$s. Also requires Sort By - Curated to be selected. Setup steps can be found in our %3$sknowledge base%4$s."
|
9111 |
msgstr ""
|
9112 |
|
9113 |
#. Translators: Placeholder gets replaced with current license version.
|
9114 |
-
#: languages/vue.php:
|
9115 |
msgid "Pro version is required."
|
9116 |
msgstr ""
|
9117 |
|
9118 |
-
#: languages/vue.php:
|
9119 |
msgid "Verifying Popular Posts data"
|
9120 |
msgstr ""
|
9121 |
|
9122 |
-
#: languages/vue.php:
|
9123 |
msgid "Select posts/search"
|
9124 |
msgstr ""
|
9125 |
|
9126 |
-
#: languages/vue.php:
|
9127 |
msgid "Oops! No posts found."
|
9128 |
msgstr ""
|
9129 |
|
9130 |
-
#: languages/vue.php:
|
9131 |
msgid "Search by post title"
|
9132 |
msgstr ""
|
9133 |
|
9134 |
-
#: languages/vue.php:
|
9135 |
msgid "Can't load posts."
|
9136 |
msgstr ""
|
9137 |
|
9138 |
-
#: languages/vue.php:
|
9139 |
msgid "SharedCount API Key"
|
9140 |
msgstr ""
|
9141 |
|
9142 |
-
#: languages/vue.php:
|
9143 |
msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
|
9144 |
msgstr ""
|
9145 |
|
9146 |
-
#: languages/vue.php:
|
9147 |
msgid "Start Indexing"
|
9148 |
msgstr ""
|
9149 |
|
9150 |
-
#: languages/vue.php:
|
9151 |
msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
|
9152 |
msgstr ""
|
9153 |
|
9154 |
-
#: languages/vue.php:
|
9155 |
msgid "Indexing completed, counts will update automatically every day."
|
9156 |
msgstr ""
|
9157 |
|
9158 |
-
#: languages/vue.php:
|
9159 |
msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
|
9160 |
msgstr ""
|
9161 |
|
9162 |
-
#: languages/vue.php:
|
9163 |
msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
|
9164 |
msgstr ""
|
9165 |
|
9166 |
-
#: languages/vue.php:
|
9167 |
msgid "Icon"
|
9168 |
msgstr ""
|
9169 |
|
9170 |
#. Translators: Minimum and maximum number that can be used.
|
9171 |
-
#: languages/vue.php:
|
9172 |
msgid "Please enter a value between %1$s and %2$s"
|
9173 |
msgstr ""
|
9174 |
|
9175 |
#. Translators: The minimum set value.
|
9176 |
-
#: languages/vue.php:
|
9177 |
msgid "Please enter a value higher than %s"
|
9178 |
msgstr ""
|
9179 |
|
9180 |
#. Translators: The maximum set value.
|
9181 |
-
#: languages/vue.php:
|
9182 |
msgid "Please enter a value lower than %s"
|
9183 |
msgstr ""
|
9184 |
|
9185 |
-
#: languages/vue.php:
|
9186 |
msgid "Please enter a number"
|
9187 |
msgstr ""
|
9188 |
|
9189 |
-
#: languages/vue.php:
|
9190 |
msgid "Value has to be a round number"
|
9191 |
msgstr ""
|
9192 |
|
9193 |
-
#: languages/vue.php:
|
9194 |
msgid "Export PDF Report"
|
9195 |
msgstr ""
|
9196 |
|
9197 |
-
#: languages/vue.php:
|
9198 |
msgid "You can export PDF reports only in the PRO version."
|
9199 |
msgstr ""
|
9200 |
|
9201 |
-
#: languages/vue.php:
|
9202 |
msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
|
9203 |
msgstr ""
|
9204 |
|
9205 |
-
#: languages/vue.php:
|
9206 |
msgid "It's easy to double your traffic and sales when you know exactly how people find and use your website. MonsterInsights Pro shows you the stats that matter!"
|
9207 |
msgstr ""
|
9208 |
|
9209 |
-
#: languages/vue.php:
|
9210 |
msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
|
9211 |
msgstr ""
|
9212 |
|
9213 |
#. Translators: Makes text bold.
|
9214 |
-
#: languages/vue.php:
|
9215 |
msgid "Use coupon code %1$sLITEUPGRADE%2$s"
|
9216 |
msgstr ""
|
9217 |
|
9218 |
#. Translators: Make text green.
|
9219 |
-
#: languages/vue.php:
|
9220 |
msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
|
9221 |
msgstr ""
|
9222 |
|
9223 |
#. Translators: Placeholder adds a line break.
|
9224 |
-
#: languages/vue.php:
|
9225 |
msgid "You can customize your %sdate range only in the PRO version."
|
9226 |
msgstr ""
|
9227 |
|
9228 |
-
#: languages/vue.php:
|
9229 |
msgid "Help Us Improve"
|
9230 |
msgstr ""
|
9231 |
|
9232 |
-
#: languages/vue.php:
|
9233 |
msgid "Help us better understand our users and their website needs."
|
9234 |
msgstr ""
|
9235 |
|
9236 |
#. Translators: Adds a link to the documentation.
|
9237 |
-
#: languages/vue.php:
|
9238 |
msgid "If enabled MonsterInsights will send some information about your WordPress site like what plugins and themes you use and which MonsterInsights 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"
|
9239 |
msgstr ""
|
9240 |
|
9241 |
-
#: languages/vue.php:
|
9242 |
msgid "Website profile"
|
9243 |
msgstr ""
|
9244 |
|
9245 |
-
#: languages/vue.php:
|
9246 |
msgid "Active profile"
|
9247 |
msgstr ""
|
9248 |
|
9249 |
-
#: languages/vue.php:
|
9250 |
msgid "Skip and Keep Connection"
|
9251 |
msgstr ""
|
9252 |
|
9253 |
-
#: languages/vue.php:
|
9254 |
msgid "This feature requires MonsterInsights Pro"
|
9255 |
msgstr ""
|
9256 |
|
9257 |
-
#: languages/vue.php:
|
9258 |
msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
|
9259 |
msgstr ""
|
9260 |
|
9261 |
-
#: languages/vue.php:
|
9262 |
msgid "Upgrade to Pro and Unlock Popular Products"
|
9263 |
msgstr ""
|
9264 |
|
9265 |
-
#: languages/vue.php:
|
9266 |
msgid "View all Pro features"
|
9267 |
msgstr ""
|
9268 |
|
9269 |
-
#: languages/vue.php:
|
9270 |
msgid "Days"
|
9271 |
msgstr ""
|
9272 |
|
9273 |
#. Translators: placeholders make text small.
|
9274 |
-
#: languages/vue.php:
|
9275 |
msgid "7 days"
|
9276 |
msgstr ""
|
9277 |
|
9278 |
-
#: languages/vue.php:
|
9279 |
msgid "30 days"
|
9280 |
msgstr ""
|
9281 |
|
9282 |
-
#: languages/vue.php:
|
9283 |
msgid "Custom"
|
9284 |
msgstr ""
|
9285 |
|
9286 |
-
#: languages/vue.php:
|
9287 |
msgid "Only Show Posts from These Categories"
|
9288 |
msgstr ""
|
9289 |
|
9290 |
-
#: languages/vue.php:
|
9291 |
msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
|
9292 |
msgstr ""
|
9293 |
|
9294 |
-
#: languages/vue.php:
|
9295 |
msgid "Multiple Entries"
|
9296 |
msgstr ""
|
9297 |
|
9298 |
-
#: languages/vue.php:
|
9299 |
msgid "Total Number of Widgets to Show"
|
9300 |
msgstr ""
|
9301 |
|
9302 |
-
#: languages/vue.php:
|
9303 |
msgid "Choose how many widgets will be placed in a single Post."
|
9304 |
msgstr ""
|
9305 |
|
9306 |
-
#: languages/vue.php:
|
9307 |
msgid "Minimum Distance Between Widgets"
|
9308 |
msgstr ""
|
9309 |
|
9310 |
-
#: languages/vue.php:
|
9311 |
msgid "Choose the distance between widgets."
|
9312 |
msgstr ""
|
9313 |
|
9314 |
-
#: languages/vue.php:
|
9315 |
msgid "Minimum Word Count to Display Multiple Widgets"
|
9316 |
msgstr ""
|
9317 |
|
9318 |
-
#: languages/vue.php:
|
9319 |
msgid "Choose the minimum word count for a Post to have multiple entries."
|
9320 |
msgstr ""
|
9321 |
|
9322 |
-
#: languages/vue.php:
|
9323 |
msgid "Pro version is required"
|
9324 |
msgstr ""
|
9325 |
|
9326 |
#. Translators: Placeholder adds a link to the Custom Dimensions settings.
|
9327 |
-
#: languages/vue.php:
|
9328 |
msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using Custom Dimensions (Pro version required. %1$sUpgrade now%2$s)."
|
9329 |
msgstr ""
|
9330 |
|
9331 |
-
#: languages/vue.php:
|
9332 |
msgid "Unlock with %s"
|
9333 |
msgstr ""
|
9334 |
|
9335 |
-
#: languages/vue.php:
|
9336 |
msgid "Automatic Placement"
|
9337 |
msgstr ""
|
9338 |
|
9339 |
-
#: languages/vue.php:
|
9340 |
msgid "Display using Gutenberg Blocks"
|
9341 |
msgstr ""
|
9342 |
|
9343 |
-
#: languages/vue.php:
|
9344 |
msgid "Embed Options"
|
9345 |
msgstr ""
|
9346 |
|
9347 |
-
#: languages/vue.php:
|
9348 |
msgid "All Embed Options can be used in conjunction with one another."
|
9349 |
msgstr ""
|
9350 |
|
9351 |
-
#: languages/vue.php:
|
9352 |
msgid "Using the Gutenberg Block"
|
9353 |
msgstr ""
|
9354 |
|
9355 |
-
#: languages/vue.php:
|
9356 |
msgid "Using Automatic Embed"
|
9357 |
msgstr ""
|
9358 |
|
9359 |
-
#: languages/vue.php:
|
9360 |
msgid "Learn how to insert the Popular Posts Widget into your posts and pages using Gutenberg Blocks. To style this widget, use the Gutenberg Block settings."
|
9361 |
msgstr ""
|
9362 |
|
9363 |
-
#: languages/vue.php:
|
9364 |
msgid "Enabling Automatic Placement will include the Popular Posts Widget after the last paragraph of any and all posts that match your Behavior settings. To style this widget use the Customize Design panel above."
|
9365 |
msgstr ""
|
9366 |
|
9367 |
-
#: languages/vue.php:
|
9368 |
msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
|
9369 |
msgstr ""
|
9370 |
|
9371 |
-
#: languages/vue.php:
|
9372 |
msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
|
9373 |
msgstr ""
|
9374 |
|
9375 |
-
#: languages/vue.php:
|
9376 |
msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
|
9377 |
msgstr ""
|
9378 |
|
9379 |
-
#: languages/vue.php:
|
9380 |
msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
|
9381 |
msgstr ""
|
9382 |
|
9383 |
-
#: languages/vue.php:
|
9384 |
msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
|
9385 |
msgstr ""
|
9386 |
|
9387 |
-
#: languages/vue.php:
|
9388 |
msgid "%1$sStep 1%2$s - Navigate to your Appearance > Widgets page using the menu on the left side your screen. Must be logged in as Admin."
|
9389 |
msgstr ""
|
9390 |
|
9391 |
-
#: languages/vue.php:
|
9392 |
msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - MonsterInsights widget and drag it into the desired Sidebar on the right."
|
9393 |
msgstr ""
|
9394 |
|
9395 |
-
#: languages/vue.php:
|
9396 |
msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
|
9397 |
msgstr ""
|
9398 |
|
9399 |
-
#: languages/vue.php:
|
9400 |
msgid "Display using a Shortcode"
|
9401 |
msgstr ""
|
9402 |
|
9403 |
-
#: languages/vue.php:
|
9404 |
msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
|
9405 |
msgstr ""
|
9406 |
|
9407 |
-
#: languages/vue.php:
|
9408 |
msgid "Copy Shortcode"
|
9409 |
msgstr ""
|
9410 |
|
9411 |
-
#: languages/vue.php:
|
9412 |
msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
|
9413 |
msgstr ""
|
9414 |
|
9415 |
-
#: languages/vue.php:
|
9416 |
msgid "Enable Automatic Placement"
|
9417 |
msgstr ""
|
9418 |
|
9419 |
-
#: languages/vue.php:
|
9420 |
msgid "Display in a Sidebar"
|
9421 |
msgstr ""
|
9422 |
|
9423 |
-
#: languages/vue.php:
|
9424 |
msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
|
9425 |
msgstr ""
|
9426 |
|
9427 |
-
#: languages/vue.php:
|
9428 |
msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
|
9429 |
msgstr ""
|
9430 |
|
9431 |
-
#: languages/vue.php:
|
9432 |
msgid "Display Method"
|
9433 |
msgstr ""
|
9434 |
|
9435 |
-
#: languages/vue.php:
|
9436 |
msgid "There are two ways to manual include the widget in your posts."
|
9437 |
msgstr ""
|
9438 |
|
9439 |
-
#: languages/vue.php:
|
9440 |
msgid "Using the Shortcode"
|
9441 |
msgstr ""
|
9442 |
|
9443 |
-
#: languages/vue.php:
|
9444 |
msgid "Learn how to insert the widget using Gutenberg blocks."
|
9445 |
msgstr ""
|
9446 |
|
9447 |
-
#: languages/vue.php:
|
9448 |
msgid "Learn how to insert the widget using out Shortcode."
|
9449 |
msgstr ""
|
9450 |
|
9451 |
-
#: languages/vue.php:
|
9452 |
msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
|
9453 |
msgstr ""
|
9454 |
|
9455 |
-
#: languages/vue.php:
|
9456 |
msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”."
|
9457 |
msgstr ""
|
9458 |
|
9459 |
-
#: languages/vue.php:
|
9460 |
msgid "Shortcode"
|
9461 |
msgstr ""
|
9462 |
|
9463 |
-
#: languages/vue.php:
|
9464 |
msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
|
9465 |
msgstr ""
|
9466 |
|
9467 |
-
#: languages/vue.php:
|
9468 |
msgid "Facebook Instant Articleasdasdasds"
|
9469 |
msgstr ""
|
9470 |
|
9471 |
-
#: languages/vue.php:
|
9472 |
msgid "Media"
|
9473 |
msgstr ""
|
9474 |
|
9475 |
-
#: languages/vue.php:
|
9476 |
msgid "Track how your users interact with videos on your website. Upgrade to MonsterInsights Pro."
|
9477 |
msgstr ""
|
9478 |
|
9479 |
-
#: languages/vue.php:
|
9480 |
msgid "Improve Your Conversion Rate With Insights Into Which Content Works Best."
|
9481 |
msgstr ""
|
9482 |
|
9483 |
-
#: languages/vue.php:
|
9484 |
msgid "Top Affilliate Links"
|
9485 |
msgstr ""
|
9486 |
|
9487 |
-
#: languages/vue.php:
|
9488 |
msgid "Scroll Depth"
|
9489 |
msgstr ""
|
9490 |
|
9491 |
-
#: languages/vue.php:
|
9492 |
msgid "Increase Sales and Make More Money With Enhanced eCommerce Insights."
|
9493 |
msgstr ""
|
9494 |
|
9495 |
-
#: languages/vue.php:
|
9496 |
msgid "10+ eCommerce Integrations"
|
9497 |
msgstr ""
|
9498 |
|
9499 |
-
#: languages/vue.php:
|
9500 |
msgid "Average Order Value"
|
9501 |
msgstr ""
|
9502 |
|
9503 |
-
#: languages/vue.php:
|
9504 |
msgid "Total Revenue"
|
9505 |
msgstr ""
|
9506 |
|
9507 |
-
#: languages/vue.php:
|
9508 |
msgid "Number of Transactions"
|
9509 |
msgstr ""
|
9510 |
|
9511 |
-
#: languages/vue.php:
|
9512 |
msgid "Increase Engagement and Unlock New Insights About Your Site."
|
9513 |
msgstr ""
|
9514 |
|
9515 |
-
#: languages/vue.php:
|
9516 |
msgid "User ID Tracking"
|
9517 |
msgstr ""
|
9518 |
|
9519 |
-
#: languages/vue.php:
|
9520 |
msgid "Post Types"
|
9521 |
msgstr ""
|
9522 |
|
9523 |
-
#: languages/vue.php:
|
9524 |
msgid "Tag Tracking"
|
9525 |
msgstr ""
|
9526 |
|
9527 |
-
#: languages/vue.php:
|
9528 |
msgid "Categories"
|
9529 |
msgstr ""
|
9530 |
|
9531 |
-
#: languages/vue.php:
|
9532 |
msgid "SEO Scores"
|
9533 |
msgstr ""
|
9534 |
|
9535 |
-
#: languages/vue.php:
|
9536 |
msgid "Publish Times"
|
9537 |
msgstr ""
|
9538 |
|
9539 |
-
#: languages/vue.php:
|
9540 |
msgid "Focus Keywords"
|
9541 |
msgstr ""
|
9542 |
|
9543 |
-
#: languages/vue.php:
|
9544 |
msgid "Track Every Type of Web Form and Gain Visibility Into Your Customer Journey."
|
9545 |
msgstr ""
|
9546 |
|
9547 |
-
#: languages/vue.php:
|
9548 |
msgid "Conversion Counts"
|
9549 |
msgstr ""
|
9550 |
|
9551 |
-
#: languages/vue.php:
|
9552 |
msgid "Impression Counts"
|
9553 |
msgstr ""
|
9554 |
|
9555 |
-
#: languages/vue.php:
|
9556 |
msgid "Conversion Rates"
|
9557 |
msgstr ""
|
9558 |
|
9559 |
-
#: languages/vue.php:
|
9560 |
msgid "See Exactly How Visitors Find Your Website From Google."
|
9561 |
msgstr ""
|
9562 |
|
9563 |
-
#: languages/vue.php:
|
9564 |
msgid "Top Google Search Terms"
|
9565 |
msgstr ""
|
9566 |
|
9567 |
-
#: languages/vue.php:
|
9568 |
msgid "Number of Clicks"
|
9569 |
msgstr ""
|
9570 |
|
9571 |
-
#: languages/vue.php:
|
9572 |
msgid "Click-through Ratio"
|
9573 |
msgstr ""
|
9574 |
|
9575 |
-
#: languages/vue.php:
|
9576 |
msgid "Average Results Position"
|
9577 |
msgstr ""
|
9578 |
|
9579 |
-
#: languages/vue.php:
|
9580 |
msgid "Realtime Report"
|
9581 |
msgstr ""
|
9582 |
|
9583 |
-
#: languages/vue.php:
|
9584 |
msgid "See Who And What is Happening on Your Website in Realtime."
|
9585 |
msgstr ""
|
9586 |
|
9587 |
-
#: languages/vue.php:
|
9588 |
msgid "Top Page Views"
|
9589 |
msgstr ""
|
9590 |
|
9591 |
-
#: languages/vue.php:
|
9592 |
msgid "Current Active Users"
|
9593 |
msgstr ""
|
9594 |
|
9595 |
-
#: languages/vue.php:
|
9596 |
msgid "Top Referral Sources"
|
9597 |
msgstr ""
|
9598 |
|
9599 |
-
#: languages/vue.php:
|
9600 |
msgid "Top Countries"
|
9601 |
msgstr ""
|
9602 |
|
9603 |
-
#: languages/vue.php:
|
9604 |
msgid "Top Cities"
|
9605 |
msgstr ""
|
9606 |
|
9607 |
-
#: languages/vue.php:
|
9608 |
msgid "Improve Your User Experience and Improve Search Engine Rankings."
|
9609 |
msgstr ""
|
9610 |
|
9611 |
-
#: languages/vue.php:
|
9612 |
msgid "Overall Site Speed Score"
|
9613 |
msgstr ""
|
9614 |
|
9615 |
-
#: languages/vue.php:
|
9616 |
msgid "Server Response Times"
|
9617 |
msgstr ""
|
9618 |
|
9619 |
-
#: languages/vue.php:
|
9620 |
msgid "Mobile and Desktop Scores"
|
9621 |
msgstr ""
|
9622 |
|
9623 |
-
#: languages/vue.php:
|
9624 |
msgid "First Contentful Paint"
|
9625 |
msgstr ""
|
9626 |
|
9627 |
-
#: languages/vue.php:
|
9628 |
msgid "Automatic Recommendations"
|
9629 |
msgstr ""
|
9630 |
|
9631 |
-
#: languages/vue.php:
|
9632 |
msgid "Total Blocking Time"
|
9633 |
msgstr ""
|
9634 |
|
9635 |
-
#: languages/vue.php:
|
9636 |
msgid "On-Demand Audits"
|
9637 |
msgstr ""
|
9638 |
|
9639 |
-
#: languages/vue.php:
|
9640 |
msgid "Time to Interactive"
|
9641 |
msgstr ""
|
9642 |
|
9643 |
-
#: languages/vue.php:
|
9644 |
msgid "2021 Year in Review"
|
9645 |
msgstr ""
|
9646 |
|
9647 |
-
#: languages/vue.php:
|
9648 |
msgid "Realtime"
|
9649 |
msgstr ""
|
9650 |
|
9651 |
#. Translators: Placeholders are used for making text bold and adding a link.
|
9652 |
-
#: languages/vue.php:
|
9653 |
msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
|
9654 |
msgstr ""
|
9655 |
|
9656 |
-
#: languages/vue.php:
|
9657 |
msgid "Featured"
|
9658 |
msgstr ""
|
9659 |
|
9660 |
-
#: languages/vue.php:
|
9661 |
msgid "Traffic"
|
9662 |
msgstr ""
|
9663 |
|
9664 |
-
#: languages/vue.php:
|
9665 |
msgid "Revenue"
|
9666 |
msgstr ""
|
9667 |
|
9668 |
-
#: languages/vue.php:
|
9669 |
msgid "Guides & Resources"
|
9670 |
msgstr ""
|
9671 |
|
9672 |
-
#: languages/vue.php:
|
9673 |
msgid "Upgrade and Unlock"
|
9674 |
msgstr ""
|
9675 |
|
9676 |
-
#: languages/vue.php:
|
9677 |
msgid "What’s in the %1$s?"
|
9678 |
msgstr ""
|
9679 |
|
9680 |
-
#: languages/vue.php:
|
9681 |
msgid "%1$sPlus%2$s, upgrading to Pro will unlock %1$sall%2$s advanced reports, tracking, and integrations. %3$sLearn more about Pro%4$s"
|
9682 |
msgstr ""
|
9683 |
|
9684 |
-
#: languages/vue.php:
|
9685 |
msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
|
9686 |
msgstr ""
|
9687 |
|
9688 |
-
#: languages/vue.php:
|
9689 |
msgid "Your 2021 Analytics Report"
|
9690 |
msgstr ""
|
9691 |
|
9692 |
-
#: languages/vue.php:
|
9693 |
msgid "January 1, 2021 - December 31, 2021"
|
9694 |
msgstr ""
|
9695 |
|
9696 |
-
#: languages/vue.php:
|
9697 |
msgid "A Tip for 2022"
|
9698 |
msgstr ""
|
9699 |
|
9700 |
-
#: languages/vue.php:
|
9701 |
msgid "A Tip For 2022"
|
9702 |
msgstr ""
|
9703 |
|
9704 |
-
#: languages/vue.php:
|
9705 |
msgid "Here's to an amazing 2022!"
|
9706 |
msgstr ""
|
9707 |
|
9708 |
-
#: languages/vue.php:
|
9709 |
msgid "Try our other popular WordPress plugins to grow your website in 2022."
|
9710 |
msgstr ""
|
9711 |
|
9712 |
-
#: languages/vue.php:
|
9713 |
msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
|
9714 |
msgstr ""
|
9715 |
|
9716 |
-
#: languages/vue.php:
|
9717 |
msgid "Copyright MonsterInsights, 2022"
|
9718 |
msgstr ""
|
9719 |
|
9720 |
#. Translators: Number of minutes spent on site.
|
9721 |
-
#: languages/vue.php:
|
9722 |
msgid "Each visitor spent an average of %s minutes on your website in 2021."
|
9723 |
msgstr ""
|
9724 |
|
9725 |
-
#: languages/vue.php:
|
9726 |
msgid "RafflePress"
|
9727 |
msgstr ""
|
9728 |
|
9729 |
-
#: languages/vue.php:
|
9730 |
msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
|
9731 |
msgstr ""
|
9732 |
|
9733 |
-
#: languages/vue.php:
|
9734 |
msgid "Constant Contact"
|
9735 |
msgstr ""
|
9736 |
|
9737 |
-
#: languages/vue.php:
|
9738 |
msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
|
9739 |
msgstr ""
|
9740 |
|
9741 |
-
#: languages/vue.php:
|
9742 |
msgid "SEMRUSH"
|
9743 |
msgstr ""
|
9744 |
|
9745 |
-
#: languages/vue.php:
|
9746 |
msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
|
9747 |
msgstr ""
|
9748 |
|
9749 |
-
#: languages/vue.php:
|
9750 |
msgid "Engagement Tools"
|
9751 |
msgstr ""
|
9752 |
|
9753 |
-
#: languages/vue.php:
|
9754 |
msgid "WPForms"
|
9755 |
msgstr ""
|
9756 |
|
9757 |
-
#: languages/vue.php:
|
9758 |
msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
|
9759 |
msgstr ""
|
9760 |
|
9761 |
-
#: languages/vue.php:
|
9762 |
msgid "OptinMonster"
|
9763 |
msgstr ""
|
9764 |
|
9765 |
-
#: languages/vue.php:
|
9766 |
msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
|
9767 |
msgstr ""
|
9768 |
|
9769 |
-
#: languages/vue.php:
|
9770 |
msgid "Smash Balloon - Facebook"
|
9771 |
msgstr ""
|
9772 |
|
9773 |
-
#: languages/vue.php:
|
9774 |
msgid "Smash Balloon - Instagram"
|
9775 |
msgstr ""
|
9776 |
|
9777 |
-
#: languages/vue.php:
|
9778 |
msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
|
9779 |
msgstr ""
|
9780 |
|
9781 |
-
#: languages/vue.php:
|
9782 |
msgid "Popular Posts by MonsterInsights"
|
9783 |
msgstr ""
|
9784 |
|
9785 |
-
#: languages/vue.php:
|
9786 |
msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
|
9787 |
msgstr ""
|
9788 |
|
9789 |
-
#: languages/vue.php:
|
9790 |
msgid "Popular Products by MonsterInsights"
|
9791 |
msgstr ""
|
9792 |
|
9793 |
-
#: languages/vue.php:
|
9794 |
msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
|
9795 |
msgstr ""
|
9796 |
|
9797 |
-
#: languages/vue.php:
|
9798 |
msgid "Revenue Tools"
|
9799 |
msgstr ""
|
9800 |
|
9801 |
-
#: languages/vue.php:
|
9802 |
msgid "SeedProd"
|
9803 |
msgstr ""
|
9804 |
|
9805 |
-
#: languages/vue.php:
|
9806 |
msgid "Use the best drag-and-drop landing page builder for WordPress to instantly build coming soon pages, sales pages, opt-in pages, webinar pages, maintenance pages, and more. Includes 100+ free templates."
|
9807 |
msgstr ""
|
9808 |
|
9809 |
-
#: languages/vue.php:
|
9810 |
msgid "Featured Tools"
|
9811 |
msgstr ""
|
9812 |
|
9813 |
-
#: languages/vue.php:
|
9814 |
msgid "Easy Affiliate"
|
9815 |
msgstr ""
|
9816 |
|
9817 |
-
#: languages/vue.php:
|
9818 |
msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with MonsterInsights."
|
9819 |
msgstr ""
|
9820 |
|
9821 |
-
#: languages/vue.php:
|
9822 |
msgid "SearchWP"
|
9823 |
msgstr ""
|
9824 |
|
9825 |
-
#: languages/vue.php:
|
9826 |
msgid "Unlock better search results for your website. Perfect for any information or eCommerce store to help users find exactly what content and products they’re looking for."
|
9827 |
msgstr ""
|
9828 |
|
9829 |
-
#: languages/vue.php:
|
9830 |
msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
|
9831 |
msgstr ""
|
9832 |
|
9833 |
-
#: languages/vue.php:
|
9834 |
msgid "Create a membership website. Works automatically with MonsterInsights, no coding needed."
|
9835 |
msgstr ""
|
9836 |
|
9837 |
-
#: languages/vue.php:
|
9838 |
msgid "Thirsty Affiliates"
|
9839 |
msgstr ""
|
9840 |
|
9841 |
-
#: languages/vue.php:
|
9842 |
msgid "Manage all your affiliate links with features designed to help make bloggers more money."
|
9843 |
msgstr ""
|
9844 |
|
9845 |
-
#: languages/vue.php:
|
9846 |
msgid "Upgrade to unlock advanced reporting and features designed to help you get more traffic and make more money from your website. Special Offer: Save 50% today."
|
9847 |
msgstr ""
|
9848 |
|
9849 |
-
#: languages/vue.php:
|
9850 |
msgid "Advanced Coupons"
|
9851 |
msgstr ""
|
9852 |
|
9853 |
-
#: languages/vue.php:
|
9854 |
msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
|
9855 |
msgstr ""
|
9856 |
|
9857 |
-
#: languages/vue.php:
|
9858 |
msgid "PrettyLinks"
|
9859 |
msgstr ""
|
9860 |
|
9861 |
-
#: languages/vue.php:
|
9862 |
msgid "Automatically monetize your website content with affiliate links added automatically to your content."
|
9863 |
msgstr ""
|
9864 |
|
9865 |
-
#: languages/vue.php:
|
9866 |
msgid "Install Now"
|
9867 |
msgstr ""
|
9868 |
|
9869 |
-
#: languages/vue.php:
|
9870 |
msgid "Online Marketing Guides & Resources"
|
9871 |
msgstr ""
|
9872 |
|
9873 |
-
#: languages/vue.php:
|
9874 |
msgid "MonsterInsights Pro"
|
9875 |
msgstr ""
|
9876 |
|
9877 |
-
#: languages/vue.php:
|
9878 |
msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
|
9879 |
msgstr ""
|
9880 |
|
9881 |
-
#: languages/vue.php:
|
9882 |
msgid "Traffic Tools"
|
9883 |
msgstr ""
|
9884 |
|
9885 |
-
#: languages/vue.php:
|
9886 |
msgid "All in One SEO (AIOSEO)"
|
9887 |
msgstr ""
|
9888 |
|
9889 |
-
#: languages/vue.php:
|
9890 |
msgid "The best WordPress SEO plugin that works automatically with MonsterInsights."
|
9891 |
msgstr ""
|
9892 |
|
9893 |
-
#: languages/vue.php:
|
9894 |
msgid "PushEngage"
|
9895 |
msgstr ""
|
9896 |
|
9897 |
-
#: languages/vue.php:
|
9898 |
msgid "Send push notifications to your visitors to drive more traffic and boost sales."
|
9899 |
msgstr ""
|
9900 |
|
9901 |
-
#: languages/vue.php:
|
9902 |
msgid "With MonsterInsights Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
|
9903 |
msgstr ""
|
9904 |
|
9905 |
-
#: languages/vue.php:
|
9906 |
msgid "Works automatically with WooCommerce, MemberPress, and EasyDigitalDownloads."
|
9907 |
msgstr ""
|
9908 |
|
9909 |
-
#: languages/vue.php:
|
9910 |
msgid "Media Tracking"
|
9911 |
msgstr ""
|
9912 |
|
9913 |
-
#: languages/vue.php:
|
9914 |
msgid "Get Started"
|
9915 |
msgstr ""
|
9916 |
|
9917 |
-
#: languages/vue.php:
|
9918 |
msgid "Awesome! Tracking and Analytics are All Setup!"
|
9919 |
msgstr ""
|
9920 |
|
9921 |
-
#: languages/vue.php:
|
9922 |
msgid "MonsterInsights is connected to Google Analytics and data is being collected."
|
9923 |
msgstr ""
|
9924 |
|
9925 |
-
#: languages/vue.php:
|
9926 |
msgid "Complete Setup without Upgrading"
|
9927 |
msgstr ""
|
9928 |
|
9929 |
-
#: languages/vue.php:
|
9930 |
msgid "Success"
|
9931 |
msgstr ""
|
9932 |
|
9933 |
-
#: languages/vue.php:
|
9934 |
msgid "Connected to Google Analytics"
|
9935 |
msgstr ""
|
9936 |
|
9937 |
-
#: languages/vue.php:
|
9938 |
msgid "Tracking Code Installed"
|
9939 |
msgstr ""
|
9940 |
|
9941 |
-
#: languages/vue.php:
|
9942 |
msgid "Data Being Collected"
|
9943 |
msgstr ""
|
9944 |
|
9945 |
#. Translators: Add link to retrieve license from account area.
|
9946 |
-
#: languages/vue.php:
|
9947 |
msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO!"
|
9948 |
msgstr ""
|
9949 |
|
9950 |
-
#: languages/vue.php:
|
9951 |
msgid "Verify License Key"
|
9952 |
msgstr ""
|
9953 |
|
9954 |
-
#: languages/vue.php:
|
9955 |
msgid "Upgrade to Unlock These Features"
|
9956 |
msgstr ""
|
9957 |
|
9958 |
-
#: languages/vue.php:
|
9959 |
msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
|
9960 |
msgstr ""
|
9961 |
|
9962 |
-
#: languages/vue.php:
|
9963 |
msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
|
9964 |
msgstr ""
|
9965 |
|
9966 |
-
#: languages/vue.php:
|
9967 |
msgid "Verifying License..."
|
9968 |
msgstr ""
|
9969 |
|
9970 |
-
#: languages/vue.php:
|
9971 |
msgid "Privacy Compliance Addon"
|
9972 |
msgstr ""
|
9973 |
|
9974 |
-
#: languages/vue.php:
|
9975 |
msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
|
9976 |
msgstr ""
|
9977 |
|
9978 |
-
#: languages/vue.php:
|
9979 |
msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
|
9980 |
msgstr ""
|
9981 |
|
9982 |
-
#: languages/vue.php:
|
9983 |
msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
|
9984 |
msgstr ""
|
9985 |
|
9986 |
-
#: languages/vue.php:
|
9987 |
msgid "20+ Advanced Tracking"
|
9988 |
msgstr ""
|
9989 |
|
9990 |
-
#: languages/vue.php:
|
9991 |
msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
|
9992 |
msgstr ""
|
9993 |
|
9994 |
-
#: languages/vue.php:
|
9995 |
msgid "Advanced Growth Tools"
|
9996 |
msgstr ""
|
9997 |
|
9998 |
-
#: languages/vue.php:
|
9999 |
msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
|
10000 |
msgstr ""
|
10001 |
|
10002 |
-
#: languages/vue.php:
|
10003 |
msgid "Track how your users interact with videos on your website."
|
10004 |
msgstr ""
|
10005 |
|
10006 |
-
#: languages/vue.php:
|
10007 |
msgid "Error Processing"
|
10008 |
msgstr ""
|
10009 |
|
10010 |
-
#: languages/vue.php:
|
10011 |
msgid "There was an error while processing some features. Please try again or you can skip this process for now"
|
10012 |
msgstr ""
|
10013 |
|
10014 |
-
#: languages/vue.php:
|
10015 |
msgid "Which website features would you like to enable?"
|
10016 |
msgstr ""
|
10017 |
|
10018 |
-
#: languages/vue.php:
|
10019 |
msgid "We’ve already selected our recommended features based on your site. "
|
10020 |
msgstr ""
|
10021 |
|
10022 |
-
#: languages/vue.php:
|
10023 |
msgid "Continue"
|
10024 |
msgstr ""
|
10025 |
|
10026 |
-
#: languages/vue.php:
|
10027 |
msgid "Standard Analytics & Reports"
|
10028 |
msgstr ""
|
10029 |
|
10030 |
-
#: languages/vue.php:
|
10031 |
msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
|
10032 |
msgstr ""
|
10033 |
|
10034 |
-
#: languages/vue.php:
|
10035 |
msgid "Helps you see what links your users are clicking on your site."
|
10036 |
msgstr ""
|
10037 |
|
10038 |
-
#: languages/vue.php:
|
10039 |
msgid "All In One SEO Toolkit"
|
10040 |
msgstr ""
|
10041 |
|
10042 |
-
#: languages/vue.php:
|
10043 |
msgid "The best WordPress SEO plugin that works with MonsterInsights to boost your rankings."
|
10044 |
msgstr ""
|
10045 |
|
10046 |
-
#: languages/vue.php:
|
10047 |
msgid "Smart Form Builder by WPForms"
|
10048 |
msgstr ""
|
10049 |
|
10050 |
-
#: languages/vue.php:
|
10051 |
msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
|
10052 |
msgstr ""
|
10053 |
|
10054 |
-
#: languages/vue.php:
|
10055 |
msgid "The following plugins will be installed: "
|
10056 |
msgstr ""
|
10057 |
|
10058 |
-
#: languages/vue.php:
|
10059 |
msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
|
10060 |
msgstr ""
|
10061 |
|
10062 |
-
#: languages/vue.php:
|
10063 |
msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
|
10064 |
msgstr ""
|
10065 |
|
10066 |
-
#: languages/vue.php:
|
10067 |
msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
|
10068 |
msgstr ""
|
10069 |
|
10070 |
-
#: languages/vue.php:
|
10071 |
msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
|
10072 |
msgstr ""
|
10073 |
|
10074 |
-
#: languages/vue.php:
|
10075 |
msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
|
10076 |
msgstr ""
|
10077 |
|
10078 |
-
#: languages/vue.php:
|
10079 |
msgid "MonsterInsights makes it effortless for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
|
10080 |
msgstr ""
|
10081 |
|
10082 |
-
#: languages/vue.php:
|
10083 |
msgid "Expired"
|
10084 |
msgstr ""
|
10085 |
|
10086 |
-
#: languages/vue.php:
|
10087 |
msgid "WP Simple Pay"
|
10088 |
msgstr ""
|
10089 |
|
10090 |
-
#: languages/vue.php:
|
10091 |
msgid "License Expired"
|
10092 |
msgstr ""
|
10093 |
|
10094 |
-
#: languages/vue.php:
|
10095 |
msgid "Your MonsterInsights license key has expired."
|
10096 |
msgstr ""
|
10097 |
|
10098 |
-
#: languages/vue.php:
|
10099 |
msgid "Renew today to ensure Google Analytics continues to track properly."
|
10100 |
msgstr ""
|
10101 |
|
10102 |
-
#: languages/vue.php:
|
10103 |
msgid "Click here."
|
10104 |
msgstr ""
|
10105 |
|
10106 |
#. Translators: Adds a link to the license renewal.
|
10107 |
-
#: languages/vue.php:
|
10108 |
msgid "To ensure tracking works properly, reactivate your license"
|
10109 |
msgstr ""
|
10110 |
|
10111 |
-
#: languages/vue.php:
|
10112 |
msgid "Reactivate License"
|
10113 |
msgstr ""
|
10114 |
|
10115 |
-
#: languages/vue.php:
|
10116 |
msgid "View All Reports"
|
10117 |
msgstr ""
|
10118 |
|
10119 |
-
#: languages/vue.php:
|
10120 |
msgid "Oops! There was an error processing request. Please try again later."
|
10121 |
msgstr ""
|
10122 |
|
10123 |
#. Translators: tag to make text italic starts, tag end.
|
10124 |
-
#: languages/vue.php:
|
10125 |
msgid "See What Your Website Visitors Are %1$sReally%2$s Thinking!"
|
10126 |
msgstr ""
|
10127 |
|
10128 |
-
#: languages/vue.php:
|
10129 |
msgid "UserFeedback lets you easily collect feedback from your website in real time. You can use this important data to increase your traffic, sales, newsletter signups, engagement, and more."
|
10130 |
msgstr ""
|
10131 |
|
10132 |
-
#: languages/vue.php:
|
10133 |
msgid "Understand exactly why visitors left your website, what convinced them to make a purchase, why they signed up for a newsletter, and more with real verbatim feedback"
|
10134 |
msgstr ""
|
10135 |
|
10136 |
-
#: languages/vue.php:
|
10137 |
msgid "Ask open ended questions, run polls or surveys, gather ratings, and more with an easy survey builder"
|
10138 |
msgstr ""
|
10139 |
|
10140 |
-
#: languages/vue.php:
|
10141 |
msgid "Customize targeting rules to get specific feedback on certain pages or products"
|
10142 |
msgstr ""
|
10143 |
|
10144 |
-
#: languages/vue.php:
|
10145 |
msgid "Easily analyze your responses and export data"
|
10146 |
msgstr ""
|
10147 |
|
10148 |
-
#: languages/vue.php:
|
10149 |
msgid "Install & Activate UserFeedback"
|
10150 |
msgstr ""
|
10151 |
|
10152 |
-
#: languages/vue.php:
|
10153 |
msgid "Install UserFeedback by clicking the button below."
|
10154 |
msgstr ""
|
10155 |
|
10156 |
-
#: languages/vue.php:
|
10157 |
msgid "Install UserFeedback"
|
10158 |
msgstr ""
|
10159 |
|
10160 |
-
#: languages/vue.php:
|
10161 |
msgid "Set Up UserFeedback"
|
10162 |
msgstr ""
|
10163 |
|
10164 |
-
#: languages/vue.php:
|
10165 |
msgid "Run the UserFeedback setup wizard to launch your first UserFeedback survey."
|
10166 |
msgstr ""
|
10167 |
|
10168 |
-
#: languages/vue.php:
|
10169 |
msgid "Start Setup"
|
10170 |
msgstr ""
|
10171 |
|
10172 |
-
#: languages/vue.php:
|
10173 |
msgid "Installing UserFeedback"
|
10174 |
msgstr ""
|
10175 |
|
10176 |
-
#: languages/vue.php:
|
10177 |
msgid "Activating UserFeedback"
|
10178 |
msgstr ""
|
10179 |
|
10180 |
-
#: languages/vue.php:
|
10181 |
msgid "Installed & Active"
|
10182 |
msgstr ""
|
10183 |
|
10184 |
-
#: languages/vue.php:
|
10185 |
msgid "Oops! Something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
|
10186 |
msgstr ""
|
10187 |
|
10188 |
-
#. Translators: Error status
|
10189 |
-
#: languages/vue.php:
|
10190 |
msgid "Can't save settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance."
|
10191 |
msgstr ""
|
10192 |
|
10193 |
#. Translators: Support link tag starts with url and support link tag ends.
|
10194 |
-
#: languages/vue.php:
|
10195 |
msgid "Oops! There was an error, your settings were not saved. Please try again in a few minutes. If the issue persists, please %1$scontact our support%2$s team."
|
10196 |
msgstr ""
|
10197 |
|
10198 |
#. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
|
10199 |
-
#: languages/vue.php:
|
10200 |
msgid "Can't load settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance. "
|
10201 |
msgstr ""
|
10202 |
|
10203 |
#. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
|
10204 |
-
#: languages/vue.php:
|
10205 |
msgid "Oops! We can't verify deauthentication. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
|
10206 |
msgstr ""
|
10207 |
|
10208 |
#. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
|
10209 |
-
#: languages/vue.php:
|
10210 |
msgid "Can't load authentication details. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team. "
|
10211 |
msgstr ""
|
10212 |
|
10213 |
#. Translators: Support page link tag starts and support page link tag ends.
|
10214 |
-
#: languages/vue.php:
|
10215 |
msgid "Oops! There was an error loading your site details. Please refresh the page and try again. If the issue persists, please contact our support team."
|
10216 |
msgstr ""
|
10217 |
|
10218 |
#. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
|
10219 |
-
#: languages/vue.php:
|
10220 |
msgid "Can't save settings. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
|
10221 |
msgstr ""
|
10222 |
|
10223 |
#. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
|
10224 |
-
#: languages/vue.php:
|
10225 |
msgid "Oops! We can't authenticate. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team. "
|
10226 |
msgstr ""
|
10227 |
|
10228 |
#. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
|
10229 |
-
#: languages/vue.php:
|
10230 |
msgid "Oops! We can't reauthenticate. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team"
|
10231 |
msgstr ""
|
10232 |
|
10233 |
#. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
|
10234 |
-
#: languages/vue.php:
|
10235 |
msgid "Oops! We can't verify credentials. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
|
10236 |
msgstr ""
|
10237 |
|
10238 |
#. Translators: Error status and error text.
|
10239 |
-
#: languages/vue.php:
|
10240 |
msgid "Oops! Can't install WPForms. Error: %1$s, %2$s"
|
10241 |
msgstr ""
|
10242 |
|
10243 |
#. Translators: Error status and error text.
|
10244 |
-
#: languages/vue.php:
|
10245 |
msgid "Oops! Can't activate addon. Error: %1$s, %2$s"
|
10246 |
msgstr ""
|
10247 |
|
10248 |
-
#: languages/vue.php:
|
10249 |
msgid "Oops! There was an error activating the addon. Please try again. If the issue persists, please %1$scontact our support%2$s team."
|
10250 |
msgstr ""
|
10251 |
|
10252 |
#. Translators: Error status and error text.
|
10253 |
-
#: languages/vue.php:
|
10254 |
msgid "Oops! Can't deactivate addon. Error: %1$s, %2$s"
|
10255 |
msgstr ""
|
10256 |
|
10257 |
#. Translators: Error status and error text.
|
10258 |
-
#: languages/vue.php:
|
10259 |
msgid "Oops! Can't install plugin. Error: %1$s, %2$s"
|
10260 |
msgstr ""
|
10261 |
|
10262 |
#. Translators: Error status and error text.
|
10263 |
-
#: languages/vue.php:
|
10264 |
msgid "Oops! Can't install addon. Error: %1$s, %2$s"
|
10265 |
msgstr ""
|
10266 |
|
10267 |
#. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
|
10268 |
-
#: languages/vue.php:
|
10269 |
msgid "Oops! There was an issue deactivating your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
|
10270 |
msgstr ""
|
10271 |
|
10272 |
#. Translators: Support Link tag starts with URL, Support link tag ends.
|
10273 |
-
#: languages/vue.php:
|
10274 |
msgid "Oops! There was an issue deactivating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
|
10275 |
msgstr ""
|
10276 |
|
10277 |
#. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
|
10278 |
-
#: languages/vue.php:
|
10279 |
msgid "Oops! There was an issue verifying your license upgrade, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
|
10280 |
msgstr ""
|
10281 |
|
10282 |
#. Translators: Support Link tag starts with URL, Support link tag ends.
|
10283 |
-
#: languages/vue.php:
|
10284 |
msgid "Oops! There was an issue verifying your license upgrade, please try again. If the issue persists, please %1$scontact our support team%2$s."
|
10285 |
msgstr ""
|
10286 |
|
10287 |
#. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
|
10288 |
-
#: languages/vue.php:
|
10289 |
msgid "Oops! There was an issue loading your license details, please try again. If the issue persists please %1$scontact our support team%2$s. Error: %3$s, %4$s"
|
10290 |
msgstr ""
|
10291 |
|
10292 |
-
#: languages/vue.php:
|
10293 |
msgid "Oops! There was an issue loading your license details, please try again. If the issue persists, please %1$scontact our support team%2$s."
|
10294 |
msgstr ""
|
10295 |
|
10296 |
#. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
|
10297 |
-
#: languages/vue.php:
|
10298 |
msgid "Oops! There was an issue verifying your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
|
10299 |
msgstr ""
|
10300 |
|
10301 |
#. Translators: Support Link tag starts with URL, Support link tag ends.
|
10302 |
-
#: languages/vue.php:
|
10303 |
msgid "Oops! There was an issue verifying your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
|
10304 |
msgstr ""
|
10305 |
|
10306 |
#. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
|
10307 |
-
#: languages/vue.php:
|
10308 |
msgid "Oops! There was an issue validating your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
|
10309 |
msgstr ""
|
10310 |
|
10311 |
#. Translators: Support Link tag starts with URL, Support link tag ends.
|
10312 |
-
#: languages/vue.php:
|
10313 |
msgid "Oops! There was an issue validating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
|
10314 |
msgstr ""
|
10315 |
|
10316 |
#. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
|
10317 |
-
#: languages/vue.php:
|
10318 |
msgid "Can't load report data. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
|
10319 |
msgstr ""
|
10320 |
|
10321 |
#. Translators: Support link tag starts with url and support link tag ends.
|
10322 |
-
#: languages/vue.php:
|
10323 |
msgid "Oops! Can't load posts. Please try again in a few minutes. If the issue persists, please %1$scontact our support%2$s team."
|
10324 |
msgstr ""
|
10325 |
|
10326 |
-
#: languages/vue.php:
|
10327 |
msgid "Website Badge"
|
10328 |
msgstr ""
|
10329 |
|
10330 |
-
#: languages/vue.php:
|
10331 |
msgid "Automatic Display"
|
10332 |
msgstr ""
|
10333 |
|
10334 |
-
#: languages/vue.php:
|
10335 |
msgid "Automatically Display Website Badge in Website Footer"
|
10336 |
msgstr ""
|
10337 |
|
10338 |
-
#: languages/vue.php:
|
10339 |
msgid "Enabling will add the chosen badge in your website’s footer."
|
10340 |
msgstr ""
|
10341 |
|
10342 |
-
#: languages/vue.php:
|
10343 |
msgid "Enable Automatic Display"
|
10344 |
msgstr ""
|
10345 |
|
10346 |
-
#: languages/vue.php:
|
10347 |
msgid "Appearance"
|
10348 |
msgstr ""
|
10349 |
|
10350 |
-
#: languages/vue.php:
|
10351 |
msgid "Choose your badge style."
|
10352 |
msgstr ""
|
10353 |
|
10354 |
-
#: languages/vue.php:
|
10355 |
msgid "Position"
|
10356 |
msgstr ""
|
10357 |
|
10358 |
-
#: languages/vue.php:
|
10359 |
msgid "Select the position of the badge in your website’s footer."
|
10360 |
msgstr ""
|
10361 |
|
10362 |
-
#: languages/vue.php:
|
10363 |
msgid "Manual Display"
|
10364 |
msgstr ""
|
10365 |
|
10366 |
-
#: languages/vue.php:
|
10367 |
msgid "Copy"
|
10368 |
msgstr ""
|
10369 |
|
10370 |
-
#: languages/vue.php:
|
10371 |
msgid "Light"
|
10372 |
msgstr ""
|
10373 |
|
10374 |
-
#: languages/vue.php:
|
10375 |
msgid "Dark"
|
10376 |
msgstr ""
|
10377 |
|
10378 |
-
#: languages/vue.php:
|
10379 |
msgid "Left"
|
10380 |
msgstr ""
|
10381 |
|
10382 |
-
#: languages/vue.php:
|
10383 |
msgid "Center"
|
10384 |
msgstr ""
|
10385 |
|
10386 |
-
#: languages/vue.php:
|
10387 |
msgid "Right"
|
10388 |
msgstr ""
|
10389 |
|
10390 |
-
#: languages/vue.php:
|
10391 |
msgid "Show MonsterInsights Badge"
|
10392 |
msgstr ""
|
10393 |
|
10394 |
-
#: languages/vue.php:
|
10395 |
msgid "Build trust with website visitors by automatically placing a MonsterInsights badge in your website’s footer."
|
10396 |
msgstr ""
|
10397 |
|
10398 |
-
#: languages/vue.php:
|
10399 |
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 or GT-XXXXX where the X's are numbers."
|
10400 |
msgstr ""
|
10401 |
|
10402 |
-
#: languages/vue.php:
|
10403 |
msgid "Conversion Tools"
|
10404 |
msgstr ""
|
10405 |
|
10406 |
-
#: languages/vue.php:
|
10407 |
msgid "Get the #1 conversion optimization plugin to convert your growing website traffic into subscribers, leads and sales."
|
10408 |
msgstr ""
|
10409 |
|
10410 |
-
#: languages/vue.php:
|
10411 |
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 or GT-YYYYY where the Y's are combination of numbers and letters."
|
10412 |
msgstr ""
|
10413 |
|
10414 |
-
#: languages/vue.php:
|
10415 |
msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X's are combination of numbers and letters."
|
10416 |
msgstr ""
|
10417 |
|
10418 |
-
#: languages/vue.php:
|
10419 |
msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers or GT-YYYYY where the Y's are combination of numbers and letters."
|
10420 |
msgstr ""
|
10421 |
|
10422 |
-
#: languages/vue.php:
|
10423 |
msgid "Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X's are combination of numbers and letters."
|
10424 |
msgstr ""
|
10425 |
|
10426 |
-
#: languages/vue.php:
|
10427 |
msgid "Media Report"
|
10428 |
msgstr ""
|
10429 |
|
10430 |
-
#: languages/vue.php:
|
10431 |
msgid "Easily See Which Videos Are Most Popular."
|
10432 |
msgstr ""
|
10433 |
|
10434 |
-
#: languages/vue.php:
|
10435 |
msgid "Videos Plays, Average Duration, and Completions"
|
10436 |
msgstr ""
|
10437 |
|
10438 |
-
#: languages/vue.php:
|
10439 |
msgid "Works with YouTube, Vimeo, and HTML 5 Videos"
|
10440 |
msgstr ""
|
10441 |
|
10442 |
-
#: languages/vue.php:
|
10443 |
msgid "Compare stats over time"
|
10444 |
msgstr ""
|
10445 |
|
10446 |
-
#: languages/vue.php:
|
10447 |
msgid "Video Plays"
|
10448 |
msgstr ""
|
10449 |
|
10450 |
-
#: languages/vue.php:
|
10451 |
msgid "Video %s Plays"
|
10452 |
msgstr ""
|
10453 |
|
10454 |
-
#: languages/vue.php:
|
10455 |
msgid "No video plays tracked during this time period."
|
10456 |
msgstr ""
|
10457 |
|
10458 |
#. Translators: Make the text bold and add the start and end dates.
|
10459 |
-
#: languages/vue.php:
|
10460 |
msgid "%1$sCustom dates:%2$s %3$s - %4$s"
|
10461 |
msgstr ""
|
10462 |
|
10463 |
-
#: languages/vue.php:
|
10464 |
msgid "Custom Date Range"
|
10465 |
msgstr ""
|
10466 |
|
10467 |
-
#: languages/vue.php:
|
10468 |
msgid "Set Custom Date Range"
|
10469 |
msgstr ""
|
10470 |
|
10471 |
-
#: languages/vue.php:
|
10472 |
msgid "Hide Details"
|
10473 |
msgstr ""
|
10474 |
|
10475 |
-
#: languages/vue.php:
|
10476 |
msgid "Show Details"
|
10477 |
msgstr ""
|
10478 |
|
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.1\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2022-11-09T15:09:11+00:00\n"
|
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-for-wordpress\n"
|
120 |
#: includes/admin/admin.php:127
|
121 |
#: includes/admin/em-admin.php:19
|
122 |
#: includes/admin/em-admin.php:22
|
123 |
+
#: languages/vue.php:246
|
124 |
msgid "Insights"
|
125 |
msgstr ""
|
126 |
|
127 |
#: includes/admin/admin.php:34
|
128 |
#: includes/admin/admin.php:42
|
129 |
#: includes/admin/admin.php:230
|
130 |
+
#: languages/vue.php:523
|
131 |
msgid "Settings"
|
132 |
msgstr ""
|
133 |
|
143 |
|
144 |
#: includes/admin/admin.php:39
|
145 |
#: includes/admin/admin.php:131
|
146 |
+
#: languages/vue.php:1992
|
147 |
msgid "Reports"
|
148 |
msgstr ""
|
149 |
|
153 |
|
154 |
#: includes/admin/admin.php:51
|
155 |
#: languages/gutenberg.php:83
|
156 |
+
#: languages/vue.php:883
|
157 |
msgid "Popular Posts"
|
158 |
msgstr ""
|
159 |
|
187 |
|
188 |
#: includes/admin/admin.php:71
|
189 |
#: includes/admin/admin.php:147
|
190 |
+
#: languages/vue.php:503
|
191 |
msgid "About Us"
|
192 |
msgstr ""
|
193 |
|
206 |
#: includes/admin/admin.php:76
|
207 |
#: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
|
208 |
#: includes/admin/notifications/notification-upgrade-to-pro.php:33
|
209 |
+
#: languages/vue.php:1413
|
210 |
msgid "Upgrade to Pro"
|
211 |
msgstr ""
|
212 |
|
234 |
|
235 |
#: includes/admin/admin.php:220
|
236 |
#: includes/admin/admin.php:223
|
237 |
+
#: languages/vue.php:908
|
238 |
msgid "Support"
|
239 |
msgstr ""
|
240 |
|
246 |
#: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
|
247 |
#: includes/admin/notifications/notification-upgrade-for-post-templates.php:31
|
248 |
#: includes/admin/reports/abstract-report.php:458
|
249 |
+
#: languages/vue.php:1410
|
250 |
msgid "Get MonsterInsights Pro"
|
251 |
msgstr ""
|
252 |
|
256 |
msgstr ""
|
257 |
|
258 |
#: includes/admin/admin.php:335
|
259 |
+
#: languages/vue.php:487
|
260 |
msgid "Please Setup Website Analytics to See Audience Insights"
|
261 |
msgstr ""
|
262 |
|
263 |
#: includes/admin/admin.php:336
|
264 |
+
#: languages/vue.php:493
|
265 |
msgid "Connect MonsterInsights and Setup Website Analytics"
|
266 |
msgstr ""
|
267 |
|
275 |
#: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
|
276 |
#: includes/admin/notifications/notification-returning-visitors.php:43
|
277 |
#: includes/admin/notifications/notification-traffic-dropping.php:43
|
278 |
+
#: languages/vue.php:440
|
279 |
msgid "Learn More"
|
280 |
msgstr ""
|
281 |
|
282 |
#: includes/admin/admin.php:340
|
283 |
+
#: languages/vue.php:490
|
284 |
msgid "MonsterInsights, 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 MonsterInsights to see the stats that matter and grow their business."
|
285 |
msgstr ""
|
286 |
|
291 |
|
292 |
#. Translators: Adds a link to the license renewal.
|
293 |
#: includes/admin/admin.php:363
|
294 |
+
#: languages/vue.php:712
|
295 |
msgid "Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s"
|
296 |
msgstr ""
|
297 |
|
298 |
#: includes/admin/admin.php:365
|
299 |
+
#: languages/vue.php:715
|
300 |
msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
|
301 |
msgstr ""
|
302 |
|
303 |
#: includes/admin/admin.php:367
|
304 |
#: includes/admin/api-auth.php:303
|
305 |
+
#: languages/vue.php:718
|
306 |
msgid "Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
|
307 |
msgstr ""
|
308 |
|
499 |
msgstr ""
|
500 |
|
501 |
#: includes/admin/common.php:951
|
502 |
+
#: languages/vue.php:3483
|
503 |
msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
|
504 |
msgstr ""
|
505 |
|
520 |
|
521 |
#: includes/admin/exclude-page-metabox.php:144
|
522 |
#: languages/gutenberg.php:179
|
523 |
+
#: languages/vue.php:2393
|
524 |
msgid "Upgrade"
|
525 |
msgstr ""
|
526 |
|
717 |
#: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:25
|
718 |
#: includes/admin/notifications/notification-upgrade-for-events-reporting.php:25
|
719 |
#: includes/admin/notifications/notification-upgrade-for-post-templates.php:25
|
720 |
+
#: languages/vue.php:1265
|
721 |
#: lite/includes/admin/helpers.php:85
|
722 |
msgid "Upgrade to MonsterInsights Pro"
|
723 |
msgstr ""
|
753 |
#: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
|
754 |
#: includes/admin/notifications/notification-upgrade-for-search-console.php:32
|
755 |
#: includes/admin/reports/abstract-report.php:455
|
756 |
+
#: languages/vue.php:284
|
757 |
msgid "Upgrade Now"
|
758 |
msgstr ""
|
759 |
|
931 |
msgstr ""
|
932 |
|
933 |
#: includes/admin/reports/overview.php:34
|
934 |
+
#: languages/vue.php:571
|
935 |
msgid "Overview"
|
936 |
msgstr ""
|
937 |
|
1032 |
msgstr ""
|
1033 |
|
1034 |
#: includes/admin/routes.php:535
|
1035 |
+
#: languages/vue.php:3787
|
1036 |
msgid "Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required."
|
1037 |
msgstr ""
|
1038 |
|
1488 |
msgstr ""
|
1489 |
|
1490 |
#: includes/gutenberg/headline-tool/headline-tool.php:318
|
1491 |
+
#: languages/vue.php:529
|
1492 |
msgid "General"
|
1493 |
msgstr ""
|
1494 |
|
4888 |
msgstr ""
|
4889 |
|
4890 |
#: languages/gutenberg.php:77
|
4891 |
+
#: languages/vue.php:514
|
4892 |
msgid "Inline Popular Posts"
|
4893 |
msgstr ""
|
4894 |
|
4925 |
msgstr ""
|
4926 |
|
4927 |
#: languages/gutenberg.php:107
|
4928 |
+
#: languages/vue.php:2987
|
4929 |
msgid "Wide-Layout Options"
|
4930 |
msgstr ""
|
4931 |
|
4934 |
msgstr ""
|
4935 |
|
4936 |
#: languages/gutenberg.php:113
|
4937 |
+
#: languages/vue.php:2990
|
4938 |
msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
|
4939 |
msgstr ""
|
4940 |
|
4941 |
#: languages/gutenberg.php:116
|
4942 |
+
#: languages/vue.php:3011
|
4943 |
msgid "Post Count"
|
4944 |
msgstr ""
|
4945 |
|
4948 |
msgstr ""
|
4949 |
|
4950 |
#: languages/gutenberg.php:122
|
4951 |
+
#: languages/vue.php:2993
|
4952 |
msgid "Display Options"
|
4953 |
msgstr ""
|
4954 |
|
4961 |
msgstr ""
|
4962 |
|
4963 |
#: languages/gutenberg.php:131
|
4964 |
+
#: languages/vue.php:2809
|
4965 |
msgid "Widget Title"
|
4966 |
msgstr ""
|
4967 |
|
4970 |
msgstr ""
|
4971 |
|
4972 |
#: languages/gutenberg.php:137
|
4973 |
+
#: languages/vue.php:2999
|
4974 |
msgid "Display Author"
|
4975 |
msgstr ""
|
4976 |
|
4977 |
#: languages/gutenberg.php:140
|
4978 |
+
#: languages/vue.php:3002
|
4979 |
msgid "Display Date"
|
4980 |
msgstr ""
|
4981 |
|
4982 |
#: languages/gutenberg.php:143
|
4983 |
+
#: languages/vue.php:3005
|
4984 |
msgid "Display Comments"
|
4985 |
msgstr ""
|
4986 |
|
4987 |
#: languages/gutenberg.php:146
|
4988 |
+
#: languages/vue.php:35
|
4989 |
#: lite/includes/admin/metaboxes.php:47
|
4990 |
msgid "Last 30 days"
|
4991 |
msgstr ""
|
4992 |
|
4993 |
#: languages/gutenberg.php:149
|
4994 |
+
#: languages/vue.php:23
|
4995 |
#: lite/includes/admin/metaboxes.php:51
|
4996 |
msgid "Yesterday"
|
4997 |
msgstr ""
|
4998 |
|
4999 |
#: languages/gutenberg.php:152
|
5000 |
+
#: languages/vue.php:1346
|
5001 |
#: lite/includes/admin/metaboxes.php:65
|
5002 |
#: lite/includes/admin/metaboxes.php:127
|
5003 |
msgid "Bounce Rate"
|
5258 |
msgstr ""
|
5259 |
|
5260 |
#: languages/gutenberg.php:354
|
5261 |
+
#: languages/vue.php:862
|
5262 |
msgid "Headline Analyzer"
|
5263 |
msgstr ""
|
5264 |
|
5278 |
msgid "2"
|
5279 |
msgstr ""
|
5280 |
|
5281 |
+
#: languages/vue.php:14
|
5282 |
msgid "Error"
|
5283 |
msgstr ""
|
5284 |
|
5285 |
+
#: languages/vue.php:17
|
5286 |
msgid "Please try again."
|
5287 |
msgstr ""
|
5288 |
|
5289 |
+
#: languages/vue.php:20
|
5290 |
msgid "Today"
|
5291 |
msgstr ""
|
5292 |
|
5293 |
+
#: languages/vue.php:26
|
5294 |
msgid "Last Week"
|
5295 |
msgstr ""
|
5296 |
|
5297 |
+
#: languages/vue.php:29
|
5298 |
msgid "Last Month"
|
5299 |
msgstr ""
|
5300 |
|
5301 |
+
#: languages/vue.php:32
|
5302 |
msgid "Last 7 days"
|
5303 |
msgstr ""
|
5304 |
|
5305 |
+
#: languages/vue.php:38
|
5306 |
msgid "Loading settings"
|
5307 |
msgstr ""
|
5308 |
|
5309 |
+
#: languages/vue.php:41
|
5310 |
msgid "Loading new report data"
|
5311 |
msgstr ""
|
5312 |
|
5313 |
+
#: languages/vue.php:44
|
5314 |
msgid "Please wait..."
|
5315 |
msgstr ""
|
5316 |
|
5317 |
#. Translators: Adds an arrow icon.
|
5318 |
+
#: languages/vue.php:48
|
5319 |
msgid "Continue %s"
|
5320 |
msgstr ""
|
5321 |
|
5322 |
+
#: languages/vue.php:51
|
5323 |
msgid "Unlock the Publishers Report and Focus on the Content that Matters"
|
5324 |
msgstr ""
|
5325 |
|
5326 |
+
#: languages/vue.php:54
|
5327 |
msgid "Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
|
5328 |
msgstr ""
|
5329 |
|
5330 |
+
#: languages/vue.php:57
|
5331 |
msgid "Unlock the Publishers Report and Focus on the Content That Matters"
|
5332 |
msgstr ""
|
5333 |
|
5334 |
+
#: languages/vue.php:60
|
5335 |
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."
|
5336 |
msgstr ""
|
5337 |
|
5338 |
+
#: languages/vue.php:63
|
5339 |
msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
|
5340 |
msgstr ""
|
5341 |
|
5342 |
+
#: languages/vue.php:66
|
5343 |
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."
|
5344 |
msgstr ""
|
5345 |
|
5346 |
+
#: languages/vue.php:69
|
5347 |
msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
|
5348 |
msgstr ""
|
5349 |
|
5350 |
+
#: languages/vue.php:72
|
5351 |
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."
|
5352 |
msgstr ""
|
5353 |
|
5354 |
+
#: languages/vue.php:75
|
5355 |
msgid "Unlock the Forms Report and Improve Conversions"
|
5356 |
msgstr ""
|
5357 |
|
5358 |
+
#: languages/vue.php:78
|
5359 |
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."
|
5360 |
msgstr ""
|
5361 |
|
5362 |
+
#: languages/vue.php:81
|
5363 |
msgid "Unlock the Search Console Report and See How People Find Your Website"
|
5364 |
msgstr ""
|
5365 |
|
5366 |
+
#: languages/vue.php:84
|
5367 |
msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
|
5368 |
msgstr ""
|
5369 |
|
5370 |
+
#: languages/vue.php:87
|
5371 |
msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
|
5372 |
msgstr ""
|
5373 |
|
5374 |
+
#: languages/vue.php:90
|
5375 |
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."
|
5376 |
msgstr ""
|
5377 |
|
5378 |
+
#: languages/vue.php:93
|
5379 |
msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
|
5380 |
msgstr ""
|
5381 |
|
5382 |
+
#: languages/vue.php:96
|
5383 |
msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
|
5384 |
msgstr ""
|
5385 |
|
5386 |
+
#: languages/vue.php:99
|
5387 |
msgid "Loading Settings"
|
5388 |
msgstr ""
|
5389 |
|
5390 |
+
#: languages/vue.php:102
|
5391 |
msgid "Saving Changes..."
|
5392 |
msgstr ""
|
5393 |
|
5394 |
+
#: languages/vue.php:105
|
5395 |
msgid "Settings Updated"
|
5396 |
msgstr ""
|
5397 |
|
5398 |
#. Translators: Adds a link to the settings panel.
|
5399 |
+
#: languages/vue.php:109
|
5400 |
msgid "You need to %1$sconnect MonsterInsights%2$s first"
|
5401 |
msgstr ""
|
5402 |
|
5403 |
+
#: languages/vue.php:112
|
5404 |
msgid "Could Not Save Changes"
|
5405 |
msgstr ""
|
5406 |
|
5407 |
+
#: languages/vue.php:115
|
5408 |
msgid "Refreshing Report"
|
5409 |
msgstr ""
|
5410 |
|
5411 |
+
#: languages/vue.php:118
|
5412 |
msgid "Loading new report data..."
|
5413 |
msgstr ""
|
5414 |
|
5415 |
+
#: languages/vue.php:121
|
5416 |
msgid "See Your Top Landing Pages to Improve Engagement"
|
5417 |
msgstr ""
|
5418 |
|
5419 |
+
#: languages/vue.php:124
|
5420 |
msgid "See Your Top Exit Pages to Reduce Abandonment"
|
5421 |
msgstr ""
|
5422 |
|
5423 |
+
#: languages/vue.php:127
|
5424 |
msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
|
5425 |
msgstr ""
|
5426 |
|
5427 |
+
#: languages/vue.php:130
|
5428 |
msgid "See Your Top Affiliate Links and Focus on What's Working"
|
5429 |
msgstr ""
|
5430 |
|
5431 |
+
#: languages/vue.php:133
|
5432 |
msgid "See Your Top Downloads and Improve Conversions"
|
5433 |
msgstr ""
|
5434 |
|
5435 |
+
#: languages/vue.php:136
|
5436 |
msgid "See Audience Demographic Report ( Age / Gender / Interests )"
|
5437 |
msgstr ""
|
5438 |
|
5439 |
+
#: languages/vue.php:139
|
5440 |
msgid "Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
|
5441 |
msgstr ""
|
5442 |
|
5443 |
+
#: languages/vue.php:142
|
5444 |
msgid "See Your Conversion Rate to Improve Your Funnel"
|
5445 |
msgstr ""
|
5446 |
|
5447 |
+
#: languages/vue.php:145
|
5448 |
msgid "See The Number of Transactions and Make Data-Driven Decisions"
|
5449 |
msgstr ""
|
5450 |
|
5451 |
+
#: languages/vue.php:148
|
5452 |
msgid "See The Total Revenue to Track Growth"
|
5453 |
msgstr ""
|
5454 |
|
5455 |
+
#: languages/vue.php:151
|
5456 |
msgid "See Average Order Value to Find Offer Opportunities"
|
5457 |
msgstr ""
|
5458 |
|
5459 |
+
#: languages/vue.php:154
|
5460 |
msgid "See Your Top Products to See Individual Performance"
|
5461 |
msgstr ""
|
5462 |
|
5463 |
+
#: languages/vue.php:157
|
5464 |
msgid "See Your Top Conversion Sources and Focus on What's Working"
|
5465 |
msgstr ""
|
5466 |
|
5467 |
+
#: languages/vue.php:160
|
5468 |
msgid "See The Time it Takes for Customers to Purchase"
|
5469 |
msgstr ""
|
5470 |
|
5471 |
+
#: languages/vue.php:163
|
5472 |
msgid "See How Many Sessions are Needed for a Purchase"
|
5473 |
msgstr ""
|
5474 |
|
5475 |
+
#: languages/vue.php:166
|
5476 |
msgid "See Which Authors Generate the Most Traffic"
|
5477 |
msgstr ""
|
5478 |
|
5479 |
+
#: languages/vue.php:169
|
5480 |
msgid "See Which Post Types Perform Better"
|
5481 |
msgstr ""
|
5482 |
|
5483 |
+
#: languages/vue.php:172
|
5484 |
msgid "See Which Categories are the Most Popular"
|
5485 |
msgstr ""
|
5486 |
|
5487 |
+
#: languages/vue.php:175
|
5488 |
msgid "See Your Blog's Most Popular SEO Scores"
|
5489 |
msgstr ""
|
5490 |
|
5491 |
+
#: languages/vue.php:178
|
5492 |
msgid "See Which Focus Keyword is Performing Better in Search Engines"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
+
#: languages/vue.php:181
|
5496 |
msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
+
#: languages/vue.php:184
|
5500 |
msgid "See Your Top Converting Forms and Optimize"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
+
#: languages/vue.php:187
|
5504 |
msgid "See Your Forms Impressions Count to Find the Best Placement"
|
5505 |
msgstr ""
|
5506 |
|
5507 |
+
#: languages/vue.php:190
|
5508 |
msgid "See Your Top Google Search Terms and Optimize Content"
|
5509 |
msgstr ""
|
5510 |
|
5511 |
+
#: languages/vue.php:193
|
5512 |
msgid "See The Number of Clicks and Track Interests"
|
5513 |
msgstr ""
|
5514 |
|
5515 |
+
#: languages/vue.php:196
|
5516 |
msgid "See The Click-Through-Ratio and Improve SEO"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
+
#: languages/vue.php:199
|
5520 |
msgid "See The Average Results Position and Focus on what works"
|
5521 |
msgstr ""
|
5522 |
|
5523 |
+
#: languages/vue.php:202
|
5524 |
msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
|
5525 |
msgstr ""
|
5526 |
|
5527 |
+
#: languages/vue.php:205
|
5528 |
msgid "See Your Top Pages Immediately After Making Changes"
|
5529 |
msgstr ""
|
5530 |
|
5531 |
+
#: languages/vue.php:208
|
5532 |
msgid "See Your Top Referral Sources and Adapt Faster"
|
5533 |
msgstr ""
|
5534 |
|
5535 |
+
#: languages/vue.php:211
|
5536 |
msgid "See Your Traffic Demographics"
|
5537 |
msgstr ""
|
5538 |
|
5539 |
+
#: languages/vue.php:214
|
5540 |
msgid "Get Fresh Report Data Every 60 Seconds"
|
5541 |
msgstr ""
|
5542 |
|
5543 |
+
#: languages/vue.php:217
|
5544 |
msgid "See Your Homepage's Overall Performance Score"
|
5545 |
msgstr ""
|
5546 |
|
5547 |
+
#: languages/vue.php:220
|
5548 |
msgid "Run an Audit on Your Homepage and See Your Server Response Time"
|
5549 |
msgstr ""
|
5550 |
|
5551 |
+
#: languages/vue.php:223
|
5552 |
msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
|
5553 |
msgstr ""
|
5554 |
|
5555 |
+
#: languages/vue.php:226
|
5556 |
msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
|
5557 |
msgstr ""
|
5558 |
|
5559 |
#. Translators: Number of visitors.
|
5560 |
+
#: languages/vue.php:230
|
5561 |
msgid "See how %s visitors found your site!"
|
5562 |
msgstr ""
|
5563 |
|
5564 |
#. Translators: Number of visitors.
|
5565 |
+
#: languages/vue.php:234
|
5566 |
msgid "Your website was visited by %s users in the last 30 days."
|
5567 |
msgstr ""
|
5568 |
|
5569 |
+
#: languages/vue.php:237
|
5570 |
msgid "See the full analytics report!"
|
5571 |
msgstr ""
|
5572 |
|
5573 |
+
#: languages/vue.php:240
|
5574 |
msgid "Congratulations! "
|
5575 |
msgstr ""
|
5576 |
|
5577 |
+
#: languages/vue.php:243
|
5578 |
msgid "You Successfully Unlocked the most powerful Analytics plugin"
|
5579 |
msgstr ""
|
5580 |
|
5581 |
+
#: languages/vue.php:249
|
5582 |
msgid "Overview Report"
|
5583 |
msgstr ""
|
5584 |
|
5585 |
+
#: languages/vue.php:252
|
5586 |
#: lite/includes/admin/welcome.php:56
|
5587 |
#: lite/includes/admin/welcome.php:57
|
5588 |
msgid "Welcome to MonsterInsights"
|
5589 |
msgstr ""
|
5590 |
|
5591 |
+
#: languages/vue.php:255
|
5592 |
msgid "Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin"
|
5593 |
msgstr ""
|
5594 |
|
5595 |
+
#: languages/vue.php:258
|
5596 |
msgid "MonsterInsights 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."
|
5597 |
msgstr ""
|
5598 |
|
5599 |
+
#: languages/vue.php:261
|
5600 |
msgid "Launch the Wizard!"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
+
#: languages/vue.php:264
|
5604 |
msgid "Read the Full Guide"
|
5605 |
msgstr ""
|
5606 |
|
5607 |
+
#: languages/vue.php:267
|
5608 |
msgid "MonsterInsights Features & Addons"
|
5609 |
msgstr ""
|
5610 |
|
5611 |
+
#: languages/vue.php:270
|
5612 |
msgid "Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market."
|
5613 |
msgstr ""
|
5614 |
|
5615 |
+
#: languages/vue.php:273
|
5616 |
msgid "See All Features"
|
5617 |
msgstr ""
|
5618 |
|
5619 |
+
#: languages/vue.php:277
|
5620 |
msgid "Upgrade to PRO"
|
5621 |
msgstr ""
|
5622 |
|
5623 |
+
#: languages/vue.php:280
|
5624 |
msgid "per year"
|
5625 |
msgstr ""
|
5626 |
|
5627 |
+
#: languages/vue.php:287
|
5628 |
msgid "Testimonials"
|
5629 |
msgstr ""
|
5630 |
|
5631 |
+
#: languages/vue.php:290
|
5632 |
msgid "Universal Tracking"
|
5633 |
msgstr ""
|
5634 |
|
5635 |
+
#: languages/vue.php:293
|
5636 |
msgid "Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
|
5637 |
msgstr ""
|
5638 |
|
5639 |
+
#: languages/vue.php:296
|
5640 |
msgid "Google Analytics Dashboard"
|
5641 |
msgstr ""
|
5642 |
|
5643 |
+
#: languages/vue.php:299
|
5644 |
msgid "See your website analytics report right inside your WordPress dashboard with actionable insights."
|
5645 |
msgstr ""
|
5646 |
|
5647 |
+
#: languages/vue.php:302
|
5648 |
msgid "Real-time Stats"
|
5649 |
msgstr ""
|
5650 |
|
5651 |
+
#: languages/vue.php:305
|
5652 |
msgid "Get real-time stats right inside WordPress to see who is online, what are they doing, and more."
|
5653 |
msgstr ""
|
5654 |
|
5655 |
+
#: languages/vue.php:308
|
5656 |
msgid "Enhanced Ecommerce Tracking"
|
5657 |
msgstr ""
|
5658 |
|
5659 |
+
#: languages/vue.php:311
|
5660 |
msgid "1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress."
|
5661 |
msgstr ""
|
5662 |
|
5663 |
+
#: languages/vue.php:314
|
5664 |
msgid "Page Level Analytics"
|
5665 |
msgstr ""
|
5666 |
|
5667 |
+
#: languages/vue.php:317
|
5668 |
msgid "Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
|
5669 |
msgstr ""
|
5670 |
|
5671 |
+
#: languages/vue.php:320
|
5672 |
msgid "Affiliate Link & Ads Tracking"
|
5673 |
msgstr ""
|
5674 |
|
5675 |
+
#: languages/vue.php:323
|
5676 |
msgid "Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
|
5677 |
msgstr ""
|
5678 |
|
5679 |
+
#: languages/vue.php:326
|
5680 |
msgid "EU Compliance (GDPR Friendly)"
|
5681 |
msgstr ""
|
5682 |
|
5683 |
+
#: languages/vue.php:329
|
5684 |
msgid "Make Google Analytics compliant with GDPR and other privacy regulations automatically."
|
5685 |
msgstr ""
|
5686 |
|
5687 |
+
#: languages/vue.php:332
|
5688 |
msgid "Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click."
|
5689 |
msgstr ""
|
5690 |
|
5691 |
+
#: languages/vue.php:335
|
5692 |
msgid "Ecommerce Report"
|
5693 |
msgstr ""
|
5694 |
|
5695 |
+
#: languages/vue.php:338
|
5696 |
msgid "Form Conversions"
|
5697 |
msgstr ""
|
5698 |
|
5699 |
+
#: languages/vue.php:341
|
5700 |
msgid "Custom Dimensions"
|
5701 |
msgstr ""
|
5702 |
|
5703 |
+
#: languages/vue.php:344
|
5704 |
msgid "Author Tracking"
|
5705 |
msgstr ""
|
5706 |
|
5707 |
+
#: languages/vue.php:347
|
5708 |
msgid "Google Optimize"
|
5709 |
msgstr ""
|
5710 |
|
5711 |
+
#: languages/vue.php:350
|
5712 |
msgid "Category / Tags Tracking"
|
5713 |
msgstr ""
|
5714 |
|
5715 |
+
#: languages/vue.php:353
|
5716 |
msgid "WooCommerce"
|
5717 |
msgstr ""
|
5718 |
|
5719 |
+
#: languages/vue.php:356
|
5720 |
msgid "Easy Digital Downloads"
|
5721 |
msgstr ""
|
5722 |
|
5723 |
+
#: languages/vue.php:359
|
5724 |
msgid "MemberPress"
|
5725 |
msgstr ""
|
5726 |
|
5727 |
+
#: languages/vue.php:362
|
5728 |
msgid "LifterLMS"
|
5729 |
msgstr ""
|
5730 |
|
5731 |
#. Translators: Current PHP version and recommended PHP version.
|
5732 |
+
#: languages/vue.php:366
|
5733 |
msgid "MonsterInsights 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."
|
5734 |
msgstr ""
|
5735 |
|
5736 |
#. Translators: Current WordPress version.
|
5737 |
+
#: languages/vue.php:370
|
5738 |
msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights 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."
|
5739 |
msgstr ""
|
5740 |
|
5741 |
+
#: languages/vue.php:373
|
5742 |
msgid "Yikes! PHP Update Required"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
#. Translators: Current PHP version and recommended PHP version.
|
5746 |
+
#: languages/vue.php:377
|
5747 |
msgid "MonsterInsights 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."
|
5748 |
msgstr ""
|
5749 |
|
5750 |
+
#: languages/vue.php:380
|
5751 |
msgid "Learn more about updating PHP"
|
5752 |
msgstr ""
|
5753 |
|
5754 |
+
#: languages/vue.php:383
|
5755 |
msgid "Yikes! WordPress Update Required"
|
5756 |
msgstr ""
|
5757 |
|
5758 |
#. Translators: Current WordPress version.
|
5759 |
+
#: languages/vue.php:387
|
5760 |
msgid "MonsterInsights 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."
|
5761 |
msgstr ""
|
5762 |
|
5763 |
+
#: languages/vue.php:390
|
5764 |
msgid "Learn more about updating WordPress"
|
5765 |
msgstr ""
|
5766 |
|
5767 |
+
#: languages/vue.php:393
|
5768 |
msgid "MonsterInsights encountered an error loading your report data"
|
5769 |
msgstr ""
|
5770 |
|
5771 |
+
#: languages/vue.php:396
|
5772 |
msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
|
5773 |
msgstr ""
|
5774 |
|
5775 |
+
#: languages/vue.php:400
|
5776 |
msgid "Reconnect MonsterInsights"
|
5777 |
msgstr ""
|
5778 |
|
5779 |
+
#: languages/vue.php:404
|
5780 |
msgid "Re-Authenticating"
|
5781 |
msgstr ""
|
5782 |
|
5783 |
+
#: languages/vue.php:410
|
5784 |
msgid "Ok"
|
5785 |
msgstr ""
|
5786 |
|
5787 |
+
#: languages/vue.php:413
|
5788 |
msgid "See Quick Links"
|
5789 |
msgstr ""
|
5790 |
|
5791 |
+
#: languages/vue.php:416
|
5792 |
msgid "Suggest a Feature"
|
5793 |
msgstr ""
|
5794 |
|
5795 |
+
#: languages/vue.php:419
|
5796 |
msgid "Join Our Community"
|
5797 |
msgstr ""
|
5798 |
|
5799 |
+
#: languages/vue.php:422
|
5800 |
msgid "Support & Docs"
|
5801 |
msgstr ""
|
5802 |
|
5803 |
+
#: languages/vue.php:425
|
5804 |
msgid "Upgrade to Pro »"
|
5805 |
msgstr ""
|
5806 |
|
5807 |
#. Translators: Placeholder is replaced with WPForms.
|
5808 |
+
#: languages/vue.php:429
|
5809 |
msgid "Recommended Plugin: %s"
|
5810 |
msgstr ""
|
5811 |
|
5812 |
+
#: languages/vue.php:433
|
5813 |
msgid "Install"
|
5814 |
msgstr ""
|
5815 |
|
5816 |
+
#: languages/vue.php:437
|
5817 |
msgid "Activate"
|
5818 |
msgstr ""
|
5819 |
|
5820 |
+
#: languages/vue.php:443
|
5821 |
msgid "Powered by MonsterInsights"
|
5822 |
msgstr ""
|
5823 |
|
5824 |
+
#: languages/vue.php:446
|
5825 |
#: lite/includes/admin/wp-site-health.php:256
|
5826 |
msgid "View Reports"
|
5827 |
msgstr ""
|
5828 |
|
5829 |
+
#: languages/vue.php:449
|
5830 |
msgid "Congratulations!"
|
5831 |
msgstr ""
|
5832 |
|
5833 |
#. Translators: Add link to YouTube video and Onboarding Wizard.
|
5834 |
+
#: languages/vue.php:453
|
5835 |
msgid "MonsterInsights makes it easy to connect your website with Google Analytics and see all important website stats right inside your WordPress dashboard. In order to setup website analytics, please take a look at our %1$sGetting started video%2$s or use our %3$s to get you quickly set up."
|
5836 |
msgstr ""
|
5837 |
|
5838 |
#. Translators: Add link to YouTube video and Onboarding Wizard.
|
5839 |
+
#: languages/vue.php:457
|
5840 |
msgid "Onboarding Wizard"
|
5841 |
msgstr ""
|
5842 |
|
5843 |
+
#: languages/vue.php:460
|
5844 |
msgid "You are now connected with MonsterInsights. We make it effortless for you to implement Google Analytics tracking and see the stats that matter, right inside the WordPress dashboard."
|
5845 |
msgstr ""
|
5846 |
|
5847 |
+
#: languages/vue.php:463
|
5848 |
msgid "Save Changes"
|
5849 |
msgstr ""
|
5850 |
|
5851 |
+
#: languages/vue.php:466
|
5852 |
msgid "Inbox"
|
5853 |
msgstr ""
|
5854 |
|
5855 |
+
#: languages/vue.php:469
|
5856 |
msgid "Back to Inbox"
|
5857 |
msgstr ""
|
5858 |
|
5859 |
+
#: languages/vue.php:472
|
5860 |
msgid "View Dismissed"
|
5861 |
msgstr ""
|
5862 |
|
5863 |
+
#: languages/vue.php:475
|
5864 |
msgid "Notifications"
|
5865 |
msgstr ""
|
5866 |
|
5867 |
+
#: languages/vue.php:478
|
5868 |
msgid "Dismiss All"
|
5869 |
msgstr ""
|
5870 |
|
5871 |
+
#: languages/vue.php:481
|
5872 |
msgid "Dismissed"
|
5873 |
msgstr ""
|
5874 |
|
5875 |
+
#: languages/vue.php:484
|
5876 |
msgid "No Notifications"
|
5877 |
msgstr ""
|
5878 |
|
5879 |
+
#: languages/vue.php:496
|
5880 |
msgid "Import Export"
|
5881 |
msgstr ""
|
5882 |
|
5883 |
+
#: languages/vue.php:499
|
5884 |
msgid "PrettyLinks Integration"
|
5885 |
msgstr ""
|
5886 |
|
5887 |
+
#: languages/vue.php:507
|
5888 |
msgid "Getting Started"
|
5889 |
msgstr ""
|
5890 |
|
5891 |
+
#: languages/vue.php:511
|
5892 |
msgid "Lite vs Pro"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
+
#: languages/vue.php:517
|
5896 |
msgid "Popular Posts Widget"
|
5897 |
msgstr ""
|
5898 |
|
5899 |
+
#: languages/vue.php:520
|
5900 |
msgid "Popular Products"
|
5901 |
msgstr ""
|
5902 |
|
5903 |
+
#: languages/vue.php:526
|
5904 |
msgid "Sub menu item for WooCommerce Analytics"
|
5905 |
msgstr ""
|
5906 |
|
5907 |
+
#: languages/vue.php:532
|
5908 |
msgid "Engagement"
|
5909 |
msgstr ""
|
5910 |
|
5911 |
+
#: languages/vue.php:535
|
5912 |
#: lite/includes/admin/reports/report-ecommerce.php:22
|
5913 |
msgid "eCommerce"
|
5914 |
msgstr ""
|
5915 |
|
5916 |
+
#: languages/vue.php:538
|
5917 |
msgid "Publisher"
|
5918 |
msgstr ""
|
5919 |
|
5920 |
+
#: languages/vue.php:541
|
5921 |
msgid "Conversions"
|
5922 |
msgstr ""
|
5923 |
|
5924 |
+
#: languages/vue.php:544
|
5925 |
msgid "Advanced"
|
5926 |
msgstr ""
|
5927 |
|
5928 |
+
#: languages/vue.php:547
|
5929 |
msgid "URL Builder"
|
5930 |
msgstr ""
|
5931 |
|
5932 |
+
#: languages/vue.php:550
|
5933 |
msgid "MonsterInsights Addons"
|
5934 |
msgstr ""
|
5935 |
|
5936 |
+
#: languages/vue.php:553
|
5937 |
msgid "Search Addons"
|
5938 |
msgstr ""
|
5939 |
|
5940 |
+
#: languages/vue.php:556
|
5941 |
msgid "Exit Setup"
|
5942 |
msgstr ""
|
5943 |
|
5944 |
+
#: languages/vue.php:559
|
5945 |
msgid "You must connect with MonsterInsights before you can view reports."
|
5946 |
msgstr ""
|
5947 |
|
5948 |
+
#: languages/vue.php:562
|
5949 |
msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
|
5950 |
msgstr ""
|
5951 |
|
5952 |
+
#: languages/vue.php:565
|
5953 |
msgid "Launch Setup Wizard"
|
5954 |
msgstr ""
|
5955 |
|
5956 |
+
#: languages/vue.php:568
|
5957 |
msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
|
5958 |
msgstr ""
|
5959 |
|
5960 |
+
#: languages/vue.php:574
|
5961 |
#: lite/includes/admin/reports/report-publisher.php:22
|
5962 |
msgid "Publishers"
|
5963 |
msgstr ""
|
5964 |
|
5965 |
+
#: languages/vue.php:577
|
5966 |
#: lite/includes/admin/reports/report-queries.php:22
|
5967 |
msgid "Search Console"
|
5968 |
msgstr ""
|
5969 |
|
5970 |
+
#: languages/vue.php:580
|
5971 |
#: lite/includes/admin/reports/report-dimensions.php:22
|
5972 |
msgid "Dimensions"
|
5973 |
msgstr ""
|
5974 |
|
5975 |
+
#: languages/vue.php:583
|
5976 |
#: lite/includes/admin/reports/report-forms.php:22
|
5977 |
msgid "Forms"
|
5978 |
msgstr ""
|
5979 |
|
5980 |
+
#: languages/vue.php:586
|
5981 |
msgid "Real-Time"
|
5982 |
msgstr ""
|
5983 |
|
5984 |
+
#: languages/vue.php:589
|
5985 |
msgid "Site Speed"
|
5986 |
msgstr ""
|
5987 |
|
5988 |
+
#: languages/vue.php:592
|
5989 |
msgid "2020 Year in Review"
|
5990 |
msgstr ""
|
5991 |
|
5992 |
#. Translators: Error status and error text.
|
5993 |
+
#: languages/vue.php:596
|
5994 |
msgid "Can't load report data. Error: %1$s, %2$s"
|
5995 |
msgstr ""
|
5996 |
|
5997 |
+
#: languages/vue.php:599
|
5998 |
msgid "Error loading report data"
|
5999 |
msgstr ""
|
6000 |
|
6001 |
+
#: languages/vue.php:602
|
6002 |
msgid "Publishers Report"
|
6003 |
msgstr ""
|
6004 |
|
6005 |
+
#: languages/vue.php:606
|
6006 |
msgid "eCommerce Report"
|
6007 |
msgstr ""
|
6008 |
|
6009 |
+
#: languages/vue.php:609
|
6010 |
msgid "Search Console Report"
|
6011 |
msgstr ""
|
6012 |
|
6013 |
+
#: languages/vue.php:612
|
6014 |
msgid "Dimensions Report"
|
6015 |
msgstr ""
|
6016 |
|
6017 |
+
#: languages/vue.php:615
|
6018 |
msgid "Forms Report"
|
6019 |
msgstr ""
|
6020 |
|
6021 |
+
#: languages/vue.php:618
|
6022 |
msgid "Real-Time Report"
|
6023 |
msgstr ""
|
6024 |
|
6025 |
+
#: languages/vue.php:621
|
6026 |
msgid "Site Speed Report"
|
6027 |
msgstr ""
|
6028 |
|
6029 |
+
#: languages/vue.php:624
|
6030 |
msgid "Time to Purchase"
|
6031 |
msgstr ""
|
6032 |
|
6033 |
+
#: languages/vue.php:627
|
6034 |
msgid "This list shows how many days from first visit it took users to purchase products from your site."
|
6035 |
msgstr ""
|
6036 |
|
6037 |
+
#: languages/vue.php:630
|
6038 |
msgid "Sessions to Purchase"
|
6039 |
msgstr ""
|
6040 |
|
6041 |
+
#: languages/vue.php:633
|
6042 |
msgid "This list shows the number of sessions it took users before they purchased a product from your website."
|
6043 |
msgstr ""
|
6044 |
|
6045 |
+
#: languages/vue.php:636
|
6046 |
msgid "New Customers"
|
6047 |
msgstr ""
|
6048 |
|
6049 |
+
#: languages/vue.php:639
|
6050 |
msgid "This list shows the percentage of new customers who purchased a product from your website."
|
6051 |
msgstr ""
|
6052 |
|
6053 |
+
#: languages/vue.php:642
|
6054 |
msgid "Abandoned Checkouts"
|
6055 |
msgstr ""
|
6056 |
|
6057 |
+
#: languages/vue.php:645
|
6058 |
msgid "This list shows the percentage of carts that never went through the checkout process."
|
6059 |
msgstr ""
|
6060 |
|
6061 |
+
#: languages/vue.php:648
|
6062 |
msgid "Top Posts/Pages"
|
6063 |
msgstr ""
|
6064 |
|
6065 |
+
#: languages/vue.php:651
|
6066 |
msgid "This list shows the most viewed posts and pages on your website."
|
6067 |
msgstr ""
|
6068 |
|
6069 |
+
#: languages/vue.php:654
|
6070 |
msgid "New vs. Returning Visitors"
|
6071 |
msgstr ""
|
6072 |
|
6073 |
+
#: languages/vue.php:657
|
6074 |
msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
|
6075 |
msgstr ""
|
6076 |
|
6077 |
+
#: languages/vue.php:660
|
6078 |
msgid "Device Breakdown"
|
6079 |
msgstr ""
|
6080 |
|
6081 |
+
#: languages/vue.php:663
|
6082 |
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."
|
6083 |
msgstr ""
|
6084 |
|
6085 |
+
#: languages/vue.php:666
|
6086 |
msgid "Top Landing Pages"
|
6087 |
msgstr ""
|
6088 |
|
6089 |
+
#: languages/vue.php:669
|
6090 |
msgid "This list shows the top pages users first land on when visiting your website."
|
6091 |
msgstr ""
|
6092 |
|
6093 |
+
#: languages/vue.php:672
|
6094 |
msgid "Top Exit Pages"
|
6095 |
msgstr ""
|
6096 |
|
6097 |
+
#: languages/vue.php:675
|
6098 |
msgid "This list shows the top pages users exit your website from."
|
6099 |
msgstr ""
|
6100 |
|
6101 |
+
#: languages/vue.php:678
|
6102 |
msgid "Top Outbound Links"
|
6103 |
msgstr ""
|
6104 |
|
6105 |
+
#: languages/vue.php:681
|
6106 |
msgid "This list shows the top links clicked on your website that go to another website."
|
6107 |
msgstr ""
|
6108 |
|
6109 |
+
#: languages/vue.php:684
|
6110 |
msgid "Top Affiliate Links"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
+
#: languages/vue.php:687
|
6114 |
msgid "This list shows the top affiliate links your visitors clicked on."
|
6115 |
msgstr ""
|
6116 |
|
6117 |
+
#: languages/vue.php:690
|
6118 |
msgid "Top Download Links"
|
6119 |
msgstr ""
|
6120 |
|
6121 |
+
#: languages/vue.php:693
|
6122 |
msgid "This list shows the download links your visitors clicked the most."
|
6123 |
msgstr ""
|
6124 |
|
6125 |
+
#: languages/vue.php:696
|
6126 |
msgid "Top Products"
|
6127 |
msgstr ""
|
6128 |
|
6129 |
+
#: languages/vue.php:699
|
6130 |
msgid "This list shows the top selling products on your website."
|
6131 |
msgstr ""
|
6132 |
|
6133 |
+
#: languages/vue.php:702
|
6134 |
msgid "Top Conversion Sources"
|
6135 |
msgstr ""
|
6136 |
|
6137 |
+
#: languages/vue.php:705
|
6138 |
msgid "This list shows the top referral websites in terms of product revenue."
|
6139 |
msgstr ""
|
6140 |
|
6141 |
+
#: languages/vue.php:708
|
6142 |
msgid "Total Add/Remove"
|
6143 |
msgstr ""
|
6144 |
|
6145 |
#. Translators: Adds a link to documentation.
|
6146 |
+
#: languages/vue.php:722
|
6147 |
msgid "In order for the MonsterInsights Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s"
|
6148 |
msgstr ""
|
6149 |
|
6150 |
#. Translators: Adds link to activate/install plugin and documentation.
|
6151 |
+
#: languages/vue.php:726
|
6152 |
msgid "In order for the MonsterInsights 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"
|
6153 |
msgstr ""
|
6154 |
|
6155 |
#. Translators: Adds a link to documentation.
|
6156 |
+
#: languages/vue.php:730
|
6157 |
msgid "In order for the MonsterInsights 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"
|
6158 |
msgstr ""
|
6159 |
|
6160 |
#. Translators: Adds link to activate/install plugin and documentation.
|
6161 |
+
#: languages/vue.php:734
|
6162 |
msgid "In order for the MonsterInsights 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"
|
6163 |
msgstr ""
|
6164 |
|
6165 |
+
#: languages/vue.php:737
|
6166 |
msgid "GDPR Guide"
|
6167 |
msgstr ""
|
6168 |
|
6169 |
+
#: languages/vue.php:740
|
6170 |
msgid "Compliance with European data laws including GDPR can be confusing and time-consuming. In order to help MonsterInsights users comply with these laws, we’ve created an addon that automates a lot of the necessary configuration changes for you. "
|
6171 |
msgstr ""
|
6172 |
|
6173 |
+
#: languages/vue.php:743
|
6174 |
msgid "How to Install and Activate MonsterInsights Addons"
|
6175 |
msgstr ""
|
6176 |
|
6177 |
+
#: languages/vue.php:746
|
6178 |
msgid "The process for installing and activating addons is quick and easy after you install the MonsterInsights plugin. In this guide we’ll walk you through the process, step by step."
|
6179 |
msgstr ""
|
6180 |
|
6181 |
+
#: languages/vue.php:749
|
6182 |
msgid "Enabling eCommerce Tracking and Reports"
|
6183 |
msgstr ""
|
6184 |
|
6185 |
+
#: languages/vue.php:752
|
6186 |
msgid "Want to track your eCommerce sales data for your WooCommerce, MemberPress, or Easy Digital Downloads store with MonsterInsights? In this guide, we’ll show you how to enable eCommerce tracking in Google Analytics in just a few clicks."
|
6187 |
msgstr ""
|
6188 |
|
6189 |
+
#: languages/vue.php:755
|
6190 |
msgid "Read Documentation"
|
6191 |
msgstr ""
|
6192 |
|
6193 |
+
#: languages/vue.php:758
|
6194 |
msgid "Getting Started with MonsterInsights"
|
6195 |
msgstr ""
|
6196 |
|
6197 |
+
#: languages/vue.php:761
|
6198 |
msgid "MonsterInsights 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."
|
6199 |
msgstr ""
|
6200 |
|
6201 |
+
#: languages/vue.php:764
|
6202 |
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."
|
6203 |
msgstr ""
|
6204 |
|
6205 |
+
#: languages/vue.php:767
|
6206 |
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!."
|
6207 |
msgstr ""
|
6208 |
|
6209 |
+
#: languages/vue.php:770
|
6210 |
msgid "Launch the wizard!"
|
6211 |
msgstr ""
|
6212 |
|
6213 |
+
#: languages/vue.php:773
|
6214 |
msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
|
6215 |
msgstr ""
|
6216 |
|
6217 |
#. Translators: Makes text bold.
|
6218 |
+
#: languages/vue.php:777
|
6219 |
msgid "Thanks for being a loyal MonsterInsights Lite user. %1$sUpgrade to MonsterInsights Pro%2$s to unlock all the awesome features and experience why MonsterInsights is consistently rated the best Google Analytics solution for WordPress."
|
6220 |
msgstr ""
|
6221 |
|
6222 |
+
#: languages/vue.php:780
|
6223 |
msgid "Universal Tracking across devices and campaigns with just a few clicks."
|
6224 |
msgstr ""
|
6225 |
|
6226 |
+
#: languages/vue.php:783
|
6227 |
msgid "See your website analytics reports inside the WordPress dashboard"
|
6228 |
msgstr ""
|
6229 |
|
6230 |
+
#: languages/vue.php:786
|
6231 |
msgid "Get real-time stats right inside WordPress"
|
6232 |
msgstr ""
|
6233 |
|
6234 |
+
#: languages/vue.php:789
|
6235 |
msgid "1-click Google Analytics Enhanced eCommerce tracking"
|
6236 |
msgstr ""
|
6237 |
|
6238 |
+
#: languages/vue.php:792
|
6239 |
msgid "Get detailed stats for each post and page."
|
6240 |
msgstr ""
|
6241 |
|
6242 |
+
#: languages/vue.php:795
|
6243 |
msgid "Automatically track clicks on your affiliate links and ads."
|
6244 |
msgstr ""
|
6245 |
|
6246 |
+
#: languages/vue.php:798
|
6247 |
msgid "Make Google Analytics GDPR compliant automatically"
|
6248 |
msgstr ""
|
6249 |
|
6250 |
+
#: languages/vue.php:801
|
6251 |
msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
|
6252 |
msgstr ""
|
6253 |
|
6254 |
+
#: languages/vue.php:804
|
6255 |
msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
|
6256 |
msgstr ""
|
6257 |
|
6258 |
+
#: languages/vue.php:807
|
6259 |
msgid "More advanced features"
|
6260 |
msgstr ""
|
6261 |
|
6262 |
+
#: languages/vue.php:810
|
6263 |
msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
|
6264 |
msgstr ""
|
6265 |
|
6266 |
#. Translators: Makes text green.
|
6267 |
+
#: languages/vue.php:814
|
6268 |
msgid "Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
|
6269 |
msgstr ""
|
6270 |
|
6271 |
+
#: languages/vue.php:817
|
6272 |
msgid "How to Connect to Google Analytics"
|
6273 |
msgstr ""
|
6274 |
|
6275 |
+
#: languages/vue.php:820
|
6276 |
msgid "After you install MonsterInsights, you’ll need to connect your WordPress site with your Google Analytics account. MonsterInsights makes the process easy, with no coding required."
|
6277 |
msgstr ""
|
6278 |
|
6279 |
+
#: languages/vue.php:823
|
6280 |
msgid "Guide and Checklist for Advanced Insights"
|
6281 |
msgstr ""
|
6282 |
|
6283 |
+
#: languages/vue.php:826
|
6284 |
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 MonsterInsights’ advanced tracking."
|
6285 |
msgstr ""
|
6286 |
|
6287 |
+
#: languages/vue.php:829
|
6288 |
msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
|
6289 |
msgstr ""
|
6290 |
|
6291 |
+
#: languages/vue.php:832
|
6292 |
msgid "WordPress Admin Area Reports"
|
6293 |
msgstr ""
|
6294 |
|
6295 |
+
#: languages/vue.php:835
|
6296 |
msgid "Standard Reports"
|
6297 |
msgstr ""
|
6298 |
|
6299 |
+
#: languages/vue.php:838
|
6300 |
msgid "Overview Reports for the last 30 days."
|
6301 |
msgstr ""
|
6302 |
|
6303 |
+
#: languages/vue.php:841
|
6304 |
msgid "Advanced Reports"
|
6305 |
msgstr ""
|
6306 |
|
6307 |
+
#: languages/vue.php:844
|
6308 |
msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
|
6309 |
msgstr ""
|
6310 |
|
6311 |
+
#: languages/vue.php:847
|
6312 |
msgid "Dashboard Widget"
|
6313 |
msgstr ""
|
6314 |
|
6315 |
+
#: languages/vue.php:850
|
6316 |
msgid "Basic Widget"
|
6317 |
msgstr ""
|
6318 |
|
6319 |
+
#: languages/vue.php:853
|
6320 |
msgid "Overview Report Synopsis"
|
6321 |
msgstr ""
|
6322 |
|
6323 |
+
#: languages/vue.php:856
|
6324 |
msgid "Advanced Dashboard Widget"
|
6325 |
msgstr ""
|
6326 |
|
6327 |
+
#: languages/vue.php:859
|
6328 |
msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
|
6329 |
msgstr ""
|
6330 |
|
6331 |
+
#: languages/vue.php:865
|
6332 |
msgid "Email Summaries"
|
6333 |
msgstr ""
|
6334 |
|
6335 |
+
#: languages/vue.php:868
|
6336 |
msgid "Included"
|
6337 |
msgstr ""
|
6338 |
|
6339 |
+
#: languages/vue.php:871
|
6340 |
msgid "Get weekly traffic reports directly in your inbox."
|
6341 |
msgstr ""
|
6342 |
|
6343 |
+
#: languages/vue.php:874
|
6344 |
msgid "Publisher Reports"
|
6345 |
msgstr ""
|
6346 |
|
6347 |
+
#: languages/vue.php:877
|
6348 |
msgid "Advanced Publisher Reports & Tracking"
|
6349 |
msgstr ""
|
6350 |
|
6351 |
+
#: languages/vue.php:880
|
6352 |
msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
|
6353 |
msgstr ""
|
6354 |
|
6355 |
+
#: languages/vue.php:886
|
6356 |
msgid "Basic Options"
|
6357 |
msgstr ""
|
6358 |
|
6359 |
+
#: languages/vue.php:889
|
6360 |
msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
|
6361 |
msgstr ""
|
6362 |
|
6363 |
+
#: languages/vue.php:892
|
6364 |
msgid "Dynamic Popular Posts & Popular Products"
|
6365 |
msgstr ""
|
6366 |
|
6367 |
+
#: languages/vue.php:895
|
6368 |
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."
|
6369 |
msgstr ""
|
6370 |
|
6371 |
+
#: languages/vue.php:899
|
6372 |
msgid "Not Available"
|
6373 |
msgstr ""
|
6374 |
|
6375 |
+
#: languages/vue.php:902
|
6376 |
msgid "Complete Custom Dimensions Tracking"
|
6377 |
msgstr ""
|
6378 |
|
6379 |
+
#: languages/vue.php:905
|
6380 |
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"
|
6381 |
msgstr ""
|
6382 |
|
6383 |
+
#: languages/vue.php:911
|
6384 |
msgid "Limited Support"
|
6385 |
msgstr ""
|
6386 |
|
6387 |
+
#: languages/vue.php:914
|
6388 |
msgid "Priority Support"
|
6389 |
msgstr ""
|
6390 |
|
6391 |
+
#: languages/vue.php:917
|
6392 |
msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
|
6393 |
msgstr ""
|
6394 |
|
6395 |
+
#: languages/vue.php:920
|
6396 |
msgid "Feature"
|
6397 |
msgstr ""
|
6398 |
|
6399 |
+
#: languages/vue.php:923
|
6400 |
msgid "Lite"
|
6401 |
msgstr ""
|
6402 |
|
6403 |
+
#: languages/vue.php:926
|
6404 |
msgid "Pro"
|
6405 |
msgstr ""
|
6406 |
|
6407 |
+
#: languages/vue.php:929
|
6408 |
msgid "Custom Google Analytics Link Tracking"
|
6409 |
msgstr ""
|
6410 |
|
6411 |
+
#: languages/vue.php:932
|
6412 |
msgid "Standard Tracking"
|
6413 |
msgstr ""
|
6414 |
|
6415 |
+
#: languages/vue.php:935
|
6416 |
msgid "Advanced Tracking"
|
6417 |
msgstr ""
|
6418 |
|
6419 |
+
#: languages/vue.php:938
|
6420 |
msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
|
6421 |
msgstr ""
|
6422 |
|
6423 |
+
#: languages/vue.php:941
|
6424 |
msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
|
6425 |
msgstr ""
|
6426 |
|
6427 |
+
#: languages/vue.php:944
|
6428 |
msgid "No-Code-Needed Tracking Features"
|
6429 |
msgstr ""
|
6430 |
|
6431 |
+
#: languages/vue.php:947
|
6432 |
msgid "Basic Tracking Options"
|
6433 |
msgstr ""
|
6434 |
|
6435 |
+
#: languages/vue.php:950
|
6436 |
msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
|
6437 |
msgstr ""
|
6438 |
|
6439 |
+
#: languages/vue.php:953
|
6440 |
msgid "Advanced Tracking Options"
|
6441 |
msgstr ""
|
6442 |
|
6443 |
+
#: languages/vue.php:956
|
6444 |
msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
|
6445 |
msgstr ""
|
6446 |
|
6447 |
+
#: languages/vue.php:959
|
6448 |
msgid "eCommerce Tracking"
|
6449 |
msgstr ""
|
6450 |
|
6451 |
+
#: languages/vue.php:962
|
6452 |
msgid "One-click Complete eCommerce tracking"
|
6453 |
msgstr ""
|
6454 |
|
6455 |
+
#: languages/vue.php:965
|
6456 |
msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
|
6457 |
msgstr ""
|
6458 |
|
6459 |
+
#: languages/vue.php:968
|
6460 |
msgid "Forms Tracking"
|
6461 |
msgstr ""
|
6462 |
|
6463 |
+
#: languages/vue.php:971
|
6464 |
msgid "One-click Form Events Tracking"
|
6465 |
msgstr ""
|
6466 |
|
6467 |
+
#: languages/vue.php:974
|
6468 |
msgid "License Key"
|
6469 |
msgstr ""
|
6470 |
|
6471 |
#. Translators: Add link to retrieve license key from account.
|
6472 |
+
#: languages/vue.php:978
|
6473 |
msgid "Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
|
6474 |
msgstr ""
|
6475 |
|
6476 |
+
#: languages/vue.php:981
|
6477 |
msgid "Google Authentication"
|
6478 |
msgstr ""
|
6479 |
|
6480 |
+
#: languages/vue.php:984
|
6481 |
msgid "Connect Google Analytics + WordPress"
|
6482 |
msgstr ""
|
6483 |
|
6484 |
+
#: languages/vue.php:987
|
6485 |
msgid "You will be taken to the MonsterInsights website where you'll need to connect your Analytics account."
|
6486 |
msgstr ""
|
6487 |
|
6488 |
+
#: languages/vue.php:990
|
6489 |
msgid "Miscellaneous"
|
6490 |
msgstr ""
|
6491 |
|
6492 |
+
#: languages/vue.php:993
|
6493 |
msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
|
6494 |
msgstr ""
|
6495 |
|
6496 |
+
#: languages/vue.php:996
|
6497 |
msgid "Hide Announcements"
|
6498 |
msgstr ""
|
6499 |
|
6500 |
+
#: languages/vue.php:999
|
6501 |
msgid "Setup Wizard"
|
6502 |
msgstr ""
|
6503 |
|
6504 |
+
#: languages/vue.php:1002
|
6505 |
msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
|
6506 |
msgstr ""
|
6507 |
|
6508 |
+
#: languages/vue.php:1005
|
6509 |
msgid "Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
|
6510 |
msgstr ""
|
6511 |
|
6512 |
+
#: languages/vue.php:1008
|
6513 |
msgid "Over the years, we found that in order to get the most out of Google Analytics, you needed a full time developer who could implement custom tracking, so that Google Analytics would integrate with things like WooCommerce, and track things which Google doesn't by default, like outbound links."
|
6514 |
msgstr ""
|
6515 |
|
6516 |
+
#: languages/vue.php:1011
|
6517 |
msgid "Our goal is to take the pain out of analytics, making it simple and easy, by eliminating the need to have to worry about code, putting the best reports directly into the area you already go to (your WordPress dashboard), and adding the most advanced insights and features without complicating our plugin with tons of settings. Quite simply, it should \"just work\"."
|
6518 |
msgstr ""
|
6519 |
|
6520 |
+
#: languages/vue.php:1014
|
6521 |
msgid "MonsterInsights is brought to you by the same team that's behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, and the best WordPress forms plugin, WPForms."
|
6522 |
msgstr ""
|
6523 |
|
6524 |
+
#: languages/vue.php:1017
|
6525 |
msgid "Yup, we know a thing or two about building awesome products that customers love."
|
6526 |
msgstr ""
|
6527 |
|
6528 |
+
#: languages/vue.php:1020
|
6529 |
msgid "The MonsterInsights Team"
|
6530 |
msgstr ""
|
6531 |
|
6532 |
+
#: languages/vue.php:1023
|
6533 |
msgid "Make your MonsterInsights campaign links prettier with Pretty Links!"
|
6534 |
msgstr ""
|
6535 |
|
6536 |
+
#: languages/vue.php:1026
|
6537 |
msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
|
6538 |
msgstr ""
|
6539 |
|
6540 |
+
#: languages/vue.php:1029
|
6541 |
msgid "Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!"
|
6542 |
msgstr ""
|
6543 |
|
6544 |
+
#: languages/vue.php:1032
|
6545 |
msgid "Over 200,000 websites use Pretty Links!"
|
6546 |
msgstr ""
|
6547 |
|
6548 |
+
#: languages/vue.php:1035
|
6549 |
msgid "Install Pretty Links"
|
6550 |
msgstr ""
|
6551 |
|
6552 |
+
#: languages/vue.php:1038
|
6553 |
msgid "Pretty Links Installed & Activated"
|
6554 |
msgstr ""
|
6555 |
|
6556 |
+
#: languages/vue.php:1041
|
6557 |
msgid "Download Pretty Links"
|
6558 |
msgstr ""
|
6559 |
|
6560 |
+
#: languages/vue.php:1044
|
6561 |
msgid "Install Pretty Links from the WordPress.org plugin repository."
|
6562 |
msgstr ""
|
6563 |
|
6564 |
+
#: languages/vue.php:1047
|
6565 |
msgid "Activate Pretty Links"
|
6566 |
msgstr ""
|
6567 |
|
6568 |
+
#: languages/vue.php:1050
|
6569 |
msgid "Activating Pretty Links..."
|
6570 |
msgstr ""
|
6571 |
|
6572 |
+
#: languages/vue.php:1053
|
6573 |
msgid "Create New Pretty Link"
|
6574 |
msgstr ""
|
6575 |
|
6576 |
+
#: languages/vue.php:1056
|
6577 |
msgid "Create a New Pretty Link"
|
6578 |
msgstr ""
|
6579 |
|
6580 |
+
#: languages/vue.php:1059
|
6581 |
msgid "Grab your campaign link and paste it into the Target URL field."
|
6582 |
msgstr ""
|
6583 |
|
6584 |
+
#: languages/vue.php:1062
|
6585 |
msgid "Custom Campaign Parameters"
|
6586 |
msgstr ""
|
6587 |
|
6588 |
+
#: languages/vue.php:1065
|
6589 |
msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
|
6590 |
msgstr ""
|
6591 |
|
6592 |
+
#: languages/vue.php:1068
|
6593 |
msgid "A custom campaign is any ad campaign not using the AdWords auto-tagging feature. When users click one of the custom links, the unique parameters are sent to your Analytics account, so you can identify the URLs that are the most effective in attracting users to your content."
|
6594 |
msgstr ""
|
6595 |
|
6596 |
#. Translators: Marks the field as required.
|
6597 |
+
#: languages/vue.php:1072
|
6598 |
msgid "Website URL %s"
|
6599 |
msgstr ""
|
6600 |
|
6601 |
#. Translators: Display the current website url in italic.
|
6602 |
+
#: languages/vue.php:1076
|
6603 |
msgid "The full website URL (e.g. %1$s %2$s%3$s)"
|
6604 |
msgstr ""
|
6605 |
|
6606 |
#. Translators: Marks the field as required.
|
6607 |
+
#: languages/vue.php:1080
|
6608 |
msgid "Campaign Source %s"
|
6609 |
msgstr ""
|
6610 |
|
6611 |
#. Translators: Make the text italic.
|
6612 |
+
#: languages/vue.php:1084
|
6613 |
msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
|
6614 |
msgstr ""
|
6615 |
|
6616 |
#. Translators: Make the text italic.
|
6617 |
+
#: languages/vue.php:1088
|
6618 |
msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
|
6619 |
msgstr ""
|
6620 |
|
6621 |
#. Translators: Make the text italic.
|
6622 |
+
#: languages/vue.php:1092
|
6623 |
msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
|
6624 |
msgstr ""
|
6625 |
|
6626 |
+
#: languages/vue.php:1095
|
6627 |
msgid "Enter the paid keyword"
|
6628 |
msgstr ""
|
6629 |
|
6630 |
+
#: languages/vue.php:1098
|
6631 |
msgid "Enter something to differentiate ads"
|
6632 |
msgstr ""
|
6633 |
|
6634 |
+
#: languages/vue.php:1101
|
6635 |
msgid "Use Fragment"
|
6636 |
msgstr ""
|
6637 |
|
6638 |
#. Translators: Make the text bold.
|
6639 |
+
#: languages/vue.php:1105
|
6640 |
msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
|
6641 |
msgstr ""
|
6642 |
|
6643 |
+
#: languages/vue.php:1108
|
6644 |
msgid "URL to use"
|
6645 |
msgstr ""
|
6646 |
|
6647 |
+
#: languages/vue.php:1111
|
6648 |
msgid "(Updates automatically)"
|
6649 |
msgstr ""
|
6650 |
|
6651 |
+
#: languages/vue.php:1114
|
6652 |
msgid "Copy to Clipboard"
|
6653 |
msgstr ""
|
6654 |
|
6655 |
+
#: languages/vue.php:1117
|
6656 |
msgid "Copy to Pretty Links"
|
6657 |
msgstr ""
|
6658 |
|
6659 |
+
#: languages/vue.php:1120
|
6660 |
msgid "Make your campaign links prettier!"
|
6661 |
msgstr ""
|
6662 |
|
6663 |
+
#: languages/vue.php:1123
|
6664 |
msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
|
6665 |
msgstr ""
|
6666 |
|
6667 |
+
#: languages/vue.php:1126
|
6668 |
msgid "More Information & Examples"
|
6669 |
msgstr ""
|
6670 |
|
6671 |
+
#: languages/vue.php:1129
|
6672 |
msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
|
6673 |
msgstr ""
|
6674 |
|
6675 |
+
#: languages/vue.php:1132
|
6676 |
msgid "Campaign Source"
|
6677 |
msgstr ""
|
6678 |
|
6679 |
+
#: languages/vue.php:1135
|
6680 |
msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
|
6681 |
msgstr ""
|
6682 |
|
6683 |
+
#: languages/vue.php:1138
|
6684 |
msgid "Campaign Medium"
|
6685 |
msgstr ""
|
6686 |
|
6687 |
+
#: languages/vue.php:1141
|
6688 |
msgid "Use utm_medium to identify a medium such as email or cost-per-click."
|
6689 |
msgstr ""
|
6690 |
|
6691 |
+
#: languages/vue.php:1144
|
6692 |
msgid "Campaign Name"
|
6693 |
msgstr ""
|
6694 |
|
6695 |
+
#: languages/vue.php:1147
|
6696 |
msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
|
6697 |
msgstr ""
|
6698 |
|
6699 |
+
#: languages/vue.php:1150
|
6700 |
msgid "Campaign Term"
|
6701 |
msgstr ""
|
6702 |
|
6703 |
+
#: languages/vue.php:1153
|
6704 |
msgid "Used for paid search. Use utm_term to note the keywords for this ad."
|
6705 |
msgstr ""
|
6706 |
|
6707 |
+
#: languages/vue.php:1156
|
6708 |
msgid "Campaign Content"
|
6709 |
msgstr ""
|
6710 |
|
6711 |
+
#: languages/vue.php:1159
|
6712 |
msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
|
6713 |
msgstr ""
|
6714 |
|
6715 |
#. Translators: Example.
|
6716 |
+
#: languages/vue.php:1163
|
6717 |
msgid "Example: %s"
|
6718 |
msgstr ""
|
6719 |
|
6720 |
#. Translators: Examples.
|
6721 |
+
#: languages/vue.php:1167
|
6722 |
msgid "Examples: %s"
|
6723 |
msgstr ""
|
6724 |
|
6725 |
+
#: languages/vue.php:1170
|
6726 |
msgid "About Campaigns"
|
6727 |
msgstr ""
|
6728 |
|
6729 |
+
#: languages/vue.php:1173
|
6730 |
msgid "About Custom Campaigns"
|
6731 |
msgstr ""
|
6732 |
|
6733 |
+
#: languages/vue.php:1176
|
6734 |
msgid "Best Practices for Creating Custom Campaigns"
|
6735 |
msgstr ""
|
6736 |
|
6737 |
+
#: languages/vue.php:1179
|
6738 |
msgid "About the Referral Traffic Report"
|
6739 |
msgstr ""
|
6740 |
|
6741 |
+
#: languages/vue.php:1182
|
6742 |
msgid "About Traffic Source Dimensions"
|
6743 |
msgstr ""
|
6744 |
|
6745 |
+
#: languages/vue.php:1185
|
6746 |
msgid "AdWords Auto-Tagging"
|
6747 |
msgstr ""
|
6748 |
|
6749 |
+
#: languages/vue.php:1188
|
6750 |
msgid "Additional Information"
|
6751 |
msgstr ""
|
6752 |
|
6753 |
+
#: languages/vue.php:1191
|
6754 |
msgid "Import/Export"
|
6755 |
msgstr ""
|
6756 |
|
6757 |
+
#: languages/vue.php:1194
|
6758 |
msgid "Import"
|
6759 |
msgstr ""
|
6760 |
|
6761 |
+
#: languages/vue.php:1197
|
6762 |
msgid "Import settings from another MonsterInsights website."
|
6763 |
msgstr ""
|
6764 |
|
6765 |
+
#: languages/vue.php:1200
|
6766 |
msgid "Export"
|
6767 |
msgstr ""
|
6768 |
|
6769 |
+
#: languages/vue.php:1203
|
6770 |
msgid "Export settings to import into another MonsterInsights install."
|
6771 |
msgstr ""
|
6772 |
|
6773 |
+
#: languages/vue.php:1206
|
6774 |
msgid "Import Settings"
|
6775 |
msgstr ""
|
6776 |
|
6777 |
+
#: languages/vue.php:1209
|
6778 |
msgid "Export Settings"
|
6779 |
msgstr ""
|
6780 |
|
6781 |
+
#: languages/vue.php:1212
|
6782 |
msgid "Please choose a file to import"
|
6783 |
msgstr ""
|
6784 |
|
6785 |
+
#: languages/vue.php:1215
|
6786 |
msgid "Click Choose file below to select the settings export file from another site."
|
6787 |
msgstr ""
|
6788 |
|
6789 |
+
#: languages/vue.php:1218
|
6790 |
msgid "Use the button below to export a file with your MonsterInsights settings."
|
6791 |
msgstr ""
|
6792 |
|
6793 |
+
#: languages/vue.php:1221
|
6794 |
msgid "Uploading file..."
|
6795 |
msgstr ""
|
6796 |
|
6797 |
+
#: languages/vue.php:1224
|
6798 |
msgid "File imported"
|
6799 |
msgstr ""
|
6800 |
|
6801 |
+
#: languages/vue.php:1227
|
6802 |
msgid "Settings successfully updated!"
|
6803 |
msgstr ""
|
6804 |
|
6805 |
+
#: languages/vue.php:1230
|
6806 |
msgid "Error importing settings"
|
6807 |
msgstr ""
|
6808 |
|
6809 |
+
#: languages/vue.php:1233
|
6810 |
msgid "Please choose a .json file generated by a MonsterInsights settings export."
|
6811 |
msgstr ""
|
6812 |
|
6813 |
+
#: languages/vue.php:1236
|
6814 |
msgid "MonsterInsights Recommends WPForms"
|
6815 |
msgstr ""
|
6816 |
|
6817 |
+
#: languages/vue.php:1239
|
6818 |
msgid "Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market."
|
6819 |
msgstr ""
|
6820 |
|
6821 |
+
#: languages/vue.php:1242
|
6822 |
msgid "Used on over 4,000,000 websites!"
|
6823 |
msgstr ""
|
6824 |
|
6825 |
+
#: languages/vue.php:1245
|
6826 |
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!"
|
6827 |
msgstr ""
|
6828 |
|
6829 |
+
#: languages/vue.php:1248
|
6830 |
msgid "Skip this Step"
|
6831 |
msgstr ""
|
6832 |
|
6833 |
+
#: languages/vue.php:1251
|
6834 |
msgid "Continue & Install WPForms"
|
6835 |
msgstr ""
|
6836 |
|
6837 |
+
#: languages/vue.php:1255
|
6838 |
msgid "Installing..."
|
6839 |
msgstr ""
|
6840 |
|
6841 |
+
#: languages/vue.php:1258
|
6842 |
msgid "Show in widget mode"
|
6843 |
msgstr ""
|
6844 |
|
6845 |
+
#: languages/vue.php:1261
|
6846 |
msgid "Show in full-width mode"
|
6847 |
msgstr ""
|
6848 |
|
6849 |
+
#: languages/vue.php:1268
|
6850 |
msgid "Installing Addon"
|
6851 |
msgstr ""
|
6852 |
|
6853 |
+
#: languages/vue.php:1271
|
6854 |
msgid "Activating Addon"
|
6855 |
msgstr ""
|
6856 |
|
6857 |
+
#: languages/vue.php:1274
|
6858 |
msgid "Addon Activated"
|
6859 |
msgstr ""
|
6860 |
|
6861 |
+
#: languages/vue.php:1277
|
6862 |
msgid "Loading report data"
|
6863 |
msgstr ""
|
6864 |
|
6865 |
+
#: languages/vue.php:1280
|
6866 |
msgid "Please activate manually"
|
6867 |
msgstr ""
|
6868 |
|
6869 |
#. Translators: Adds the error status and status text.
|
6870 |
+
#: languages/vue.php:1284
|
6871 |
msgid "Error: %1$s, %2$s"
|
6872 |
msgstr ""
|
6873 |
|
6874 |
+
#: languages/vue.php:1287
|
6875 |
msgid "Error Activating Addon"
|
6876 |
msgstr ""
|
6877 |
|
6878 |
+
#: languages/vue.php:1290
|
6879 |
#: lite/includes/admin/wp-site-health.php:375
|
6880 |
#: lite/includes/admin/wp-site-health.php:401
|
6881 |
#: lite/includes/admin/wp-site-health.php:428
|
6882 |
msgid "View Addons"
|
6883 |
msgstr ""
|
6884 |
|
6885 |
+
#: languages/vue.php:1293
|
6886 |
msgid "Dismiss"
|
6887 |
msgstr ""
|
6888 |
|
6889 |
+
#: languages/vue.php:1296
|
6890 |
msgid "Redirecting"
|
6891 |
msgstr ""
|
6892 |
|
6893 |
+
#: languages/vue.php:1299
|
6894 |
msgid "Please wait"
|
6895 |
msgstr ""
|
6896 |
|
6897 |
+
#: languages/vue.php:1303
|
6898 |
msgid "activate"
|
6899 |
msgstr ""
|
6900 |
|
6901 |
+
#: languages/vue.php:1307
|
6902 |
msgid "install"
|
6903 |
msgstr ""
|
6904 |
|
6905 |
+
#: languages/vue.php:1311
|
6906 |
msgid "Visit addons page"
|
6907 |
msgstr ""
|
6908 |
|
6909 |
+
#: languages/vue.php:1314
|
6910 |
msgid "Report Unavailable"
|
6911 |
msgstr ""
|
6912 |
|
6913 |
#. Translators: Install/Activate the addon.
|
6914 |
+
#: languages/vue.php:1318
|
6915 |
msgid "%s Addon"
|
6916 |
msgstr ""
|
6917 |
|
6918 |
+
#: languages/vue.php:1321
|
6919 |
msgid "Go Back To Reports"
|
6920 |
msgstr ""
|
6921 |
|
6922 |
+
#: languages/vue.php:1324
|
6923 |
msgid "Enable Enhanced eCommerce"
|
6924 |
msgstr ""
|
6925 |
|
6926 |
#. Translators: Placeholders are used for making text bold and adding a link.
|
6927 |
+
#: languages/vue.php:1328
|
6928 |
msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
|
6929 |
msgstr ""
|
6930 |
|
6931 |
+
#: languages/vue.php:1331
|
6932 |
msgid "Last 30 Days Insights for:"
|
6933 |
msgstr ""
|
6934 |
|
6935 |
+
#: languages/vue.php:1334
|
6936 |
msgid "Your Website"
|
6937 |
msgstr ""
|
6938 |
|
6939 |
+
#: languages/vue.php:1337
|
6940 |
msgid "Sessions"
|
6941 |
msgstr ""
|
6942 |
|
6943 |
+
#: languages/vue.php:1340
|
6944 |
msgid "Pageviews"
|
6945 |
msgstr ""
|
6946 |
|
6947 |
+
#: languages/vue.php:1343
|
6948 |
msgid "Avg. Duration"
|
6949 |
msgstr ""
|
6950 |
|
6951 |
+
#: languages/vue.php:1349
|
6952 |
msgid "Total Users"
|
6953 |
msgstr ""
|
6954 |
|
6955 |
+
#: languages/vue.php:1352
|
6956 |
msgid "More data is available"
|
6957 |
msgstr ""
|
6958 |
|
6959 |
+
#: languages/vue.php:1355
|
6960 |
msgid "Want to see page-specific stats?"
|
6961 |
msgstr ""
|
6962 |
|
6963 |
+
#: languages/vue.php:1358
|
6964 |
msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
|
6965 |
msgstr ""
|
6966 |
|
6967 |
+
#: languages/vue.php:1361
|
6968 |
msgid "No addons found."
|
6969 |
msgstr ""
|
6970 |
|
6971 |
+
#: languages/vue.php:1364
|
6972 |
msgid "Refresh Addons"
|
6973 |
msgstr ""
|
6974 |
|
6975 |
+
#: languages/vue.php:1367
|
6976 |
msgid "Refreshing Addons"
|
6977 |
msgstr ""
|
6978 |
|
6979 |
#. Translators: Make text green.
|
6980 |
+
#: languages/vue.php:1371
|
6981 |
msgid "Upgrade to Pro to unlock addons and other great features. As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
|
6982 |
msgstr ""
|
6983 |
|
6984 |
+
#: languages/vue.php:1374
|
6985 |
msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
|
6986 |
msgstr ""
|
6987 |
|
6988 |
+
#: languages/vue.php:1377
|
6989 |
msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
|
6990 |
msgstr ""
|
6991 |
|
6992 |
+
#: languages/vue.php:1380
|
6993 |
msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
|
6994 |
msgstr ""
|
6995 |
|
6996 |
+
#: languages/vue.php:1383
|
6997 |
msgid "See All Your Important Store Metrics in One Place"
|
6998 |
msgstr ""
|
6999 |
|
7000 |
+
#: languages/vue.php:1386
|
7001 |
msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
|
7002 |
msgstr ""
|
7003 |
|
7004 |
+
#: languages/vue.php:1389
|
7005 |
msgid "ONE-CLICK INTEGRATIONS"
|
7006 |
msgstr ""
|
7007 |
|
7008 |
+
#: languages/vue.php:1392
|
7009 |
msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
|
7010 |
msgstr ""
|
7011 |
|
7012 |
+
#: languages/vue.php:1395
|
7013 |
msgid "MonsterInsights Ecommerce Addon makes it easy to setup enhanced eCommerce tracking, so you can see all your important eCommerce metrics like total revenue, conversion rate, average order value, top products, top referral sources, and more in a single report right inside your WordPress dashboard."
|
7014 |
msgstr ""
|
7015 |
|
7016 |
+
#: languages/vue.php:1398
|
7017 |
msgid "Affiliate Tracking"
|
7018 |
msgstr ""
|
7019 |
|
7020 |
+
#: languages/vue.php:1401
|
7021 |
msgid "Automatically Track Affiliate Sales"
|
7022 |
msgstr ""
|
7023 |
|
7024 |
+
#: languages/vue.php:1404
|
7025 |
msgid "The MonsterInsights eCommerce addon works with EasyAffiliate to automatically attribute orders originating from an EasyAffiliate link in Google Analytics. Gain valuable insights into your top affiliates with no coding required."
|
7026 |
msgstr ""
|
7027 |
|
7028 |
+
#: languages/vue.php:1407
|
7029 |
msgid "Works with WooCommerce, MemberPress and Easy Digital Downloads."
|
7030 |
msgstr ""
|
7031 |
|
7032 |
+
#: languages/vue.php:1416
|
7033 |
msgid "Cart Funnel"
|
7034 |
msgstr ""
|
7035 |
|
7036 |
+
#: languages/vue.php:1419
|
7037 |
msgid "Customer Insights"
|
7038 |
msgstr ""
|
7039 |
|
7040 |
+
#: languages/vue.php:1422
|
7041 |
msgid "Campaign Measurement"
|
7042 |
msgstr ""
|
7043 |
|
7044 |
+
#: languages/vue.php:1425
|
7045 |
msgid "Customer Profiles"
|
7046 |
msgstr ""
|
7047 |
|
7048 |
+
#: languages/vue.php:1428
|
7049 |
msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
|
7050 |
msgstr ""
|
7051 |
|
7052 |
+
#: languages/vue.php:1431
|
7053 |
msgid "Truly Understand Your%1$s Customers With %2$sMonsterInsights%3$s"
|
7054 |
msgstr ""
|
7055 |
|
7056 |
+
#: languages/vue.php:1434
|
7057 |
msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from MonsterInsights!"
|
7058 |
msgstr ""
|
7059 |
|
7060 |
+
#: languages/vue.php:1437
|
7061 |
msgid "Track all-new metrics!"
|
7062 |
msgstr ""
|
7063 |
|
7064 |
+
#: languages/vue.php:1440
|
7065 |
msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
|
7066 |
msgstr ""
|
7067 |
|
7068 |
+
#: languages/vue.php:1443
|
7069 |
msgid "FEATURES"
|
7070 |
msgstr ""
|
7071 |
|
7072 |
+
#: languages/vue.php:1446
|
7073 |
msgid "Get The Unique Metrics Neccessary for Growth"
|
7074 |
msgstr ""
|
7075 |
|
7076 |
+
#: languages/vue.php:1449
|
7077 |
msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
|
7078 |
msgstr ""
|
7079 |
|
7080 |
+
#: languages/vue.php:1452
|
7081 |
msgid "Get Answers to the important questions %1$syou should know."
|
7082 |
msgstr ""
|
7083 |
|
7084 |
+
#: languages/vue.php:1455
|
7085 |
msgid "Did the login/registration step of the checkout put users off?"
|
7086 |
msgstr ""
|
7087 |
|
7088 |
+
#: languages/vue.php:1458
|
7089 |
msgid "Which ad campaign is driving the most revenue?"
|
7090 |
msgstr ""
|
7091 |
|
7092 |
+
#: languages/vue.php:1461
|
7093 |
msgid "Who is my typical customer?"
|
7094 |
msgstr ""
|
7095 |
|
7096 |
+
#: languages/vue.php:1464
|
7097 |
msgid "Level-up Your eCommerce store with %1$sMonsterInsights + WooCommerce!%1$s"
|
7098 |
msgstr ""
|
7099 |
|
7100 |
#. Translators: placeholders make text small.
|
7101 |
+
#: languages/vue.php:1469
|
7102 |
msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
|
7103 |
msgstr ""
|
7104 |
|
7105 |
#. Translators: placeholders make text small.
|
7106 |
+
#: languages/vue.php:1474
|
7107 |
msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
|
7108 |
msgstr ""
|
7109 |
|
7110 |
#. Translators: placeholders make text small.
|
7111 |
+
#: languages/vue.php:1479
|
7112 |
msgid "None %1$s- Manually update everything.%2$s"
|
7113 |
msgstr ""
|
7114 |
|
7115 |
+
#: languages/vue.php:1483
|
7116 |
msgid "Automatic Updates"
|
7117 |
msgstr ""
|
7118 |
|
7119 |
+
#: languages/vue.php:1486
|
7120 |
msgid "Awesome, You're All Set!"
|
7121 |
msgstr ""
|
7122 |
|
7123 |
+
#: languages/vue.php:1489
|
7124 |
msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
|
7125 |
msgstr ""
|
7126 |
|
7127 |
#. Translators: Make text bold.
|
7128 |
+
#: languages/vue.php:1493
|
7129 |
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."
|
7130 |
msgstr ""
|
7131 |
|
7132 |
#. Translators: Link to our blog.
|
7133 |
+
#: languages/vue.php:1497
|
7134 |
msgid "%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business."
|
7135 |
msgstr ""
|
7136 |
|
7137 |
+
#: languages/vue.php:1500
|
7138 |
msgid "Finish Setup & Exit Wizard"
|
7139 |
msgstr ""
|
7140 |
|
7141 |
+
#: languages/vue.php:1503
|
7142 |
msgid "Checking your website..."
|
7143 |
msgstr ""
|
7144 |
|
7145 |
+
#: languages/vue.php:1506
|
7146 |
msgid "See All Reports"
|
7147 |
msgstr ""
|
7148 |
|
7149 |
+
#: languages/vue.php:1509
|
7150 |
msgid "Go to the Analytics Dashboard"
|
7151 |
msgstr ""
|
7152 |
|
7153 |
+
#. Translators: Line break.
|
7154 |
+
#: languages/vue.php:1513
|
7155 |
msgid "Unique %s Sessions"
|
7156 |
msgstr ""
|
7157 |
|
7158 |
+
#. Translators: Line break.
|
7159 |
+
#: languages/vue.php:1518
|
7160 |
msgid "Unique %s Pageviews"
|
7161 |
msgstr ""
|
7162 |
|
7163 |
+
#: languages/vue.php:1521
|
7164 |
msgid "A session is the browsing session of a single user to your site."
|
7165 |
msgstr ""
|
7166 |
|
7167 |
+
#: languages/vue.php:1524
|
7168 |
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."
|
7169 |
msgstr ""
|
7170 |
|
7171 |
+
#: languages/vue.php:1527
|
7172 |
msgid "Total duration of all sessions (in seconds) / number of sessions."
|
7173 |
msgstr ""
|
7174 |
|
7175 |
+
#: languages/vue.php:1530
|
7176 |
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."
|
7177 |
msgstr ""
|
7178 |
|
7179 |
+
#: languages/vue.php:1533
|
7180 |
msgid "The number of distinct tracked users"
|
7181 |
msgstr ""
|
7182 |
|
7183 |
+
#: languages/vue.php:1536
|
7184 |
msgid "Avg. Session Duration"
|
7185 |
msgstr ""
|
7186 |
|
7187 |
+
#: languages/vue.php:1539
|
7188 |
msgid "Still Calculating..."
|
7189 |
msgstr ""
|
7190 |
|
7191 |
+
#: languages/vue.php:1542
|
7192 |
msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
|
7193 |
msgstr ""
|
7194 |
|
7195 |
+
#: languages/vue.php:1545
|
7196 |
msgid "Back to Overview Report"
|
7197 |
msgstr ""
|
7198 |
|
7199 |
+
#: languages/vue.php:1548
|
7200 |
msgid "Your 2020 Analytics Report"
|
7201 |
msgstr ""
|
7202 |
|
7203 |
+
#: languages/vue.php:1551
|
7204 |
msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
|
7205 |
msgstr ""
|
7206 |
|
7207 |
+
#: languages/vue.php:1554
|
7208 |
msgid "Audience"
|
7209 |
msgstr ""
|
7210 |
|
7211 |
+
#: languages/vue.php:1557
|
7212 |
msgid "Congrats"
|
7213 |
msgstr ""
|
7214 |
|
7215 |
+
#: languages/vue.php:1560
|
7216 |
msgid "Your website was quite popular this year! "
|
7217 |
msgstr ""
|
7218 |
|
7219 |
+
#: languages/vue.php:1563
|
7220 |
msgid "You had "
|
7221 |
msgstr ""
|
7222 |
|
7223 |
+
#: languages/vue.php:1566
|
7224 |
msgid " visitors!"
|
7225 |
msgstr ""
|
7226 |
|
7227 |
+
#: languages/vue.php:1569
|
7228 |
msgid " visitors"
|
7229 |
msgstr ""
|
7230 |
|
7231 |
+
#: languages/vue.php:1572
|
7232 |
msgid "Total Visitors"
|
7233 |
msgstr ""
|
7234 |
|
7235 |
+
#: languages/vue.php:1575
|
7236 |
msgid "Total Sessions"
|
7237 |
msgstr ""
|
7238 |
|
7239 |
+
#: languages/vue.php:1578
|
7240 |
msgid "Visitors by Month"
|
7241 |
msgstr ""
|
7242 |
|
7243 |
+
#: languages/vue.php:1581
|
7244 |
msgid "January 1, 2020 - December 31, 2020"
|
7245 |
msgstr ""
|
7246 |
|
7247 |
+
#: languages/vue.php:1584
|
7248 |
msgid "A Tip for 2021"
|
7249 |
msgstr ""
|
7250 |
|
7251 |
+
#: languages/vue.php:1587
|
7252 |
msgid "Demographics"
|
7253 |
msgstr ""
|
7254 |
|
7255 |
+
#: languages/vue.php:1590
|
7256 |
msgid "#1"
|
7257 |
msgstr ""
|
7258 |
|
7259 |
+
#: languages/vue.php:1593
|
7260 |
msgid "You Top 5 Countries"
|
7261 |
msgstr ""
|
7262 |
|
7263 |
+
#: languages/vue.php:1596
|
7264 |
msgid "Let’s get to know your visitors a little better, shall we?"
|
7265 |
msgstr ""
|
7266 |
|
7267 |
+
#: languages/vue.php:1599
|
7268 |
msgid "Gender"
|
7269 |
msgstr ""
|
7270 |
|
7271 |
+
#: languages/vue.php:1602
|
7272 |
msgid "Female"
|
7273 |
msgstr ""
|
7274 |
|
7275 |
+
#: languages/vue.php:1605
|
7276 |
msgid "Women"
|
7277 |
msgstr ""
|
7278 |
|
7279 |
+
#: languages/vue.php:1608
|
7280 |
msgid "Male"
|
7281 |
msgstr ""
|
7282 |
|
7283 |
+
#: languages/vue.php:1611
|
7284 |
msgid "Average Age"
|
7285 |
msgstr ""
|
7286 |
|
7287 |
+
#: languages/vue.php:1615
|
7288 |
msgid "Behavior"
|
7289 |
msgstr ""
|
7290 |
|
7291 |
+
#: languages/vue.php:1618
|
7292 |
msgid "Your Top 5 Pages"
|
7293 |
msgstr ""
|
7294 |
|
7295 |
+
#: languages/vue.php:1621
|
7296 |
msgid "Time Spent on Site"
|
7297 |
msgstr ""
|
7298 |
|
7299 |
+
#: languages/vue.php:1624
|
7300 |
msgid "minutes"
|
7301 |
msgstr ""
|
7302 |
|
7303 |
+
#: languages/vue.php:1627
|
7304 |
msgid "Device Type"
|
7305 |
msgstr ""
|
7306 |
|
7307 |
+
#: languages/vue.php:1630
|
7308 |
msgid "A Tip For 2021"
|
7309 |
msgstr ""
|
7310 |
|
7311 |
+
#: languages/vue.php:1633
|
7312 |
msgid "Take advantage of what you’ve already built. See how to get more traffic from existing content in our 32 Marketing Hacks to Grow Your Traffic."
|
7313 |
msgstr ""
|
7314 |
|
7315 |
+
#: languages/vue.php:1636
|
7316 |
msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
|
7317 |
msgstr ""
|
7318 |
|
7319 |
+
#: languages/vue.php:1639
|
7320 |
msgid "So, where did all of these visitors come from?"
|
7321 |
msgstr ""
|
7322 |
|
7323 |
+
#: languages/vue.php:1642
|
7324 |
msgid "Clicks"
|
7325 |
msgstr ""
|
7326 |
|
7327 |
+
#: languages/vue.php:1645
|
7328 |
msgid "Your Top 5 Keywords"
|
7329 |
msgstr ""
|
7330 |
|
7331 |
+
#: languages/vue.php:1648
|
7332 |
msgid "What keywords visitors searched for to find your site"
|
7333 |
msgstr ""
|
7334 |
|
7335 |
+
#: languages/vue.php:1651
|
7336 |
msgid "Your Top 5 Referrals"
|
7337 |
msgstr ""
|
7338 |
|
7339 |
+
#: languages/vue.php:1654
|
7340 |
msgid "The websites that link back to your website"
|
7341 |
msgstr ""
|
7342 |
|
7343 |
+
#: languages/vue.php:1657
|
7344 |
msgid "Opportunity"
|
7345 |
msgstr ""
|
7346 |
|
7347 |
+
#: languages/vue.php:1660
|
7348 |
msgid "Use referral sources to create new partnerships or expand existing ones. See our guide on how to spy on your competitors and ethically steal their traffic."
|
7349 |
msgstr ""
|
7350 |
|
7351 |
+
#: languages/vue.php:1663
|
7352 |
msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
|
7353 |
msgstr ""
|
7354 |
|
7355 |
+
#: languages/vue.php:1666
|
7356 |
msgid "Thank you for using MonsterInsights!"
|
7357 |
msgstr ""
|
7358 |
|
7359 |
+
#: languages/vue.php:1669
|
7360 |
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."
|
7361 |
msgstr ""
|
7362 |
|
7363 |
+
#: languages/vue.php:1672
|
7364 |
msgid "Here's to an amazing 2021!"
|
7365 |
msgstr ""
|
7366 |
|
7367 |
+
#: languages/vue.php:1675
|
7368 |
msgid "Enjoying MonsterInsights"
|
7369 |
msgstr ""
|
7370 |
|
7371 |
+
#: languages/vue.php:1678
|
7372 |
msgid "Leave a five star review!"
|
7373 |
msgstr ""
|
7374 |
|
7375 |
+
#: languages/vue.php:1681
|
7376 |
msgid "Syed Balkhi"
|
7377 |
msgstr ""
|
7378 |
|
7379 |
+
#: languages/vue.php:1684
|
7380 |
msgid "Chris Christoff"
|
7381 |
msgstr ""
|
7382 |
|
7383 |
+
#: languages/vue.php:1687
|
7384 |
msgid "Write Review"
|
7385 |
msgstr ""
|
7386 |
|
7387 |
+
#: languages/vue.php:1690
|
7388 |
msgid "Did you know over 10 million websites use our plugins?"
|
7389 |
msgstr ""
|
7390 |
|
7391 |
+
#: languages/vue.php:1693
|
7392 |
msgid "Try our other popular WordPress plugins to grow your website in 2021."
|
7393 |
msgstr ""
|
7394 |
|
7395 |
+
#: languages/vue.php:1696
|
7396 |
msgid "Join our Communities!"
|
7397 |
msgstr ""
|
7398 |
|
7399 |
+
#: languages/vue.php:1699
|
7400 |
msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
|
7401 |
msgstr ""
|
7402 |
|
7403 |
+
#: languages/vue.php:1702
|
7404 |
msgid "Facebook Group"
|
7405 |
msgstr ""
|
7406 |
|
7407 |
+
#: languages/vue.php:1705
|
7408 |
msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
|
7409 |
msgstr ""
|
7410 |
|
7411 |
+
#: languages/vue.php:1708
|
7412 |
msgid "Join Now...It’s Free!"
|
7413 |
msgstr ""
|
7414 |
|
7415 |
+
#: languages/vue.php:1711
|
7416 |
msgid "WordPress Tutorials by WPBeginner"
|
7417 |
msgstr ""
|
7418 |
|
7419 |
+
#: languages/vue.php:1714
|
7420 |
msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
|
7421 |
msgstr ""
|
7422 |
|
7423 |
+
#: languages/vue.php:1717
|
7424 |
msgid "Visit WPBeginner"
|
7425 |
msgstr ""
|
7426 |
|
7427 |
+
#: languages/vue.php:1720
|
7428 |
msgid "Follow Us!"
|
7429 |
msgstr ""
|
7430 |
|
7431 |
+
#: languages/vue.php:1723
|
7432 |
msgid "Follow MonsterInsights on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
|
7433 |
msgstr ""
|
7434 |
|
7435 |
+
#: languages/vue.php:1726
|
7436 |
msgid "Copyright MonsterInsights, 2021"
|
7437 |
msgstr ""
|
7438 |
|
7439 |
+
#: languages/vue.php:1729
|
7440 |
msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
|
7441 |
msgstr ""
|
7442 |
|
7443 |
+
#: languages/vue.php:1732
|
7444 |
msgid "January"
|
7445 |
msgstr ""
|
7446 |
|
7447 |
+
#: languages/vue.php:1735
|
7448 |
msgid "February"
|
7449 |
msgstr ""
|
7450 |
|
7451 |
+
#: languages/vue.php:1738
|
7452 |
msgid "March"
|
7453 |
msgstr ""
|
7454 |
|
7455 |
+
#: languages/vue.php:1741
|
7456 |
msgid "April"
|
7457 |
msgstr ""
|
7458 |
|
7459 |
+
#: languages/vue.php:1744
|
7460 |
msgid "May"
|
7461 |
msgstr ""
|
7462 |
|
7463 |
+
#: languages/vue.php:1747
|
7464 |
msgid "June"
|
7465 |
msgstr ""
|
7466 |
|
7467 |
+
#: languages/vue.php:1750
|
7468 |
msgid "July"
|
7469 |
msgstr ""
|
7470 |
|
7471 |
+
#: languages/vue.php:1753
|
7472 |
msgid "August"
|
7473 |
msgstr ""
|
7474 |
|
7475 |
+
#: languages/vue.php:1756
|
7476 |
msgid "September"
|
7477 |
msgstr ""
|
7478 |
|
7479 |
+
#: languages/vue.php:1759
|
7480 |
msgid "October"
|
7481 |
msgstr ""
|
7482 |
|
7483 |
+
#: languages/vue.php:1762
|
7484 |
msgid "November"
|
7485 |
msgstr ""
|
7486 |
|
7487 |
+
#: languages/vue.php:1765
|
7488 |
msgid "December"
|
7489 |
msgstr ""
|
7490 |
|
7491 |
#. Translators: Number of visitors.
|
7492 |
+
#: languages/vue.php:1769
|
7493 |
msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
|
7494 |
msgstr ""
|
7495 |
|
7496 |
+
#: languages/vue.php:1772
|
7497 |
msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
|
7498 |
msgstr ""
|
7499 |
|
7500 |
#. Translators: Number of visitors.
|
7501 |
+
#: languages/vue.php:1776
|
7502 |
msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
|
7503 |
msgstr ""
|
7504 |
|
7505 |
#. Translators: Number of visitors.
|
7506 |
+
#: languages/vue.php:1780
|
7507 |
msgid "%s Visitors"
|
7508 |
msgstr ""
|
7509 |
|
7510 |
#. Translators: Percent and Number of visitors.
|
7511 |
+
#: languages/vue.php:1784
|
7512 |
msgid "%1$s% of your visitors were %2$s"
|
7513 |
msgstr ""
|
7514 |
|
7515 |
#. Translators: Number of visitors and their age.
|
7516 |
+
#: languages/vue.php:1788
|
7517 |
msgid "%1$s% of your visitors were between the ages of %2$s"
|
7518 |
msgstr ""
|
7519 |
|
7520 |
+
#: languages/vue.php:1791
|
7521 |
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>"
|
7522 |
msgstr ""
|
7523 |
|
7524 |
#. Translators: Number of minutes spent on site.
|
7525 |
+
#: languages/vue.php:1795
|
7526 |
msgid "Each visitor spent an average of %s minutes on your website in 2020."
|
7527 |
msgstr ""
|
7528 |
|
7529 |
#. Translators: Name of device type.
|
7530 |
+
#: languages/vue.php:1799
|
7531 |
msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
|
7532 |
msgstr ""
|
7533 |
|
7534 |
#. Translators: Number of visitors and device percentage.
|
7535 |
+
#: languages/vue.php:1803
|
7536 |
msgid "%1$s% of your visitors were on a %2$s device."
|
7537 |
msgstr ""
|
7538 |
|
7539 |
+
#: languages/vue.php:1806
|
7540 |
msgid "Desktop"
|
7541 |
msgstr ""
|
7542 |
|
7543 |
+
#: languages/vue.php:1809
|
7544 |
msgid "Tablet"
|
7545 |
msgstr ""
|
7546 |
|
7547 |
+
#: languages/vue.php:1812
|
7548 |
msgid "Mobile"
|
7549 |
msgstr ""
|
7550 |
|
7551 |
+
#: languages/vue.php:1815
|
7552 |
msgid "Right Now"
|
7553 |
msgstr ""
|
7554 |
|
7555 |
+
#: languages/vue.php:1818
|
7556 |
msgid "Active users on site"
|
7557 |
msgstr ""
|
7558 |
|
7559 |
+
#: languages/vue.php:1821
|
7560 |
msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
|
7561 |
msgstr ""
|
7562 |
|
7563 |
+
#: languages/vue.php:1824
|
7564 |
msgid "Important: this only includes users who are tracked in real-time. Not all users are tracked in real-time including (but not limited to) logged-in site administrators, certain mobile users, and users who match a Google Analytics filter."
|
7565 |
msgstr ""
|
7566 |
|
7567 |
+
#: languages/vue.php:1827
|
7568 |
msgid "The real-time report automatically updates approximately every 60 seconds."
|
7569 |
msgstr ""
|
7570 |
|
7571 |
#. Translators: Number of seconds that have passed since the report was refreshed.
|
7572 |
+
#: languages/vue.php:1831
|
7573 |
msgid "The real-time report was last updated %s seconds ago."
|
7574 |
msgstr ""
|
7575 |
|
7576 |
+
#: languages/vue.php:1834
|
7577 |
msgid "The latest data will be automatically shown on this page when it becomes available."
|
7578 |
msgstr ""
|
7579 |
|
7580 |
+
#: languages/vue.php:1837
|
7581 |
msgid "There is no need to refresh the browser (doing so won't have any effect)."
|
7582 |
msgstr ""
|
7583 |
|
7584 |
+
#: languages/vue.php:1840
|
7585 |
msgid "Pageviews Per Minute"
|
7586 |
msgstr ""
|
7587 |
|
7588 |
+
#: languages/vue.php:1843
|
7589 |
msgid "Top Pages"
|
7590 |
msgstr ""
|
7591 |
|
7592 |
+
#: languages/vue.php:1846
|
7593 |
msgid "No pageviews currently."
|
7594 |
msgstr ""
|
7595 |
|
7596 |
+
#: languages/vue.php:1849
|
7597 |
msgid "Page"
|
7598 |
msgstr ""
|
7599 |
|
7600 |
+
#: languages/vue.php:1852
|
7601 |
msgid "Pageview Count"
|
7602 |
msgstr ""
|
7603 |
|
7604 |
+
#: languages/vue.php:1855
|
7605 |
msgid "Percent of Total"
|
7606 |
msgstr ""
|
7607 |
|
7608 |
+
#: languages/vue.php:1858
|
7609 |
msgid "This is the number of active users currently on your site."
|
7610 |
msgstr ""
|
7611 |
|
7612 |
+
#: languages/vue.php:1861
|
7613 |
msgid "This graph shows the number of pageviews for each of the last 30 minutes."
|
7614 |
msgstr ""
|
7615 |
|
7616 |
+
#: languages/vue.php:1864
|
7617 |
msgid "This list shows the top pages users are currently viewing on your site."
|
7618 |
msgstr ""
|
7619 |
|
7620 |
+
#: languages/vue.php:1867
|
7621 |
msgid "View All Real-Time Pageviews"
|
7622 |
msgstr ""
|
7623 |
|
7624 |
+
#: languages/vue.php:1870
|
7625 |
msgid "View All Real-Time Traffic Sources"
|
7626 |
msgstr ""
|
7627 |
|
7628 |
+
#: languages/vue.php:1873
|
7629 |
msgid "View All Real-Time Traffic by Country"
|
7630 |
msgstr ""
|
7631 |
|
7632 |
+
#: languages/vue.php:1876
|
7633 |
msgid "View All Real-Time Traffic by City"
|
7634 |
msgstr ""
|
7635 |
|
7636 |
+
#: languages/vue.php:1879
|
7637 |
msgid "Show Overview Reports"
|
7638 |
msgstr ""
|
7639 |
|
7640 |
+
#: languages/vue.php:1882
|
7641 |
msgid "Show Publishers Reports"
|
7642 |
msgstr ""
|
7643 |
|
7644 |
+
#: languages/vue.php:1885
|
7645 |
msgid "Show eCommerce Reports"
|
7646 |
msgstr ""
|
7647 |
|
7648 |
+
#: languages/vue.php:1888
|
7649 |
msgid "Settings Menu"
|
7650 |
msgstr ""
|
7651 |
|
7652 |
+
#: languages/vue.php:1891
|
7653 |
msgid "Available in PRO version"
|
7654 |
msgstr ""
|
7655 |
|
7656 |
+
#: languages/vue.php:1894
|
7657 |
msgid "Thank you for being a loyal MonsterInsights Lite user."
|
7658 |
msgstr ""
|
7659 |
|
7660 |
+
#: languages/vue.php:1897
|
7661 |
msgid "Upgrade to MonsterInsights Pro and unlock all the awesome features."
|
7662 |
msgstr ""
|
7663 |
|
7664 |
#. Translators: Gets replaced with the coupon code.
|
7665 |
+
#: languages/vue.php:1901
|
7666 |
msgid "Use coupon code %s to get 50%% off."
|
7667 |
msgstr ""
|
7668 |
|
7669 |
+
#: languages/vue.php:1904
|
7670 |
msgid "Dashboard widget"
|
7671 |
msgstr ""
|
7672 |
|
7673 |
+
#: languages/vue.php:1907
|
7674 |
msgid "Affiliate Links"
|
7675 |
msgstr ""
|
7676 |
|
7677 |
+
#: languages/vue.php:1910
|
7678 |
msgid "Enhanced Ecommerce"
|
7679 |
msgstr ""
|
7680 |
|
7681 |
+
#: languages/vue.php:1913
|
7682 |
msgid "Banner Ads"
|
7683 |
msgstr ""
|
7684 |
|
7685 |
+
#: languages/vue.php:1916
|
7686 |
msgid "Google AMP"
|
7687 |
msgstr ""
|
7688 |
|
7689 |
+
#: languages/vue.php:1919
|
7690 |
msgid "SEO Score Tracking"
|
7691 |
msgstr ""
|
7692 |
|
7693 |
+
#: languages/vue.php:1923
|
7694 |
msgid "Activating..."
|
7695 |
msgstr ""
|
7696 |
|
7697 |
+
#: languages/vue.php:1926
|
7698 |
msgid "Deactivating..."
|
7699 |
msgstr ""
|
7700 |
|
7701 |
+
#: languages/vue.php:1929
|
7702 |
msgid "Deactivate"
|
7703 |
msgstr ""
|
7704 |
|
7705 |
#. Translators: The status of the addon (installed/active/inactive).
|
7706 |
+
#: languages/vue.php:1933
|
7707 |
msgid "Status: %s"
|
7708 |
msgstr ""
|
7709 |
|
7710 |
+
#: languages/vue.php:1936
|
7711 |
msgid "Not Installed"
|
7712 |
msgstr ""
|
7713 |
|
7714 |
+
#: languages/vue.php:1939
|
7715 |
msgid "Network Active"
|
7716 |
msgstr ""
|
7717 |
|
7718 |
+
#: languages/vue.php:1942
|
7719 |
msgid "Active"
|
7720 |
msgstr ""
|
7721 |
|
7722 |
+
#: languages/vue.php:1945
|
7723 |
msgid "Inactive"
|
7724 |
msgstr ""
|
7725 |
|
7726 |
#. Translators: Adds a link to the general settings tab.
|
7727 |
+
#: languages/vue.php:1949
|
7728 |
msgid "It looks like you added a Google Analytics tracking code in the custom code area, this can potentially prevent proper tracking. If you want to use a manual UA please use the setting in the %1$sGeneral%2$s tab."
|
7729 |
msgstr ""
|
7730 |
|
7731 |
+
#: languages/vue.php:1952
|
7732 |
msgid "Export PDF Reports"
|
7733 |
msgstr ""
|
7734 |
|
7735 |
+
#: languages/vue.php:1955
|
7736 |
msgid "Permissions"
|
7737 |
msgstr ""
|
7738 |
|
7739 |
+
#: languages/vue.php:1958
|
7740 |
msgid "Allow These User Roles to See Reports"
|
7741 |
msgstr ""
|
7742 |
|
7743 |
+
#: languages/vue.php:1961
|
7744 |
msgid "Users that have at least one of these roles will be able to view the reports."
|
7745 |
msgstr ""
|
7746 |
|
7747 |
+
#: languages/vue.php:1964
|
7748 |
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."
|
7749 |
msgstr ""
|
7750 |
|
7751 |
+
#: languages/vue.php:1967
|
7752 |
msgid "Allow These User Roles to Save Settings"
|
7753 |
msgstr ""
|
7754 |
|
7755 |
+
#: languages/vue.php:1970
|
7756 |
msgid "Users that have at least one of these roles will be able to view and save the settings panel."
|
7757 |
msgstr ""
|
7758 |
|
7759 |
+
#: languages/vue.php:1973
|
7760 |
msgid "Users that have at least one of these roles will be able to view and save the settings panel, along with any user with the manage_options capability."
|
7761 |
msgstr ""
|
7762 |
|
7763 |
+
#: languages/vue.php:1976
|
7764 |
msgid "Exclude These User Roles From Tracking"
|
7765 |
msgstr ""
|
7766 |
|
7767 |
+
#: languages/vue.php:1979
|
7768 |
msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
|
7769 |
msgstr ""
|
7770 |
|
7771 |
+
#: languages/vue.php:1982
|
7772 |
msgid "Performance"
|
7773 |
msgstr ""
|
7774 |
|
7775 |
+
#: languages/vue.php:1985
|
7776 |
msgid "Custom code"
|
7777 |
msgstr ""
|
7778 |
|
7779 |
#. Translators: Adds a link to the Google reference.
|
7780 |
+
#: languages/vue.php:1989
|
7781 |
msgid "Not for the average user: this allows you to add a line of code, to be added before the %1$spageview is sent%2$s."
|
7782 |
msgstr ""
|
7783 |
|
7784 |
+
#: languages/vue.php:1995
|
7785 |
msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
|
7786 |
msgstr ""
|
7787 |
|
7788 |
+
#: languages/vue.php:1998
|
7789 |
msgid "Hide Admin Bar Reports"
|
7790 |
msgstr ""
|
7791 |
|
7792 |
#. Translators: placeholders make text small.
|
7793 |
+
#: languages/vue.php:2002
|
7794 |
msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
|
7795 |
msgstr ""
|
7796 |
|
7797 |
#. Translators: placeholders make text small.
|
7798 |
+
#: languages/vue.php:2006
|
7799 |
msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
|
7800 |
msgstr ""
|
7801 |
|
7802 |
#. Translators: placeholders make text small.
|
7803 |
+
#: languages/vue.php:2010
|
7804 |
msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
|
7805 |
msgstr ""
|
7806 |
|
7807 |
+
#: languages/vue.php:2013
|
7808 |
msgid "View notifications"
|
7809 |
msgstr ""
|
7810 |
|
7811 |
#. Translators: Error status and error text.
|
7812 |
+
#: languages/vue.php:2017
|
7813 |
msgid "Can't load settings. Error: %1$s, %2$s"
|
7814 |
msgstr ""
|
7815 |
|
7816 |
+
#: languages/vue.php:2020
|
7817 |
msgid "You appear to be offline."
|
7818 |
msgstr ""
|
7819 |
|
7820 |
#. Translators: Error status and error text.
|
7821 |
+
#: languages/vue.php:2024
|
7822 |
msgid "Can't save settings. Error: %1$s, %2$s"
|
7823 |
msgstr ""
|
7824 |
|
7825 |
+
#: languages/vue.php:2028
|
7826 |
msgid "Network error encountered. Settings not saved."
|
7827 |
msgstr ""
|
7828 |
|
7829 |
#. Translators: Error status and error text.
|
7830 |
+
#: languages/vue.php:2032
|
7831 |
msgid "Can't deactivate the license. Error: %1$s, %2$s"
|
7832 |
msgstr ""
|
7833 |
|
7834 |
#. Translators: Error status and error text.
|
7835 |
+
#: languages/vue.php:2036
|
7836 |
msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
|
7837 |
msgstr ""
|
7838 |
|
7839 |
#. Translators: Error status and error text.
|
7840 |
+
#: languages/vue.php:2040
|
7841 |
msgid "Can't load license details. Error: %1$s, %2$s"
|
7842 |
msgstr ""
|
7843 |
|
7844 |
+
#: languages/vue.php:2043
|
7845 |
msgid "Error loading license details"
|
7846 |
msgstr ""
|
7847 |
|
7848 |
#. Translators: Error status and error text.
|
7849 |
+
#: languages/vue.php:2047
|
7850 |
msgid "Can't verify the license. Error: %1$s, %2$s"
|
7851 |
msgstr ""
|
7852 |
|
7853 |
#. Translators: Error status and error text.
|
7854 |
+
#: languages/vue.php:2051
|
7855 |
msgid "Can't validate the license. Error: %1$s, %2$s"
|
7856 |
msgstr ""
|
7857 |
|
7858 |
#. Translators: Error status and error text.
|
7859 |
+
#: languages/vue.php:2055
|
7860 |
msgid "Can't deauthenticate. Error: %1$s, %2$s"
|
7861 |
msgstr ""
|
7862 |
|
7863 |
#. Translators: Error status and error text.
|
7864 |
+
#: languages/vue.php:2059
|
7865 |
msgid "Can't load authentication details. Error: %1$s, %2$s"
|
7866 |
msgstr ""
|
7867 |
|
7868 |
+
#: languages/vue.php:2062
|
7869 |
msgid "You appear to be offline. Settings not saved."
|
7870 |
msgstr ""
|
7871 |
|
7872 |
#. Translators: Error status and error text.
|
7873 |
+
#: languages/vue.php:2066
|
7874 |
msgid "Can't authenticate. Error: %1$s, %2$s"
|
7875 |
msgstr ""
|
7876 |
|
7877 |
#. Translators: Error status and error text.
|
7878 |
+
#: languages/vue.php:2070
|
7879 |
msgid "Can't reauthenticate. Error: %1$s, %2$s"
|
7880 |
msgstr ""
|
7881 |
|
7882 |
#. Translators: Error status and error text.
|
7883 |
+
#: languages/vue.php:2074
|
7884 |
msgid "Can't verify credentials. Error: %1$s, %2$s"
|
7885 |
msgstr ""
|
7886 |
|
7887 |
+
#: languages/vue.php:2077
|
7888 |
msgid "Proceed"
|
7889 |
msgstr ""
|
7890 |
|
7891 |
+
#: languages/vue.php:2080
|
7892 |
msgid "Connection Information"
|
7893 |
msgstr ""
|
7894 |
|
7895 |
+
#: languages/vue.php:2083
|
7896 |
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."
|
7897 |
msgstr ""
|
7898 |
|
7899 |
+
#: languages/vue.php:2086
|
7900 |
msgid "Hostname"
|
7901 |
msgstr ""
|
7902 |
|
7903 |
+
#: languages/vue.php:2089
|
7904 |
msgid "FTP Username"
|
7905 |
msgstr ""
|
7906 |
|
7907 |
+
#: languages/vue.php:2092
|
7908 |
msgid "FTP Password"
|
7909 |
msgstr ""
|
7910 |
|
7911 |
+
#: languages/vue.php:2095
|
7912 |
msgid "This password will not be stored on the server."
|
7913 |
msgstr ""
|
7914 |
|
7915 |
+
#: languages/vue.php:2098
|
7916 |
msgid "Connection Type"
|
7917 |
msgstr ""
|
7918 |
|
7919 |
+
#: languages/vue.php:2101
|
7920 |
msgid "Cancel"
|
7921 |
msgstr ""
|
7922 |
|
7923 |
+
#: languages/vue.php:2104
|
7924 |
msgid "You appear to be offline. WPForms not installed."
|
7925 |
msgstr ""
|
7926 |
|
7927 |
#. Translators: Error status and error text.
|
7928 |
+
#: languages/vue.php:2108
|
7929 |
msgid "Can't activate addon. Error: %1$s, %2$s"
|
7930 |
msgstr ""
|
7931 |
|
7932 |
+
#: languages/vue.php:2111
|
7933 |
msgid "You appear to be offline. Addon not activated."
|
7934 |
msgstr ""
|
7935 |
|
7936 |
#. Translators: Error status and error text.
|
7937 |
+
#: languages/vue.php:2115
|
7938 |
msgid "Can't deactivate addon. Error: %1$s, %2$s"
|
7939 |
msgstr ""
|
7940 |
|
7941 |
+
#: languages/vue.php:2118
|
7942 |
msgid "You appear to be offline. Addon not deactivated."
|
7943 |
msgstr ""
|
7944 |
|
7945 |
#. Translators: Error status and error text.
|
7946 |
+
#: languages/vue.php:2122
|
7947 |
msgid "Can't install plugin. Error: %1$s, %2$s"
|
7948 |
msgstr ""
|
7949 |
|
7950 |
+
#: languages/vue.php:2125
|
7951 |
msgid "You appear to be offline. Plugin not installed."
|
7952 |
msgstr ""
|
7953 |
|
7954 |
#. Translators: Error status and error text.
|
7955 |
+
#: languages/vue.php:2129
|
7956 |
msgid "Can't install addon. Error: %1$s, %2$s"
|
7957 |
msgstr ""
|
7958 |
|
7959 |
+
#: languages/vue.php:2132
|
7960 |
msgid "You appear to be offline. Addon not installed."
|
7961 |
msgstr ""
|
7962 |
|
7963 |
#. Translators: Error status and error text.
|
7964 |
+
#: languages/vue.php:2136
|
7965 |
msgid "Can't install WPForms. Error: %1$s, %2$s"
|
7966 |
msgstr ""
|
7967 |
|
7968 |
#. Translators: Example path (/go/).
|
7969 |
+
#: languages/vue.php:2140
|
7970 |
msgid "Path (example: %s)"
|
7971 |
msgstr ""
|
7972 |
|
7973 |
+
#: languages/vue.php:2143
|
7974 |
msgid "Path has to start with a / and have no spaces"
|
7975 |
msgstr ""
|
7976 |
|
7977 |
#. Translators: Example label (aff).
|
7978 |
+
#: languages/vue.php:2147
|
7979 |
msgid "Label (example: %s)"
|
7980 |
msgstr ""
|
7981 |
|
7982 |
+
#: languages/vue.php:2150
|
7983 |
msgid "Label can't contain any spaces"
|
7984 |
msgstr ""
|
7985 |
|
7986 |
#. Translators: Add links to documentation.
|
7987 |
+
#: languages/vue.php:2154
|
7988 |
msgid "This allows you to track custom affiliate links. A path of /go/ would match urls that start with that. The label is appended onto the end of the string \"outbound-link-\", to provide unique labels for these links in Google Analytics. Complete documentation on affiliate links is available %1$shere%2$s."
|
7989 |
msgstr ""
|
7990 |
|
7991 |
+
#: languages/vue.php:2157
|
7992 |
msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
|
7993 |
msgstr ""
|
7994 |
|
7995 |
+
#: languages/vue.php:2160
|
7996 |
msgid "The MonsterInsights Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results."
|
7997 |
msgstr ""
|
7998 |
|
7999 |
+
#: languages/vue.php:2163
|
8000 |
msgid "Disable the Headline Analyzer"
|
8001 |
msgstr ""
|
8002 |
|
8003 |
+
#: languages/vue.php:2166
|
8004 |
msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
|
8005 |
msgstr ""
|
8006 |
|
8007 |
+
#: languages/vue.php:2169
|
8008 |
msgid "Or manually enter UA code (limited functionality)"
|
8009 |
msgstr ""
|
8010 |
|
8011 |
+
#: languages/vue.php:2173
|
8012 |
msgid "Dual Tracking Profile"
|
8013 |
msgstr ""
|
8014 |
|
8015 |
+
#: languages/vue.php:2177
|
8016 |
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."
|
8017 |
msgstr ""
|
8018 |
|
8019 |
+
#: languages/vue.php:2180
|
8020 |
msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
|
8021 |
msgstr ""
|
8022 |
|
8023 |
+
#: languages/vue.php:2184
|
8024 |
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."
|
8025 |
msgstr ""
|
8026 |
|
8027 |
+
#: languages/vue.php:2187
|
8028 |
msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
|
8029 |
msgstr ""
|
8030 |
|
8031 |
+
#: languages/vue.php:2191
|
8032 |
msgid "Measurement Protocol API Secret"
|
8033 |
msgstr ""
|
8034 |
|
8035 |
+
#: languages/vue.php:2195
|
8036 |
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."
|
8037 |
msgstr ""
|
8038 |
|
8039 |
+
#: languages/vue.php:2198
|
8040 |
msgid "Force Deauthenticate"
|
8041 |
msgstr ""
|
8042 |
|
8043 |
+
#: languages/vue.php:2201
|
8044 |
msgid "Disconnect MonsterInsights"
|
8045 |
msgstr ""
|
8046 |
|
8047 |
+
#: languages/vue.php:2205
|
8048 |
msgid "Authenticating"
|
8049 |
msgstr ""
|
8050 |
|
8051 |
+
#: languages/vue.php:2208
|
8052 |
msgid "Verifying Credentials"
|
8053 |
msgstr ""
|
8054 |
|
8055 |
+
#: languages/vue.php:2211
|
8056 |
msgid "Your site is connected to MonsterInsights!"
|
8057 |
msgstr ""
|
8058 |
|
8059 |
+
#: languages/vue.php:2214
|
8060 |
msgid "Deauthenticating"
|
8061 |
msgstr ""
|
8062 |
|
8063 |
+
#: languages/vue.php:2217
|
8064 |
msgid "You've disconnected your site from MonsterInsights. Your site is no longer being tracked by Google Analytics and you won't see reports anymore."
|
8065 |
msgstr ""
|
8066 |
|
8067 |
+
#: languages/vue.php:2221
|
8068 |
msgid "Connect MonsterInsights"
|
8069 |
msgstr ""
|
8070 |
|
8071 |
+
#: languages/vue.php:2224
|
8072 |
msgid "Verify Credentials"
|
8073 |
msgstr ""
|
8074 |
|
8075 |
+
#: languages/vue.php:2227
|
8076 |
msgid "Website Profile"
|
8077 |
msgstr ""
|
8078 |
|
8079 |
+
#: languages/vue.php:2230
|
8080 |
msgid "Active Profile"
|
8081 |
msgstr ""
|
8082 |
|
8083 |
+
#: languages/vue.php:2234
|
8084 |
msgid "Your website profile has been set at the network level of your WordPress Multisite."
|
8085 |
msgstr ""
|
8086 |
|
8087 |
+
#: languages/vue.php:2238
|
8088 |
msgid "If you would like to use a different profile for this subsite, you can authenticate below."
|
8089 |
msgstr ""
|
8090 |
|
8091 |
+
#: languages/vue.php:2241
|
8092 |
msgid "Manually enter your UA code"
|
8093 |
msgstr ""
|
8094 |
|
8095 |
+
#: languages/vue.php:2244
|
8096 |
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."
|
8097 |
msgstr ""
|
8098 |
|
8099 |
+
#: languages/vue.php:2248
|
8100 |
msgid "Manually enter your GA4 Measurement ID"
|
8101 |
msgstr ""
|
8102 |
|
8103 |
+
#: languages/vue.php:2251
|
8104 |
msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
|
8105 |
msgstr ""
|
8106 |
|
8107 |
+
#: languages/vue.php:2254
|
8108 |
msgid "Anonymize IP Addresses"
|
8109 |
msgstr ""
|
8110 |
|
8111 |
+
#: languages/vue.php:2257
|
8112 |
msgid "Link Attribution"
|
8113 |
msgstr ""
|
8114 |
|
8115 |
+
#: languages/vue.php:2260
|
8116 |
msgid "Enable Enhanced Link Attribution"
|
8117 |
msgstr ""
|
8118 |
|
8119 |
+
#: languages/vue.php:2263
|
8120 |
msgid "Enable Anchor Tracking"
|
8121 |
msgstr ""
|
8122 |
|
8123 |
+
#: languages/vue.php:2266
|
8124 |
msgid "Enable allowAnchor"
|
8125 |
msgstr ""
|
8126 |
|
8127 |
+
#: languages/vue.php:2269
|
8128 |
msgid "Enable allowLinker"
|
8129 |
msgstr ""
|
8130 |
|
8131 |
+
#: languages/vue.php:2272
|
8132 |
msgid "Enable Tag Links in RSS"
|
8133 |
msgstr ""
|
8134 |
|
8135 |
+
#: languages/vue.php:2275
|
8136 |
msgid "File Downloads"
|
8137 |
msgstr ""
|
8138 |
|
8139 |
+
#: languages/vue.php:2278
|
8140 |
msgid "Extensions of Files to Track as Downloads"
|
8141 |
msgstr ""
|
8142 |
|
8143 |
+
#: languages/vue.php:2281
|
8144 |
msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
|
8145 |
msgstr ""
|
8146 |
|
8147 |
#. Translators: Add links to the documentation.
|
8148 |
+
#: languages/vue.php:2285
|
8149 |
msgid "Enable this setting to add the Demographics and Remarketing features to your Google Analytics tracking code. Make sure to enable Demographics and Remarketing in your Google Analytics account. We have a guide for how to do that in our %1$sknowledge base%2$s. For more information about Remarketing, we refer you to %3$sGoogle's documentation%4$s. Note that usage of this function is affected by privacy and cookie laws around the world. Be sure to follow the laws that affect your target audience."
|
8150 |
msgstr ""
|
8151 |
|
8152 |
#. Translators: Adds a link to the documentation.
|
8153 |
+
#: languages/vue.php:2289
|
8154 |
msgid "This adds %1$sanonymizeIp%2$s, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage."
|
8155 |
msgstr ""
|
8156 |
|
8157 |
#. Translators: Adds a link to the documentation.
|
8158 |
+
#: languages/vue.php:2293
|
8159 |
msgid "Adds the Enhanced Link Attribution (retain link) code to improve the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs."
|
8160 |
msgstr ""
|
8161 |
|
8162 |
+
#: languages/vue.php:2296
|
8163 |
msgid "Many WordPress \"1-page\" style themes rely on anchor tags for navigation to show virtual pages. The problem is that to Google Analytics, these are all just a single page, and it makes it hard to get meaningful statistics about pages viewed. This feature allows proper tracking in those themes."
|
8164 |
msgstr ""
|
8165 |
|
8166 |
#. Translators: Adds a link to the documentation.
|
8167 |
+
#: languages/vue.php:2300
|
8168 |
msgid "This adds %1$sallowAnchor%2$s to the create command of the pageview hit tracking code, and makes RSS link tagging use a # as well."
|
8169 |
msgstr ""
|
8170 |
|
8171 |
#. Translators: Adds a link to the documentation.
|
8172 |
+
#: languages/vue.php:2304
|
8173 |
msgid "Enabling %1$scross-domain tracking (additional setup required)%2$s allows you to track users across multiple properties you own (such as example-1.com and example-2.com as a single session. It also allows you fix an issue so that when a user has to go to an off-site hosted payment gateway to finish a purchase it doesn't count it as referral traffic from that gateway but maintains the visit as part of the same session.) It is required that the other site includes a Google Analytics tracker with the same UA Code."
|
8174 |
msgstr ""
|
8175 |
|
8176 |
#. Translators: Adds a link to the documentation.
|
8177 |
+
#: languages/vue.php:2308
|
8178 |
msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check this %1$shelp page%2$s for info on how to enable this feature in FeedBurner."
|
8179 |
msgstr ""
|
8180 |
|
8181 |
+
#: languages/vue.php:2311
|
8182 |
msgid "Add domain"
|
8183 |
msgstr ""
|
8184 |
|
8185 |
#. Translators: Example domain.
|
8186 |
+
#: languages/vue.php:2315
|
8187 |
msgid "Domain (example: %s)"
|
8188 |
msgstr ""
|
8189 |
|
8190 |
#. Translators: Current site domain to be avoided.
|
8191 |
+
#: languages/vue.php:2319
|
8192 |
msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
|
8193 |
msgstr ""
|
8194 |
|
8195 |
+
#: languages/vue.php:2322
|
8196 |
msgid "Cross Domain Tracking"
|
8197 |
msgstr ""
|
8198 |
|
8199 |
#. Translators: Adds a link to the documentation.
|
8200 |
+
#: languages/vue.php:2326
|
8201 |
msgid "Cross domain tracking makes it possible for Analytics to see sessions on two related sites as a single session. More info on specific setup steps can be found in our %1$sknowledge base%2$s."
|
8202 |
msgstr ""
|
8203 |
|
8204 |
#. Translators: Number of days.
|
8205 |
+
#: languages/vue.php:2330
|
8206 |
msgid "vs. Previous Day"
|
8207 |
msgstr ""
|
8208 |
|
8209 |
+
#: languages/vue.php:2333
|
8210 |
msgid "No change"
|
8211 |
msgstr ""
|
8212 |
|
8213 |
+
#: languages/vue.php:2336
|
8214 |
msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
|
8215 |
msgstr ""
|
8216 |
|
8217 |
+
#: languages/vue.php:2339
|
8218 |
msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
|
8219 |
msgstr ""
|
8220 |
|
8221 |
+
#: languages/vue.php:2342
|
8222 |
msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
|
8223 |
msgstr ""
|
8224 |
|
8225 |
+
#: languages/vue.php:2345
|
8226 |
msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
|
8227 |
msgstr ""
|
8228 |
|
8229 |
+
#: languages/vue.php:2348
|
8230 |
msgid "Use Google Optimize to easily perform A/B split tests on your site."
|
8231 |
msgstr ""
|
8232 |
|
8233 |
+
#: languages/vue.php:2351
|
8234 |
msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
|
8235 |
msgstr ""
|
8236 |
|
8237 |
+
#: languages/vue.php:2354
|
8238 |
msgid "Unlock search console report to see your top performing keywords in Google."
|
8239 |
msgstr ""
|
8240 |
|
8241 |
+
#: languages/vue.php:2357
|
8242 |
msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
|
8243 |
msgstr ""
|
8244 |
|
8245 |
+
#: languages/vue.php:2360
|
8246 |
msgid "Publishers Report shows your top performing pages, audience demographics, and more."
|
8247 |
msgstr ""
|
8248 |
|
8249 |
+
#: languages/vue.php:2363
|
8250 |
msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
|
8251 |
msgstr ""
|
8252 |
|
8253 |
+
#: languages/vue.php:2366
|
8254 |
msgid "Upgrade to Pro »"
|
8255 |
msgstr ""
|
8256 |
|
8257 |
+
#: languages/vue.php:2369
|
8258 |
msgid "Pro Tip:"
|
8259 |
msgstr ""
|
8260 |
|
8261 |
+
#: languages/vue.php:2372
|
8262 |
msgid "Show"
|
8263 |
msgstr ""
|
8264 |
|
8265 |
+
#: languages/vue.php:2375
|
8266 |
msgid "Hide dashboard widget"
|
8267 |
msgstr ""
|
8268 |
|
8269 |
+
#: languages/vue.php:2378
|
8270 |
msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
|
8271 |
msgstr ""
|
8272 |
|
8273 |
+
#: languages/vue.php:2381
|
8274 |
msgid "Yes, hide it!"
|
8275 |
msgstr ""
|
8276 |
|
8277 |
+
#: languages/vue.php:2384
|
8278 |
msgid "No, cancel!"
|
8279 |
msgstr ""
|
8280 |
|
8281 |
+
#: languages/vue.php:2387
|
8282 |
msgid "MonsterInsights Widget Hidden"
|
8283 |
msgstr ""
|
8284 |
|
8285 |
+
#: languages/vue.php:2390
|
8286 |
msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
|
8287 |
msgstr ""
|
8288 |
|
8289 |
+
#: languages/vue.php:2397
|
8290 |
msgid "Usage Tracking"
|
8291 |
msgstr ""
|
8292 |
|
8293 |
+
#: languages/vue.php:2400
|
8294 |
msgid "Allow Usage Tracking"
|
8295 |
msgstr ""
|
8296 |
|
8297 |
+
#: languages/vue.php:2404
|
8298 |
msgid "By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test."
|
8299 |
msgstr ""
|
8300 |
|
8301 |
#. Translators: Add links to documentation.
|
8302 |
+
#: languages/vue.php:2409
|
8303 |
msgid "Complete documentation on usage tracking is available %1$shere%2$s."
|
8304 |
msgstr ""
|
8305 |
|
8306 |
#. Translators: Make text green and add smiley face.
|
8307 |
+
#: languages/vue.php:2413
|
8308 |
msgid "You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s"
|
8309 |
msgstr ""
|
8310 |
|
8311 |
#. Translators: Add link to upgrade.
|
8312 |
+
#: languages/vue.php:2417
|
8313 |
msgid "To unlock more features consider %1$supgrading to PRO%2$s."
|
8314 |
msgstr ""
|
8315 |
|
8316 |
#. Translators: Make text green.
|
8317 |
+
#: languages/vue.php:2421
|
8318 |
msgid "As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
|
8319 |
msgstr ""
|
8320 |
|
8321 |
+
#: languages/vue.php:2424
|
8322 |
msgid "Unlock PRO Features Now"
|
8323 |
msgstr ""
|
8324 |
|
8325 |
+
#: languages/vue.php:2427
|
8326 |
msgid "Paste your license key here"
|
8327 |
msgstr ""
|
8328 |
|
8329 |
+
#: languages/vue.php:2430
|
8330 |
msgid "Verify"
|
8331 |
msgstr ""
|
8332 |
|
8333 |
#. Translators: Add link to retrieve license from account area.
|
8334 |
+
#: languages/vue.php:2434
|
8335 |
msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s."
|
8336 |
msgstr ""
|
8337 |
|
8338 |
+
#: languages/vue.php:2437
|
8339 |
msgid "There was an error unlocking MonsterInsights PRO please try again or install manually."
|
8340 |
msgstr ""
|
8341 |
|
8342 |
#. Translators: Error status and error text.
|
8343 |
+
#: languages/vue.php:2441
|
8344 |
msgid "Can't load errors. Error: %1$s, %2$s"
|
8345 |
msgstr ""
|
8346 |
|
8347 |
+
#: languages/vue.php:2444
|
8348 |
msgid "No options available"
|
8349 |
msgstr ""
|
8350 |
|
8351 |
+
#: languages/vue.php:2447
|
8352 |
msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
|
8353 |
msgstr ""
|
8354 |
|
8355 |
+
#: languages/vue.php:2450
|
8356 |
msgid "Automatically migrate all of your SEO settings with just 1 click!"
|
8357 |
msgstr ""
|
8358 |
|
8359 |
+
#: languages/vue.php:2453
|
8360 |
msgid "1,938"
|
8361 |
msgstr ""
|
8362 |
|
8363 |
+
#: languages/vue.php:2456
|
8364 |
msgid "2+ Million Active Installs"
|
8365 |
msgstr ""
|
8366 |
|
8367 |
+
#: languages/vue.php:2459
|
8368 |
msgid "AIOSEO is the DIY Solution for Managing your SEO"
|
8369 |
msgstr ""
|
8370 |
|
8371 |
+
#: languages/vue.php:2462
|
8372 |
msgid "Set up the proper SEO foundations in less than 10 minutes."
|
8373 |
msgstr ""
|
8374 |
|
8375 |
+
#: languages/vue.php:2465
|
8376 |
msgid "SEO Audit Checklist"
|
8377 |
msgstr ""
|
8378 |
|
8379 |
+
#: languages/vue.php:2468
|
8380 |
msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
|
8381 |
msgstr ""
|
8382 |
|
8383 |
+
#: languages/vue.php:2471
|
8384 |
msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
|
8385 |
msgstr ""
|
8386 |
|
8387 |
+
#: languages/vue.php:2474
|
8388 |
msgid "TruSEO Score gives you a more in-depth analysis into your optimization efforts than just a pass or fail. Our actionable checklist helps you to unlock maximum traffic with each page."
|
8389 |
msgstr ""
|
8390 |
|
8391 |
+
#: languages/vue.php:2477
|
8392 |
msgid "Get AIOSEO for WordPress"
|
8393 |
msgstr ""
|
8394 |
|
8395 |
+
#: languages/vue.php:2480
|
8396 |
msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
|
8397 |
msgstr ""
|
8398 |
|
8399 |
+
#: languages/vue.php:2483
|
8400 |
msgid "Try it out today, for free."
|
8401 |
msgstr ""
|
8402 |
|
8403 |
+
#: languages/vue.php:2486
|
8404 |
msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
|
8405 |
msgstr ""
|
8406 |
|
8407 |
+
#: languages/vue.php:2489
|
8408 |
msgid "Activate and Install the Plugin with just one click!"
|
8409 |
msgstr ""
|
8410 |
|
8411 |
+
#: languages/vue.php:2492
|
8412 |
msgid "Installing AIOSEO..."
|
8413 |
msgstr ""
|
8414 |
|
8415 |
+
#: languages/vue.php:2495
|
8416 |
msgid "Congrats! All-in-One SEO Installed."
|
8417 |
msgstr ""
|
8418 |
|
8419 |
+
#: languages/vue.php:2498
|
8420 |
msgid "Switch to AIOSEO"
|
8421 |
msgstr ""
|
8422 |
|
8423 |
+
#: languages/vue.php:2501
|
8424 |
msgid "Installation Failed. Please refresh and try again."
|
8425 |
msgstr ""
|
8426 |
|
8427 |
+
#: languages/vue.php:2504
|
8428 |
msgid "Activating AIOSEO..."
|
8429 |
msgstr ""
|
8430 |
|
8431 |
+
#: languages/vue.php:2507
|
8432 |
msgid "Activate AIOSEO"
|
8433 |
msgstr ""
|
8434 |
|
8435 |
+
#: languages/vue.php:2510
|
8436 |
msgid "Activation Failed. Please refresh and try again."
|
8437 |
msgstr ""
|
8438 |
|
8439 |
#. Translators: The name of the field that is throwing a validation error.
|
8440 |
+
#: languages/vue.php:2514
|
8441 |
msgid "%s can't be empty."
|
8442 |
msgstr ""
|
8443 |
|
8444 |
+
#: languages/vue.php:2517
|
8445 |
msgid "Duplicate values are not allowed."
|
8446 |
msgstr ""
|
8447 |
|
8448 |
+
#: languages/vue.php:2520
|
8449 |
msgid "You can add maximum 5 items."
|
8450 |
msgstr ""
|
8451 |
|
8452 |
+
#: languages/vue.php:2523
|
8453 |
msgid "At least 0 item required."
|
8454 |
msgstr ""
|
8455 |
|
8456 |
+
#: languages/vue.php:2526
|
8457 |
msgid "Add Another Link Path"
|
8458 |
msgstr ""
|
8459 |
|
8460 |
+
#: languages/vue.php:2529
|
8461 |
msgid "Remove row"
|
8462 |
msgstr ""
|
8463 |
|
8464 |
+
#: languages/vue.php:2532
|
8465 |
msgid "New"
|
8466 |
msgstr ""
|
8467 |
|
8468 |
+
#: languages/vue.php:2535
|
8469 |
msgid "Returning"
|
8470 |
msgstr ""
|
8471 |
|
8472 |
+
#: languages/vue.php:2538
|
8473 |
msgid "Top 10 Countries"
|
8474 |
msgstr ""
|
8475 |
|
8476 |
+
#: languages/vue.php:2541
|
8477 |
msgid "View Countries Report"
|
8478 |
msgstr ""
|
8479 |
|
8480 |
+
#: languages/vue.php:2544
|
8481 |
msgid "Top 10 Referrals"
|
8482 |
msgstr ""
|
8483 |
|
8484 |
+
#: languages/vue.php:2547
|
8485 |
msgid "View All Referral Sources"
|
8486 |
msgstr ""
|
8487 |
|
8488 |
+
#: languages/vue.php:2550
|
8489 |
msgid "View Full Posts/Pages Report"
|
8490 |
msgstr ""
|
8491 |
|
8492 |
+
#: languages/vue.php:2553
|
8493 |
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."
|
8494 |
msgstr ""
|
8495 |
|
8496 |
+
#: languages/vue.php:2556
|
8497 |
msgid "This list shows the top countries your website visitors are from."
|
8498 |
msgstr ""
|
8499 |
|
8500 |
+
#: languages/vue.php:2559
|
8501 |
msgid "This list shows the top websites that send your website traffic, known as referral traffic."
|
8502 |
msgstr ""
|
8503 |
|
8504 |
+
#: languages/vue.php:2562
|
8505 |
msgid "Export PDF Overview Report"
|
8506 |
msgstr ""
|
8507 |
|
8508 |
+
#: languages/vue.php:2565
|
8509 |
msgid "Reset to default"
|
8510 |
msgstr ""
|
8511 |
|
8512 |
+
#: languages/vue.php:2568
|
8513 |
msgid "The value entered does not match the required format"
|
8514 |
msgstr ""
|
8515 |
|
8516 |
+
#: languages/vue.php:2571
|
8517 |
msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
|
8518 |
msgstr ""
|
8519 |
|
8520 |
+
#: languages/vue.php:2574
|
8521 |
msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
|
8522 |
msgstr ""
|
8523 |
|
8524 |
+
#: languages/vue.php:2577
|
8525 |
msgid "Recommended Settings"
|
8526 |
msgstr ""
|
8527 |
|
8528 |
+
#: languages/vue.php:2580
|
8529 |
msgid "MonsterInsights recommends the following settings based on your configuration."
|
8530 |
msgstr ""
|
8531 |
|
8532 |
+
#: languages/vue.php:2583
|
8533 |
msgid "Events Tracking"
|
8534 |
msgstr ""
|
8535 |
|
8536 |
+
#: languages/vue.php:2586
|
8537 |
msgid "Must have for all click tracking on site."
|
8538 |
msgstr ""
|
8539 |
|
8540 |
+
#: languages/vue.php:2589
|
8541 |
msgid "MonsterInsights 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."
|
8542 |
msgstr ""
|
8543 |
|
8544 |
+
#: languages/vue.php:2592
|
8545 |
msgid "Enhanced Link Attribution"
|
8546 |
msgstr ""
|
8547 |
|
8548 |
+
#: languages/vue.php:2595
|
8549 |
msgid "Improves the accuracy of your In-Page Analytics."
|
8550 |
msgstr ""
|
8551 |
|
8552 |
+
#: languages/vue.php:2598
|
8553 |
msgid "MonsterInsights 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."
|
8554 |
msgstr ""
|
8555 |
|
8556 |
+
#: languages/vue.php:2601
|
8557 |
msgid "Install Updates Automatically"
|
8558 |
msgstr ""
|
8559 |
|
8560 |
+
#: languages/vue.php:2604
|
8561 |
msgid "Get the latest features, bug fixes, and security updates as they are released."
|
8562 |
msgstr ""
|
8563 |
|
8564 |
+
#: languages/vue.php:2607
|
8565 |
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 MonsterInsights, we offer the ability to automatically have MonsterInsights update itself."
|
8566 |
msgstr ""
|
8567 |
|
8568 |
+
#: languages/vue.php:2610
|
8569 |
msgid "File Download Tracking"
|
8570 |
msgstr ""
|
8571 |
|
8572 |
+
#: languages/vue.php:2613
|
8573 |
msgid "Helps you see file downloads data."
|
8574 |
msgstr ""
|
8575 |
|
8576 |
+
#: languages/vue.php:2616
|
8577 |
msgid "MonsterInsights 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? MonsterInsights makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
|
8578 |
msgstr ""
|
8579 |
|
8580 |
+
#: languages/vue.php:2619
|
8581 |
msgid "Helps you increase affiliate revenue."
|
8582 |
msgstr ""
|
8583 |
|
8584 |
+
#: languages/vue.php:2622
|
8585 |
msgid "MonsterInsights 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."
|
8586 |
msgstr ""
|
8587 |
|
8588 |
+
#: languages/vue.php:2625
|
8589 |
msgid "Affiliate Link Tracking"
|
8590 |
msgstr ""
|
8591 |
|
8592 |
+
#: languages/vue.php:2628
|
8593 |
msgid "Who Can See Reports"
|
8594 |
msgstr ""
|
8595 |
|
8596 |
+
#: languages/vue.php:2631
|
8597 |
msgid "These user roles will be able to access MonsterInsights' reports in the WordPress admin area."
|
8598 |
msgstr ""
|
8599 |
|
8600 |
+
#: languages/vue.php:2634
|
8601 |
msgid "Save and continue"
|
8602 |
msgstr ""
|
8603 |
|
8604 |
+
#: languages/vue.php:2637
|
8605 |
msgid "Events Tracking is enabled the moment you set up MonsterInsights"
|
8606 |
msgstr ""
|
8607 |
|
8608 |
+
#: languages/vue.php:2640
|
8609 |
msgid "Enhanced Link Attribution is enabled the moment you set up MonsterInsights"
|
8610 |
msgstr ""
|
8611 |
|
8612 |
+
#: languages/vue.php:2643
|
8613 |
msgid "+ Add Role"
|
8614 |
msgstr ""
|
8615 |
|
8616 |
+
#: languages/vue.php:2646
|
8617 |
msgid "Connect MonsterInsights to Your Website"
|
8618 |
msgstr ""
|
8619 |
|
8620 |
+
#: languages/vue.php:2649
|
8621 |
msgid "MonsterInsights connects Google Analytics to WordPress and shows you stats that matter."
|
8622 |
msgstr ""
|
8623 |
|
8624 |
+
#: languages/vue.php:2652
|
8625 |
msgid "Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
|
8626 |
msgstr ""
|
8627 |
|
8628 |
+
#: languages/vue.php:2655
|
8629 |
msgid "Save and Continue"
|
8630 |
msgstr ""
|
8631 |
|
8632 |
+
#: languages/vue.php:2658
|
8633 |
msgid "UA code can't be empty"
|
8634 |
msgstr ""
|
8635 |
|
8636 |
+
#: languages/vue.php:2661
|
8637 |
msgid "Saving UA code..."
|
8638 |
msgstr ""
|
8639 |
|
8640 |
+
#: languages/vue.php:2664
|
8641 |
msgid "Allow usage tracking"
|
8642 |
msgstr ""
|
8643 |
|
8644 |
+
#: languages/vue.php:2667
|
8645 |
msgid "Adjust the sample rate so you don't exceed Google Analytics' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization."
|
8646 |
msgstr ""
|
8647 |
|
8648 |
+
#: languages/vue.php:2670
|
8649 |
msgid "Install All-in-One SEO"
|
8650 |
msgstr ""
|
8651 |
|
8652 |
+
#: languages/vue.php:2673
|
8653 |
msgid "Improve Your Website Search Rankings With All-In-One SEO"
|
8654 |
msgstr ""
|
8655 |
|
8656 |
+
#: languages/vue.php:2676
|
8657 |
msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
|
8658 |
msgstr ""
|
8659 |
|
8660 |
+
#: languages/vue.php:2679
|
8661 |
msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
|
8662 |
msgstr ""
|
8663 |
|
8664 |
+
#: languages/vue.php:2682
|
8665 |
msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
|
8666 |
msgstr ""
|
8667 |
|
8668 |
+
#: languages/vue.php:2685
|
8669 |
msgid "Local SEO"
|
8670 |
msgstr ""
|
8671 |
|
8672 |
+
#: languages/vue.php:2688
|
8673 |
msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
|
8674 |
msgstr ""
|
8675 |
|
8676 |
+
#: languages/vue.php:2691
|
8677 |
msgid "WooCommerce SEO"
|
8678 |
msgstr ""
|
8679 |
|
8680 |
+
#: languages/vue.php:2694
|
8681 |
msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
|
8682 |
msgstr ""
|
8683 |
|
8684 |
+
#: languages/vue.php:2697
|
8685 |
msgid "SEO Custom User Roles"
|
8686 |
msgstr ""
|
8687 |
|
8688 |
+
#: languages/vue.php:2700
|
8689 |
msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
|
8690 |
msgstr ""
|
8691 |
|
8692 |
+
#: languages/vue.php:2703
|
8693 |
msgid "Google News Sitemap"
|
8694 |
msgstr ""
|
8695 |
|
8696 |
+
#: languages/vue.php:2706
|
8697 |
msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
|
8698 |
msgstr ""
|
8699 |
|
8700 |
+
#: languages/vue.php:2709
|
8701 |
msgid "Smart XML Sitemaps"
|
8702 |
msgstr ""
|
8703 |
|
8704 |
+
#: languages/vue.php:2712
|
8705 |
msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
|
8706 |
msgstr ""
|
8707 |
|
8708 |
+
#: languages/vue.php:2715
|
8709 |
msgid "Social Media Integration"
|
8710 |
msgstr ""
|
8711 |
|
8712 |
+
#: languages/vue.php:2718
|
8713 |
msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
|
8714 |
msgstr ""
|
8715 |
|
8716 |
+
#: languages/vue.php:2721
|
8717 |
msgid "TruSEO On-Page Analysis"
|
8718 |
msgstr ""
|
8719 |
|
8720 |
+
#: languages/vue.php:2724
|
8721 |
msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
|
8722 |
msgstr ""
|
8723 |
|
8724 |
+
#: languages/vue.php:2727
|
8725 |
msgid "& Many More!"
|
8726 |
msgstr ""
|
8727 |
|
8728 |
+
#: languages/vue.php:2730
|
8729 |
msgid "Installing. Please wait.."
|
8730 |
msgstr ""
|
8731 |
|
8732 |
+
#: languages/vue.php:2733
|
8733 |
msgid "Install All-in-One-SEO"
|
8734 |
msgstr ""
|
8735 |
|
8736 |
+
#: languages/vue.php:2736
|
8737 |
msgid "Welcome to MonsterInsights!"
|
8738 |
msgstr ""
|
8739 |
|
8740 |
+
#: languages/vue.php:2739
|
8741 |
msgid "Let's get you set up."
|
8742 |
msgstr ""
|
8743 |
|
8744 |
+
#: languages/vue.php:2742
|
8745 |
msgid "Which category best describes your website?"
|
8746 |
msgstr ""
|
8747 |
|
8748 |
+
#: languages/vue.php:2745
|
8749 |
msgid "We will recommend the optimal settings for MonsterInsights based on your choice."
|
8750 |
msgstr ""
|
8751 |
|
8752 |
+
#: languages/vue.php:2748
|
8753 |
msgid "Business Website"
|
8754 |
msgstr ""
|
8755 |
|
8756 |
#. Translators: Make text bold.
|
8757 |
+
#: languages/vue.php:2752
|
8758 |
msgid "Publisher %1$s(Blog)%2$s"
|
8759 |
msgstr ""
|
8760 |
|
8761 |
+
#: languages/vue.php:2755
|
8762 |
msgid "Ecommerce"
|
8763 |
msgstr ""
|
8764 |
|
8765 |
+
#: languages/vue.php:2758
|
8766 |
msgid "Caching"
|
8767 |
msgstr ""
|
8768 |
|
8769 |
+
#: languages/vue.php:2761
|
8770 |
msgid "Enable Data Caching"
|
8771 |
msgstr ""
|
8772 |
|
8773 |
+
#: languages/vue.php:2764
|
8774 |
msgid "Refresh Cache Every"
|
8775 |
msgstr ""
|
8776 |
|
8777 |
+
#: languages/vue.php:2767
|
8778 |
msgid "Choose how often to refresh the cache."
|
8779 |
msgstr ""
|
8780 |
|
8781 |
+
#: languages/vue.php:2770
|
8782 |
msgid "Enable Ajaxify"
|
8783 |
msgstr ""
|
8784 |
|
8785 |
+
#: languages/vue.php:2773
|
8786 |
msgid "Ajaxify Widget"
|
8787 |
msgstr ""
|
8788 |
|
8789 |
+
#: languages/vue.php:2776
|
8790 |
msgid "Use to bypass page caching."
|
8791 |
msgstr ""
|
8792 |
|
8793 |
+
#: languages/vue.php:2779
|
8794 |
msgid "Empty Cache"
|
8795 |
msgstr ""
|
8796 |
|
8797 |
+
#: languages/vue.php:2782
|
8798 |
msgid "Click to manually wipe the cache right now."
|
8799 |
msgstr ""
|
8800 |
|
8801 |
+
#: languages/vue.php:2785
|
8802 |
msgid "Popular posts cache emptied"
|
8803 |
msgstr ""
|
8804 |
|
8805 |
+
#: languages/vue.php:2788
|
8806 |
msgid "Error emptying the popular posts cache. Please try again."
|
8807 |
msgstr ""
|
8808 |
|
8809 |
+
#: languages/vue.php:2791
|
8810 |
msgid "Choose Theme"
|
8811 |
msgstr ""
|
8812 |
|
8813 |
+
#: languages/vue.php:2794
|
8814 |
msgid "Widget Styling"
|
8815 |
msgstr ""
|
8816 |
|
8817 |
+
#: languages/vue.php:2797
|
8818 |
msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
|
8819 |
msgstr ""
|
8820 |
|
8821 |
+
#: languages/vue.php:2800
|
8822 |
msgid "Sort By"
|
8823 |
msgstr ""
|
8824 |
|
8825 |
+
#: languages/vue.php:2803
|
8826 |
msgid "Choose how you'd like the widget to determine your popular posts."
|
8827 |
msgstr ""
|
8828 |
|
8829 |
+
#: languages/vue.php:2806
|
8830 |
msgid "Display Title"
|
8831 |
msgstr ""
|
8832 |
|
8833 |
+
#: languages/vue.php:2812
|
8834 |
msgid "Title your widget and set its display preferences."
|
8835 |
msgstr ""
|
8836 |
|
8837 |
+
#: languages/vue.php:2815
|
8838 |
msgid "Include in Post Types"
|
8839 |
msgstr ""
|
8840 |
|
8841 |
+
#: languages/vue.php:2818
|
8842 |
msgid "Exclude from specific posts"
|
8843 |
msgstr ""
|
8844 |
|
8845 |
#. Translators: Placeholders make the text bold.
|
8846 |
+
#: languages/vue.php:2822
|
8847 |
msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
|
8848 |
msgstr ""
|
8849 |
|
8850 |
#. Translators: Placeholders make the text bold.
|
8851 |
+
#: languages/vue.php:2826
|
8852 |
msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
|
8853 |
msgstr ""
|
8854 |
|
8855 |
+
#: languages/vue.php:2829
|
8856 |
msgid "Loading Themes"
|
8857 |
msgstr ""
|
8858 |
|
8859 |
#. Translators: placeholders make text small.
|
8860 |
+
#: languages/vue.php:2833
|
8861 |
msgid "Default Styles %1$s- As seen above.%2$s"
|
8862 |
msgstr ""
|
8863 |
|
8864 |
#. Translators: placeholders make text small.
|
8865 |
+
#: languages/vue.php:2837
|
8866 |
msgid "No Styles %1$s- Use your own CSS.%2$s"
|
8867 |
msgstr ""
|
8868 |
|
8869 |
#. Translators: placeholders make text small.
|
8870 |
+
#: languages/vue.php:2841
|
8871 |
msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
|
8872 |
msgstr ""
|
8873 |
|
8874 |
#. Translators: placeholders make text small.
|
8875 |
+
#: languages/vue.php:2845
|
8876 |
msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
|
8877 |
msgstr ""
|
8878 |
|
8879 |
#. Translators: placeholders make text small.
|
8880 |
+
#: languages/vue.php:2849
|
8881 |
msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
|
8882 |
msgstr ""
|
8883 |
|
8884 |
+
#: languages/vue.php:2852
|
8885 |
msgid "Placement"
|
8886 |
msgstr ""
|
8887 |
|
8888 |
+
#: languages/vue.php:2855
|
8889 |
msgid "Choose how you'd like to place the widget."
|
8890 |
msgstr ""
|
8891 |
|
8892 |
+
#: languages/vue.php:2858
|
8893 |
msgid "Insert After"
|
8894 |
msgstr ""
|
8895 |
|
8896 |
+
#: languages/vue.php:2861
|
8897 |
msgid "Choose where in the post body the widget will be placed."
|
8898 |
msgstr ""
|
8899 |
|
8900 |
+
#: languages/vue.php:2865
|
8901 |
msgid "Customize Design"
|
8902 |
msgstr ""
|
8903 |
|
8904 |
+
#: languages/vue.php:2868
|
8905 |
msgid "words"
|
8906 |
msgstr ""
|
8907 |
|
8908 |
+
#: languages/vue.php:2871
|
8909 |
msgid "Please select at least one post to display."
|
8910 |
msgstr ""
|
8911 |
|
8912 |
#. Translators: placeholders make text small.
|
8913 |
+
#: languages/vue.php:2875
|
8914 |
msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
|
8915 |
msgstr ""
|
8916 |
|
8917 |
#. Translators: placeholders make text small.
|
8918 |
+
#: languages/vue.php:2879
|
8919 |
msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
|
8920 |
msgstr ""
|
8921 |
|
8922 |
+
#: languages/vue.php:2882
|
8923 |
msgid "Facebook Instant Articles"
|
8924 |
msgstr ""
|
8925 |
|
8926 |
+
#: languages/vue.php:2885
|
8927 |
msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
|
8928 |
msgstr ""
|
8929 |
|
8930 |
+
#: languages/vue.php:2888
|
8931 |
msgid "Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
|
8932 |
msgstr ""
|
8933 |
|
8934 |
+
#: languages/vue.php:2891
|
8935 |
msgid "Ads Tracking"
|
8936 |
msgstr ""
|
8937 |
|
8938 |
+
#: languages/vue.php:2894
|
8939 |
msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
|
8940 |
msgstr ""
|
8941 |
|
8942 |
+
#: languages/vue.php:2897
|
8943 |
msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
|
8944 |
msgstr ""
|
8945 |
|
8946 |
+
#: languages/vue.php:2900
|
8947 |
msgid "All-in-One SEO is a great product. I have been using it on all my WP sites for several years. I highly recommend it."
|
8948 |
msgstr ""
|
8949 |
|
8950 |
+
#: languages/vue.php:2903
|
8951 |
msgid "Jack Brown"
|
8952 |
msgstr ""
|
8953 |
|
8954 |
+
#: languages/vue.php:2906
|
8955 |
msgid "PJB Internet Marketing"
|
8956 |
msgstr ""
|
8957 |
|
8958 |
+
#: languages/vue.php:2909
|
8959 |
msgid "I’m a professional SEO and used many tools and extensions. Regarding simplicity, individuality and configurability All in One SEO Pro is by far the best SEO plugin out there for WordPress."
|
8960 |
msgstr ""
|
8961 |
|
8962 |
+
#: languages/vue.php:2912
|
8963 |
msgid "Joel Steinmann"
|
8964 |
msgstr ""
|
8965 |
|
8966 |
+
#: languages/vue.php:2915
|
8967 |
msgid "CEO, Solergo"
|
8968 |
msgstr ""
|
8969 |
|
8970 |
+
#: languages/vue.php:2918
|
8971 |
msgid "Recommended Addons"
|
8972 |
msgstr ""
|
8973 |
|
8974 |
+
#: languages/vue.php:2921
|
8975 |
msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
|
8976 |
msgstr ""
|
8977 |
|
8978 |
+
#: languages/vue.php:2924
|
8979 |
msgid "Other Addons"
|
8980 |
msgstr ""
|
8981 |
|
8982 |
+
#: languages/vue.php:2927
|
8983 |
msgid "View all MonsterInsights addons"
|
8984 |
msgstr ""
|
8985 |
|
8986 |
+
#: languages/vue.php:2930
|
8987 |
msgid "Scroll Tracking"
|
8988 |
msgstr ""
|
8989 |
|
8990 |
+
#: languages/vue.php:2933
|
8991 |
msgid "Scroll depth tracking allows you to see how far your users scroll before they leave a page. This is great for publishers (bloggers), and eCommerce websites to boost conversions."
|
8992 |
msgstr ""
|
8993 |
|
8994 |
+
#: languages/vue.php:2936
|
8995 |
msgid ""
|
8996 |
"The EU Compliance addon allows you to improve compliance with GDPR\n"
|
8997 |
" and other privacy regulations."
|
8998 |
msgstr ""
|
8999 |
|
9000 |
+
#: languages/vue.php:2940
|
9001 |
msgid "EU Compliance"
|
9002 |
msgstr ""
|
9003 |
|
9004 |
+
#: languages/vue.php:2943
|
9005 |
msgid "Compatibility mode"
|
9006 |
msgstr ""
|
9007 |
|
9008 |
+
#: languages/vue.php:2946
|
9009 |
msgid "Enable _gtagTracker Compatibility"
|
9010 |
msgstr ""
|
9011 |
|
9012 |
#. Translators: Placeholder gets replaced with default GA js function.
|
9013 |
+
#: languages/vue.php:2950
|
9014 |
msgid "This enables MonsterInsights to work with plugins that use %1$s and don't support %2$s"
|
9015 |
msgstr ""
|
9016 |
|
9017 |
#. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
|
9018 |
+
#: languages/vue.php:2954
|
9019 |
msgid "%1$sPage %3$s%2$s of %4$s"
|
9020 |
msgstr ""
|
9021 |
|
9022 |
+
#: languages/vue.php:2957
|
9023 |
#: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
|
9024 |
msgid "Theme Preview"
|
9025 |
msgstr ""
|
9026 |
|
9027 |
+
#: languages/vue.php:2960
|
9028 |
msgid "Wide"
|
9029 |
msgstr ""
|
9030 |
|
9031 |
+
#: languages/vue.php:2963
|
9032 |
msgid "Narrow"
|
9033 |
msgstr ""
|
9034 |
|
9035 |
+
#: languages/vue.php:2966
|
9036 |
msgid "Title"
|
9037 |
msgstr ""
|
9038 |
|
9039 |
+
#: languages/vue.php:2969
|
9040 |
msgid "Color"
|
9041 |
msgstr ""
|
9042 |
|
9043 |
+
#: languages/vue.php:2972
|
9044 |
msgid "Size"
|
9045 |
msgstr ""
|
9046 |
|
9047 |
+
#: languages/vue.php:2975
|
9048 |
msgid "Border"
|
9049 |
msgstr ""
|
9050 |
|
9051 |
+
#: languages/vue.php:2978
|
9052 |
msgid "Author/Date"
|
9053 |
msgstr ""
|
9054 |
|
9055 |
+
#: languages/vue.php:2981
|
9056 |
msgid "Label"
|
9057 |
msgstr ""
|
9058 |
|
9059 |
+
#: languages/vue.php:2984
|
9060 |
msgid "Background"
|
9061 |
msgstr ""
|
9062 |
|
9063 |
+
#: languages/vue.php:2996
|
9064 |
msgid "Choose which content you would like displayed in the widget."
|
9065 |
msgstr ""
|
9066 |
|
9067 |
+
#: languages/vue.php:3008
|
9068 |
msgid "Comments"
|
9069 |
msgstr ""
|
9070 |
|
9071 |
+
#: languages/vue.php:3014
|
9072 |
msgid "Choose how many posts you’d like displayed in the widget."
|
9073 |
msgstr ""
|
9074 |
|
9075 |
+
#: languages/vue.php:3017
|
9076 |
msgid "Popular Posts data can be fetched correctly"
|
9077 |
msgstr ""
|
9078 |
|
9079 |
+
#: languages/vue.php:3020
|
9080 |
msgid "Please note: depending on when you set up the Custom Dimensions settings, it may take up to 7 days to see relevant Popular Posts data loading from Google Analytics."
|
9081 |
msgstr ""
|
9082 |
|
9083 |
+
#: languages/vue.php:3023
|
9084 |
msgid "Close"
|
9085 |
msgstr ""
|
9086 |
|
9087 |
+
#: languages/vue.php:3026
|
9088 |
msgid "Add Top 5 Posts from Google Analytics"
|
9089 |
msgstr ""
|
9090 |
|
9091 |
+
#: languages/vue.php:3029
|
9092 |
msgid "In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both MonsterInsights and Google Analytics settings."
|
9093 |
msgstr ""
|
9094 |
|
9095 |
+
#: languages/vue.php:3032
|
9096 |
msgid "Test Automated Posts"
|
9097 |
msgstr ""
|
9098 |
|
9099 |
#. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
|
9100 |
+
#: languages/vue.php:3036
|
9101 |
msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
|
9102 |
msgstr ""
|
9103 |
|
9104 |
+
#: languages/vue.php:3039
|
9105 |
msgid "Automated + Curated"
|
9106 |
msgstr ""
|
9107 |
|
9108 |
#. Translators: Placeholder adds a link to the Custom Dimensions settings.
|
9109 |
+
#: languages/vue.php:3043
|
9110 |
msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using %1$sCustom Dimensions%2$s. Also requires Sort By - Curated to be selected. Setup steps can be found in our %3$sknowledge base%4$s."
|
9111 |
msgstr ""
|
9112 |
|
9113 |
#. Translators: Placeholder gets replaced with current license version.
|
9114 |
+
#: languages/vue.php:3047
|
9115 |
msgid "Pro version is required."
|
9116 |
msgstr ""
|
9117 |
|
9118 |
+
#: languages/vue.php:3050
|
9119 |
msgid "Verifying Popular Posts data"
|
9120 |
msgstr ""
|
9121 |
|
9122 |
+
#: languages/vue.php:3053
|
9123 |
msgid "Select posts/search"
|
9124 |
msgstr ""
|
9125 |
|
9126 |
+
#: languages/vue.php:3056
|
9127 |
msgid "Oops! No posts found."
|
9128 |
msgstr ""
|
9129 |
|
9130 |
+
#: languages/vue.php:3059
|
9131 |
msgid "Search by post title"
|
9132 |
msgstr ""
|
9133 |
|
9134 |
+
#: languages/vue.php:3062
|
9135 |
msgid "Can't load posts."
|
9136 |
msgstr ""
|
9137 |
|
9138 |
+
#: languages/vue.php:3065
|
9139 |
msgid "SharedCount API Key"
|
9140 |
msgstr ""
|
9141 |
|
9142 |
+
#: languages/vue.php:3068
|
9143 |
msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
|
9144 |
msgstr ""
|
9145 |
|
9146 |
+
#: languages/vue.php:3071
|
9147 |
msgid "Start Indexing"
|
9148 |
msgstr ""
|
9149 |
|
9150 |
+
#: languages/vue.php:3074
|
9151 |
msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
|
9152 |
msgstr ""
|
9153 |
|
9154 |
+
#: languages/vue.php:3077
|
9155 |
msgid "Indexing completed, counts will update automatically every day."
|
9156 |
msgstr ""
|
9157 |
|
9158 |
+
#: languages/vue.php:3080
|
9159 |
msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
|
9160 |
msgstr ""
|
9161 |
|
9162 |
+
#: languages/vue.php:3083
|
9163 |
msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
|
9164 |
msgstr ""
|
9165 |
|
9166 |
+
#: languages/vue.php:3086
|
9167 |
msgid "Icon"
|
9168 |
msgstr ""
|
9169 |
|
9170 |
#. Translators: Minimum and maximum number that can be used.
|
9171 |
+
#: languages/vue.php:3090
|
9172 |
msgid "Please enter a value between %1$s and %2$s"
|
9173 |
msgstr ""
|
9174 |
|
9175 |
#. Translators: The minimum set value.
|
9176 |
+
#: languages/vue.php:3094
|
9177 |
msgid "Please enter a value higher than %s"
|
9178 |
msgstr ""
|
9179 |
|
9180 |
#. Translators: The maximum set value.
|
9181 |
+
#: languages/vue.php:3098
|
9182 |
msgid "Please enter a value lower than %s"
|
9183 |
msgstr ""
|
9184 |
|
9185 |
+
#: languages/vue.php:3101
|
9186 |
msgid "Please enter a number"
|
9187 |
msgstr ""
|
9188 |
|
9189 |
+
#: languages/vue.php:3104
|
9190 |
msgid "Value has to be a round number"
|
9191 |
msgstr ""
|
9192 |
|
9193 |
+
#: languages/vue.php:3107
|
9194 |
msgid "Export PDF Report"
|
9195 |
msgstr ""
|
9196 |
|
9197 |
+
#: languages/vue.php:3110
|
9198 |
msgid "You can export PDF reports only in the PRO version."
|
9199 |
msgstr ""
|
9200 |
|
9201 |
+
#: languages/vue.php:3113
|
9202 |
msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
|
9203 |
msgstr ""
|
9204 |
|
9205 |
+
#: languages/vue.php:3116
|
9206 |
msgid "It's easy to double your traffic and sales when you know exactly how people find and use your website. MonsterInsights Pro shows you the stats that matter!"
|
9207 |
msgstr ""
|
9208 |
|
9209 |
+
#: languages/vue.php:3119
|
9210 |
msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
|
9211 |
msgstr ""
|
9212 |
|
9213 |
#. Translators: Makes text bold.
|
9214 |
+
#: languages/vue.php:3123
|
9215 |
msgid "Use coupon code %1$sLITEUPGRADE%2$s"
|
9216 |
msgstr ""
|
9217 |
|
9218 |
#. Translators: Make text green.
|
9219 |
+
#: languages/vue.php:3127
|
9220 |
msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
|
9221 |
msgstr ""
|
9222 |
|
9223 |
#. Translators: Placeholder adds a line break.
|
9224 |
+
#: languages/vue.php:3131
|
9225 |
msgid "You can customize your %sdate range only in the PRO version."
|
9226 |
msgstr ""
|
9227 |
|
9228 |
+
#: languages/vue.php:3134
|
9229 |
msgid "Help Us Improve"
|
9230 |
msgstr ""
|
9231 |
|
9232 |
+
#: languages/vue.php:3137
|
9233 |
msgid "Help us better understand our users and their website needs."
|
9234 |
msgstr ""
|
9235 |
|
9236 |
#. Translators: Adds a link to the documentation.
|
9237 |
+
#: languages/vue.php:3141
|
9238 |
msgid "If enabled MonsterInsights will send some information about your WordPress site like what plugins and themes you use and which MonsterInsights 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"
|
9239 |
msgstr ""
|
9240 |
|
9241 |
+
#: languages/vue.php:3144
|
9242 |
msgid "Website profile"
|
9243 |
msgstr ""
|
9244 |
|
9245 |
+
#: languages/vue.php:3147
|
9246 |
msgid "Active profile"
|
9247 |
msgstr ""
|
9248 |
|
9249 |
+
#: languages/vue.php:3150
|
9250 |
msgid "Skip and Keep Connection"
|
9251 |
msgstr ""
|
9252 |
|
9253 |
+
#: languages/vue.php:3153
|
9254 |
msgid "This feature requires MonsterInsights Pro"
|
9255 |
msgstr ""
|
9256 |
|
9257 |
+
#: languages/vue.php:3156
|
9258 |
msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
|
9259 |
msgstr ""
|
9260 |
|
9261 |
+
#: languages/vue.php:3159
|
9262 |
msgid "Upgrade to Pro and Unlock Popular Products"
|
9263 |
msgstr ""
|
9264 |
|
9265 |
+
#: languages/vue.php:3162
|
9266 |
msgid "View all Pro features"
|
9267 |
msgstr ""
|
9268 |
|
9269 |
+
#: languages/vue.php:3165
|
9270 |
msgid "Days"
|
9271 |
msgstr ""
|
9272 |
|
9273 |
#. Translators: placeholders make text small.
|
9274 |
+
#: languages/vue.php:3169
|
9275 |
msgid "7 days"
|
9276 |
msgstr ""
|
9277 |
|
9278 |
+
#: languages/vue.php:3172
|
9279 |
msgid "30 days"
|
9280 |
msgstr ""
|
9281 |
|
9282 |
+
#: languages/vue.php:3175
|
9283 |
msgid "Custom"
|
9284 |
msgstr ""
|
9285 |
|
9286 |
+
#: languages/vue.php:3178
|
9287 |
msgid "Only Show Posts from These Categories"
|
9288 |
msgstr ""
|
9289 |
|
9290 |
+
#: languages/vue.php:3181
|
9291 |
msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
|
9292 |
msgstr ""
|
9293 |
|
9294 |
+
#: languages/vue.php:3184
|
9295 |
msgid "Multiple Entries"
|
9296 |
msgstr ""
|
9297 |
|
9298 |
+
#: languages/vue.php:3187
|
9299 |
msgid "Total Number of Widgets to Show"
|
9300 |
msgstr ""
|
9301 |
|
9302 |
+
#: languages/vue.php:3190
|
9303 |
msgid "Choose how many widgets will be placed in a single Post."
|
9304 |
msgstr ""
|
9305 |
|
9306 |
+
#: languages/vue.php:3193
|
9307 |
msgid "Minimum Distance Between Widgets"
|
9308 |
msgstr ""
|
9309 |
|
9310 |
+
#: languages/vue.php:3196
|
9311 |
msgid "Choose the distance between widgets."
|
9312 |
msgstr ""
|
9313 |
|
9314 |
+
#: languages/vue.php:3199
|
9315 |
msgid "Minimum Word Count to Display Multiple Widgets"
|
9316 |
msgstr ""
|
9317 |
|
9318 |
+
#: languages/vue.php:3202
|
9319 |
msgid "Choose the minimum word count for a Post to have multiple entries."
|
9320 |
msgstr ""
|
9321 |
|
9322 |
+
#: languages/vue.php:3205
|
9323 |
msgid "Pro version is required"
|
9324 |
msgstr ""
|
9325 |
|
9326 |
#. Translators: Placeholder adds a link to the Custom Dimensions settings.
|
9327 |
+
#: languages/vue.php:3209
|
9328 |
msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using Custom Dimensions (Pro version required. %1$sUpgrade now%2$s)."
|
9329 |
msgstr ""
|
9330 |
|
9331 |
+
#: languages/vue.php:3212
|
9332 |
msgid "Unlock with %s"
|
9333 |
msgstr ""
|
9334 |
|
9335 |
+
#: languages/vue.php:3215
|
9336 |
msgid "Automatic Placement"
|
9337 |
msgstr ""
|
9338 |
|
9339 |
+
#: languages/vue.php:3218
|
9340 |
msgid "Display using Gutenberg Blocks"
|
9341 |
msgstr ""
|
9342 |
|
9343 |
+
#: languages/vue.php:3221
|
9344 |
msgid "Embed Options"
|
9345 |
msgstr ""
|
9346 |
|
9347 |
+
#: languages/vue.php:3224
|
9348 |
msgid "All Embed Options can be used in conjunction with one another."
|
9349 |
msgstr ""
|
9350 |
|
9351 |
+
#: languages/vue.php:3227
|
9352 |
msgid "Using the Gutenberg Block"
|
9353 |
msgstr ""
|
9354 |
|
9355 |
+
#: languages/vue.php:3230
|
9356 |
msgid "Using Automatic Embed"
|
9357 |
msgstr ""
|
9358 |
|
9359 |
+
#: languages/vue.php:3233
|
9360 |
msgid "Learn how to insert the Popular Posts Widget into your posts and pages using Gutenberg Blocks. To style this widget, use the Gutenberg Block settings."
|
9361 |
msgstr ""
|
9362 |
|
9363 |
+
#: languages/vue.php:3236
|
9364 |
msgid "Enabling Automatic Placement will include the Popular Posts Widget after the last paragraph of any and all posts that match your Behavior settings. To style this widget use the Customize Design panel above."
|
9365 |
msgstr ""
|
9366 |
|
9367 |
+
#: languages/vue.php:3239
|
9368 |
msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
|
9369 |
msgstr ""
|
9370 |
|
9371 |
+
#: languages/vue.php:3242
|
9372 |
msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
|
9373 |
msgstr ""
|
9374 |
|
9375 |
+
#: languages/vue.php:3245
|
9376 |
msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
|
9377 |
msgstr ""
|
9378 |
|
9379 |
+
#: languages/vue.php:3248
|
9380 |
msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
|
9381 |
msgstr ""
|
9382 |
|
9383 |
+
#: languages/vue.php:3251
|
9384 |
msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
|
9385 |
msgstr ""
|
9386 |
|
9387 |
+
#: languages/vue.php:3254
|
9388 |
msgid "%1$sStep 1%2$s - Navigate to your Appearance > Widgets page using the menu on the left side your screen. Must be logged in as Admin."
|
9389 |
msgstr ""
|
9390 |
|
9391 |
+
#: languages/vue.php:3257
|
9392 |
msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - MonsterInsights widget and drag it into the desired Sidebar on the right."
|
9393 |
msgstr ""
|
9394 |
|
9395 |
+
#: languages/vue.php:3260
|
9396 |
msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
|
9397 |
msgstr ""
|
9398 |
|
9399 |
+
#: languages/vue.php:3263
|
9400 |
msgid "Display using a Shortcode"
|
9401 |
msgstr ""
|
9402 |
|
9403 |
+
#: languages/vue.php:3266
|
9404 |
msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
|
9405 |
msgstr ""
|
9406 |
|
9407 |
+
#: languages/vue.php:3269
|
9408 |
msgid "Copy Shortcode"
|
9409 |
msgstr ""
|
9410 |
|
9411 |
+
#: languages/vue.php:3272
|
9412 |
msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
|
9413 |
msgstr ""
|
9414 |
|
9415 |
+
#: languages/vue.php:3275
|
9416 |
msgid "Enable Automatic Placement"
|
9417 |
msgstr ""
|
9418 |
|
9419 |
+
#: languages/vue.php:3278
|
9420 |
msgid "Display in a Sidebar"
|
9421 |
msgstr ""
|
9422 |
|
9423 |
+
#: languages/vue.php:3281
|
9424 |
msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
|
9425 |
msgstr ""
|
9426 |
|
9427 |
+
#: languages/vue.php:3284
|
9428 |
msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
|
9429 |
msgstr ""
|
9430 |
|
9431 |
+
#: languages/vue.php:3287
|
9432 |
msgid "Display Method"
|
9433 |
msgstr ""
|
9434 |
|
9435 |
+
#: languages/vue.php:3290
|
9436 |
msgid "There are two ways to manual include the widget in your posts."
|
9437 |
msgstr ""
|
9438 |
|
9439 |
+
#: languages/vue.php:3293
|
9440 |
msgid "Using the Shortcode"
|
9441 |
msgstr ""
|
9442 |
|
9443 |
+
#: languages/vue.php:3296
|
9444 |
msgid "Learn how to insert the widget using Gutenberg blocks."
|
9445 |
msgstr ""
|
9446 |
|
9447 |
+
#: languages/vue.php:3299
|
9448 |
msgid "Learn how to insert the widget using out Shortcode."
|
9449 |
msgstr ""
|
9450 |
|
9451 |
+
#: languages/vue.php:3302
|
9452 |
msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
|
9453 |
msgstr ""
|
9454 |
|
9455 |
+
#: languages/vue.php:3305
|
9456 |
msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”."
|
9457 |
msgstr ""
|
9458 |
|
9459 |
+
#: languages/vue.php:3308
|
9460 |
msgid "Shortcode"
|
9461 |
msgstr ""
|
9462 |
|
9463 |
+
#: languages/vue.php:3311
|
9464 |
msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
|
9465 |
msgstr ""
|
9466 |
|
9467 |
+
#: languages/vue.php:3314
|
9468 |
msgid "Facebook Instant Articleasdasdasds"
|
9469 |
msgstr ""
|
9470 |
|
9471 |
+
#: languages/vue.php:3317
|
9472 |
msgid "Media"
|
9473 |
msgstr ""
|
9474 |
|
9475 |
+
#: languages/vue.php:3320
|
9476 |
msgid "Track how your users interact with videos on your website. Upgrade to MonsterInsights Pro."
|
9477 |
msgstr ""
|
9478 |
|
9479 |
+
#: languages/vue.php:3323
|
9480 |
msgid "Improve Your Conversion Rate With Insights Into Which Content Works Best."
|
9481 |
msgstr ""
|
9482 |
|
9483 |
+
#: languages/vue.php:3326
|
9484 |
msgid "Top Affilliate Links"
|
9485 |
msgstr ""
|
9486 |
|
9487 |
+
#: languages/vue.php:3329
|
9488 |
msgid "Scroll Depth"
|
9489 |
msgstr ""
|
9490 |
|
9491 |
+
#: languages/vue.php:3332
|
9492 |
msgid "Increase Sales and Make More Money With Enhanced eCommerce Insights."
|
9493 |
msgstr ""
|
9494 |
|
9495 |
+
#: languages/vue.php:3335
|
9496 |
msgid "10+ eCommerce Integrations"
|
9497 |
msgstr ""
|
9498 |
|
9499 |
+
#: languages/vue.php:3338
|
9500 |
msgid "Average Order Value"
|
9501 |
msgstr ""
|
9502 |
|
9503 |
+
#: languages/vue.php:3341
|
9504 |
msgid "Total Revenue"
|
9505 |
msgstr ""
|
9506 |
|
9507 |
+
#: languages/vue.php:3344
|
9508 |
msgid "Number of Transactions"
|
9509 |
msgstr ""
|
9510 |
|
9511 |
+
#: languages/vue.php:3347
|
9512 |
msgid "Increase Engagement and Unlock New Insights About Your Site."
|
9513 |
msgstr ""
|
9514 |
|
9515 |
+
#: languages/vue.php:3350
|
9516 |
msgid "User ID Tracking"
|
9517 |
msgstr ""
|
9518 |
|
9519 |
+
#: languages/vue.php:3353
|
9520 |
msgid "Post Types"
|
9521 |
msgstr ""
|
9522 |
|
9523 |
+
#: languages/vue.php:3356
|
9524 |
msgid "Tag Tracking"
|
9525 |
msgstr ""
|
9526 |
|
9527 |
+
#: languages/vue.php:3359
|
9528 |
msgid "Categories"
|
9529 |
msgstr ""
|
9530 |
|
9531 |
+
#: languages/vue.php:3362
|
9532 |
msgid "SEO Scores"
|
9533 |
msgstr ""
|
9534 |
|
9535 |
+
#: languages/vue.php:3365
|
9536 |
msgid "Publish Times"
|
9537 |
msgstr ""
|
9538 |
|
9539 |
+
#: languages/vue.php:3368
|
9540 |
msgid "Focus Keywords"
|
9541 |
msgstr ""
|
9542 |
|
9543 |
+
#: languages/vue.php:3371
|
9544 |
msgid "Track Every Type of Web Form and Gain Visibility Into Your Customer Journey."
|
9545 |
msgstr ""
|
9546 |
|
9547 |
+
#: languages/vue.php:3374
|
9548 |
msgid "Conversion Counts"
|
9549 |
msgstr ""
|
9550 |
|
9551 |
+
#: languages/vue.php:3377
|
9552 |
msgid "Impression Counts"
|
9553 |
msgstr ""
|
9554 |
|
9555 |
+
#: languages/vue.php:3380
|
9556 |
msgid "Conversion Rates"
|
9557 |
msgstr ""
|
9558 |
|
9559 |
+
#: languages/vue.php:3383
|
9560 |
msgid "See Exactly How Visitors Find Your Website From Google."
|
9561 |
msgstr ""
|
9562 |
|
9563 |
+
#: languages/vue.php:3386
|
9564 |
msgid "Top Google Search Terms"
|
9565 |
msgstr ""
|
9566 |
|
9567 |
+
#: languages/vue.php:3389
|
9568 |
msgid "Number of Clicks"
|
9569 |
msgstr ""
|
9570 |
|
9571 |
+
#: languages/vue.php:3392
|
9572 |
msgid "Click-through Ratio"
|
9573 |
msgstr ""
|
9574 |
|
9575 |
+
#: languages/vue.php:3395
|
9576 |
msgid "Average Results Position"
|
9577 |
msgstr ""
|
9578 |
|
9579 |
+
#: languages/vue.php:3398
|
9580 |
msgid "Realtime Report"
|
9581 |
msgstr ""
|
9582 |
|
9583 |
+
#: languages/vue.php:3401
|
9584 |
msgid "See Who And What is Happening on Your Website in Realtime."
|
9585 |
msgstr ""
|
9586 |
|
9587 |
+
#: languages/vue.php:3404
|
9588 |
msgid "Top Page Views"
|
9589 |
msgstr ""
|
9590 |
|
9591 |
+
#: languages/vue.php:3407
|
9592 |
msgid "Current Active Users"
|
9593 |
msgstr ""
|
9594 |
|
9595 |
+
#: languages/vue.php:3410
|
9596 |
msgid "Top Referral Sources"
|
9597 |
msgstr ""
|
9598 |
|
9599 |
+
#: languages/vue.php:3413
|
9600 |
msgid "Top Countries"
|
9601 |
msgstr ""
|
9602 |
|
9603 |
+
#: languages/vue.php:3416
|
9604 |
msgid "Top Cities"
|
9605 |
msgstr ""
|
9606 |
|
9607 |
+
#: languages/vue.php:3419
|
9608 |
msgid "Improve Your User Experience and Improve Search Engine Rankings."
|
9609 |
msgstr ""
|
9610 |
|
9611 |
+
#: languages/vue.php:3422
|
9612 |
msgid "Overall Site Speed Score"
|
9613 |
msgstr ""
|
9614 |
|
9615 |
+
#: languages/vue.php:3425
|
9616 |
msgid "Server Response Times"
|
9617 |
msgstr ""
|
9618 |
|
9619 |
+
#: languages/vue.php:3428
|
9620 |
msgid "Mobile and Desktop Scores"
|
9621 |
msgstr ""
|
9622 |
|
9623 |
+
#: languages/vue.php:3431
|
9624 |
msgid "First Contentful Paint"
|
9625 |
msgstr ""
|
9626 |
|
9627 |
+
#: languages/vue.php:3434
|
9628 |
msgid "Automatic Recommendations"
|
9629 |
msgstr ""
|
9630 |
|
9631 |
+
#: languages/vue.php:3437
|
9632 |
msgid "Total Blocking Time"
|
9633 |
msgstr ""
|
9634 |
|
9635 |
+
#: languages/vue.php:3440
|
9636 |
msgid "On-Demand Audits"
|
9637 |
msgstr ""
|
9638 |
|
9639 |
+
#: languages/vue.php:3443
|
9640 |
msgid "Time to Interactive"
|
9641 |
msgstr ""
|
9642 |
|
9643 |
+
#: languages/vue.php:3446
|
9644 |
msgid "2021 Year in Review"
|
9645 |
msgstr ""
|
9646 |
|
9647 |
+
#: languages/vue.php:3449
|
9648 |
msgid "Realtime"
|
9649 |
msgstr ""
|
9650 |
|
9651 |
#. Translators: Placeholders are used for making text bold and adding a link.
|
9652 |
+
#: languages/vue.php:3453
|
9653 |
msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
|
9654 |
msgstr ""
|
9655 |
|
9656 |
+
#: languages/vue.php:3456
|
9657 |
msgid "Featured"
|
9658 |
msgstr ""
|
9659 |
|
9660 |
+
#: languages/vue.php:3459
|
9661 |
msgid "Traffic"
|
9662 |
msgstr ""
|
9663 |
|
9664 |
+
#: languages/vue.php:3462
|
9665 |
msgid "Revenue"
|
9666 |
msgstr ""
|
9667 |
|
9668 |
+
#: languages/vue.php:3465
|
9669 |
msgid "Guides & Resources"
|
9670 |
msgstr ""
|
9671 |
|
9672 |
+
#: languages/vue.php:3468
|
9673 |
msgid "Upgrade and Unlock"
|
9674 |
msgstr ""
|
9675 |
|
9676 |
+
#: languages/vue.php:3471
|
9677 |
msgid "What’s in the %1$s?"
|
9678 |
msgstr ""
|
9679 |
|
9680 |
+
#: languages/vue.php:3474
|
9681 |
msgid "%1$sPlus%2$s, upgrading to Pro will unlock %1$sall%2$s advanced reports, tracking, and integrations. %3$sLearn more about Pro%4$s"
|
9682 |
msgstr ""
|
9683 |
|
9684 |
+
#: languages/vue.php:3477
|
9685 |
msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
|
9686 |
msgstr ""
|
9687 |
|
9688 |
+
#: languages/vue.php:3480
|
9689 |
msgid "Your 2021 Analytics Report"
|
9690 |
msgstr ""
|
9691 |
|
9692 |
+
#: languages/vue.php:3486
|
9693 |
msgid "January 1, 2021 - December 31, 2021"
|
9694 |
msgstr ""
|
9695 |
|
9696 |
+
#: languages/vue.php:3489
|
9697 |
msgid "A Tip for 2022"
|
9698 |
msgstr ""
|
9699 |
|
9700 |
+
#: languages/vue.php:3492
|
9701 |
msgid "A Tip For 2022"
|
9702 |
msgstr ""
|
9703 |
|
9704 |
+
#: languages/vue.php:3495
|
9705 |
msgid "Here's to an amazing 2022!"
|
9706 |
msgstr ""
|
9707 |
|
9708 |
+
#: languages/vue.php:3498
|
9709 |
msgid "Try our other popular WordPress plugins to grow your website in 2022."
|
9710 |
msgstr ""
|
9711 |
|
9712 |
+
#: languages/vue.php:3501
|
9713 |
msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
|
9714 |
msgstr ""
|
9715 |
|
9716 |
+
#: languages/vue.php:3504
|
9717 |
msgid "Copyright MonsterInsights, 2022"
|
9718 |
msgstr ""
|
9719 |
|
9720 |
#. Translators: Number of minutes spent on site.
|
9721 |
+
#: languages/vue.php:3508
|
9722 |
msgid "Each visitor spent an average of %s minutes on your website in 2021."
|
9723 |
msgstr ""
|
9724 |
|
9725 |
+
#: languages/vue.php:3511
|
9726 |
msgid "RafflePress"
|
9727 |
msgstr ""
|
9728 |
|
9729 |
+
#: languages/vue.php:3514
|
9730 |
msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
|
9731 |
msgstr ""
|
9732 |
|
9733 |
+
#: languages/vue.php:3517
|
9734 |
msgid "Constant Contact"
|
9735 |
msgstr ""
|
9736 |
|
9737 |
+
#: languages/vue.php:3520
|
9738 |
msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
|
9739 |
msgstr ""
|
9740 |
|
9741 |
+
#: languages/vue.php:3523
|
9742 |
msgid "SEMRUSH"
|
9743 |
msgstr ""
|
9744 |
|
9745 |
+
#: languages/vue.php:3526
|
9746 |
msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
|
9747 |
msgstr ""
|
9748 |
|
9749 |
+
#: languages/vue.php:3529
|
9750 |
msgid "Engagement Tools"
|
9751 |
msgstr ""
|
9752 |
|
9753 |
+
#: languages/vue.php:3532
|
9754 |
msgid "WPForms"
|
9755 |
msgstr ""
|
9756 |
|
9757 |
+
#: languages/vue.php:3535
|
9758 |
msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
|
9759 |
msgstr ""
|
9760 |
|
9761 |
+
#: languages/vue.php:3539
|
9762 |
msgid "OptinMonster"
|
9763 |
msgstr ""
|
9764 |
|
9765 |
+
#: languages/vue.php:3542
|
9766 |
msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
|
9767 |
msgstr ""
|
9768 |
|
9769 |
+
#: languages/vue.php:3545
|
9770 |
msgid "Smash Balloon - Facebook"
|
9771 |
msgstr ""
|
9772 |
|
9773 |
+
#: languages/vue.php:3548
|
9774 |
msgid "Smash Balloon - Instagram"
|
9775 |
msgstr ""
|
9776 |
|
9777 |
+
#: languages/vue.php:3551
|
9778 |
msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
|
9779 |
msgstr ""
|
9780 |
|
9781 |
+
#: languages/vue.php:3554
|
9782 |
msgid "Popular Posts by MonsterInsights"
|
9783 |
msgstr ""
|
9784 |
|
9785 |
+
#: languages/vue.php:3557
|
9786 |
msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
|
9787 |
msgstr ""
|
9788 |
|
9789 |
+
#: languages/vue.php:3560
|
9790 |
msgid "Popular Products by MonsterInsights"
|
9791 |
msgstr ""
|
9792 |
|
9793 |
+
#: languages/vue.php:3563
|
9794 |
msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
|
9795 |
msgstr ""
|
9796 |
|
9797 |
+
#: languages/vue.php:3566
|
9798 |
msgid "Revenue Tools"
|
9799 |
msgstr ""
|
9800 |
|
9801 |
+
#: languages/vue.php:3569
|
9802 |
msgid "SeedProd"
|
9803 |
msgstr ""
|
9804 |
|
9805 |
+
#: languages/vue.php:3572
|
9806 |
msgid "Use the best drag-and-drop landing page builder for WordPress to instantly build coming soon pages, sales pages, opt-in pages, webinar pages, maintenance pages, and more. Includes 100+ free templates."
|
9807 |
msgstr ""
|
9808 |
|
9809 |
+
#: languages/vue.php:3575
|
9810 |
msgid "Featured Tools"
|
9811 |
msgstr ""
|
9812 |
|
9813 |
+
#: languages/vue.php:3578
|
9814 |
msgid "Easy Affiliate"
|
9815 |
msgstr ""
|
9816 |
|
9817 |
+
#: languages/vue.php:3581
|
9818 |
msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with MonsterInsights."
|
9819 |
msgstr ""
|
9820 |
|
9821 |
+
#: languages/vue.php:3584
|
9822 |
msgid "SearchWP"
|
9823 |
msgstr ""
|
9824 |
|
9825 |
+
#: languages/vue.php:3587
|
9826 |
msgid "Unlock better search results for your website. Perfect for any information or eCommerce store to help users find exactly what content and products they’re looking for."
|
9827 |
msgstr ""
|
9828 |
|
9829 |
+
#: languages/vue.php:3590
|
9830 |
msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
|
9831 |
msgstr ""
|
9832 |
|
9833 |
+
#: languages/vue.php:3593
|
9834 |
msgid "Create a membership website. Works automatically with MonsterInsights, no coding needed."
|
9835 |
msgstr ""
|
9836 |
|
9837 |
+
#: languages/vue.php:3596
|
9838 |
msgid "Thirsty Affiliates"
|
9839 |
msgstr ""
|
9840 |
|
9841 |
+
#: languages/vue.php:3599
|
9842 |
msgid "Manage all your affiliate links with features designed to help make bloggers more money."
|
9843 |
msgstr ""
|
9844 |
|
9845 |
+
#: languages/vue.php:3602
|
9846 |
msgid "Upgrade to unlock advanced reporting and features designed to help you get more traffic and make more money from your website. Special Offer: Save 50% today."
|
9847 |
msgstr ""
|
9848 |
|
9849 |
+
#: languages/vue.php:3605
|
9850 |
msgid "Advanced Coupons"
|
9851 |
msgstr ""
|
9852 |
|
9853 |
+
#: languages/vue.php:3608
|
9854 |
msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
|
9855 |
msgstr ""
|
9856 |
|
9857 |
+
#: languages/vue.php:3611
|
9858 |
msgid "PrettyLinks"
|
9859 |
msgstr ""
|
9860 |
|
9861 |
+
#: languages/vue.php:3614
|
9862 |
msgid "Automatically monetize your website content with affiliate links added automatically to your content."
|
9863 |
msgstr ""
|
9864 |
|
9865 |
+
#: languages/vue.php:3617
|
9866 |
msgid "Install Now"
|
9867 |
msgstr ""
|
9868 |
|
9869 |
+
#: languages/vue.php:3620
|
9870 |
msgid "Online Marketing Guides & Resources"
|
9871 |
msgstr ""
|
9872 |
|
9873 |
+
#: languages/vue.php:3623
|
9874 |
msgid "MonsterInsights Pro"
|
9875 |
msgstr ""
|
9876 |
|
9877 |
+
#: languages/vue.php:3626
|
9878 |
msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
|
9879 |
msgstr ""
|
9880 |
|
9881 |
+
#: languages/vue.php:3629
|
9882 |
msgid "Traffic Tools"
|
9883 |
msgstr ""
|
9884 |
|
9885 |
+
#: languages/vue.php:3632
|
9886 |
msgid "All in One SEO (AIOSEO)"
|
9887 |
msgstr ""
|
9888 |
|
9889 |
+
#: languages/vue.php:3635
|
9890 |
msgid "The best WordPress SEO plugin that works automatically with MonsterInsights."
|
9891 |
msgstr ""
|
9892 |
|
9893 |
+
#: languages/vue.php:3638
|
9894 |
msgid "PushEngage"
|
9895 |
msgstr ""
|
9896 |
|
9897 |
+
#: languages/vue.php:3641
|
9898 |
msgid "Send push notifications to your visitors to drive more traffic and boost sales."
|
9899 |
msgstr ""
|
9900 |
|
9901 |
+
#: languages/vue.php:3644
|
9902 |
msgid "With MonsterInsights Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
|
9903 |
msgstr ""
|
9904 |
|
9905 |
+
#: languages/vue.php:3647
|
9906 |
msgid "Works automatically with WooCommerce, MemberPress, and EasyDigitalDownloads."
|
9907 |
msgstr ""
|
9908 |
|
9909 |
+
#: languages/vue.php:3651
|
9910 |
msgid "Media Tracking"
|
9911 |
msgstr ""
|
9912 |
|
9913 |
+
#: languages/vue.php:3654
|
9914 |
msgid "Get Started"
|
9915 |
msgstr ""
|
9916 |
|
9917 |
+
#: languages/vue.php:3657
|
9918 |
msgid "Awesome! Tracking and Analytics are All Setup!"
|
9919 |
msgstr ""
|
9920 |
|
9921 |
+
#: languages/vue.php:3660
|
9922 |
msgid "MonsterInsights is connected to Google Analytics and data is being collected."
|
9923 |
msgstr ""
|
9924 |
|
9925 |
+
#: languages/vue.php:3663
|
9926 |
msgid "Complete Setup without Upgrading"
|
9927 |
msgstr ""
|
9928 |
|
9929 |
+
#: languages/vue.php:3666
|
9930 |
msgid "Success"
|
9931 |
msgstr ""
|
9932 |
|
9933 |
+
#: languages/vue.php:3669
|
9934 |
msgid "Connected to Google Analytics"
|
9935 |
msgstr ""
|
9936 |
|
9937 |
+
#: languages/vue.php:3672
|
9938 |
msgid "Tracking Code Installed"
|
9939 |
msgstr ""
|
9940 |
|
9941 |
+
#: languages/vue.php:3675
|
9942 |
msgid "Data Being Collected"
|
9943 |
msgstr ""
|
9944 |
|
9945 |
#. Translators: Add link to retrieve license from account area.
|
9946 |
+
#: languages/vue.php:3679
|
9947 |
msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO!"
|
9948 |
msgstr ""
|
9949 |
|
9950 |
+
#: languages/vue.php:3682
|
9951 |
msgid "Verify License Key"
|
9952 |
msgstr ""
|
9953 |
|
9954 |
+
#: languages/vue.php:3685
|
9955 |
msgid "Upgrade to Unlock These Features"
|
9956 |
msgstr ""
|
9957 |
|
9958 |
+
#: languages/vue.php:3688
|
9959 |
msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
|
9960 |
msgstr ""
|
9961 |
|
9962 |
+
#: languages/vue.php:3691
|
9963 |
msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
|
9964 |
msgstr ""
|
9965 |
|
9966 |
+
#: languages/vue.php:3694
|
9967 |
msgid "Verifying License..."
|
9968 |
msgstr ""
|
9969 |
|
9970 |
+
#: languages/vue.php:3697
|
9971 |
msgid "Privacy Compliance Addon"
|
9972 |
msgstr ""
|
9973 |
|
9974 |
+
#: languages/vue.php:3700
|
9975 |
msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
|
9976 |
msgstr ""
|
9977 |
|
9978 |
+
#: languages/vue.php:3703
|
9979 |
msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
|
9980 |
msgstr ""
|
9981 |
|
9982 |
+
#: languages/vue.php:3706
|
9983 |
msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
|
9984 |
msgstr ""
|
9985 |
|
9986 |
+
#: languages/vue.php:3709
|
9987 |
msgid "20+ Advanced Tracking"
|
9988 |
msgstr ""
|
9989 |
|
9990 |
+
#: languages/vue.php:3712
|
9991 |
msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
|
9992 |
msgstr ""
|
9993 |
|
9994 |
+
#: languages/vue.php:3715
|
9995 |
msgid "Advanced Growth Tools"
|
9996 |
msgstr ""
|
9997 |
|
9998 |
+
#: languages/vue.php:3718
|
9999 |
msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
|
10000 |
msgstr ""
|
10001 |
|
10002 |
+
#: languages/vue.php:3721
|
10003 |
msgid "Track how your users interact with videos on your website."
|
10004 |
msgstr ""
|
10005 |
|
10006 |
+
#: languages/vue.php:3724
|
10007 |
msgid "Error Processing"
|
10008 |
msgstr ""
|
10009 |
|
10010 |
+
#: languages/vue.php:3727
|
10011 |
msgid "There was an error while processing some features. Please try again or you can skip this process for now"
|
10012 |
msgstr ""
|
10013 |
|
10014 |
+
#: languages/vue.php:3730
|
10015 |
msgid "Which website features would you like to enable?"
|
10016 |
msgstr ""
|
10017 |
|
10018 |
+
#: languages/vue.php:3733
|
10019 |
msgid "We’ve already selected our recommended features based on your site. "
|
10020 |
msgstr ""
|
10021 |
|
10022 |
+
#: languages/vue.php:3736
|
10023 |
msgid "Continue"
|
10024 |
msgstr ""
|
10025 |
|
10026 |
+
#: languages/vue.php:3739
|
10027 |
msgid "Standard Analytics & Reports"
|
10028 |
msgstr ""
|
10029 |
|
10030 |
+
#: languages/vue.php:3742
|
10031 |
msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
|
10032 |
msgstr ""
|
10033 |
|
10034 |
+
#: languages/vue.php:3745
|
10035 |
msgid "Helps you see what links your users are clicking on your site."
|
10036 |
msgstr ""
|
10037 |
|
10038 |
+
#: languages/vue.php:3748
|
10039 |
msgid "All In One SEO Toolkit"
|
10040 |
msgstr ""
|
10041 |
|
10042 |
+
#: languages/vue.php:3751
|
10043 |
msgid "The best WordPress SEO plugin that works with MonsterInsights to boost your rankings."
|
10044 |
msgstr ""
|
10045 |
|
10046 |
+
#: languages/vue.php:3754
|
10047 |
msgid "Smart Form Builder by WPForms"
|
10048 |
msgstr ""
|
10049 |
|
10050 |
+
#: languages/vue.php:3757
|
10051 |
msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
|
10052 |
msgstr ""
|
10053 |
|
10054 |
+
#: languages/vue.php:3760
|
10055 |
msgid "The following plugins will be installed: "
|
10056 |
msgstr ""
|
10057 |
|
10058 |
+
#: languages/vue.php:3763
|
10059 |
msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
|
10060 |
msgstr ""
|
10061 |
|
10062 |
+
#: languages/vue.php:3766
|
10063 |
msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
|
10064 |
msgstr ""
|
10065 |
|
10066 |
+
#: languages/vue.php:3769
|
10067 |
msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
|
10068 |
msgstr ""
|
10069 |
|
10070 |
+
#: languages/vue.php:3772
|
10071 |
msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
|
10072 |
msgstr ""
|
10073 |
|
10074 |
+
#: languages/vue.php:3775
|
10075 |
msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
|
10076 |
msgstr ""
|
10077 |
|
10078 |
+
#: languages/vue.php:3778
|
10079 |
msgid "MonsterInsights makes it effortless for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
|
10080 |
msgstr ""
|
10081 |
|
10082 |
+
#: languages/vue.php:3781
|
10083 |
msgid "Expired"
|
10084 |
msgstr ""
|
10085 |
|
10086 |
+
#: languages/vue.php:3784
|
10087 |
msgid "WP Simple Pay"
|
10088 |
msgstr ""
|
10089 |
|
10090 |
+
#: languages/vue.php:3790
|
10091 |
msgid "License Expired"
|
10092 |
msgstr ""
|
10093 |
|
10094 |
+
#: languages/vue.php:3793
|
10095 |
msgid "Your MonsterInsights license key has expired."
|
10096 |
msgstr ""
|
10097 |
|
10098 |
+
#: languages/vue.php:3796
|
10099 |
msgid "Renew today to ensure Google Analytics continues to track properly."
|
10100 |
msgstr ""
|
10101 |
|
10102 |
+
#: languages/vue.php:3799
|
10103 |
msgid "Click here."
|
10104 |
msgstr ""
|
10105 |
|
10106 |
#. Translators: Adds a link to the license renewal.
|
10107 |
+
#: languages/vue.php:3803
|
10108 |
msgid "To ensure tracking works properly, reactivate your license"
|
10109 |
msgstr ""
|
10110 |
|
10111 |
+
#: languages/vue.php:3806
|
10112 |
msgid "Reactivate License"
|
10113 |
msgstr ""
|
10114 |
|
10115 |
+
#: languages/vue.php:3809
|
10116 |
msgid "View All Reports"
|
10117 |
msgstr ""
|
10118 |
|
10119 |
+
#: languages/vue.php:3812
|
10120 |
msgid "Oops! There was an error processing request. Please try again later."
|
10121 |
msgstr ""
|
10122 |
|
10123 |
#. Translators: tag to make text italic starts, tag end.
|
10124 |
+
#: languages/vue.php:3816
|
10125 |
msgid "See What Your Website Visitors Are %1$sReally%2$s Thinking!"
|
10126 |
msgstr ""
|
10127 |
|
10128 |
+
#: languages/vue.php:3819
|
10129 |
msgid "UserFeedback lets you easily collect feedback from your website in real time. You can use this important data to increase your traffic, sales, newsletter signups, engagement, and more."
|
10130 |
msgstr ""
|
10131 |
|
10132 |
+
#: languages/vue.php:3822
|
10133 |
msgid "Understand exactly why visitors left your website, what convinced them to make a purchase, why they signed up for a newsletter, and more with real verbatim feedback"
|
10134 |
msgstr ""
|
10135 |
|
10136 |
+
#: languages/vue.php:3825
|
10137 |
msgid "Ask open ended questions, run polls or surveys, gather ratings, and more with an easy survey builder"
|
10138 |
msgstr ""
|
10139 |
|
10140 |
+
#: languages/vue.php:3828
|
10141 |
msgid "Customize targeting rules to get specific feedback on certain pages or products"
|
10142 |
msgstr ""
|
10143 |
|
10144 |
+
#: languages/vue.php:3831
|
10145 |
msgid "Easily analyze your responses and export data"
|
10146 |
msgstr ""
|
10147 |
|
10148 |
+
#: languages/vue.php:3834
|
10149 |
msgid "Install & Activate UserFeedback"
|
10150 |
msgstr ""
|
10151 |
|
10152 |
+
#: languages/vue.php:3837
|
10153 |
msgid "Install UserFeedback by clicking the button below."
|
10154 |
msgstr ""
|
10155 |
|
10156 |
+
#: languages/vue.php:3840
|
10157 |
msgid "Install UserFeedback"
|
10158 |
msgstr ""
|
10159 |
|
10160 |
+
#: languages/vue.php:3843
|
10161 |
msgid "Set Up UserFeedback"
|
10162 |
msgstr ""
|
10163 |
|
10164 |
+
#: languages/vue.php:3846
|
10165 |
msgid "Run the UserFeedback setup wizard to launch your first UserFeedback survey."
|
10166 |
msgstr ""
|
10167 |
|
10168 |
+
#: languages/vue.php:3849
|
10169 |
msgid "Start Setup"
|
10170 |
msgstr ""
|
10171 |
|
10172 |
+
#: languages/vue.php:3852
|
10173 |
msgid "Installing UserFeedback"
|
10174 |
msgstr ""
|
10175 |
|
10176 |
+
#: languages/vue.php:3855
|
10177 |
msgid "Activating UserFeedback"
|
10178 |
msgstr ""
|
10179 |
|
10180 |
+
#: languages/vue.php:3858
|
10181 |
msgid "Installed & Active"
|
10182 |
msgstr ""
|
10183 |
|
10184 |
+
#: languages/vue.php:3861
|
10185 |
msgid "Oops! Something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
|
10186 |
msgstr ""
|
10187 |
|
10188 |
+
#. Translators: Error status and error text, Support link tag starts with url and support link tag ends.
|
10189 |
+
#: languages/vue.php:3866
|
10190 |
msgid "Can't save settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance."
|
10191 |
msgstr ""
|
10192 |
|
10193 |
#. Translators: Support link tag starts with url and support link tag ends.
|
10194 |
+
#: languages/vue.php:3871
|
10195 |
msgid "Oops! There was an error, your settings were not saved. Please try again in a few minutes. If the issue persists, please %1$scontact our support%2$s team."
|
10196 |
msgstr ""
|
10197 |
|
10198 |
#. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
|
10199 |
+
#: languages/vue.php:3875
|
10200 |
msgid "Can't load settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance. "
|
10201 |
msgstr ""
|
10202 |
|
10203 |
#. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
|
10204 |
+
#: languages/vue.php:3879
|
10205 |
msgid "Oops! We can't verify deauthentication. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
|
10206 |
msgstr ""
|
10207 |
|
10208 |
#. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
|
10209 |
+
#: languages/vue.php:3883
|
10210 |
msgid "Can't load authentication details. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team. "
|
10211 |
msgstr ""
|
10212 |
|
10213 |
#. Translators: Support page link tag starts and support page link tag ends.
|
10214 |
+
#: languages/vue.php:3887
|
10215 |
msgid "Oops! There was an error loading your site details. Please refresh the page and try again. If the issue persists, please contact our support team."
|
10216 |
msgstr ""
|
10217 |
|
10218 |
#. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
|
10219 |
+
#: languages/vue.php:3891
|
10220 |
msgid "Can't save settings. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
|
10221 |
msgstr ""
|
10222 |
|
10223 |
#. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
|
10224 |
+
#: languages/vue.php:3895
|
10225 |
msgid "Oops! We can't authenticate. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team. "
|
10226 |
msgstr ""
|
10227 |
|
10228 |
#. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
|
10229 |
+
#: languages/vue.php:3899
|
10230 |
msgid "Oops! We can't reauthenticate. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team"
|
10231 |
msgstr ""
|
10232 |
|
10233 |
#. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
|
10234 |
+
#: languages/vue.php:3903
|
10235 |
msgid "Oops! We can't verify credentials. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
|
10236 |
msgstr ""
|
10237 |
|
10238 |
#. Translators: Error status and error text.
|
10239 |
+
#: languages/vue.php:3907
|
10240 |
msgid "Oops! Can't install WPForms. Error: %1$s, %2$s"
|
10241 |
msgstr ""
|
10242 |
|
10243 |
#. Translators: Error status and error text.
|
10244 |
+
#: languages/vue.php:3911
|
10245 |
msgid "Oops! Can't activate addon. Error: %1$s, %2$s"
|
10246 |
msgstr ""
|
10247 |
|
10248 |
+
#: languages/vue.php:3914
|
10249 |
msgid "Oops! There was an error activating the addon. Please try again. If the issue persists, please %1$scontact our support%2$s team."
|
10250 |
msgstr ""
|
10251 |
|
10252 |
#. Translators: Error status and error text.
|
10253 |
+
#: languages/vue.php:3918
|
10254 |
msgid "Oops! Can't deactivate addon. Error: %1$s, %2$s"
|
10255 |
msgstr ""
|
10256 |
|
10257 |
#. Translators: Error status and error text.
|
10258 |
+
#: languages/vue.php:3922
|
10259 |
msgid "Oops! Can't install plugin. Error: %1$s, %2$s"
|
10260 |
msgstr ""
|
10261 |
|
10262 |
#. Translators: Error status and error text.
|
10263 |
+
#: languages/vue.php:3926
|
10264 |
msgid "Oops! Can't install addon. Error: %1$s, %2$s"
|
10265 |
msgstr ""
|
10266 |
|
10267 |
#. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
|
10268 |
+
#: languages/vue.php:3930
|
10269 |
msgid "Oops! There was an issue deactivating your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
|
10270 |
msgstr ""
|
10271 |
|
10272 |
#. Translators: Support Link tag starts with URL, Support link tag ends.
|
10273 |
+
#: languages/vue.php:3934
|
10274 |
msgid "Oops! There was an issue deactivating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
|
10275 |
msgstr ""
|
10276 |
|
10277 |
#. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
|
10278 |
+
#: languages/vue.php:3938
|
10279 |
msgid "Oops! There was an issue verifying your license upgrade, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
|
10280 |
msgstr ""
|
10281 |
|
10282 |
#. Translators: Support Link tag starts with URL, Support link tag ends.
|
10283 |
+
#: languages/vue.php:3942
|
10284 |
msgid "Oops! There was an issue verifying your license upgrade, please try again. If the issue persists, please %1$scontact our support team%2$s."
|
10285 |
msgstr ""
|
10286 |
|
10287 |
#. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
|
10288 |
+
#: languages/vue.php:3946
|
10289 |
msgid "Oops! There was an issue loading your license details, please try again. If the issue persists please %1$scontact our support team%2$s. Error: %3$s, %4$s"
|
10290 |
msgstr ""
|
10291 |
|
10292 |
+
#: languages/vue.php:3949
|
10293 |
msgid "Oops! There was an issue loading your license details, please try again. If the issue persists, please %1$scontact our support team%2$s."
|
10294 |
msgstr ""
|
10295 |
|
10296 |
#. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
|
10297 |
+
#: languages/vue.php:3953
|
10298 |
msgid "Oops! There was an issue verifying your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
|
10299 |
msgstr ""
|
10300 |
|
10301 |
#. Translators: Support Link tag starts with URL, Support link tag ends.
|
10302 |
+
#: languages/vue.php:3957
|
10303 |
msgid "Oops! There was an issue verifying your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
|
10304 |
msgstr ""
|
10305 |
|
10306 |
#. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
|
10307 |
+
#: languages/vue.php:3961
|
10308 |
msgid "Oops! There was an issue validating your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
|
10309 |
msgstr ""
|
10310 |
|
10311 |
#. Translators: Support Link tag starts with URL, Support link tag ends.
|
10312 |
+
#: languages/vue.php:3965
|
10313 |
msgid "Oops! There was an issue validating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
|
10314 |
msgstr ""
|
10315 |
|
10316 |
#. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
|
10317 |
+
#: languages/vue.php:3969
|
10318 |
msgid "Can't load report data. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
|
10319 |
msgstr ""
|
10320 |
|
10321 |
#. Translators: Support link tag starts with url and support link tag ends.
|
10322 |
+
#: languages/vue.php:3973
|
10323 |
msgid "Oops! Can't load posts. Please try again in a few minutes. If the issue persists, please %1$scontact our support%2$s team."
|
10324 |
msgstr ""
|
10325 |
|
10326 |
+
#: languages/vue.php:3976
|
10327 |
msgid "Website Badge"
|
10328 |
msgstr ""
|
10329 |
|
10330 |
+
#: languages/vue.php:3979
|
10331 |
msgid "Automatic Display"
|
10332 |
msgstr ""
|
10333 |
|
10334 |
+
#: languages/vue.php:3982
|
10335 |
msgid "Automatically Display Website Badge in Website Footer"
|
10336 |
msgstr ""
|
10337 |
|
10338 |
+
#: languages/vue.php:3985
|
10339 |
msgid "Enabling will add the chosen badge in your website’s footer."
|
10340 |
msgstr ""
|
10341 |
|
10342 |
+
#: languages/vue.php:3988
|
10343 |
msgid "Enable Automatic Display"
|
10344 |
msgstr ""
|
10345 |
|
10346 |
+
#: languages/vue.php:3991
|
10347 |
msgid "Appearance"
|
10348 |
msgstr ""
|
10349 |
|
10350 |
+
#: languages/vue.php:3994
|
10351 |
msgid "Choose your badge style."
|
10352 |
msgstr ""
|
10353 |
|
10354 |
+
#: languages/vue.php:3997
|
10355 |
msgid "Position"
|
10356 |
msgstr ""
|
10357 |
|
10358 |
+
#: languages/vue.php:4000
|
10359 |
msgid "Select the position of the badge in your website’s footer."
|
10360 |
msgstr ""
|
10361 |
|
10362 |
+
#: languages/vue.php:4003
|
10363 |
msgid "Manual Display"
|
10364 |
msgstr ""
|
10365 |
|
10366 |
+
#: languages/vue.php:4006
|
10367 |
msgid "Copy"
|
10368 |
msgstr ""
|
10369 |
|
10370 |
+
#: languages/vue.php:4009
|
10371 |
msgid "Light"
|
10372 |
msgstr ""
|
10373 |
|
10374 |
+
#: languages/vue.php:4012
|
10375 |
msgid "Dark"
|
10376 |
msgstr ""
|
10377 |
|
10378 |
+
#: languages/vue.php:4015
|
10379 |
msgid "Left"
|
10380 |
msgstr ""
|
10381 |
|
10382 |
+
#: languages/vue.php:4018
|
10383 |
msgid "Center"
|
10384 |
msgstr ""
|
10385 |
|
10386 |
+
#: languages/vue.php:4021
|
10387 |
msgid "Right"
|
10388 |
msgstr ""
|
10389 |
|
10390 |
+
#: languages/vue.php:4024
|
10391 |
msgid "Show MonsterInsights Badge"
|
10392 |
msgstr ""
|
10393 |
|
10394 |
+
#: languages/vue.php:4027
|
10395 |
msgid "Build trust with website visitors by automatically placing a MonsterInsights badge in your website’s footer."
|
10396 |
msgstr ""
|
10397 |
|
10398 |
+
#: languages/vue.php:4030
|
10399 |
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 or GT-XXXXX where the X's are numbers."
|
10400 |
msgstr ""
|
10401 |
|
10402 |
+
#: languages/vue.php:4033
|
10403 |
msgid "Conversion Tools"
|
10404 |
msgstr ""
|
10405 |
|
10406 |
+
#: languages/vue.php:4036
|
10407 |
msgid "Get the #1 conversion optimization plugin to convert your growing website traffic into subscribers, leads and sales."
|
10408 |
msgstr ""
|
10409 |
|
10410 |
+
#: languages/vue.php:4039
|
10411 |
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 or GT-YYYYY where the Y's are combination of numbers and letters."
|
10412 |
msgstr ""
|
10413 |
|
10414 |
+
#: languages/vue.php:4042
|
10415 |
msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X's are combination of numbers and letters."
|
10416 |
msgstr ""
|
10417 |
|
10418 |
+
#: languages/vue.php:4045
|
10419 |
msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers or GT-YYYYY where the Y's are combination of numbers and letters."
|
10420 |
msgstr ""
|
10421 |
|
10422 |
+
#: languages/vue.php:4048
|
10423 |
msgid "Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X's are combination of numbers and letters."
|
10424 |
msgstr ""
|
10425 |
|
10426 |
+
#: languages/vue.php:4052
|
10427 |
msgid "Media Report"
|
10428 |
msgstr ""
|
10429 |
|
10430 |
+
#: languages/vue.php:4055
|
10431 |
msgid "Easily See Which Videos Are Most Popular."
|
10432 |
msgstr ""
|
10433 |
|
10434 |
+
#: languages/vue.php:4058
|
10435 |
msgid "Videos Plays, Average Duration, and Completions"
|
10436 |
msgstr ""
|
10437 |
|
10438 |
+
#: languages/vue.php:4061
|
10439 |
msgid "Works with YouTube, Vimeo, and HTML 5 Videos"
|
10440 |
msgstr ""
|
10441 |
|
10442 |
+
#: languages/vue.php:4064
|
10443 |
msgid "Compare stats over time"
|
10444 |
msgstr ""
|
10445 |
|
10446 |
+
#: languages/vue.php:4067
|
10447 |
msgid "Video Plays"
|
10448 |
msgstr ""
|
10449 |
|
10450 |
+
#: languages/vue.php:4070
|
10451 |
msgid "Video %s Plays"
|
10452 |
msgstr ""
|
10453 |
|
10454 |
+
#: languages/vue.php:4073
|
10455 |
msgid "No video plays tracked during this time period."
|
10456 |
msgstr ""
|
10457 |
|
10458 |
#. Translators: Make the text bold and add the start and end dates.
|
10459 |
+
#: languages/vue.php:4077
|
10460 |
msgid "%1$sCustom dates:%2$s %3$s - %4$s"
|
10461 |
msgstr ""
|
10462 |
|
10463 |
+
#: languages/vue.php:4080
|
10464 |
msgid "Custom Date Range"
|
10465 |
msgstr ""
|
10466 |
|
10467 |
+
#: languages/vue.php:4083
|
10468 |
msgid "Set Custom Date Range"
|
10469 |
msgstr ""
|
10470 |
|
10471 |
+
#: languages/vue.php:4086
|
10472 |
msgid "Hide Details"
|
10473 |
msgstr ""
|
10474 |
|
10475 |
+
#: languages/vue.php:4089
|
10476 |
msgid "Show Details"
|
10477 |
msgstr ""
|
10478 |
|
languages/vue.php
CHANGED
@@ -7,6 +7,9 @@ $generated_i18n_strings = array(
|
|
7 |
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:130
|
8 |
__( '2', 'google-analytics-for-wordpress' ),
|
9 |
|
|
|
|
|
|
|
10 |
// Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:17
|
11 |
__( 'Error', 'google-analytics-for-wordpress' ),
|
12 |
|
@@ -16,7 +19,7 @@ $generated_i18n_strings = array(
|
|
16 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:355
|
17 |
__( 'Today', 'google-analytics-for-wordpress' ),
|
18 |
|
19 |
-
// Reference: src/
|
20 |
__( 'Yesterday', 'google-analytics-for-wordpress' ),
|
21 |
|
22 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:367
|
@@ -242,12 +245,10 @@ $generated_i18n_strings = array(
|
|
242 |
// Reference: src/modules/frontend/monsterinsights-frontend.vue:38
|
243 |
__( 'Insights', 'google-analytics-for-wordpress' ),
|
244 |
|
245 |
-
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:263
|
246 |
-
// Reference: src/modules/reports/routes/index.js:26
|
247 |
// Reference: src/modules/widget/store/index.js:14
|
248 |
__( 'Overview Report', 'google-analytics-for-wordpress' ),
|
249 |
|
250 |
-
// Reference: src/modules/
|
251 |
__( 'Welcome to MonsterInsights', 'google-analytics-for-wordpress' ),
|
252 |
|
253 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:134
|
@@ -271,13 +272,15 @@ $generated_i18n_strings = array(
|
|
271 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:140
|
272 |
__( 'See All Features', 'google-analytics-for-wordpress' ),
|
273 |
|
274 |
-
// Reference: src/modules/
|
|
|
275 |
__( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
|
276 |
|
277 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:142
|
278 |
__( 'per year', 'google-analytics-for-wordpress' ),
|
279 |
|
280 |
-
// Reference: src/modules/
|
|
|
281 |
__( 'Upgrade Now', 'google-analytics-for-wordpress' ),
|
282 |
|
283 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:144
|
@@ -334,7 +337,7 @@ $generated_i18n_strings = array(
|
|
334 |
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:34
|
335 |
__( 'Form Conversions', 'google-analytics-for-wordpress' ),
|
336 |
|
337 |
-
// Reference: src/modules/
|
338 |
__( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
|
339 |
|
340 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:278
|
@@ -392,13 +395,17 @@ $generated_i18n_strings = array(
|
|
392 |
// Reference: src/modules/reports/components/ReportReAuth.vue:20
|
393 |
__( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-for-wordpress' ),
|
394 |
|
|
|
395 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:80
|
396 |
__( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
|
397 |
|
|
|
398 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:178
|
399 |
__( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
|
400 |
|
401 |
-
// Reference: src/modules/
|
|
|
|
|
402 |
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:232
|
403 |
__( 'Ok', 'google-analytics-for-wordpress' ),
|
404 |
|
@@ -421,13 +428,15 @@ $generated_i18n_strings = array(
|
|
421 |
/* Translators: Placeholder is replaced with WPForms. */
|
422 |
__( 'Recommended Plugin: %s', 'google-analytics-for-wordpress' ),
|
423 |
|
|
|
424 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:42
|
425 |
__( 'Install', 'google-analytics-for-wordpress' ),
|
426 |
|
|
|
427 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:38
|
428 |
__( 'Activate', 'google-analytics-for-wordpress' ),
|
429 |
|
430 |
-
// Reference: src/modules/
|
431 |
__( 'Learn More', 'google-analytics-for-wordpress' ),
|
432 |
|
433 |
// Reference: src/modules/frontend/components/FrontendPoweredBy.vue:12
|
@@ -490,12 +499,15 @@ $generated_i18n_strings = array(
|
|
490 |
__( 'PrettyLinks Integration', 'google-analytics-for-wordpress' ),
|
491 |
|
492 |
// Reference: src/modules/settings/routes/network.js:35
|
|
|
493 |
__( 'About Us', 'google-analytics-for-wordpress' ),
|
494 |
|
495 |
// Reference: src/modules/settings/routes/network.js:43
|
|
|
496 |
__( 'Getting Started', 'google-analytics-for-wordpress' ),
|
497 |
|
498 |
// Reference: src/modules/settings/routes/network.js:52
|
|
|
499 |
__( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
|
500 |
|
501 |
// Reference: src/modules/settings/routes/site.js:172
|
@@ -513,22 +525,22 @@ $generated_i18n_strings = array(
|
|
513 |
// Reference: src/modules/settings/routes/site.js:209
|
514 |
__( 'Sub menu item for WooCommerce Analytics', 'google-analytics-for-wordpress' ),
|
515 |
|
516 |
-
// Reference: src/modules/settings/
|
517 |
__( 'General', 'google-analytics-for-wordpress' ),
|
518 |
|
519 |
-
// Reference: src/modules/settings/
|
520 |
__( 'Engagement', 'google-analytics-for-wordpress' ),
|
521 |
|
522 |
-
// Reference: src/modules/settings/
|
523 |
__( 'eCommerce', 'google-analytics-for-wordpress' ),
|
524 |
|
525 |
-
// Reference: src/modules/settings/
|
526 |
__( 'Publisher', 'google-analytics-for-wordpress' ),
|
527 |
|
528 |
-
// Reference: src/modules/settings/
|
529 |
__( 'Conversions', 'google-analytics-for-wordpress' ),
|
530 |
|
531 |
-
// Reference: src/modules/settings/
|
532 |
__( 'Advanced', 'google-analytics-for-wordpress' ),
|
533 |
|
534 |
// Reference: src/modules/settings/routes/site.js:96
|
@@ -549,7 +561,6 @@ $generated_i18n_strings = array(
|
|
549 |
// Reference: src/modules/reports/components/ReportNoAuth.vue:26
|
550 |
__( 'MonsterInsights makes it "effortless" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard.', 'google-analytics-for-wordpress' ),
|
551 |
|
552 |
-
// Reference: src/modules/reports/components/ReportNoAuth.vue:29
|
553 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:107
|
554 |
__( 'Launch Setup Wizard', 'google-analytics-for-wordpress' ),
|
555 |
|
@@ -566,7 +577,6 @@ $generated_i18n_strings = array(
|
|
566 |
__( 'Search Console', 'google-analytics-for-wordpress' ),
|
567 |
|
568 |
// Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:51
|
569 |
-
// Reference: src/modules/reports/components/reports/monsterinsights-ReportDimensions-Lite.vue:22
|
570 |
__( 'Dimensions', 'google-analytics-for-wordpress' ),
|
571 |
|
572 |
// Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:52
|
@@ -575,7 +585,7 @@ $generated_i18n_strings = array(
|
|
575 |
// Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:49
|
576 |
__( 'Real-Time', 'google-analytics-for-wordpress' ),
|
577 |
|
578 |
-
// Reference: src/modules/reports/components/monsterinsights-
|
579 |
__( 'Site Speed', 'google-analytics-for-wordpress' ),
|
580 |
|
581 |
// Reference: src/modules/reports/routes/index.js:94
|
@@ -588,26 +598,26 @@ $generated_i18n_strings = array(
|
|
588 |
// Reference: src/modules/reports/api/index.js:29
|
589 |
__( 'Error loading report data', 'google-analytics-for-wordpress' ),
|
590 |
|
591 |
-
// Reference: src/
|
592 |
__( 'Publishers Report', 'google-analytics-for-wordpress' ),
|
593 |
|
594 |
-
// Reference: src/modules/reports/
|
|
|
595 |
__( 'eCommerce Report', 'google-analytics-for-wordpress' ),
|
596 |
|
597 |
-
// Reference: src/
|
598 |
__( 'Search Console Report', 'google-analytics-for-wordpress' ),
|
599 |
|
600 |
-
// Reference: src/
|
601 |
__( 'Dimensions Report', 'google-analytics-for-wordpress' ),
|
602 |
|
603 |
-
// Reference: src/
|
604 |
__( 'Forms Report', 'google-analytics-for-wordpress' ),
|
605 |
|
606 |
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:51
|
607 |
-
// Reference: src/modules/reports/routes/index.js:74
|
608 |
__( 'Real-Time Report', 'google-analytics-for-wordpress' ),
|
609 |
|
610 |
-
// Reference: src/
|
611 |
__( 'Site Speed Report', 'google-analytics-for-wordpress' ),
|
612 |
|
613 |
// Reference: src/modules/widget/store/index.js:103
|
@@ -634,27 +644,21 @@ $generated_i18n_strings = array(
|
|
634 |
// Reference: src/modules/widget/store/index.js:128
|
635 |
__( 'This list shows the percentage of carts that never went through the checkout process.', 'google-analytics-for-wordpress' ),
|
636 |
|
637 |
-
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:279
|
638 |
// Reference: src/modules/widget/store/index.js:20
|
639 |
__( 'Top Posts/Pages', 'google-analytics-for-wordpress' ),
|
640 |
|
641 |
-
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:291
|
642 |
// Reference: src/modules/widget/store/index.js:21
|
643 |
__( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-for-wordpress' ),
|
644 |
|
645 |
-
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:273
|
646 |
// Reference: src/modules/widget/store/index.js:27
|
647 |
__( 'New vs. Returning Visitors', 'google-analytics-for-wordpress' ),
|
648 |
|
649 |
-
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:287
|
650 |
// Reference: src/modules/widget/store/index.js:28
|
651 |
__( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-for-wordpress' ),
|
652 |
|
653 |
-
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:274
|
654 |
// Reference: src/modules/widget/store/index.js:34
|
655 |
__( 'Device Breakdown', 'google-analytics-for-wordpress' ),
|
656 |
|
657 |
-
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:288
|
658 |
// Reference: src/modules/widget/store/index.js:35
|
659 |
__( 'This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site.', 'google-analytics-for-wordpress' ),
|
660 |
|
@@ -802,10 +806,10 @@ $generated_i18n_strings = array(
|
|
802 |
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:88
|
803 |
__( 'More advanced features', 'google-analytics-for-wordpress' ),
|
804 |
|
805 |
-
// Reference: src/modules/about/components/monsterinsights-
|
806 |
__( 'Get MonsterInsights Pro Today and Unlock all the Powerful Features', 'google-analytics-for-wordpress' ),
|
807 |
|
808 |
-
// Reference: src/modules/about/components/monsterinsights-
|
809 |
/* Translators: Makes text green. */
|
810 |
__( 'Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout.', 'google-analytics-for-wordpress' ),
|
811 |
|
@@ -833,7 +837,7 @@ $generated_i18n_strings = array(
|
|
833 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:107
|
834 |
__( 'Overview Reports for the last 30 days.', 'google-analytics-for-wordpress' ),
|
835 |
|
836 |
-
// Reference: src/modules/
|
837 |
__( 'Advanced Reports', 'google-analytics-for-wordpress' ),
|
838 |
|
839 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:109
|
@@ -857,7 +861,7 @@ $generated_i18n_strings = array(
|
|
857 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:121
|
858 |
__( 'Headline Analyzer', 'google-analytics-for-wordpress' ),
|
859 |
|
860 |
-
// Reference: src/modules/
|
861 |
__( 'Email Summaries', 'google-analytics-for-wordpress' ),
|
862 |
|
863 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:130
|
@@ -891,6 +895,7 @@ $generated_i18n_strings = array(
|
|
891 |
__( '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.', 'google-analytics-for-wordpress' ),
|
892 |
|
893 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:156
|
|
|
894 |
__( 'Not Available', 'google-analytics-for-wordpress' ),
|
895 |
|
896 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:157
|
@@ -950,7 +955,7 @@ $generated_i18n_strings = array(
|
|
950 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:84
|
951 |
__( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-for-wordpress' ),
|
952 |
|
953 |
-
// Reference: src/modules/
|
954 |
__( 'eCommerce Tracking', 'google-analytics-for-wordpress' ),
|
955 |
|
956 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:91
|
@@ -959,13 +964,13 @@ $generated_i18n_strings = array(
|
|
959 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:92
|
960 |
__( 'Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required', 'google-analytics-for-wordpress' ),
|
961 |
|
962 |
-
// Reference: src/modules/
|
963 |
__( 'Forms Tracking', 'google-analytics-for-wordpress' ),
|
964 |
|
965 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:99
|
966 |
__( 'One-click Form Events Tracking', 'google-analytics-for-wordpress' ),
|
967 |
|
968 |
-
// Reference: src/modules/
|
969 |
__( 'License Key', 'google-analytics-for-wordpress' ),
|
970 |
|
971 |
// Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:56
|
@@ -975,10 +980,10 @@ $generated_i18n_strings = array(
|
|
975 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:101
|
976 |
__( 'Google Authentication', 'google-analytics-for-wordpress' ),
|
977 |
|
978 |
-
// Reference: src/modules/
|
979 |
__( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
|
980 |
|
981 |
-
// Reference: src/modules/
|
982 |
__( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
|
983 |
|
984 |
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:37
|
@@ -1245,6 +1250,7 @@ $generated_i18n_strings = array(
|
|
1245 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:51
|
1246 |
__( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
|
1247 |
|
|
|
1248 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:30
|
1249 |
__( 'Installing...', 'google-analytics-for-wordpress' ),
|
1250 |
|
@@ -1254,7 +1260,6 @@ $generated_i18n_strings = array(
|
|
1254 |
// Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:42
|
1255 |
__( 'Show in full-width mode', 'google-analytics-for-wordpress' ),
|
1256 |
|
1257 |
-
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:383
|
1258 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:56
|
1259 |
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:143
|
1260 |
__( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
|
@@ -1284,7 +1289,7 @@ $generated_i18n_strings = array(
|
|
1284 |
// Reference: src/modules/reports/store/actions.js:220
|
1285 |
__( 'View Addons', 'google-analytics-for-wordpress' ),
|
1286 |
|
1287 |
-
// Reference: src/modules/seo/components/
|
1288 |
__( 'Dismiss', 'google-analytics-for-wordpress' ),
|
1289 |
|
1290 |
// Reference: src/modules/reports/store/actions.js:228
|
@@ -1328,19 +1333,19 @@ $generated_i18n_strings = array(
|
|
1328 |
// Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:32
|
1329 |
__( 'Your Website', 'google-analytics-for-wordpress' ),
|
1330 |
|
1331 |
-
// Reference: src/modules/
|
1332 |
__( 'Sessions', 'google-analytics-for-wordpress' ),
|
1333 |
|
1334 |
-
// Reference: src/modules/
|
1335 |
__( 'Pageviews', 'google-analytics-for-wordpress' ),
|
1336 |
|
1337 |
// Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:35
|
1338 |
__( 'Avg. Duration', 'google-analytics-for-wordpress' ),
|
1339 |
|
1340 |
-
// Reference: src/modules/
|
1341 |
__( 'Bounce Rate', 'google-analytics-for-wordpress' ),
|
1342 |
|
1343 |
-
// Reference: src/modules/
|
1344 |
__( 'Total Users', 'google-analytics-for-wordpress' ),
|
1345 |
|
1346 |
// Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:51
|
@@ -1459,18 +1464,22 @@ $generated_i18n_strings = array(
|
|
1459 |
__( 'Level-up Your eCommerce store with %1$sMonsterInsights + WooCommerce!%1$s', 'google-analytics-for-wordpress' ),
|
1460 |
|
1461 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:108
|
|
|
1462 |
/* Translators: placeholders make text small. */
|
1463 |
__( 'Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s', 'google-analytics-for-wordpress' ),
|
1464 |
|
1465 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:113
|
|
|
1466 |
/* Translators: placeholders make text small. */
|
1467 |
__( 'Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s', 'google-analytics-for-wordpress' ),
|
1468 |
|
1469 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:118
|
|
|
1470 |
/* Translators: placeholders make text small. */
|
1471 |
__( 'None %1$s- Manually update everything.%2$s', 'google-analytics-for-wordpress' ),
|
1472 |
|
1473 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:85
|
|
|
1474 |
__( 'Automatic Updates', 'google-analytics-for-wordpress' ),
|
1475 |
|
1476 |
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:31
|
@@ -1499,31 +1508,31 @@ $generated_i18n_strings = array(
|
|
1499 |
// Reference: src/modules/widget/components/WidgetReportsLink.vue:21
|
1500 |
__( 'Go to the Analytics Dashboard', 'google-analytics-for-wordpress' ),
|
1501 |
|
1502 |
-
// Reference: src/modules/
|
1503 |
-
/* Translators:
|
1504 |
__( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
|
1505 |
|
1506 |
-
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:269
|
1507 |
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:63
|
1508 |
-
|
|
|
1509 |
__( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
|
1510 |
|
1511 |
-
// Reference: src/modules/
|
1512 |
__( 'A session is the browsing session of a single user to your site.', 'google-analytics-for-wordpress' ),
|
1513 |
|
1514 |
-
// Reference: src/modules/
|
1515 |
__( 'A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview.', 'google-analytics-for-wordpress' ),
|
1516 |
|
1517 |
-
// Reference: src/modules/
|
1518 |
__( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-for-wordpress' ),
|
1519 |
|
1520 |
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:89
|
1521 |
__( 'Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further.', 'google-analytics-for-wordpress' ),
|
1522 |
|
1523 |
-
// Reference: src/modules/
|
1524 |
__( 'The number of distinct tracked users', 'google-analytics-for-wordpress' ),
|
1525 |
|
1526 |
-
// Reference: src/modules/
|
1527 |
__( 'Avg. Session Duration', 'google-analytics-for-wordpress' ),
|
1528 |
|
1529 |
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:314
|
@@ -1793,13 +1802,13 @@ $generated_i18n_strings = array(
|
|
1793 |
/* Translators: Number of visitors and device percentage. */
|
1794 |
__( '%1$s% of your visitors were on a %2$s device.', 'google-analytics-for-wordpress' ),
|
1795 |
|
1796 |
-
// Reference: src/modules/reports/components/reports/monsterinsights-
|
1797 |
__( 'Desktop', 'google-analytics-for-wordpress' ),
|
1798 |
|
1799 |
-
// Reference: src/modules/reports/components/reports/monsterinsights-
|
1800 |
__( 'Tablet', 'google-analytics-for-wordpress' ),
|
1801 |
|
1802 |
-
// Reference: src/modules/reports/components/reports/monsterinsights-
|
1803 |
__( 'Mobile', 'google-analytics-for-wordpress' ),
|
1804 |
|
1805 |
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:52
|
@@ -1909,6 +1918,7 @@ $generated_i18n_strings = array(
|
|
1909 |
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:36
|
1910 |
__( 'SEO Score Tracking', 'google-analytics-for-wordpress' ),
|
1911 |
|
|
|
1912 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:26
|
1913 |
__( 'Activating...', 'google-analytics-for-wordpress' ),
|
1914 |
|
@@ -2006,7 +2016,7 @@ $generated_i18n_strings = array(
|
|
2006 |
/* Translators: Error status and error text. */
|
2007 |
__( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
|
2008 |
|
2009 |
-
// Reference: src/modules/
|
2010 |
__( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
|
2011 |
|
2012 |
// Reference: src/modules/auth/api/index.js:232
|
@@ -2158,25 +2168,30 @@ $generated_i18n_strings = array(
|
|
2158 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:141
|
2159 |
__( 'Or manually enter UA code (limited functionality)', 'google-analytics-for-wordpress' ),
|
2160 |
|
2161 |
-
// Reference: src/modules/
|
|
|
2162 |
__( 'Dual Tracking Profile', 'google-analytics-for-wordpress' ),
|
2163 |
|
2164 |
-
// Reference: src/modules/
|
|
|
2165 |
__( '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.', 'google-analytics-for-wordpress' ),
|
2166 |
|
2167 |
-
// Reference: src/modules/wizard-onboarding/components/
|
2168 |
__( 'Your Universal Analytics code should look like UA-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
|
2169 |
|
2170 |
-
// Reference: src/modules/
|
|
|
2171 |
__( '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.', 'google-analytics-for-wordpress' ),
|
2172 |
|
2173 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:120
|
2174 |
__( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
|
2175 |
|
2176 |
-
// Reference: src/modules/
|
|
|
2177 |
__( 'Measurement Protocol API Secret', 'google-analytics-for-wordpress' ),
|
2178 |
|
2179 |
-
// Reference: src/modules/
|
|
|
2180 |
__( '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.', 'google-analytics-for-wordpress' ),
|
2181 |
|
2182 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:169
|
@@ -2185,6 +2200,7 @@ $generated_i18n_strings = array(
|
|
2185 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:169
|
2186 |
__( 'Disconnect MonsterInsights', 'google-analytics-for-wordpress' ),
|
2187 |
|
|
|
2188 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:149
|
2189 |
__( 'Authenticating', 'google-analytics-for-wordpress' ),
|
2190 |
|
@@ -2200,6 +2216,7 @@ $generated_i18n_strings = array(
|
|
2200 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:330
|
2201 |
__( 'You\'ve disconnected your site from MonsterInsights. Your site is no longer being tracked by Google Analytics and you won\'t see reports anymore.', 'google-analytics-for-wordpress' ),
|
2202 |
|
|
|
2203 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:79
|
2204 |
__( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
|
2205 |
|
@@ -2212,19 +2229,22 @@ $generated_i18n_strings = array(
|
|
2212 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:134
|
2213 |
__( 'Active Profile', 'google-analytics-for-wordpress' ),
|
2214 |
|
|
|
2215 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:83
|
2216 |
__( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-for-wordpress' ),
|
2217 |
|
|
|
2218 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:84
|
2219 |
__( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-for-wordpress' ),
|
2220 |
|
2221 |
-
// Reference: src/modules/
|
2222 |
__( 'Manually enter your UA code', 'google-analytics-for-wordpress' ),
|
2223 |
|
2224 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:87
|
2225 |
__( 'Warning: If you use a manual UA code, you won\'t be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
|
2226 |
|
2227 |
-
// Reference: src/modules/
|
|
|
2228 |
__( 'Manually enter your GA4 Measurement ID', 'google-analytics-for-wordpress' ),
|
2229 |
|
2230 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:77
|
@@ -2348,7 +2368,6 @@ $generated_i18n_strings = array(
|
|
2348 |
// Reference: src/modules/widget/components/WidgetTips.vue:73
|
2349 |
__( 'Pro Tip:', 'google-analytics-for-wordpress' ),
|
2350 |
|
2351 |
-
// Reference: src/modules/reports/components/ReportTableBox.vue:69
|
2352 |
// Reference: src/modules/reports/components/monsterinsights-ReportsPagination.vue:29
|
2353 |
__( 'Show', 'google-analytics-for-wordpress' ),
|
2354 |
|
@@ -2373,15 +2392,18 @@ $generated_i18n_strings = array(
|
|
2373 |
// Reference: src/modules/settings/components/SettingsAddonUpgrade.vue:39
|
2374 |
__( 'Upgrade', 'google-analytics-for-wordpress' ),
|
2375 |
|
|
|
2376 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:29
|
2377 |
__( 'Usage Tracking', 'google-analytics-for-wordpress' ),
|
2378 |
|
2379 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:30
|
2380 |
__( 'Allow Usage Tracking', 'google-analytics-for-wordpress' ),
|
2381 |
|
|
|
2382 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:31
|
2383 |
__( 'By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test.', 'google-analytics-for-wordpress' ),
|
2384 |
|
|
|
2385 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:33
|
2386 |
/* Translators: Add links to documentation. */
|
2387 |
__( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
|
@@ -2427,10 +2449,10 @@ $generated_i18n_strings = array(
|
|
2427 |
// Reference: src/modules/seo/components/yoast.vue:167
|
2428 |
__( 'Automatically migrate all of your SEO settings with just 1 click!', 'google-analytics-for-wordpress' ),
|
2429 |
|
2430 |
-
// Reference: src/modules/seo/components/
|
2431 |
__( '1,938', 'google-analytics-for-wordpress' ),
|
2432 |
|
2433 |
-
// Reference: src/modules/seo/components/
|
2434 |
__( '2+ Million Active Installs', 'google-analytics-for-wordpress' ),
|
2435 |
|
2436 |
// Reference: src/modules/seo/components/yoast.vue:172
|
@@ -2439,10 +2461,10 @@ $generated_i18n_strings = array(
|
|
2439 |
// Reference: src/modules/seo/components/yoast.vue:173
|
2440 |
__( 'Set up the proper SEO foundations in less than 10 minutes.', 'google-analytics-for-wordpress' ),
|
2441 |
|
2442 |
-
// Reference: src/modules/seo/components/
|
2443 |
__( 'SEO Audit Checklist', 'google-analytics-for-wordpress' ),
|
2444 |
|
2445 |
-
// Reference: src/modules/seo/components/
|
2446 |
__( 'Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic.', 'google-analytics-for-wordpress' ),
|
2447 |
|
2448 |
// Reference: src/modules/seo/components/yoast.vue:176
|
@@ -2454,37 +2476,37 @@ $generated_i18n_strings = array(
|
|
2454 |
// Reference: src/modules/seo/components/yoast.vue:178
|
2455 |
__( 'Get AIOSEO for WordPress', 'google-analytics-for-wordpress' ),
|
2456 |
|
2457 |
-
// Reference: src/modules/seo/components/
|
2458 |
__( 'Get the #1 Most Powerful WordPress SEO Plugin Today', 'google-analytics-for-wordpress' ),
|
2459 |
|
2460 |
-
// Reference: src/modules/seo/components/
|
2461 |
__( 'Try it out today, for free.', 'google-analytics-for-wordpress' ),
|
2462 |
|
2463 |
-
// Reference: src/modules/seo/components/
|
2464 |
__( 'Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings.', 'google-analytics-for-wordpress' ),
|
2465 |
|
2466 |
-
// Reference: src/modules/seo/components/
|
2467 |
__( 'Activate and Install the Plugin with just one click!', 'google-analytics-for-wordpress' ),
|
2468 |
|
2469 |
// Reference: src/modules/seo/components/yoast.vue:251
|
2470 |
__( 'Installing AIOSEO...', 'google-analytics-for-wordpress' ),
|
2471 |
|
2472 |
-
// Reference: src/modules/seo/components/
|
2473 |
__( 'Congrats! All-in-One SEO Installed.', 'google-analytics-for-wordpress' ),
|
2474 |
|
2475 |
// Reference: src/modules/seo/components/yoast.vue:277
|
2476 |
__( 'Switch to AIOSEO', 'google-analytics-for-wordpress' ),
|
2477 |
|
2478 |
-
// Reference: src/modules/seo/components/
|
2479 |
__( 'Installation Failed. Please refresh and try again.', 'google-analytics-for-wordpress' ),
|
2480 |
|
2481 |
-
// Reference: src/modules/seo/components/
|
2482 |
__( 'Activating AIOSEO...', 'google-analytics-for-wordpress' ),
|
2483 |
|
2484 |
-
// Reference: src/modules/seo/components/
|
2485 |
__( 'Activate AIOSEO', 'google-analytics-for-wordpress' ),
|
2486 |
|
2487 |
-
// Reference: src/modules/seo/components/
|
2488 |
__( 'Activation Failed. Please refresh and try again.', 'google-analytics-for-wordpress' ),
|
2489 |
|
2490 |
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:177
|
@@ -2539,7 +2561,7 @@ $generated_i18n_strings = array(
|
|
2539 |
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:292
|
2540 |
__( 'Export PDF Overview Report', 'google-analytics-for-wordpress' ),
|
2541 |
|
2542 |
-
// Reference: src/modules/settings/components/input/
|
2543 |
__( 'Reset to default', 'google-analytics-for-wordpress' ),
|
2544 |
|
2545 |
// Reference: src/modules/settings/components/input/SettingsInputText.vue:57
|
@@ -2629,7 +2651,7 @@ $generated_i18n_strings = array(
|
|
2629 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:85
|
2630 |
__( 'Whoops, something went wrong and we weren\'t able to connect to MonsterInsights. Please enter your Google UA code manually.', 'google-analytics-for-wordpress' ),
|
2631 |
|
2632 |
-
// Reference: src/modules/wizard-onboarding/components/steps/
|
2633 |
__( 'Save and Continue', 'google-analytics-for-wordpress' ),
|
2634 |
|
2635 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:140
|
@@ -2838,7 +2860,8 @@ $generated_i18n_strings = array(
|
|
2838 |
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:128
|
2839 |
__( 'Choose where in the post body the widget will be placed.', 'google-analytics-for-wordpress' ),
|
2840 |
|
2841 |
-
// Reference: src/modules/popular-posts/components/
|
|
|
2842 |
__( 'Customize Design', 'google-analytics-for-wordpress' ),
|
2843 |
|
2844 |
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:137
|
@@ -2930,8 +2953,7 @@ $generated_i18n_strings = array(
|
|
2930 |
/* Translators: Page number of total pages. 1 & 2 make the first part of the text bold. */
|
2931 |
__( '%1$sPage %3$s%2$s of %4$s', 'google-analytics-for-wordpress' ),
|
2932 |
|
2933 |
-
// Reference: src/modules/popular-posts/components/input/
|
2934 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:67
|
2935 |
__( 'Theme Preview', 'google-analytics-for-wordpress' ),
|
2936 |
|
2937 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:93
|
@@ -2940,25 +2962,25 @@ $generated_i18n_strings = array(
|
|
2940 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:94
|
2941 |
__( 'Narrow', 'google-analytics-for-wordpress' ),
|
2942 |
|
2943 |
-
// Reference: src/modules/popular-posts/components/input/
|
2944 |
__( 'Title', 'google-analytics-for-wordpress' ),
|
2945 |
|
2946 |
-
// Reference: src/modules/popular-posts/components/input/
|
2947 |
__( 'Color', 'google-analytics-for-wordpress' ),
|
2948 |
|
2949 |
-
// Reference: src/modules/popular-posts/components/input/
|
2950 |
__( 'Size', 'google-analytics-for-wordpress' ),
|
2951 |
|
2952 |
-
// Reference: src/modules/popular-posts/components/input/
|
2953 |
__( 'Border', 'google-analytics-for-wordpress' ),
|
2954 |
|
2955 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:185
|
2956 |
__( 'Author/Date', 'google-analytics-for-wordpress' ),
|
2957 |
|
2958 |
-
// Reference: src/modules/popular-posts/components/input/
|
2959 |
__( 'Label', 'google-analytics-for-wordpress' ),
|
2960 |
|
2961 |
-
// Reference: src/modules/popular-posts/components/input/
|
2962 |
__( 'Background', 'google-analytics-for-wordpress' ),
|
2963 |
|
2964 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:188
|
@@ -3001,7 +3023,6 @@ $generated_i18n_strings = array(
|
|
3001 |
__( 'Close', 'google-analytics-for-wordpress' ),
|
3002 |
|
3003 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:31
|
3004 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
|
3005 |
__( 'Add Top 5 Posts from Google Analytics', 'google-analytics-for-wordpress' ),
|
3006 |
|
3007 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:56
|
@@ -3015,7 +3036,6 @@ $generated_i18n_strings = array(
|
|
3015 |
__( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-for-wordpress' ),
|
3016 |
|
3017 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:33
|
3018 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:60
|
3019 |
__( 'Automated + Curated', 'google-analytics-for-wordpress' ),
|
3020 |
|
3021 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:62
|
@@ -3057,15 +3077,12 @@ $generated_i18n_strings = array(
|
|
3057 |
__( 'Indexing completed, counts will update automatically every day.', 'google-analytics-for-wordpress' ),
|
3058 |
|
3059 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:128
|
3060 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:68
|
3061 |
__( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-for-wordpress' ),
|
3062 |
|
3063 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:129
|
3064 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:69
|
3065 |
__( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-for-wordpress' ),
|
3066 |
|
3067 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:136
|
3068 |
-
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:76
|
3069 |
__( 'Icon', 'google-analytics-for-wordpress' ),
|
3070 |
|
3071 |
// Reference: src/modules/settings/components/input/SettingsInputNumber.vue:65
|
@@ -3425,7 +3442,7 @@ $generated_i18n_strings = array(
|
|
3425 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:332
|
3426 |
__( 'Time to Interactive', 'google-analytics-for-wordpress' ),
|
3427 |
|
3428 |
-
// Reference: src/modules/reports/
|
3429 |
__( '2021 Year in Review', 'google-analytics-for-wordpress' ),
|
3430 |
|
3431 |
// Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:53
|
@@ -3517,6 +3534,7 @@ $generated_i18n_strings = array(
|
|
3517 |
// Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:146
|
3518 |
__( 'The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more.', 'google-analytics-for-wordpress' ),
|
3519 |
|
|
|
3520 |
// Reference: src/modules/wizard-onboarding/components/OnboardingAddon-Lite.vue:42
|
3521 |
__( 'OptinMonster', 'google-analytics-for-wordpress' ),
|
3522 |
|
@@ -3629,6 +3647,7 @@ $generated_i18n_strings = array(
|
|
3629 |
__( 'Works automatically with WooCommerce, MemberPress, and EasyDigitalDownloads.', 'google-analytics-for-wordpress' ),
|
3630 |
|
3631 |
// Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputMedia-Lite.vue:22
|
|
|
3632 |
__( 'Media Tracking', 'google-analytics-for-wordpress' ),
|
3633 |
|
3634 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:34
|
@@ -3743,10 +3762,10 @@ $generated_i18n_strings = array(
|
|
3743 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:110
|
3744 |
__( 'Warning: If you use a manual GA4 Measurement ID, you won\'t be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
|
3745 |
|
3746 |
-
// Reference: src/modules/wizard-onboarding/components/
|
3747 |
__( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
|
3748 |
|
3749 |
-
// Reference: src/modules/wizard-onboarding/components/
|
3750 |
__( 'Warning: If you use a manual GA4 Measurement ID, you won\'t be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
|
3751 |
|
3752 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:140
|
@@ -3842,10 +3861,12 @@ $generated_i18n_strings = array(
|
|
3842 |
__( 'Oops! Something went wrong and we weren\'t able to connect to MonsterInsights. Please enter your Google UA code manually.', 'google-analytics-for-wordpress' ),
|
3843 |
|
3844 |
// Reference: src/modules/popular-posts/api/index.js:44
|
3845 |
-
|
|
|
3846 |
__( 'Can\'t save settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance.', 'google-analytics-for-wordpress' ),
|
3847 |
|
3848 |
// Reference: src/modules/popular-posts/api/index.js:49
|
|
|
3849 |
/* Translators: Support link tag starts with url and support link tag ends. */
|
3850 |
__( 'Oops! There was an error, your settings were not saved. Please try again in a few minutes. If the issue persists, please %1$scontact our support%2$s team.', 'google-analytics-for-wordpress' ),
|
3851 |
|
@@ -4026,7 +4047,8 @@ $generated_i18n_strings = array(
|
|
4026 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:154
|
4027 |
__( 'Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
|
4028 |
|
4029 |
-
// Reference: src/modules/reports/
|
|
|
4030 |
__( 'Media Report', 'google-analytics-for-wordpress' ),
|
4031 |
|
4032 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:337
|
7 |
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:130
|
8 |
__( '2', 'google-analytics-for-wordpress' ),
|
9 |
|
10 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:336
|
11 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:194
|
12 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:225
|
13 |
// Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:17
|
14 |
__( 'Error', 'google-analytics-for-wordpress' ),
|
15 |
|
19 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:355
|
20 |
__( 'Today', 'google-analytics-for-wordpress' ),
|
21 |
|
22 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:99
|
23 |
__( 'Yesterday', 'google-analytics-for-wordpress' ),
|
24 |
|
25 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:367
|
245 |
// Reference: src/modules/frontend/monsterinsights-frontend.vue:38
|
246 |
__( 'Insights', 'google-analytics-for-wordpress' ),
|
247 |
|
|
|
|
|
248 |
// Reference: src/modules/widget/store/index.js:14
|
249 |
__( 'Overview Report', 'google-analytics-for-wordpress' ),
|
250 |
|
251 |
+
// Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:43
|
252 |
__( 'Welcome to MonsterInsights', 'google-analytics-for-wordpress' ),
|
253 |
|
254 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:134
|
272 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:140
|
273 |
__( 'See All Features', 'google-analytics-for-wordpress' ),
|
274 |
|
275 |
+
// Reference: src/modules/frontend/components/FrontendUpsell-Lite.vue:11
|
276 |
+
// Reference: src/modules/reports/components/monsterinsights-ReportsPdfExport-Lite.vue:50
|
277 |
__( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
|
278 |
|
279 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:142
|
280 |
__( 'per year', 'google-analytics-for-wordpress' ),
|
281 |
|
282 |
+
// Reference: src/modules/addons/components/AddonButton.vue:30
|
283 |
+
// Reference: src/modules/addons/monsterinsights-addons-Lite.vue:80
|
284 |
__( 'Upgrade Now', 'google-analytics-for-wordpress' ),
|
285 |
|
286 |
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:144
|
337 |
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:34
|
338 |
__( 'Form Conversions', 'google-analytics-for-wordpress' ),
|
339 |
|
340 |
+
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:153
|
341 |
__( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
|
342 |
|
343 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:278
|
395 |
// Reference: src/modules/reports/components/ReportReAuth.vue:20
|
396 |
__( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-for-wordpress' ),
|
397 |
|
398 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:132
|
399 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:80
|
400 |
__( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
|
401 |
|
402 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:252
|
403 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:178
|
404 |
__( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
|
405 |
|
406 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:338
|
407 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:196
|
408 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:345
|
409 |
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:232
|
410 |
__( 'Ok', 'google-analytics-for-wordpress' ),
|
411 |
|
428 |
/* Translators: Placeholder is replaced with WPForms. */
|
429 |
__( 'Recommended Plugin: %s', 'google-analytics-for-wordpress' ),
|
430 |
|
431 |
+
// Reference: src/modules/addons/components/AddonButton.vue:54
|
432 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:42
|
433 |
__( 'Install', 'google-analytics-for-wordpress' ),
|
434 |
|
435 |
+
// Reference: src/modules/addons/components/AddonButton.vue:50
|
436 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:38
|
437 |
__( 'Activate', 'google-analytics-for-wordpress' ),
|
438 |
|
439 |
+
// Reference: src/modules/widget/components/WidgetFooter.vue:22
|
440 |
__( 'Learn More', 'google-analytics-for-wordpress' ),
|
441 |
|
442 |
// Reference: src/modules/frontend/components/FrontendPoweredBy.vue:12
|
499 |
__( 'PrettyLinks Integration', 'google-analytics-for-wordpress' ),
|
500 |
|
501 |
// Reference: src/modules/settings/routes/network.js:35
|
502 |
+
// Reference: src/modules/settings/routes/site.js:134
|
503 |
__( 'About Us', 'google-analytics-for-wordpress' ),
|
504 |
|
505 |
// Reference: src/modules/settings/routes/network.js:43
|
506 |
+
// Reference: src/modules/settings/routes/site.js:142
|
507 |
__( 'Getting Started', 'google-analytics-for-wordpress' ),
|
508 |
|
509 |
// Reference: src/modules/settings/routes/network.js:52
|
510 |
+
// Reference: src/modules/settings/routes/site.js:151
|
511 |
__( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
|
512 |
|
513 |
// Reference: src/modules/settings/routes/site.js:172
|
525 |
// Reference: src/modules/settings/routes/site.js:209
|
526 |
__( 'Sub menu item for WooCommerce Analytics', 'google-analytics-for-wordpress' ),
|
527 |
|
528 |
+
// Reference: src/modules/settings/routes/site.js:39
|
529 |
__( 'General', 'google-analytics-for-wordpress' ),
|
530 |
|
531 |
+
// Reference: src/modules/settings/routes/site.js:47
|
532 |
__( 'Engagement', 'google-analytics-for-wordpress' ),
|
533 |
|
534 |
+
// Reference: src/modules/settings/routes/site.js:55
|
535 |
__( 'eCommerce', 'google-analytics-for-wordpress' ),
|
536 |
|
537 |
+
// Reference: src/modules/settings/routes/site.js:63
|
538 |
__( 'Publisher', 'google-analytics-for-wordpress' ),
|
539 |
|
540 |
+
// Reference: src/modules/settings/routes/site.js:71
|
541 |
__( 'Conversions', 'google-analytics-for-wordpress' ),
|
542 |
|
543 |
+
// Reference: src/modules/settings/routes/site.js:79
|
544 |
__( 'Advanced', 'google-analytics-for-wordpress' ),
|
545 |
|
546 |
// Reference: src/modules/settings/routes/site.js:96
|
561 |
// Reference: src/modules/reports/components/ReportNoAuth.vue:26
|
562 |
__( 'MonsterInsights makes it "effortless" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard.', 'google-analytics-for-wordpress' ),
|
563 |
|
|
|
564 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:107
|
565 |
__( 'Launch Setup Wizard', 'google-analytics-for-wordpress' ),
|
566 |
|
577 |
__( 'Search Console', 'google-analytics-for-wordpress' ),
|
578 |
|
579 |
// Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:51
|
|
|
580 |
__( 'Dimensions', 'google-analytics-for-wordpress' ),
|
581 |
|
582 |
// Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:52
|
585 |
// Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:49
|
586 |
__( 'Real-Time', 'google-analytics-for-wordpress' ),
|
587 |
|
588 |
+
// Reference: src/modules/reports/components/reports/monsterinsights-SiteSpeed-Lite.vue:23
|
589 |
__( 'Site Speed', 'google-analytics-for-wordpress' ),
|
590 |
|
591 |
// Reference: src/modules/reports/routes/index.js:94
|
598 |
// Reference: src/modules/reports/api/index.js:29
|
599 |
__( 'Error loading report data', 'google-analytics-for-wordpress' ),
|
600 |
|
601 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:249
|
602 |
__( 'Publishers Report', 'google-analytics-for-wordpress' ),
|
603 |
|
604 |
+
// Reference: src/modules/reports/components/reports/monsterinsights-ReportEcommerce-Lite.vue:23
|
605 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:261
|
606 |
__( 'eCommerce Report', 'google-analytics-for-wordpress' ),
|
607 |
|
608 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:299
|
609 |
__( 'Search Console Report', 'google-analytics-for-wordpress' ),
|
610 |
|
611 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:275
|
612 |
__( 'Dimensions Report', 'google-analytics-for-wordpress' ),
|
613 |
|
614 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:289
|
615 |
__( 'Forms Report', 'google-analytics-for-wordpress' ),
|
616 |
|
617 |
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:51
|
|
|
618 |
__( 'Real-Time Report', 'google-analytics-for-wordpress' ),
|
619 |
|
620 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:322
|
621 |
__( 'Site Speed Report', 'google-analytics-for-wordpress' ),
|
622 |
|
623 |
// Reference: src/modules/widget/store/index.js:103
|
644 |
// Reference: src/modules/widget/store/index.js:128
|
645 |
__( 'This list shows the percentage of carts that never went through the checkout process.', 'google-analytics-for-wordpress' ),
|
646 |
|
|
|
647 |
// Reference: src/modules/widget/store/index.js:20
|
648 |
__( 'Top Posts/Pages', 'google-analytics-for-wordpress' ),
|
649 |
|
|
|
650 |
// Reference: src/modules/widget/store/index.js:21
|
651 |
__( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-for-wordpress' ),
|
652 |
|
|
|
653 |
// Reference: src/modules/widget/store/index.js:27
|
654 |
__( 'New vs. Returning Visitors', 'google-analytics-for-wordpress' ),
|
655 |
|
|
|
656 |
// Reference: src/modules/widget/store/index.js:28
|
657 |
__( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-for-wordpress' ),
|
658 |
|
|
|
659 |
// Reference: src/modules/widget/store/index.js:34
|
660 |
__( 'Device Breakdown', 'google-analytics-for-wordpress' ),
|
661 |
|
|
|
662 |
// Reference: src/modules/widget/store/index.js:35
|
663 |
__( 'This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site.', 'google-analytics-for-wordpress' ),
|
664 |
|
806 |
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:88
|
807 |
__( 'More advanced features', 'google-analytics-for-wordpress' ),
|
808 |
|
809 |
+
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:57
|
810 |
__( 'Get MonsterInsights Pro Today and Unlock all the Powerful Features', 'google-analytics-for-wordpress' ),
|
811 |
|
812 |
+
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:59
|
813 |
/* Translators: Makes text green. */
|
814 |
__( 'Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout.', 'google-analytics-for-wordpress' ),
|
815 |
|
837 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:107
|
838 |
__( 'Overview Reports for the last 30 days.', 'google-analytics-for-wordpress' ),
|
839 |
|
840 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:153
|
841 |
__( 'Advanced Reports', 'google-analytics-for-wordpress' ),
|
842 |
|
843 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:109
|
861 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:121
|
862 |
__( 'Headline Analyzer', 'google-analytics-for-wordpress' ),
|
863 |
|
864 |
+
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:71
|
865 |
__( 'Email Summaries', 'google-analytics-for-wordpress' ),
|
866 |
|
867 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:130
|
895 |
__( '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.', 'google-analytics-for-wordpress' ),
|
896 |
|
897 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:156
|
898 |
+
// Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:116
|
899 |
__( 'Not Available', 'google-analytics-for-wordpress' ),
|
900 |
|
901 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:157
|
955 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:84
|
956 |
__( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-for-wordpress' ),
|
957 |
|
958 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:164
|
959 |
__( 'eCommerce Tracking', 'google-analytics-for-wordpress' ),
|
960 |
|
961 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:91
|
964 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:92
|
965 |
__( 'Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required', 'google-analytics-for-wordpress' ),
|
966 |
|
967 |
+
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:95
|
968 |
__( 'Forms Tracking', 'google-analytics-for-wordpress' ),
|
969 |
|
970 |
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:99
|
971 |
__( 'One-click Form Events Tracking', 'google-analytics-for-wordpress' ),
|
972 |
|
973 |
+
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:100
|
974 |
__( 'License Key', 'google-analytics-for-wordpress' ),
|
975 |
|
976 |
// Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:56
|
980 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:101
|
981 |
__( 'Google Authentication', 'google-analytics-for-wordpress' ),
|
982 |
|
983 |
+
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:102
|
984 |
__( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
|
985 |
|
986 |
+
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:103
|
987 |
__( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
|
988 |
|
989 |
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:37
|
1250 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:51
|
1251 |
__( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
|
1252 |
|
1253 |
+
// Reference: src/modules/addons/components/AddonButton.vue:42
|
1254 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:30
|
1255 |
__( 'Installing...', 'google-analytics-for-wordpress' ),
|
1256 |
|
1260 |
// Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:42
|
1261 |
__( 'Show in full-width mode', 'google-analytics-for-wordpress' ),
|
1262 |
|
|
|
1263 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:56
|
1264 |
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:143
|
1265 |
__( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
|
1289 |
// Reference: src/modules/reports/store/actions.js:220
|
1290 |
__( 'View Addons', 'google-analytics-for-wordpress' ),
|
1291 |
|
1292 |
+
// Reference: src/modules/seo/components/yoast.vue:266
|
1293 |
__( 'Dismiss', 'google-analytics-for-wordpress' ),
|
1294 |
|
1295 |
// Reference: src/modules/reports/store/actions.js:228
|
1333 |
// Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:32
|
1334 |
__( 'Your Website', 'google-analytics-for-wordpress' ),
|
1335 |
|
1336 |
+
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:80
|
1337 |
__( 'Sessions', 'google-analytics-for-wordpress' ),
|
1338 |
|
1339 |
+
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:83
|
1340 |
__( 'Pageviews', 'google-analytics-for-wordpress' ),
|
1341 |
|
1342 |
// Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:35
|
1343 |
__( 'Avg. Duration', 'google-analytics-for-wordpress' ),
|
1344 |
|
1345 |
+
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:92
|
1346 |
__( 'Bounce Rate', 'google-analytics-for-wordpress' ),
|
1347 |
|
1348 |
+
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:93
|
1349 |
__( 'Total Users', 'google-analytics-for-wordpress' ),
|
1350 |
|
1351 |
// Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:51
|
1464 |
__( 'Level-up Your eCommerce store with %1$sMonsterInsights + WooCommerce!%1$s', 'google-analytics-for-wordpress' ),
|
1465 |
|
1466 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:108
|
1467 |
+
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:87
|
1468 |
/* Translators: placeholders make text small. */
|
1469 |
__( 'Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s', 'google-analytics-for-wordpress' ),
|
1470 |
|
1471 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:113
|
1472 |
+
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:92
|
1473 |
/* Translators: placeholders make text small. */
|
1474 |
__( 'Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s', 'google-analytics-for-wordpress' ),
|
1475 |
|
1476 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:118
|
1477 |
+
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:97
|
1478 |
/* Translators: placeholders make text small. */
|
1479 |
__( 'None %1$s- Manually update everything.%2$s', 'google-analytics-for-wordpress' ),
|
1480 |
|
1481 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:85
|
1482 |
+
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:104
|
1483 |
__( 'Automatic Updates', 'google-analytics-for-wordpress' ),
|
1484 |
|
1485 |
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:31
|
1508 |
// Reference: src/modules/widget/components/WidgetReportsLink.vue:21
|
1509 |
__( 'Go to the Analytics Dashboard', 'google-analytics-for-wordpress' ),
|
1510 |
|
1511 |
+
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:82
|
1512 |
+
/* Translators: Line break. */
|
1513 |
__( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
|
1514 |
|
|
|
1515 |
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:63
|
1516 |
+
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:85
|
1517 |
+
/* Translators: Line break. */
|
1518 |
__( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
|
1519 |
|
1520 |
+
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:86
|
1521 |
__( 'A session is the browsing session of a single user to your site.', 'google-analytics-for-wordpress' ),
|
1522 |
|
1523 |
+
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:87
|
1524 |
__( 'A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview.', 'google-analytics-for-wordpress' ),
|
1525 |
|
1526 |
+
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:88
|
1527 |
__( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-for-wordpress' ),
|
1528 |
|
1529 |
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:89
|
1530 |
__( 'Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further.', 'google-analytics-for-wordpress' ),
|
1531 |
|
1532 |
+
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:90
|
1533 |
__( 'The number of distinct tracked users', 'google-analytics-for-wordpress' ),
|
1534 |
|
1535 |
+
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:91
|
1536 |
__( 'Avg. Session Duration', 'google-analytics-for-wordpress' ),
|
1537 |
|
1538 |
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:314
|
1802 |
/* Translators: Number of visitors and device percentage. */
|
1803 |
__( '%1$s% of your visitors were on a %2$s device.', 'google-analytics-for-wordpress' ),
|
1804 |
|
1805 |
+
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:560
|
1806 |
__( 'Desktop', 'google-analytics-for-wordpress' ),
|
1807 |
|
1808 |
+
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:561
|
1809 |
__( 'Tablet', 'google-analytics-for-wordpress' ),
|
1810 |
|
1811 |
+
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:562
|
1812 |
__( 'Mobile', 'google-analytics-for-wordpress' ),
|
1813 |
|
1814 |
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:52
|
1918 |
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:36
|
1919 |
__( 'SEO Score Tracking', 'google-analytics-for-wordpress' ),
|
1920 |
|
1921 |
+
// Reference: src/modules/addons/components/AddonButton.vue:34
|
1922 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:26
|
1923 |
__( 'Activating...', 'google-analytics-for-wordpress' ),
|
1924 |
|
2016 |
/* Translators: Error status and error text. */
|
2017 |
__( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
|
2018 |
|
2019 |
+
// Reference: src/modules/wizard-onboarding/api/index.js:22
|
2020 |
__( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
|
2021 |
|
2022 |
// Reference: src/modules/auth/api/index.js:232
|
2168 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:141
|
2169 |
__( 'Or manually enter UA code (limited functionality)', 'google-analytics-for-wordpress' ),
|
2170 |
|
2171 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:142
|
2172 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:88
|
2173 |
__( 'Dual Tracking Profile', 'google-analytics-for-wordpress' ),
|
2174 |
|
2175 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:144
|
2176 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:90
|
2177 |
__( '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.', 'google-analytics-for-wordpress' ),
|
2178 |
|
2179 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:94
|
2180 |
__( 'Your Universal Analytics code should look like UA-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
|
2181 |
|
2182 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:150
|
2183 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:96
|
2184 |
__( '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.', 'google-analytics-for-wordpress' ),
|
2185 |
|
2186 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:120
|
2187 |
__( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
|
2188 |
|
2189 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:155
|
2190 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:101
|
2191 |
__( 'Measurement Protocol API Secret', 'google-analytics-for-wordpress' ),
|
2192 |
|
2193 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:157
|
2194 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:103
|
2195 |
__( '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.', 'google-analytics-for-wordpress' ),
|
2196 |
|
2197 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:169
|
2200 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:169
|
2201 |
__( 'Disconnect MonsterInsights', 'google-analytics-for-wordpress' ),
|
2202 |
|
2203 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:225
|
2204 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:149
|
2205 |
__( 'Authenticating', 'google-analytics-for-wordpress' ),
|
2206 |
|
2216 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:330
|
2217 |
__( 'You\'ve disconnected your site from MonsterInsights. Your site is no longer being tracked by Google Analytics and you won\'t see reports anymore.', 'google-analytics-for-wordpress' ),
|
2218 |
|
2219 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:130
|
2220 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:79
|
2221 |
__( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
|
2222 |
|
2229 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:134
|
2230 |
__( 'Active Profile', 'google-analytics-for-wordpress' ),
|
2231 |
|
2232 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:135
|
2233 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:83
|
2234 |
__( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-for-wordpress' ),
|
2235 |
|
2236 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:136
|
2237 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:84
|
2238 |
__( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-for-wordpress' ),
|
2239 |
|
2240 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:137
|
2241 |
__( 'Manually enter your UA code', 'google-analytics-for-wordpress' ),
|
2242 |
|
2243 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:87
|
2244 |
__( 'Warning: If you use a manual UA code, you won\'t be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
|
2245 |
|
2246 |
+
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:139
|
2247 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:86
|
2248 |
__( 'Manually enter your GA4 Measurement ID', 'google-analytics-for-wordpress' ),
|
2249 |
|
2250 |
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:77
|
2368 |
// Reference: src/modules/widget/components/WidgetTips.vue:73
|
2369 |
__( 'Pro Tip:', 'google-analytics-for-wordpress' ),
|
2370 |
|
|
|
2371 |
// Reference: src/modules/reports/components/monsterinsights-ReportsPagination.vue:29
|
2372 |
__( 'Show', 'google-analytics-for-wordpress' ),
|
2373 |
|
2392 |
// Reference: src/modules/settings/components/SettingsAddonUpgrade.vue:39
|
2393 |
__( 'Upgrade', 'google-analytics-for-wordpress' ),
|
2394 |
|
2395 |
+
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:41
|
2396 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:29
|
2397 |
__( 'Usage Tracking', 'google-analytics-for-wordpress' ),
|
2398 |
|
2399 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:30
|
2400 |
__( 'Allow Usage Tracking', 'google-analytics-for-wordpress' ),
|
2401 |
|
2402 |
+
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:42
|
2403 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:31
|
2404 |
__( 'By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test.', 'google-analytics-for-wordpress' ),
|
2405 |
|
2406 |
+
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:45
|
2407 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:33
|
2408 |
/* Translators: Add links to documentation. */
|
2409 |
__( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
|
2449 |
// Reference: src/modules/seo/components/yoast.vue:167
|
2450 |
__( 'Automatically migrate all of your SEO settings with just 1 click!', 'google-analytics-for-wordpress' ),
|
2451 |
|
2452 |
+
// Reference: src/modules/seo/components/yoast.vue:168
|
2453 |
__( '1,938', 'google-analytics-for-wordpress' ),
|
2454 |
|
2455 |
+
// Reference: src/modules/seo/components/yoast.vue:169
|
2456 |
__( '2+ Million Active Installs', 'google-analytics-for-wordpress' ),
|
2457 |
|
2458 |
// Reference: src/modules/seo/components/yoast.vue:172
|
2461 |
// Reference: src/modules/seo/components/yoast.vue:173
|
2462 |
__( 'Set up the proper SEO foundations in less than 10 minutes.', 'google-analytics-for-wordpress' ),
|
2463 |
|
2464 |
+
// Reference: src/modules/seo/components/yoast.vue:174
|
2465 |
__( 'SEO Audit Checklist', 'google-analytics-for-wordpress' ),
|
2466 |
|
2467 |
+
// Reference: src/modules/seo/components/yoast.vue:175
|
2468 |
__( 'Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic.', 'google-analytics-for-wordpress' ),
|
2469 |
|
2470 |
// Reference: src/modules/seo/components/yoast.vue:176
|
2476 |
// Reference: src/modules/seo/components/yoast.vue:178
|
2477 |
__( 'Get AIOSEO for WordPress', 'google-analytics-for-wordpress' ),
|
2478 |
|
2479 |
+
// Reference: src/modules/seo/components/yoast.vue:181
|
2480 |
__( 'Get the #1 Most Powerful WordPress SEO Plugin Today', 'google-analytics-for-wordpress' ),
|
2481 |
|
2482 |
+
// Reference: src/modules/seo/components/yoast.vue:182
|
2483 |
__( 'Try it out today, for free.', 'google-analytics-for-wordpress' ),
|
2484 |
|
2485 |
+
// Reference: src/modules/seo/components/yoast.vue:185
|
2486 |
__( 'Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings.', 'google-analytics-for-wordpress' ),
|
2487 |
|
2488 |
+
// Reference: src/modules/seo/components/yoast.vue:186
|
2489 |
__( 'Activate and Install the Plugin with just one click!', 'google-analytics-for-wordpress' ),
|
2490 |
|
2491 |
// Reference: src/modules/seo/components/yoast.vue:251
|
2492 |
__( 'Installing AIOSEO...', 'google-analytics-for-wordpress' ),
|
2493 |
|
2494 |
+
// Reference: src/modules/seo/components/yoast.vue:260
|
2495 |
__( 'Congrats! All-in-One SEO Installed.', 'google-analytics-for-wordpress' ),
|
2496 |
|
2497 |
// Reference: src/modules/seo/components/yoast.vue:277
|
2498 |
__( 'Switch to AIOSEO', 'google-analytics-for-wordpress' ),
|
2499 |
|
2500 |
+
// Reference: src/modules/seo/components/yoast.vue:281
|
2501 |
__( 'Installation Failed. Please refresh and try again.', 'google-analytics-for-wordpress' ),
|
2502 |
|
2503 |
+
// Reference: src/modules/seo/components/yoast.vue:288
|
2504 |
__( 'Activating AIOSEO...', 'google-analytics-for-wordpress' ),
|
2505 |
|
2506 |
+
// Reference: src/modules/seo/components/yoast.vue:295
|
2507 |
__( 'Activate AIOSEO', 'google-analytics-for-wordpress' ),
|
2508 |
|
2509 |
+
// Reference: src/modules/seo/components/yoast.vue:299
|
2510 |
__( 'Activation Failed. Please refresh and try again.', 'google-analytics-for-wordpress' ),
|
2511 |
|
2512 |
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:177
|
2561 |
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:292
|
2562 |
__( 'Export PDF Overview Report', 'google-analytics-for-wordpress' ),
|
2563 |
|
2564 |
+
// Reference: src/modules/settings/components/input/SettingsInputText.vue:56
|
2565 |
__( 'Reset to default', 'google-analytics-for-wordpress' ),
|
2566 |
|
2567 |
// Reference: src/modules/settings/components/input/SettingsInputText.vue:57
|
2651 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:85
|
2652 |
__( 'Whoops, something went wrong and we weren\'t able to connect to MonsterInsights. Please enter your Google UA code manually.', 'google-analytics-for-wordpress' ),
|
2653 |
|
2654 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:41
|
2655 |
__( 'Save and Continue', 'google-analytics-for-wordpress' ),
|
2656 |
|
2657 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:140
|
2860 |
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:128
|
2861 |
__( 'Choose where in the post body the widget will be placed.', 'google-analytics-for-wordpress' ),
|
2862 |
|
2863 |
+
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:135
|
2864 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:137
|
2865 |
__( 'Customize Design', 'google-analytics-for-wordpress' ),
|
2866 |
|
2867 |
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:137
|
2953 |
/* Translators: Page number of total pages. 1 & 2 make the first part of the text bold. */
|
2954 |
__( '%1$sPage %3$s%2$s of %4$s', 'google-analytics-for-wordpress' ),
|
2955 |
|
2956 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:92
|
|
|
2957 |
__( 'Theme Preview', 'google-analytics-for-wordpress' ),
|
2958 |
|
2959 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:93
|
2962 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:94
|
2963 |
__( 'Narrow', 'google-analytics-for-wordpress' ),
|
2964 |
|
2965 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:132
|
2966 |
__( 'Title', 'google-analytics-for-wordpress' ),
|
2967 |
|
2968 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:130
|
2969 |
__( 'Color', 'google-analytics-for-wordpress' ),
|
2970 |
|
2971 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:131
|
2972 |
__( 'Size', 'google-analytics-for-wordpress' ),
|
2973 |
|
2974 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:135
|
2975 |
__( 'Border', 'google-analytics-for-wordpress' ),
|
2976 |
|
2977 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:185
|
2978 |
__( 'Author/Date', 'google-analytics-for-wordpress' ),
|
2979 |
|
2980 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:133
|
2981 |
__( 'Label', 'google-analytics-for-wordpress' ),
|
2982 |
|
2983 |
+
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:134
|
2984 |
__( 'Background', 'google-analytics-for-wordpress' ),
|
2985 |
|
2986 |
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:188
|
3023 |
__( 'Close', 'google-analytics-for-wordpress' ),
|
3024 |
|
3025 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:31
|
|
|
3026 |
__( 'Add Top 5 Posts from Google Analytics', 'google-analytics-for-wordpress' ),
|
3027 |
|
3028 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:56
|
3036 |
__( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-for-wordpress' ),
|
3037 |
|
3038 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:33
|
|
|
3039 |
__( 'Automated + Curated', 'google-analytics-for-wordpress' ),
|
3040 |
|
3041 |
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:62
|
3077 |
__( 'Indexing completed, counts will update automatically every day.', 'google-analytics-for-wordpress' ),
|
3078 |
|
3079 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:128
|
|
|
3080 |
__( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-for-wordpress' ),
|
3081 |
|
3082 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:129
|
|
|
3083 |
__( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-for-wordpress' ),
|
3084 |
|
3085 |
// Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:136
|
|
|
3086 |
__( 'Icon', 'google-analytics-for-wordpress' ),
|
3087 |
|
3088 |
// Reference: src/modules/settings/components/input/SettingsInputNumber.vue:65
|
3442 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:332
|
3443 |
__( 'Time to Interactive', 'google-analytics-for-wordpress' ),
|
3444 |
|
3445 |
+
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:318
|
3446 |
__( '2021 Year in Review', 'google-analytics-for-wordpress' ),
|
3447 |
|
3448 |
// Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:53
|
3534 |
// Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:146
|
3535 |
__( 'The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more.', 'google-analytics-for-wordpress' ),
|
3536 |
|
3537 |
+
// Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:157
|
3538 |
// Reference: src/modules/wizard-onboarding/components/OnboardingAddon-Lite.vue:42
|
3539 |
__( 'OptinMonster', 'google-analytics-for-wordpress' ),
|
3540 |
|
3647 |
__( 'Works automatically with WooCommerce, MemberPress, and EasyDigitalDownloads.', 'google-analytics-for-wordpress' ),
|
3648 |
|
3649 |
// Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputMedia-Lite.vue:22
|
3650 |
+
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:197
|
3651 |
__( 'Media Tracking', 'google-analytics-for-wordpress' ),
|
3652 |
|
3653 |
// Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:34
|
3762 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:110
|
3763 |
__( 'Warning: If you use a manual GA4 Measurement ID, you won\'t be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
|
3764 |
|
3765 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:100
|
3766 |
__( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
|
3767 |
|
3768 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:87
|
3769 |
__( 'Warning: If you use a manual GA4 Measurement ID, you won\'t be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
|
3770 |
|
3771 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:140
|
3861 |
__( 'Oops! Something went wrong and we weren\'t able to connect to MonsterInsights. Please enter your Google UA code manually.', 'google-analytics-for-wordpress' ),
|
3862 |
|
3863 |
// Reference: src/modules/popular-posts/api/index.js:44
|
3864 |
+
// Reference: src/modules/settings/api/index.js:81
|
3865 |
+
/* Translators: Error status and error text, Support link tag starts with url and support link tag ends. */
|
3866 |
__( 'Can\'t save settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance.', 'google-analytics-for-wordpress' ),
|
3867 |
|
3868 |
// Reference: src/modules/popular-posts/api/index.js:49
|
3869 |
+
// Reference: src/modules/settings/api/index.js:86
|
3870 |
/* Translators: Support link tag starts with url and support link tag ends. */
|
3871 |
__( 'Oops! There was an error, your settings were not saved. Please try again in a few minutes. If the issue persists, please %1$scontact our support%2$s team.', 'google-analytics-for-wordpress' ),
|
3872 |
|
4047 |
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:154
|
4048 |
__( 'Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
|
4049 |
|
4050 |
+
// Reference: src/modules/reports/components/reports/monsterinsights-ReportMedia-Lite.vue:47
|
4051 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:336
|
4052 |
__( 'Media Report', 'google-analytics-for-wordpress' ),
|
4053 |
|
4054 |
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:337
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.wpbeginner.com/wpbeginner-needs-your-help/
|
|
4 |
Tags: WordPress analytics, google analytics, google analytics dashboard, google analytics widget, WooCommerce stats, analytics dashboard, universal google analytics, statistics, tracking, stats, google, google analytics by yoast, ga, monster insights, monsterinsights, universal analytics, web stats, ecommerce, ecommerce tracking
|
5 |
Requires at least: 4.8.0
|
6 |
Tested up to: 6.1
|
7 |
-
Stable tag: 8.10.
|
8 |
Requires PHP: 5.6
|
9 |
License: GPL v3
|
10 |
|
@@ -298,6 +298,9 @@ You can also learn about other <a href="http://www.wpbeginner.com/category/plugi
|
|
298 |
4. Want more features? <a href="https://www.monsterinsights.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Purchase MonsterInsights Pro</a>!
|
299 |
|
300 |
== Changelog ==
|
|
|
|
|
|
|
301 |
= 8.10.0: Nov 07, 2022 =
|
302 |
- New: We created a new Media report available right inside WordPress Admin dashboard to view video plays and engagement
|
303 |
- New: We added file download support for Pretty Links
|
4 |
Tags: WordPress analytics, google analytics, google analytics dashboard, google analytics widget, WooCommerce stats, analytics dashboard, universal google analytics, statistics, tracking, stats, google, google analytics by yoast, ga, monster insights, monsterinsights, universal analytics, web stats, ecommerce, ecommerce tracking
|
5 |
Requires at least: 4.8.0
|
6 |
Tested up to: 6.1
|
7 |
+
Stable tag: 8.10.1
|
8 |
Requires PHP: 5.6
|
9 |
License: GPL v3
|
10 |
|
298 |
4. Want more features? <a href="https://www.monsterinsights.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Purchase MonsterInsights Pro</a>!
|
299 |
|
300 |
== Changelog ==
|
301 |
+
= 8.10.1: Nov 09, 2022 =
|
302 |
+
- Fix: We fixed a bug in our auto-update logic when it encounters double digit version numbers.
|
303 |
+
|
304 |
= 8.10.0: Nov 07, 2022 =
|
305 |
- New: We created a new Media report available right inside WordPress Admin dashboard to view video plays and engagement
|
306 |
- New: We added file download support for Pretty Links
|