Google Analytics Dashboard for WP (GADWP) - Version 7.8.1

Version Description

Download this release

Release Info

Developer manejaam
Plugin Icon 128x128 Google Analytics Dashboard for WP (GADWP)
Version 7.8.1
Comparing to
See all releases

Code changes from version 7.8.0 to 7.8.1

gadwp.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: https://exactmetrics.com
5
  * Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
6
  * Author: ExactMetrics
7
- * Version: 7.8.0
8
  * Requires at least: 4.8.0
9
  * Requires PHP: 5.5
10
  * Author URI: https://exactmetrics.com
@@ -44,7 +44,7 @@ final class ExactMetrics_Lite {
44
  * @access public
45
  * @var string $version Plugin version.
46
  */
47
- public $version = '7.8.0';
48
 
49
  /**
50
  * Plugin file.
@@ -331,6 +331,10 @@ final class ExactMetrics_Lite {
331
  define( 'EXACTMETRICS_VERSION', $this->version );
332
  }
333
 
 
 
 
 
334
  if ( ! defined( 'EXACTMETRICS_LITE_VERSION' ) ) {
335
  define( 'EXACTMETRICS_LITE_VERSION', EXACTMETRICS_VERSION );
336
  }
4
  * Plugin URI: https://exactmetrics.com
5
  * Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
6
  * Author: ExactMetrics
7
+ * Version: 7.8.1
8
  * Requires at least: 4.8.0
9
  * Requires PHP: 5.5
10
  * Author URI: https://exactmetrics.com
44
  * @access public
45
  * @var string $version Plugin version.
46
  */
47
+ public $version = '7.8.1';
48
 
49
  /**
50
  * Plugin file.
331
  define( 'EXACTMETRICS_VERSION', $this->version );
332
  }
333
 
334
+ if ( ! defined( 'EXACTMETRICS_VERSION' ) ) {
335
+ define( 'EXACTMETRICS_VERSION', $this->version );
336
+ }
337
+
338
  if ( ! defined( 'EXACTMETRICS_LITE_VERSION' ) ) {
339
  define( 'EXACTMETRICS_LITE_VERSION', EXACTMETRICS_VERSION );
340
  }
includes/helpers.php CHANGED
@@ -128,6 +128,27 @@ function exactmetrics_get_uuid() {
128
  }
129
  }
130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
131
 
132
  /**
133
  * Generate UUID v4 function - needed to generate a CID when one isn't available
128
  }
129
  }
130
 
131
+ /**
132
+ * Gets GA Session Id (GA4 only) from cookies.
133
+ *
134
+ * @var string $measurement_id
135
+ * GA4 Measurement Id (Property Id). E.g., 'G-1YS1VWHG3V'.
136
+ *
137
+ * @return int
138
+ * Returns GA4 Session Id or NULL if cookie wasn't found.
139
+ */
140
+ function exactmetrics_get_browser_session_id($measurement_id) {
141
+ // Cookie name example: '_ga_1YS1VWHG3V'.
142
+ $cookie_name = '_ga_' . str_replace('G-', '', $measurement_id);
143
+ if (isset($_COOKIE[$cookie_name])) {
144
+ // Cookie value example: 'GS1.1.1659710029.4.1.1659710504.0'.
145
+ // Session Id: ^^^^^^^^^^.
146
+ $parts = explode('.', $_COOKIE[$cookie_name]);
147
+ return $parts[2];
148
+ }
149
+
150
+ return null;
151
+ }
152
 
153
  /**
154
  * Generate UUID v4 function - needed to generate a CID when one isn't available
includes/measurement-protocol-v4.php CHANGED
@@ -160,6 +160,8 @@ class ExactMetrics_Measurement_Protocol_V4 {
160
  return;
161
  }
162
 
 
 
163
  $defaults = array(
164
  'client_id' => $this->get_client_id( $args ),
165
  'events' => array(),
@@ -167,11 +169,17 @@ class ExactMetrics_Measurement_Protocol_V4 {
167
 
168
  $body = $this->validate_args( $args, $defaults );
169
 
170
- if ( $this->is_debug ) {
171
- foreach ( $body['events'] as $index => $event ) {
172
- $body['events'][ $index ]['params']['debug_mode'] = true;
173
- }
174
- }
 
 
 
 
 
 
175
 
176
  $body = apply_filters( 'exactmetrics_mp_v4_api_call', $body );
177
 
160
  return;
161
  }
162
 
163
+ $session_id = exactmetrics_get_browser_session_id( $this->measurement_id );
164
+
165
  $defaults = array(
166
  'client_id' => $this->get_client_id( $args ),
167
  'events' => array(),
169
 
170
  $body = $this->validate_args( $args, $defaults );
171
 
172
+ foreach ( $body['events'] as $index => $event ) {
173
+
174
+ // Provide a default session id if not set already.
175
+ if ( !empty( $session_id ) && empty( $body['events'][$index]['params']['session_id'] ) ) {
176
+ $body['events'][$index]['params']['session_id'] = $session_id;
177
+ }
178
+
179
+ if ( $this->is_debug ) {
180
+ $body['events'][ $index ]['params']['debug_mode'] = true;
181
+ }
182
+ }
183
 
184
  $body = apply_filters( 'exactmetrics_mp_v4_api_call', $body );
185
 
languages/google-analytics-dashboard-for-wp.pot CHANGED
@@ -2,20 +2,20 @@
2
  # This file is distributed under the same license as the ExactMetrics Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: ExactMetrics Pro 7.8.0\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-08-22T16:38:41+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-dashboard-for-wp\n"
16
 
17
  #. Plugin Name of the plugin
18
- #: languages/vue.php:3473
19
  msgid "ExactMetrics Pro"
20
  msgstr ""
21
 
@@ -105,7 +105,7 @@ msgid "Cheatin&#8217; huh?"
105
  msgstr ""
106
 
107
  #. Translators: Adds a link to the plugins page.
108
- #: exactmetrics.php:422
109
  #: googleanalytics.php:444
110
  msgid "Please %1$suninstall%2$s the ExactMetrics Lite Plugin. Your Pro version of ExactMetrics may not work as expected until the Lite version is uninstalled."
111
  msgstr ""
@@ -113,7 +113,7 @@ msgstr ""
113
  #: includes/admin/admin.php:34
114
  #: includes/admin/admin.php:42
115
  #: includes/admin/admin.php:230
116
- #: languages/vue.php:534
117
  msgid "Settings"
118
  msgstr ""
119
 
@@ -129,7 +129,7 @@ msgstr ""
129
 
130
  #: includes/admin/admin.php:39
131
  #: includes/admin/admin.php:131
132
- #: languages/vue.php:2295
133
  msgid "Reports"
134
  msgstr ""
135
 
@@ -139,7 +139,7 @@ msgstr ""
139
 
140
  #: includes/admin/admin.php:51
141
  #: languages/gutenberg.php:83
142
- #: languages/vue.php:995
143
  msgid "Popular Posts"
144
  msgstr ""
145
 
@@ -173,7 +173,7 @@ msgstr ""
173
 
174
  #: includes/admin/admin.php:71
175
  #: includes/admin/admin.php:147
176
- #: languages/vue.php:156
177
  msgid "About Us"
178
  msgstr ""
179
 
@@ -192,7 +192,7 @@ msgstr ""
192
  #: includes/admin/admin.php:76
193
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
194
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
195
- #: languages/vue.php:1043
196
  msgid "Upgrade to Pro"
197
  msgstr ""
198
 
@@ -220,7 +220,7 @@ msgstr ""
220
 
221
  #: includes/admin/admin.php:220
222
  #: includes/admin/admin.php:223
223
- #: languages/vue.php:1019
224
  msgid "Support"
225
  msgstr ""
226
 
@@ -232,7 +232,7 @@ msgstr ""
232
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
233
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:31
234
  #: includes/admin/reports/abstract-report.php:452
235
- #: languages/vue.php:1150
236
  msgid "Get ExactMetrics Pro"
237
  msgstr ""
238
 
@@ -243,13 +243,13 @@ msgstr ""
243
 
244
  #: includes/admin/admin.php:334
245
  #: includes/admin/admin.php:501
246
- #: languages/vue.php:1141
247
  msgid "Please Setup Website Analytics to See Audience Insights"
248
  msgstr ""
249
 
250
  #: includes/admin/admin.php:335
251
  #: includes/admin/admin.php:502
252
- #: languages/vue.php:1147
253
  msgid "Connect ExactMetrics and Setup Website Analytics"
254
  msgstr ""
255
 
@@ -264,13 +264,13 @@ msgstr ""
264
  #: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
265
  #: includes/admin/notifications/notification-returning-visitors.php:43
266
  #: includes/admin/notifications/notification-traffic-dropping.php:43
267
- #: languages/vue.php:329
268
  msgid "Learn More"
269
  msgstr ""
270
 
271
  #: includes/admin/admin.php:339
272
  #: includes/admin/admin.php:506
273
- #: languages/vue.php:1144
274
  msgid "ExactMetrics, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 3 million website owners use ExactMetrics to see the stats that matter and grow their business."
275
  msgstr ""
276
 
@@ -283,7 +283,7 @@ msgstr ""
283
  #. Translators: Adds a link to the license renewal.
284
  #: includes/admin/admin.php:362
285
  #: includes/admin/admin.php:529
286
- #: languages/vue.php:470
287
  msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
288
  msgstr ""
289
 
@@ -294,7 +294,7 @@ msgstr ""
294
  #: includes/admin/admin.php:366
295
  #: includes/admin/admin.php:533
296
  #: includes/admin/api-auth.php:303
297
- #: languages/vue.php:476
298
  msgid "Your license key for ExactMetrics is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
299
  msgstr ""
300
 
@@ -343,7 +343,7 @@ msgid "Click %1$shere%2$s to reauthenticate to be able to access reports. For mo
343
  msgstr ""
344
 
345
  #: includes/admin/admin.php:531
346
- #: languages/vue.php:473
347
  msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
348
  msgstr ""
349
 
@@ -510,7 +510,7 @@ msgid "View 2021 Year in Review report!"
510
  msgstr ""
511
 
512
  #: includes/admin/common.php:951
513
- #: languages/vue.php:3318
514
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
515
  msgstr ""
516
 
@@ -531,7 +531,7 @@ msgstr ""
531
 
532
  #: includes/admin/exclude-page-metabox.php:144
533
  #: languages/gutenberg.php:354
534
- #: languages/vue.php:3110
535
  msgid "Upgrade"
536
  msgstr ""
537
 
@@ -728,7 +728,7 @@ msgstr ""
728
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:25
729
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:25
730
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:25
731
- #: languages/vue.php:1730
732
  #: lite/includes/admin/helpers.php:85
733
  msgid "Upgrade to ExactMetrics Pro"
734
  msgstr ""
@@ -764,7 +764,7 @@ msgstr ""
764
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
765
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
766
  #: includes/admin/reports/abstract-report.php:449
767
- #: languages/vue.php:224
768
  msgid "Upgrade Now"
769
  msgstr ""
770
 
@@ -942,7 +942,7 @@ msgid "Please ask your webmaster to enable this addon."
942
  msgstr ""
943
 
944
  #: includes/admin/reports/overview.php:34
945
- #: languages/vue.php:432
946
  msgid "Overview"
947
  msgstr ""
948
 
@@ -1043,7 +1043,7 @@ msgid "ThirstyAffiliates is a revolution in affiliate link management. Collect,
1043
  msgstr ""
1044
 
1045
  #: includes/admin/routes.php:533
1046
- #: languages/vue.php:3671
1047
  msgid "Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required."
1048
  msgstr ""
1049
 
@@ -1495,7 +1495,7 @@ msgid "Question"
1495
  msgstr ""
1496
 
1497
  #: includes/gutenberg/headline-tool/headline-tool.php:304
1498
- #: languages/vue.php:540
1499
  msgid "General"
1500
  msgstr ""
1501
 
@@ -3720,1101 +3720,1101 @@ msgstr ""
3720
  msgid "something"
3721
  msgstr ""
3722
 
3723
- #: includes/helpers.php:393
3724
  msgid "United States"
3725
  msgstr ""
3726
 
3727
- #: includes/helpers.php:394
3728
- #: includes/helpers.php:1840
3729
  msgid "Canada"
3730
  msgstr ""
3731
 
3732
- #: includes/helpers.php:395
3733
- #: includes/helpers.php:1885
3734
  msgid "United Kingdom"
3735
  msgstr ""
3736
 
3737
- #: includes/helpers.php:396
3738
  msgid "Afghanistan"
3739
  msgstr ""
3740
 
3741
- #: includes/helpers.php:397
3742
  msgid "&#197;land Islands"
3743
  msgstr ""
3744
 
3745
- #: includes/helpers.php:398
3746
  msgid "Albania"
3747
  msgstr ""
3748
 
3749
- #: includes/helpers.php:399
3750
  msgid "Algeria"
3751
  msgstr ""
3752
 
3753
- #: includes/helpers.php:400
3754
  msgid "American Samoa"
3755
  msgstr ""
3756
 
3757
- #: includes/helpers.php:401
3758
  msgid "Andorra"
3759
  msgstr ""
3760
 
3761
- #: includes/helpers.php:402
3762
  msgid "Angola"
3763
  msgstr ""
3764
 
3765
- #: includes/helpers.php:403
3766
  msgid "Anguilla"
3767
  msgstr ""
3768
 
3769
- #: includes/helpers.php:404
3770
  msgid "Antarctica"
3771
  msgstr ""
3772
 
3773
- #: includes/helpers.php:405
3774
- #: includes/helpers.php:1833
3775
  msgid "Antigua and Barbuda"
3776
  msgstr ""
3777
 
3778
- #: includes/helpers.php:406
3779
  msgid "Argentina"
3780
  msgstr ""
3781
 
3782
- #: includes/helpers.php:407
3783
  msgid "Armenia"
3784
  msgstr ""
3785
 
3786
- #: includes/helpers.php:408
3787
  msgid "Aruba"
3788
  msgstr ""
3789
 
3790
- #: includes/helpers.php:409
3791
- #: includes/helpers.php:1834
3792
  msgid "Australia"
3793
  msgstr ""
3794
 
3795
- #: includes/helpers.php:410
3796
  msgid "Austria"
3797
  msgstr ""
3798
 
3799
- #: includes/helpers.php:411
3800
  msgid "Azerbaijan"
3801
  msgstr ""
3802
 
3803
- #: includes/helpers.php:412
3804
  msgid "Bahamas"
3805
  msgstr ""
3806
 
3807
- #: includes/helpers.php:413
3808
  msgid "Bahrain"
3809
  msgstr ""
3810
 
3811
- #: includes/helpers.php:414
3812
  msgid "Bangladesh"
3813
  msgstr ""
3814
 
3815
- #: includes/helpers.php:415
3816
- #: includes/helpers.php:1835
3817
  msgid "Barbados"
3818
  msgstr ""
3819
 
3820
- #: includes/helpers.php:416
3821
  msgid "Belarus"
3822
  msgstr ""
3823
 
3824
- #: includes/helpers.php:417
3825
  msgid "Belgium"
3826
  msgstr ""
3827
 
3828
- #: includes/helpers.php:418
3829
- #: includes/helpers.php:1836
3830
  msgid "Belize"
3831
  msgstr ""
3832
 
3833
- #: includes/helpers.php:419
3834
  msgid "Benin"
3835
  msgstr ""
3836
 
3837
- #: includes/helpers.php:420
3838
  msgid "Bermuda"
3839
  msgstr ""
3840
 
3841
- #: includes/helpers.php:421
3842
  msgid "Bhutan"
3843
  msgstr ""
3844
 
3845
- #: includes/helpers.php:422
3846
  msgid "Bolivia"
3847
  msgstr ""
3848
 
3849
- #: includes/helpers.php:423
3850
  msgid "Bonaire, Saint Eustatius and Saba"
3851
  msgstr ""
3852
 
3853
- #: includes/helpers.php:424
3854
  msgid "Bosnia and Herzegovina"
3855
  msgstr ""
3856
 
3857
- #: includes/helpers.php:425
3858
- #: includes/helpers.php:1837
3859
  msgid "Botswana"
3860
  msgstr ""
3861
 
3862
- #: includes/helpers.php:426
3863
  msgid "Bouvet Island"
3864
  msgstr ""
3865
 
3866
- #: includes/helpers.php:427
3867
  msgid "Brazil"
3868
  msgstr ""
3869
 
3870
- #: includes/helpers.php:428
3871
  msgid "British Indian Ocean Territory"
3872
  msgstr ""
3873
 
3874
- #: includes/helpers.php:429
3875
  msgid "Brunei Darrussalam"
3876
  msgstr ""
3877
 
3878
- #: includes/helpers.php:430
3879
  msgid "Bulgaria"
3880
  msgstr ""
3881
 
3882
- #: includes/helpers.php:431
3883
  msgid "Burkina Faso"
3884
  msgstr ""
3885
 
3886
- #: includes/helpers.php:432
3887
- #: includes/helpers.php:1838
3888
  msgid "Burundi"
3889
  msgstr ""
3890
 
3891
- #: includes/helpers.php:433
3892
  msgid "Cambodia"
3893
  msgstr ""
3894
 
3895
- #: includes/helpers.php:434
3896
- #: includes/helpers.php:1839
3897
  msgid "Cameroon"
3898
  msgstr ""
3899
 
3900
- #: includes/helpers.php:435
3901
  msgid "Cape Verde"
3902
  msgstr ""
3903
 
3904
- #: includes/helpers.php:436
3905
  msgid "Cayman Islands"
3906
  msgstr ""
3907
 
3908
- #: includes/helpers.php:437
3909
  msgid "Central African Republic"
3910
  msgstr ""
3911
 
3912
- #: includes/helpers.php:438
3913
  msgid "Chad"
3914
  msgstr ""
3915
 
3916
- #: includes/helpers.php:439
3917
  msgid "Chile"
3918
  msgstr ""
3919
 
3920
- #: includes/helpers.php:440
3921
  msgid "China"
3922
  msgstr ""
3923
 
3924
- #: includes/helpers.php:441
3925
  msgid "Christmas Island"
3926
  msgstr ""
3927
 
3928
- #: includes/helpers.php:442
3929
  msgid "Cocos Islands"
3930
  msgstr ""
3931
 
3932
- #: includes/helpers.php:443
3933
  msgid "Colombia"
3934
  msgstr ""
3935
 
3936
- #: includes/helpers.php:444
3937
  msgid "Comoros"
3938
  msgstr ""
3939
 
3940
- #: includes/helpers.php:445
3941
  msgid "Congo, Democratic People's Republic"
3942
  msgstr ""
3943
 
3944
- #: includes/helpers.php:446
3945
  msgid "Congo, Republic of"
3946
  msgstr ""
3947
 
3948
- #: includes/helpers.php:447
3949
  msgid "Cook Islands"
3950
  msgstr ""
3951
 
3952
- #: includes/helpers.php:448
3953
  msgid "Costa Rica"
3954
  msgstr ""
3955
 
3956
- #: includes/helpers.php:449
3957
  msgid "Cote d'Ivoire"
3958
  msgstr ""
3959
 
3960
- #: includes/helpers.php:450
3961
  msgid "Croatia/Hrvatska"
3962
  msgstr ""
3963
 
3964
- #: includes/helpers.php:451
3965
  msgid "Cuba"
3966
  msgstr ""
3967
 
3968
- #: includes/helpers.php:452
3969
  msgid "Cura&Ccedil;ao"
3970
  msgstr ""
3971
 
3972
- #: includes/helpers.php:453
3973
  msgid "Cyprus"
3974
  msgstr ""
3975
 
3976
- #: includes/helpers.php:454
3977
  msgid "Czechia"
3978
  msgstr ""
3979
 
3980
- #: includes/helpers.php:455
3981
  msgid "Denmark"
3982
  msgstr ""
3983
 
3984
- #: includes/helpers.php:456
3985
  msgid "Djibouti"
3986
  msgstr ""
3987
 
3988
- #: includes/helpers.php:457
3989
- #: includes/helpers.php:1841
3990
  msgid "Dominica"
3991
  msgstr ""
3992
 
3993
- #: includes/helpers.php:458
3994
  msgid "Dominican Republic"
3995
  msgstr ""
3996
 
3997
- #: includes/helpers.php:459
3998
  msgid "East Timor"
3999
  msgstr ""
4000
 
4001
- #: includes/helpers.php:460
4002
  msgid "Ecuador"
4003
  msgstr ""
4004
 
4005
- #: includes/helpers.php:461
4006
  msgid "Egypt"
4007
  msgstr ""
4008
 
4009
- #: includes/helpers.php:462
4010
  msgid "Equatorial Guinea"
4011
  msgstr ""
4012
 
4013
- #: includes/helpers.php:463
4014
  msgid "El Salvador"
4015
  msgstr ""
4016
 
4017
- #: includes/helpers.php:464
4018
  msgid "Eritrea"
4019
  msgstr ""
4020
 
4021
- #: includes/helpers.php:465
4022
  msgid "Estonia"
4023
  msgstr ""
4024
 
4025
- #: includes/helpers.php:466
4026
  msgid "Ethiopia"
4027
  msgstr ""
4028
 
4029
- #: includes/helpers.php:467
4030
  msgid "Falkland Islands"
4031
  msgstr ""
4032
 
4033
- #: includes/helpers.php:468
4034
  msgid "Faroe Islands"
4035
  msgstr ""
4036
 
4037
- #: includes/helpers.php:469
4038
- #: includes/helpers.php:1842
4039
  msgid "Fiji"
4040
  msgstr ""
4041
 
4042
- #: includes/helpers.php:470
4043
  msgid "Finland"
4044
  msgstr ""
4045
 
4046
- #: includes/helpers.php:471
4047
  msgid "France"
4048
  msgstr ""
4049
 
4050
- #: includes/helpers.php:472
4051
  msgid "French Guiana"
4052
  msgstr ""
4053
 
4054
- #: includes/helpers.php:473
4055
  msgid "French Polynesia"
4056
  msgstr ""
4057
 
4058
- #: includes/helpers.php:474
4059
  msgid "French Southern Territories"
4060
  msgstr ""
4061
 
4062
- #: includes/helpers.php:475
4063
  msgid "Gabon"
4064
  msgstr ""
4065
 
4066
- #: includes/helpers.php:476
4067
- #: includes/helpers.php:1845
4068
  msgid "Gambia"
4069
  msgstr ""
4070
 
4071
- #: includes/helpers.php:477
4072
  msgid "Georgia"
4073
  msgstr ""
4074
 
4075
- #: includes/helpers.php:478
4076
  msgid "Germany"
4077
  msgstr ""
4078
 
4079
- #: includes/helpers.php:479
4080
  msgid "Greece"
4081
  msgstr ""
4082
 
4083
- #: includes/helpers.php:480
4084
- #: includes/helpers.php:1846
4085
  msgid "Ghana"
4086
  msgstr ""
4087
 
4088
- #: includes/helpers.php:481
4089
  msgid "Gibraltar"
4090
  msgstr ""
4091
 
4092
- #: includes/helpers.php:482
4093
  msgid "Greenland"
4094
  msgstr ""
4095
 
4096
- #: includes/helpers.php:483
4097
- #: includes/helpers.php:1843
4098
  msgid "Grenada"
4099
  msgstr ""
4100
 
4101
- #: includes/helpers.php:484
4102
  msgid "Guadeloupe"
4103
  msgstr ""
4104
 
4105
- #: includes/helpers.php:485
4106
  msgid "Guam"
4107
  msgstr ""
4108
 
4109
- #: includes/helpers.php:486
4110
  msgid "Guatemala"
4111
  msgstr ""
4112
 
4113
- #: includes/helpers.php:487
4114
  msgid "Guernsey"
4115
  msgstr ""
4116
 
4117
- #: includes/helpers.php:488
4118
  msgid "Guinea"
4119
  msgstr ""
4120
 
4121
- #: includes/helpers.php:489
4122
  msgid "Guinea-Bissau"
4123
  msgstr ""
4124
 
4125
- #: includes/helpers.php:490
4126
- #: includes/helpers.php:1844
4127
  msgid "Guyana"
4128
  msgstr ""
4129
 
4130
- #: includes/helpers.php:491
4131
  msgid "Haiti"
4132
  msgstr ""
4133
 
4134
- #: includes/helpers.php:492
4135
  msgid "Heard and McDonald Islands"
4136
  msgstr ""
4137
 
4138
- #: includes/helpers.php:493
4139
  msgid "Holy See (City Vatican State)"
4140
  msgstr ""
4141
 
4142
- #: includes/helpers.php:494
4143
  msgid "Honduras"
4144
  msgstr ""
4145
 
4146
- #: includes/helpers.php:495
4147
  msgid "Hong Kong"
4148
  msgstr ""
4149
 
4150
- #: includes/helpers.php:496
4151
  msgid "Hungary"
4152
  msgstr ""
4153
 
4154
- #: includes/helpers.php:497
4155
  msgid "Iceland"
4156
  msgstr ""
4157
 
4158
- #: includes/helpers.php:498
4159
- #: includes/helpers.php:1848
4160
  msgid "India"
4161
  msgstr ""
4162
 
4163
- #: includes/helpers.php:499
4164
  msgid "Indonesia"
4165
  msgstr ""
4166
 
4167
- #: includes/helpers.php:500
4168
  msgid "Iran"
4169
  msgstr ""
4170
 
4171
- #: includes/helpers.php:501
4172
  msgid "Iraq"
4173
  msgstr ""
4174
 
4175
- #: includes/helpers.php:502
4176
- #: includes/helpers.php:1847
4177
  msgid "Ireland"
4178
  msgstr ""
4179
 
4180
- #: includes/helpers.php:503
4181
  msgid "Isle of Man"
4182
  msgstr ""
4183
 
4184
- #: includes/helpers.php:504
4185
  msgid "Israel"
4186
  msgstr ""
4187
 
4188
- #: includes/helpers.php:505
4189
  msgid "Italy"
4190
  msgstr ""
4191
 
4192
- #: includes/helpers.php:506
4193
- #: includes/helpers.php:1849
4194
  msgid "Jamaica"
4195
  msgstr ""
4196
 
4197
- #: includes/helpers.php:507
4198
  msgid "Japan"
4199
  msgstr ""
4200
 
4201
- #: includes/helpers.php:508
4202
  msgid "Jersey"
4203
  msgstr ""
4204
 
4205
- #: includes/helpers.php:509
4206
  msgid "Jordan"
4207
  msgstr ""
4208
 
4209
- #: includes/helpers.php:510
4210
  msgid "Kazakhstan"
4211
  msgstr ""
4212
 
4213
- #: includes/helpers.php:511
4214
- #: includes/helpers.php:1850
4215
  msgid "Kenya"
4216
  msgstr ""
4217
 
4218
- #: includes/helpers.php:512
4219
- #: includes/helpers.php:1851
4220
  msgid "Kiribati"
4221
  msgstr ""
4222
 
4223
- #: includes/helpers.php:513
4224
  msgid "Kuwait"
4225
  msgstr ""
4226
 
4227
- #: includes/helpers.php:514
4228
  msgid "Kyrgyzstan"
4229
  msgstr ""
4230
 
4231
- #: includes/helpers.php:515
4232
  msgid "Lao People's Democratic Republic"
4233
  msgstr ""
4234
 
4235
- #: includes/helpers.php:516
4236
  msgid "Latvia"
4237
  msgstr ""
4238
 
4239
- #: includes/helpers.php:517
4240
  msgid "Lebanon"
4241
  msgstr ""
4242
 
4243
- #: includes/helpers.php:518
4244
- #: includes/helpers.php:1852
4245
  msgid "Lesotho"
4246
  msgstr ""
4247
 
4248
- #: includes/helpers.php:519
4249
- #: includes/helpers.php:1853
4250
  msgid "Liberia"
4251
  msgstr ""
4252
 
4253
- #: includes/helpers.php:520
4254
  msgid "Libyan Arab Jamahiriya"
4255
  msgstr ""
4256
 
4257
- #: includes/helpers.php:521
4258
  msgid "Liechtenstein"
4259
  msgstr ""
4260
 
4261
- #: includes/helpers.php:522
4262
  msgid "Lithuania"
4263
  msgstr ""
4264
 
4265
- #: includes/helpers.php:523
4266
  msgid "Luxembourg"
4267
  msgstr ""
4268
 
4269
- #: includes/helpers.php:524
4270
  msgid "Macau"
4271
  msgstr ""
4272
 
4273
- #: includes/helpers.php:525
4274
  msgid "Macedonia (FYROM)"
4275
  msgstr ""
4276
 
4277
- #: includes/helpers.php:526
4278
  msgid "Madagascar"
4279
  msgstr ""
4280
 
4281
- #: includes/helpers.php:527
4282
- #: includes/helpers.php:1854
4283
  msgid "Malawi"
4284
  msgstr ""
4285
 
4286
- #: includes/helpers.php:528
4287
  msgid "Malaysia"
4288
  msgstr ""
4289
 
4290
- #: includes/helpers.php:529
4291
  msgid "Maldives"
4292
  msgstr ""
4293
 
4294
- #: includes/helpers.php:530
4295
  msgid "Mali"
4296
  msgstr ""
4297
 
4298
- #: includes/helpers.php:531
4299
- #: includes/helpers.php:1855
4300
  msgid "Malta"
4301
  msgstr ""
4302
 
4303
- #: includes/helpers.php:532
4304
- #: includes/helpers.php:1856
4305
  msgid "Marshall Islands"
4306
  msgstr ""
4307
 
4308
- #: includes/helpers.php:533
4309
  msgid "Martinique"
4310
  msgstr ""
4311
 
4312
- #: includes/helpers.php:534
4313
  msgid "Mauritania"
4314
  msgstr ""
4315
 
4316
- #: includes/helpers.php:535
4317
- #: includes/helpers.php:1857
4318
  msgid "Mauritius"
4319
  msgstr ""
4320
 
4321
- #: includes/helpers.php:536
4322
  msgid "Mayotte"
4323
  msgstr ""
4324
 
4325
- #: includes/helpers.php:537
4326
  msgid "Mexico"
4327
  msgstr ""
4328
 
4329
- #: includes/helpers.php:538
4330
- #: includes/helpers.php:1858
4331
  msgid "Micronesia"
4332
  msgstr ""
4333
 
4334
- #: includes/helpers.php:539
4335
  msgid "Moldova, Republic of"
4336
  msgstr ""
4337
 
4338
- #: includes/helpers.php:540
4339
  msgid "Monaco"
4340
  msgstr ""
4341
 
4342
- #: includes/helpers.php:541
4343
  msgid "Mongolia"
4344
  msgstr ""
4345
 
4346
- #: includes/helpers.php:542
4347
  msgid "Montenegro"
4348
  msgstr ""
4349
 
4350
- #: includes/helpers.php:543
4351
  msgid "Montserrat"
4352
  msgstr ""
4353
 
4354
- #: includes/helpers.php:544
4355
  msgid "Morocco"
4356
  msgstr ""
4357
 
4358
- #: includes/helpers.php:545
4359
  msgid "Mozambique"
4360
  msgstr ""
4361
 
4362
- #: includes/helpers.php:546
4363
  msgid "Myanmar"
4364
  msgstr ""
4365
 
4366
- #: includes/helpers.php:547
4367
- #: includes/helpers.php:1860
4368
  msgid "Namibia"
4369
  msgstr ""
4370
 
4371
- #: includes/helpers.php:548
4372
- #: includes/helpers.php:1861
4373
  msgid "Nauru"
4374
  msgstr ""
4375
 
4376
- #: includes/helpers.php:549
4377
  msgid "Nepal"
4378
  msgstr ""
4379
 
4380
- #: includes/helpers.php:550
4381
  msgid "Netherlands"
4382
  msgstr ""
4383
 
4384
- #: includes/helpers.php:551
4385
  msgid "Netherlands Antilles"
4386
  msgstr ""
4387
 
4388
- #: includes/helpers.php:552
4389
  msgid "New Caledonia"
4390
  msgstr ""
4391
 
4392
- #: includes/helpers.php:553
4393
- #: includes/helpers.php:1859
4394
  msgid "New Zealand"
4395
  msgstr ""
4396
 
4397
- #: includes/helpers.php:554
4398
  msgid "Nicaragua"
4399
  msgstr ""
4400
 
4401
- #: includes/helpers.php:555
4402
  msgid "Niger"
4403
  msgstr ""
4404
 
4405
- #: includes/helpers.php:556
4406
- #: includes/helpers.php:1862
4407
  msgid "Nigeria"
4408
  msgstr ""
4409
 
4410
- #: includes/helpers.php:557
4411
  msgid "Niue"
4412
  msgstr ""
4413
 
4414
- #: includes/helpers.php:558
4415
  msgid "Norfolk Island"
4416
  msgstr ""
4417
 
4418
- #: includes/helpers.php:559
4419
  msgid "North Korea"
4420
  msgstr ""
4421
 
4422
- #: includes/helpers.php:560
4423
  msgid "Northern Mariana Islands"
4424
  msgstr ""
4425
 
4426
- #: includes/helpers.php:561
4427
  msgid "Norway"
4428
  msgstr ""
4429
 
4430
- #: includes/helpers.php:562
4431
  msgid "Oman"
4432
  msgstr ""
4433
 
4434
- #: includes/helpers.php:563
4435
- #: includes/helpers.php:1863
4436
  msgid "Pakistan"
4437
  msgstr ""
4438
 
4439
- #: includes/helpers.php:564
4440
- #: includes/helpers.php:1864
4441
  msgid "Palau"
4442
  msgstr ""
4443
 
4444
- #: includes/helpers.php:565
4445
  msgid "Palestinian Territories"
4446
  msgstr ""
4447
 
4448
- #: includes/helpers.php:566
4449
  msgid "Panama"
4450
  msgstr ""
4451
 
4452
- #: includes/helpers.php:567
4453
- #: includes/helpers.php:1865
4454
  msgid "Papua New Guinea"
4455
  msgstr ""
4456
 
4457
- #: includes/helpers.php:568
4458
  msgid "Paraguay"
4459
  msgstr ""
4460
 
4461
- #: includes/helpers.php:569
4462
  msgid "Peru"
4463
  msgstr ""
4464
 
4465
- #: includes/helpers.php:570
4466
- #: includes/helpers.php:1866
4467
  msgid "Philippines"
4468
  msgstr ""
4469
 
4470
- #: includes/helpers.php:571
4471
  msgid "Pitcairn Island"
4472
  msgstr ""
4473
 
4474
- #: includes/helpers.php:572
4475
  msgid "Poland"
4476
  msgstr ""
4477
 
4478
- #: includes/helpers.php:573
4479
  msgid "Portugal"
4480
  msgstr ""
4481
 
4482
- #: includes/helpers.php:574
4483
  msgid "Puerto Rico"
4484
  msgstr ""
4485
 
4486
- #: includes/helpers.php:575
4487
  msgid "Qatar"
4488
  msgstr ""
4489
 
4490
- #: includes/helpers.php:576
4491
  msgid "Republic of Kosovo"
4492
  msgstr ""
4493
 
4494
- #: includes/helpers.php:577
4495
  msgid "Reunion Island"
4496
  msgstr ""
4497
 
4498
- #: includes/helpers.php:578
4499
  msgid "Romania"
4500
  msgstr ""
4501
 
4502
- #: includes/helpers.php:579
4503
  msgid "Russian Federation"
4504
  msgstr ""
4505
 
4506
- #: includes/helpers.php:580
4507
- #: includes/helpers.php:1867
4508
  msgid "Rwanda"
4509
  msgstr ""
4510
 
4511
- #: includes/helpers.php:581
4512
  msgid "Saint Barth&eacute;lemy"
4513
  msgstr ""
4514
 
4515
- #: includes/helpers.php:582
4516
  msgid "Saint Helena"
4517
  msgstr ""
4518
 
4519
- #: includes/helpers.php:583
4520
  msgid "Saint Kitts and Nevis"
4521
  msgstr ""
4522
 
4523
- #: includes/helpers.php:584
4524
  msgid "Saint Lucia"
4525
  msgstr ""
4526
 
4527
- #: includes/helpers.php:585
4528
  msgid "Saint Martin (French)"
4529
  msgstr ""
4530
 
4531
- #: includes/helpers.php:586
4532
  msgid "Saint Martin (Dutch)"
4533
  msgstr ""
4534
 
4535
- #: includes/helpers.php:587
4536
  msgid "Saint Pierre and Miquelon"
4537
  msgstr ""
4538
 
4539
- #: includes/helpers.php:588
4540
  msgid "Saint Vincent and the Grenadines"
4541
  msgstr ""
4542
 
4543
- #: includes/helpers.php:589
4544
  msgid "San Marino"
4545
  msgstr ""
4546
 
4547
- #: includes/helpers.php:590
4548
  msgid "S&atilde;o Tom&eacute; and Pr&iacute;ncipe"
4549
  msgstr ""
4550
 
4551
- #: includes/helpers.php:591
4552
  msgid "Saudi Arabia"
4553
  msgstr ""
4554
 
4555
- #: includes/helpers.php:592
4556
  msgid "Senegal"
4557
  msgstr ""
4558
 
4559
- #: includes/helpers.php:593
4560
  msgid "Serbia"
4561
  msgstr ""
4562
 
4563
- #: includes/helpers.php:594
4564
- #: includes/helpers.php:1874
4565
  msgid "Seychelles"
4566
  msgstr ""
4567
 
4568
- #: includes/helpers.php:595
4569
- #: includes/helpers.php:1875
4570
  msgid "Sierra Leone"
4571
  msgstr ""
4572
 
4573
- #: includes/helpers.php:596
4574
- #: includes/helpers.php:1868
4575
  msgid "Singapore"
4576
  msgstr ""
4577
 
4578
- #: includes/helpers.php:597
4579
  msgid "Slovak Republic"
4580
  msgstr ""
4581
 
4582
- #: includes/helpers.php:598
4583
  msgid "Slovenia"
4584
  msgstr ""
4585
 
4586
- #: includes/helpers.php:599
4587
- #: includes/helpers.php:1876
4588
  msgid "Solomon Islands"
4589
  msgstr ""
4590
 
4591
- #: includes/helpers.php:600
4592
  msgid "Somalia"
4593
  msgstr ""
4594
 
4595
- #: includes/helpers.php:601
4596
- #: includes/helpers.php:1877
4597
  msgid "South Africa"
4598
  msgstr ""
4599
 
4600
- #: includes/helpers.php:602
4601
  msgid "South Georgia"
4602
  msgstr ""
4603
 
4604
- #: includes/helpers.php:603
4605
  msgid "South Korea"
4606
  msgstr ""
4607
 
4608
- #: includes/helpers.php:604
4609
- #: includes/helpers.php:1878
4610
  msgid "South Sudan"
4611
  msgstr ""
4612
 
4613
- #: includes/helpers.php:605
4614
  msgid "Spain"
4615
  msgstr ""
4616
 
4617
- #: includes/helpers.php:606
4618
  msgid "Sri Lanka"
4619
  msgstr ""
4620
 
4621
- #: includes/helpers.php:607
4622
- #: includes/helpers.php:1879
4623
  msgid "Sudan"
4624
  msgstr ""
4625
 
4626
- #: includes/helpers.php:608
4627
  msgid "Suriname"
4628
  msgstr ""
4629
 
4630
- #: includes/helpers.php:609
4631
  msgid "Svalbard and Jan Mayen Islands"
4632
  msgstr ""
4633
 
4634
- #: includes/helpers.php:610
4635
- #: includes/helpers.php:1872
4636
  msgid "Swaziland"
4637
  msgstr ""
4638
 
4639
- #: includes/helpers.php:611
4640
  msgid "Sweden"
4641
  msgstr ""
4642
 
4643
- #: includes/helpers.php:612
4644
  msgid "Switzerland"
4645
  msgstr ""
4646
 
4647
- #: includes/helpers.php:613
4648
  msgid "Syrian Arab Republic"
4649
  msgstr ""
4650
 
4651
- #: includes/helpers.php:614
4652
  msgid "Taiwan"
4653
  msgstr ""
4654
 
4655
- #: includes/helpers.php:615
4656
  msgid "Tajikistan"
4657
  msgstr ""
4658
 
4659
- #: includes/helpers.php:616
4660
- #: includes/helpers.php:1882
4661
  msgid "Tanzania"
4662
  msgstr ""
4663
 
4664
- #: includes/helpers.php:617
4665
  msgid "Thailand"
4666
  msgstr ""
4667
 
4668
- #: includes/helpers.php:618
4669
  msgid "Timor-Leste"
4670
  msgstr ""
4671
 
4672
- #: includes/helpers.php:619
4673
  msgid "Togo"
4674
  msgstr ""
4675
 
4676
- #: includes/helpers.php:620
4677
  msgid "Tokelau"
4678
  msgstr ""
4679
 
4680
- #: includes/helpers.php:621
4681
- #: includes/helpers.php:1883
4682
  msgid "Tonga"
4683
  msgstr ""
4684
 
4685
- #: includes/helpers.php:622
4686
- #: includes/helpers.php:1880
4687
  msgid "Trinidad and Tobago"
4688
  msgstr ""
4689
 
4690
- #: includes/helpers.php:623
4691
  msgid "Tunisia"
4692
  msgstr ""
4693
 
4694
- #: includes/helpers.php:624
4695
  msgid "Turkey"
4696
  msgstr ""
4697
 
4698
- #: includes/helpers.php:625
4699
  msgid "Turkmenistan"
4700
  msgstr ""
4701
 
4702
- #: includes/helpers.php:626
4703
  msgid "Turks and Caicos Islands"
4704
  msgstr ""
4705
 
4706
- #: includes/helpers.php:627
4707
- #: includes/helpers.php:1884
4708
  msgid "Tuvalu"
4709
  msgstr ""
4710
 
4711
- #: includes/helpers.php:628
4712
- #: includes/helpers.php:1887
4713
  msgid "Uganda"
4714
  msgstr ""
4715
 
4716
- #: includes/helpers.php:629
4717
  msgid "Ukraine"
4718
  msgstr ""
4719
 
4720
- #: includes/helpers.php:630
4721
  msgid "United Arab Emirates"
4722
  msgstr ""
4723
 
4724
- #: includes/helpers.php:631
4725
  msgid "Uruguay"
4726
  msgstr ""
4727
 
4728
- #: includes/helpers.php:632
4729
  msgid "US Minor Outlying Islands"
4730
  msgstr ""
4731
 
4732
- #: includes/helpers.php:633
4733
  msgid "Uzbekistan"
4734
  msgstr ""
4735
 
4736
- #: includes/helpers.php:634
4737
- #: includes/helpers.php:1888
4738
  msgid "Vanuatu"
4739
  msgstr ""
4740
 
4741
- #: includes/helpers.php:635
4742
  msgid "Venezuela"
4743
  msgstr ""
4744
 
4745
- #: includes/helpers.php:636
4746
  msgid "Vietnam"
4747
  msgstr ""
4748
 
4749
- #: includes/helpers.php:637
4750
  msgid "Virgin Islands (British)"
4751
  msgstr ""
4752
 
4753
- #: includes/helpers.php:638
4754
  msgid "Virgin Islands (USA)"
4755
  msgstr ""
4756
 
4757
- #: includes/helpers.php:639
4758
  msgid "Wallis and Futuna Islands"
4759
  msgstr ""
4760
 
4761
- #: includes/helpers.php:640
4762
  msgid "Western Sahara"
4763
  msgstr ""
4764
 
4765
- #: includes/helpers.php:641
4766
  msgid "Western Samoa"
4767
  msgstr ""
4768
 
4769
- #: includes/helpers.php:642
4770
  msgid "Yemen"
4771
  msgstr ""
4772
 
4773
- #: includes/helpers.php:643
4774
- #: includes/helpers.php:1889
4775
  msgid "Zambia"
4776
  msgstr ""
4777
 
4778
- #: includes/helpers.php:644
4779
- #: includes/helpers.php:1890
4780
  msgid "Zimbabwe"
4781
  msgstr ""
4782
 
4783
- #: includes/helpers.php:645
4784
  msgid "Unknown Country"
4785
  msgstr ""
4786
 
4787
  #. Translators: The placeholders are for making the "We noticed you're using a caching plugin" text bold.
4788
- #: includes/helpers.php:1325
4789
  msgid "%1$sWe noticed you're using a caching plugin or caching from your hosting provider.%2$s Be sure to clear the cache to ensure the tracking appears on all pages and posts. %3$s(See this guide on how to clear cache)%4$s."
4790
  msgstr ""
4791
 
4792
  #. Translators: The placeholders are for making the "We have detected multiple tracking codes" text bold & adding a link to support.
4793
- #: includes/helpers.php:1375
4794
  msgid "%1$sWe have detected multiple tracking codes%2$s! You should remove non-ExactMetrics ones. If you need help finding them please %3$sread this article%4$s."
4795
  msgstr ""
4796
 
4797
- #: includes/helpers.php:1869
4798
  msgid "St Kitts and Nevis"
4799
  msgstr ""
4800
 
4801
- #: includes/helpers.php:1870
4802
  msgid "St Lucia"
4803
  msgstr ""
4804
 
4805
- #: includes/helpers.php:1871
4806
  msgid "St Vincent and the Grenadines"
4807
  msgstr ""
4808
 
4809
- #: includes/helpers.php:1873
4810
  msgid "Samoa"
4811
  msgstr ""
4812
 
4813
- #: includes/helpers.php:1881
4814
  msgid "The Bahamas"
4815
  msgstr ""
4816
 
4817
- #: includes/helpers.php:1886
4818
  msgid "United States of America"
4819
  msgstr ""
4820
 
@@ -4895,7 +4895,7 @@ msgid "Theme"
4895
  msgstr ""
4896
 
4897
  #: languages/gutenberg.php:77
4898
- #: languages/vue.php:523
4899
  msgid "Inline Popular Posts"
4900
  msgstr ""
4901
 
@@ -4932,7 +4932,7 @@ msgid "Comment Color"
4932
  msgstr ""
4933
 
4934
  #: languages/gutenberg.php:107
4935
- #: languages/vue.php:3066
4936
  msgid "Wide-Layout Options"
4937
  msgstr ""
4938
 
@@ -4941,12 +4941,12 @@ msgid "Choose Layout"
4941
  msgstr ""
4942
 
4943
  #: languages/gutenberg.php:113
4944
- #: languages/vue.php:3069
4945
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4946
  msgstr ""
4947
 
4948
  #: languages/gutenberg.php:116
4949
- #: languages/vue.php:3090
4950
  msgid "Post Count"
4951
  msgstr ""
4952
 
@@ -4955,7 +4955,7 @@ msgid "Number of posts displayed."
4955
  msgstr ""
4956
 
4957
  #: languages/gutenberg.php:122
4958
- #: languages/vue.php:3072
4959
  msgid "Display Options"
4960
  msgstr ""
4961
 
@@ -4968,7 +4968,7 @@ msgid "Display Widget Title"
4968
  msgstr ""
4969
 
4970
  #: languages/gutenberg.php:131
4971
- #: languages/vue.php:1949
4972
  msgid "Widget Title"
4973
  msgstr ""
4974
 
@@ -4977,17 +4977,17 @@ msgid "Only Show Posts From These Categories"
4977
  msgstr ""
4978
 
4979
  #: languages/gutenberg.php:137
4980
- #: languages/vue.php:3078
4981
  msgid "Display Author"
4982
  msgstr ""
4983
 
4984
  #: languages/gutenberg.php:140
4985
- #: languages/vue.php:3081
4986
  msgid "Display Date"
4987
  msgstr ""
4988
 
4989
  #: languages/gutenberg.php:143
4990
- #: languages/vue.php:3084
4991
  msgid "Display Comments"
4992
  msgstr ""
4993
 
@@ -5208,7 +5208,7 @@ msgid "Goal: "
5208
  msgstr ""
5209
 
5210
  #: languages/gutenberg.php:312
5211
- #: languages/vue.php:983
5212
  msgid "Headline Analyzer"
5213
  msgstr ""
5214
 
@@ -5221,19 +5221,19 @@ msgid "This headline analyzer is part of ExactMetrics to help you increase your
5221
  msgstr ""
5222
 
5223
  #: languages/gutenberg.php:321
5224
- #: languages/vue.php:107
5225
  #: lite/includes/admin/metaboxes.php:47
5226
  msgid "Last 30 days"
5227
  msgstr ""
5228
 
5229
  #: languages/gutenberg.php:324
5230
- #: languages/vue.php:95
5231
  #: lite/includes/admin/metaboxes.php:51
5232
  msgid "Yesterday"
5233
  msgstr ""
5234
 
5235
  #: languages/gutenberg.php:327
5236
- #: languages/vue.php:1301
5237
  #: lite/includes/admin/metaboxes.php:65
5238
  #: lite/includes/admin/metaboxes.php:127
5239
  msgid "Bounce Rate"
@@ -5315,4852 +5315,4852 @@ msgid "Loading new report data"
5315
  msgstr ""
5316
 
5317
  #. Translators: Adds an arrow icon.
5318
- #: languages/vue.php:34
5319
  msgid "Continue %s"
5320
  msgstr ""
5321
 
5322
- #: languages/vue.php:38
5323
  msgid "Error"
5324
  msgstr ""
5325
 
5326
- #: languages/vue.php:41
5327
  msgid "Please try again."
5328
  msgstr ""
5329
 
5330
- #: languages/vue.php:44
5331
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5332
  msgstr ""
5333
 
5334
- #: languages/vue.php:47
5335
  msgid "Stop guessing about what content your visitors are interested in. ExactMetrics Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
5336
  msgstr ""
5337
 
5338
- #: languages/vue.php:50
5339
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5340
  msgstr ""
5341
 
5342
- #: languages/vue.php:53
5343
  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."
5344
  msgstr ""
5345
 
5346
- #: languages/vue.php:56
5347
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5348
  msgstr ""
5349
 
5350
- #: languages/vue.php:59
5351
  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."
5352
  msgstr ""
5353
 
5354
- #: languages/vue.php:62
5355
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5356
  msgstr ""
5357
 
5358
- #: languages/vue.php:65
5359
  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."
5360
  msgstr ""
5361
 
5362
- #: languages/vue.php:68
5363
  msgid "Unlock the Forms Report and Improve Conversions"
5364
  msgstr ""
5365
 
5366
- #: languages/vue.php:71
5367
  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."
5368
  msgstr ""
5369
 
5370
- #: languages/vue.php:74
5371
  msgid "Unlock the Search Console Report and See How People Find Your Website"
5372
  msgstr ""
5373
 
5374
- #: languages/vue.php:77
5375
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5376
  msgstr ""
5377
 
5378
- #: languages/vue.php:80
5379
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5380
  msgstr ""
5381
 
5382
- #: languages/vue.php:83
5383
  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."
5384
  msgstr ""
5385
 
5386
- #: languages/vue.php:86
5387
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5388
  msgstr ""
5389
 
5390
- #: languages/vue.php:89
5391
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5392
  msgstr ""
5393
 
5394
- #: languages/vue.php:92
5395
  msgid "Today"
5396
  msgstr ""
5397
 
5398
- #: languages/vue.php:98
5399
  msgid "Last Week"
5400
  msgstr ""
5401
 
5402
- #: languages/vue.php:101
5403
  msgid "Last Month"
5404
  msgstr ""
5405
 
5406
- #: languages/vue.php:104
5407
  msgid "Last 7 days"
5408
  msgstr ""
5409
 
5410
- #: languages/vue.php:110
5411
  msgid "Loading settings"
5412
  msgstr ""
5413
 
5414
  #. Translators: Number of visitors.
5415
- #: languages/vue.php:114
5416
  msgid "See how %s visitors found your site!"
5417
  msgstr ""
5418
 
5419
  #. Translators: Number of visitors.
5420
- #: languages/vue.php:118
5421
  msgid "Your website was visited by %s users in the last 30 days."
5422
  msgstr ""
5423
 
5424
- #: languages/vue.php:121
5425
  msgid "See the full analytics report!"
5426
  msgstr ""
5427
 
5428
- #: languages/vue.php:125
5429
  msgid "Overview Report"
5430
  msgstr ""
5431
 
5432
  #. Translators: Current PHP version and recommended PHP version.
5433
- #: languages/vue.php:129
5434
  msgid "ExactMetrics has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
5435
  msgstr ""
5436
 
5437
  #. Translators: Current WordPress version.
5438
- #: languages/vue.php:133
5439
  msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.9 in 2020. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5440
  msgstr ""
5441
 
5442
- #: languages/vue.php:136
5443
  msgid "Yikes! PHP Update Required"
5444
  msgstr ""
5445
 
5446
  #. Translators: Current PHP version and recommended PHP version.
5447
- #: languages/vue.php:140
5448
  msgid "ExactMetrics has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
5449
  msgstr ""
5450
 
5451
- #: languages/vue.php:143
5452
  msgid "Learn more about updating PHP"
5453
  msgstr ""
5454
 
5455
- #: languages/vue.php:146
5456
  msgid "Yikes! WordPress Update Required"
5457
  msgstr ""
5458
 
5459
  #. Translators: Current WordPress version.
5460
- #: languages/vue.php:150
5461
  msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5462
  msgstr ""
5463
 
5464
- #: languages/vue.php:153
5465
  msgid "Learn more about updating WordPress"
5466
  msgstr ""
5467
 
5468
- #: languages/vue.php:159
5469
  msgid "Getting Started"
5470
  msgstr ""
5471
 
5472
- #: languages/vue.php:162
5473
  msgid "Lite vs Pro"
5474
  msgstr ""
5475
 
5476
- #: languages/vue.php:165
5477
  msgid "Success! "
5478
  msgstr ""
5479
 
5480
- #: languages/vue.php:168
5481
  msgid "You're now using ExactMetrics Pro with all the features."
5482
  msgstr ""
5483
 
5484
  #. Translators: Placeholder gets replaced with an arrow icon.
5485
- #: languages/vue.php:172
5486
  msgid "Get Started %s"
5487
  msgstr ""
5488
 
5489
  #. Translators: Error status and error text.
5490
- #: languages/vue.php:176
5491
  msgid "Can't load report data. Error: %1$s, %2$s"
5492
  msgstr ""
5493
 
5494
- #: languages/vue.php:179
5495
  msgid "Error loading report data"
5496
  msgstr ""
5497
 
5498
  #. Translators: Makes the text bold.
5499
- #: languages/vue.php:183
5500
  msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5501
  msgstr ""
5502
 
5503
  #. Translators: Makes the text bold.
5504
- #: languages/vue.php:187
5505
  msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
5506
  msgstr ""
5507
 
5508
  #. Translators: Makes the text bold.
5509
- #: languages/vue.php:191
5510
  msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
5511
  msgstr ""
5512
 
5513
  #. Translators: Makes text bold.
5514
- #: languages/vue.php:195
5515
  msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
5516
  msgstr ""
5517
 
5518
  #. Translators: Makes the text bold.
5519
- #: languages/vue.php:199
5520
  msgid "%1$sPage Level Analytics%2$s - Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
5521
  msgstr ""
5522
 
5523
  #. Translators: Makes the text bold.
5524
- #: languages/vue.php:203
5525
  msgid "%1$sAffiliate Link & Ads Tracking%2$s - Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
5526
  msgstr ""
5527
 
5528
  #. Translators: Makes the text bold.
5529
- #: languages/vue.php:207
5530
  msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5531
  msgstr ""
5532
 
5533
  #. Translators: Makes text bold.
5534
- #: languages/vue.php:211
5535
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
5536
  msgstr ""
5537
 
5538
  #. Translators: Adds a link and an arrow icon.
5539
- #: languages/vue.php:215
5540
  msgid "%1$sSee All Features%2$s"
5541
  msgstr ""
5542
 
5543
- #: languages/vue.php:218
5544
  msgid "Pro Plan"
5545
  msgstr ""
5546
 
5547
- #: languages/vue.php:221
5548
  msgid "per year"
5549
  msgstr ""
5550
 
5551
- #: languages/vue.php:227
5552
  msgid "Upgrade to ExactMetrics Pro Now"
5553
  msgstr ""
5554
 
5555
- #: languages/vue.php:230
5556
  msgid "This is absolutely, positively, one of the TOP plugins to install on your WP site. There is no better way to quickly gauge traffic for spikes, surges, and consistency. I installed this on over a dozen WordPress installations and counting, thank you for an outstanding app!"
5557
  msgstr ""
5558
 
5559
- #: languages/vue.php:233
5560
  msgid "Daniel Monaghan - Experienced"
5561
  msgstr ""
5562
 
5563
- #: languages/vue.php:236
5564
  msgid "Very simple to configure and the results are very clearly displayed. So much easier for clients to view than in their own analytics account! Delighted with it."
5565
  msgstr ""
5566
 
5567
- #: languages/vue.php:239
5568
  msgid "Naomi Spirit - From This Day"
5569
  msgstr ""
5570
 
5571
- #: languages/vue.php:242
5572
  msgid "Love this plugin! It’s got powerful customization options, it’s easy to use, there’s good documentation, and if all that’s not enough, ExactMetrics is quick to provide support. Thanks for this wonderful plugin!"
5573
  msgstr ""
5574
 
5575
- #: languages/vue.php:245
5576
  msgid "Julie Dupuis - Faraway Land Travel"
5577
  msgstr ""
5578
 
5579
- #: languages/vue.php:248
5580
  msgid "Guides and Documentation:"
5581
  msgstr ""
5582
 
5583
- #: languages/vue.php:252
5584
  msgid "Upgrade to PRO"
5585
  msgstr ""
5586
 
5587
- #: languages/vue.php:256
5588
  msgid "eCommerce Tracking"
5589
  msgstr ""
5590
 
5591
- #: languages/vue.php:259
5592
  msgid "Custom Dimensions"
5593
  msgstr ""
5594
 
5595
- #: languages/vue.php:262
5596
  msgid "Form Tracking"
5597
  msgstr ""
5598
 
5599
- #: languages/vue.php:265
5600
  msgid "AMP Support"
5601
  msgstr ""
5602
 
5603
- #: languages/vue.php:268
5604
  msgid "Author Tracking"
5605
  msgstr ""
5606
 
5607
- #: languages/vue.php:271
5608
  msgid "EU Compliance Addon"
5609
  msgstr ""
5610
 
5611
- #: languages/vue.php:274
5612
  msgid "Real Time Report"
5613
  msgstr ""
5614
 
5615
- #: languages/vue.php:277
5616
  msgid "Google Optimize"
5617
  msgstr ""
5618
 
5619
- #: languages/vue.php:281
5620
  #: lite/includes/admin/reports/report-queries.php:22
5621
  msgid "Search Console"
5622
  msgstr ""
5623
 
5624
- #: languages/vue.php:284
5625
  msgid "Custom Date Ranges"
5626
  msgstr ""
5627
 
5628
- #: languages/vue.php:287
5629
- #: languages/vue.php:923
5630
  msgid "Getting Started with ExactMetrics"
5631
  msgstr ""
5632
 
5633
- #: languages/vue.php:290
5634
- #: languages/vue.php:926
5635
  msgid "ExactMetrics is the easiest analytics solution on the market to get started with, as we walk you through exactly what you need to do, in plain english, using our 3 minute setup wizard."
5636
  msgstr ""
5637
 
5638
- #: languages/vue.php:293
5639
  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."
5640
  msgstr ""
5641
 
5642
- #: languages/vue.php:296
5643
  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!."
5644
  msgstr ""
5645
 
5646
- #: languages/vue.php:299
5647
  msgid "Launch the wizard!"
5648
  msgstr ""
5649
 
5650
- #: languages/vue.php:302
5651
  msgid "Welcome to"
5652
  msgstr ""
5653
 
5654
  #. Translators: Adds a line break.
5655
- #: languages/vue.php:306
5656
  msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
5657
  msgstr ""
5658
 
5659
  #. Translators: Makes the product name bold.
5660
- #: languages/vue.php:310
5661
  msgid "%1$sExactMetrics%2$s makes it “effortless” to setup Google Analytics in WordPress, the RIGHT Way. You can watch the video tutorial or use our 3 minute setup wizard."
5662
  msgstr ""
5663
 
5664
- #: languages/vue.php:313
5665
  msgid "ExactMetrics Features & Addons"
5666
  msgstr ""
5667
 
5668
- #: languages/vue.php:316
5669
  msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
5670
  msgstr ""
5671
 
5672
  #. Translators: Placeholder is replaced with WPForms.
5673
- #: languages/vue.php:320
5674
  msgid "Recommended Plugin: %s"
5675
  msgstr ""
5676
 
5677
- #: languages/vue.php:323
5678
  msgid "Install"
5679
  msgstr ""
5680
 
5681
- #: languages/vue.php:326
5682
  msgid "Activate"
5683
  msgstr ""
5684
 
5685
- #: languages/vue.php:332
5686
  msgid "ExactMetrics encountered an error loading your report data"
5687
  msgstr ""
5688
 
5689
- #: languages/vue.php:335
5690
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5691
  msgstr ""
5692
 
5693
- #: languages/vue.php:339
5694
- #: languages/vue.php:1846
5695
  msgid "Reconnect ExactMetrics"
5696
  msgstr ""
5697
 
5698
- #: languages/vue.php:342
5699
  msgid "Re-Authenticating"
5700
  msgstr ""
5701
 
5702
- #: languages/vue.php:345
5703
  msgid "Ok"
5704
  msgstr ""
5705
 
5706
- #: languages/vue.php:348
5707
- #: languages/vue.php:862
5708
  msgid "ExactMetrics Addons"
5709
  msgstr ""
5710
 
5711
- #: languages/vue.php:351
5712
  msgid "Search Addons"
5713
  msgstr ""
5714
 
5715
- #: languages/vue.php:354
5716
  msgid "Save Changes"
5717
  msgstr ""
5718
 
5719
- #: languages/vue.php:357
5720
  msgid "Exit Setup"
5721
  msgstr ""
5722
 
5723
- #: languages/vue.php:360
5724
  msgid "Time to Purchase"
5725
  msgstr ""
5726
 
5727
- #: languages/vue.php:363
5728
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
5729
  msgstr ""
5730
 
5731
- #: languages/vue.php:366
5732
  msgid "Sessions to Purchase"
5733
  msgstr ""
5734
 
5735
- #: languages/vue.php:369
5736
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5737
  msgstr ""
5738
 
5739
- #: languages/vue.php:372
5740
  msgid "New Customers"
5741
  msgstr ""
5742
 
5743
- #: languages/vue.php:375
5744
  msgid "This list shows the percentage of new customers who purchased a product from your website."
5745
  msgstr ""
5746
 
5747
- #: languages/vue.php:378
5748
  msgid "Abandoned Checkouts"
5749
  msgstr ""
5750
 
5751
- #: languages/vue.php:381
5752
  msgid "This list shows the percentage of carts that never went through the checkout process."
5753
  msgstr ""
5754
 
5755
- #: languages/vue.php:384
5756
  msgid "Top Posts/Pages"
5757
  msgstr ""
5758
 
5759
- #: languages/vue.php:387
5760
  msgid "This list shows the most viewed posts and pages on your website."
5761
  msgstr ""
5762
 
5763
- #: languages/vue.php:390
5764
  msgid "New vs. Returning Visitors"
5765
  msgstr ""
5766
 
5767
- #: languages/vue.php:393
5768
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5769
  msgstr ""
5770
 
5771
- #: languages/vue.php:396
5772
  msgid "Device Breakdown"
5773
  msgstr ""
5774
 
5775
- #: languages/vue.php:399
5776
  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."
5777
  msgstr ""
5778
 
5779
- #: languages/vue.php:402
5780
  msgid "Top Landing Pages"
5781
  msgstr ""
5782
 
5783
- #: languages/vue.php:405
5784
  msgid "This list shows the top pages users first land on when visiting your website."
5785
  msgstr ""
5786
 
5787
- #: languages/vue.php:408
5788
  msgid "Top Exit Pages"
5789
  msgstr ""
5790
 
5791
- #: languages/vue.php:411
5792
  msgid "This list shows the top pages users exit your website from."
5793
  msgstr ""
5794
 
5795
- #: languages/vue.php:414
5796
  msgid "Top Outbound Links"
5797
  msgstr ""
5798
 
5799
- #: languages/vue.php:417
5800
  msgid "This list shows the top links clicked on your website that go to another website."
5801
  msgstr ""
5802
 
5803
- #: languages/vue.php:420
5804
  msgid "Top Affiliate Links"
5805
  msgstr ""
5806
 
5807
- #: languages/vue.php:423
5808
  msgid "This list shows the top affiliate links your visitors clicked on."
5809
  msgstr ""
5810
 
5811
- #: languages/vue.php:426
5812
  msgid "Top Download Links"
5813
  msgstr ""
5814
 
5815
- #: languages/vue.php:429
5816
  msgid "This list shows the download links your visitors clicked the most."
5817
  msgstr ""
5818
 
5819
- #: languages/vue.php:435
5820
  msgid "Top Products"
5821
  msgstr ""
5822
 
5823
- #: languages/vue.php:438
5824
  msgid "This list shows the top selling products on your website."
5825
  msgstr ""
5826
 
5827
- #: languages/vue.php:441
5828
  msgid "Top Conversion Sources"
5829
  msgstr ""
5830
 
5831
- #: languages/vue.php:444
5832
  msgid "This list shows the top referral websites in terms of product revenue."
5833
  msgstr ""
5834
 
5835
- #: languages/vue.php:447
5836
  msgid "Total Add/Remove"
5837
  msgstr ""
5838
 
5839
- #: languages/vue.php:450
5840
  msgid "Analytics"
5841
  msgstr ""
5842
 
5843
  #. Translators: Adds an arrow icon.
5844
- #: languages/vue.php:454
5845
  msgid "View All Reports %s"
5846
  msgstr ""
5847
 
5848
- #: languages/vue.php:457
5849
  msgid "You must connect with ExactMetrics before you can view reports."
5850
  msgstr ""
5851
 
5852
- #: languages/vue.php:460
5853
  msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5854
  msgstr ""
5855
 
5856
- #: languages/vue.php:463
5857
  msgid "Launch Setup Wizard"
5858
  msgstr ""
5859
 
5860
- #: languages/vue.php:466
5861
  msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
5862
  msgstr ""
5863
 
5864
- #: languages/vue.php:479
5865
  msgid "See Quick Links"
5866
  msgstr ""
5867
 
5868
- #: languages/vue.php:482
5869
  msgid "Suggest a Feature"
5870
  msgstr ""
5871
 
5872
- #: languages/vue.php:485
5873
  msgid "Join Our Community"
5874
  msgstr ""
5875
 
5876
- #: languages/vue.php:488
5877
  msgid "Support & Docs"
5878
  msgstr ""
5879
 
5880
- #: languages/vue.php:491
5881
  msgid "Upgrade to Pro &#187;"
5882
  msgstr ""
5883
 
5884
- #: languages/vue.php:494
5885
  #: lite/includes/admin/reports/report-publisher.php:22
5886
  msgid "Publishers"
5887
  msgstr ""
5888
 
5889
- #: languages/vue.php:497
5890
  #: lite/includes/admin/reports/report-ecommerce.php:22
5891
  msgid "eCommerce"
5892
  msgstr ""
5893
 
5894
- #: languages/vue.php:500
5895
  msgid "Dimensions Report"
5896
  msgstr ""
5897
 
5898
- #: languages/vue.php:503
5899
  #: lite/includes/admin/reports/report-forms.php:22
5900
  msgid "Forms"
5901
  msgstr ""
5902
 
5903
- #: languages/vue.php:506
5904
  msgid "Real-Time"
5905
  msgstr ""
5906
 
5907
- #: languages/vue.php:509
5908
  msgid "Site Speed Report"
5909
  msgstr ""
5910
 
5911
- #: languages/vue.php:513
5912
  msgid "2020 Year in Review"
5913
  msgstr ""
5914
 
5915
- #: languages/vue.php:516
5916
  msgid "Import Export"
5917
  msgstr ""
5918
 
5919
- #: languages/vue.php:519
5920
  msgid "PrettyLinks Integration"
5921
  msgstr ""
5922
 
5923
- #: languages/vue.php:527
5924
  msgid "Popular Posts Widget"
5925
  msgstr ""
5926
 
5927
- #: languages/vue.php:531
5928
  msgid "Popular Products"
5929
  msgstr ""
5930
 
5931
- #: languages/vue.php:537
5932
  msgid "Sub menu item for WooCommerce Analytics"
5933
  msgstr ""
5934
 
5935
- #: languages/vue.php:543
5936
  msgid "Engagement"
5937
  msgstr ""
5938
 
5939
- #: languages/vue.php:546
5940
  msgid "Publisher"
5941
  msgstr ""
5942
 
5943
- #: languages/vue.php:549
5944
  msgid "Conversions"
5945
  msgstr ""
5946
 
5947
- #: languages/vue.php:552
5948
  msgid "Advanced"
5949
  msgstr ""
5950
 
5951
- #: languages/vue.php:555
5952
  msgid "URL Builder"
5953
  msgstr ""
5954
 
5955
  #. Translators: Adds a link to documentation.
5956
- #: languages/vue.php:559
5957
  msgid "In order for the ExactMetrics Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s"
5958
  msgstr ""
5959
 
5960
  #. Translators: Adds link to activate/install plugin and documentation.
5961
- #: languages/vue.php:563
5962
  msgid "In order for the ExactMetrics Google AMP addon to work properly, you need to install the WordPress AMP plugin by Automattic. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s"
5963
  msgstr ""
5964
 
5965
  #. Translators: Adds a link to documentation.
5966
- #: languages/vue.php:567
5967
  msgid "In order for the ExactMetrics Instant Articles addon to work properly, please ask your webmaster to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$sLearn More%2$s"
5968
  msgstr ""
5969
 
5970
  #. Translators: Adds link to activate/install plugin and documentation.
5971
- #: languages/vue.php:571
5972
  msgid "In order for the ExactMetrics Instant Articles addon to work properly, you need to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s"
5973
  msgstr ""
5974
 
5975
- #: languages/vue.php:574
5976
  msgid "Installing Addon"
5977
  msgstr ""
5978
 
5979
- #: languages/vue.php:577
5980
  msgid "Activating Addon"
5981
  msgstr ""
5982
 
5983
- #: languages/vue.php:580
5984
  msgid "Addon Activated"
5985
  msgstr ""
5986
 
5987
- #: languages/vue.php:583
5988
  msgid "Loading report data"
5989
  msgstr ""
5990
 
5991
- #: languages/vue.php:586
5992
  msgid "Please activate manually"
5993
  msgstr ""
5994
 
5995
  #. Translators: Adds the error status and status text.
5996
- #: languages/vue.php:590
5997
  msgid "Error: %1$s, %2$s"
5998
  msgstr ""
5999
 
6000
- #: languages/vue.php:593
6001
  msgid "Error Activating Addon"
6002
  msgstr ""
6003
 
6004
- #: languages/vue.php:596
6005
  #: lite/includes/admin/wp-site-health.php:375
6006
  #: lite/includes/admin/wp-site-health.php:401
6007
  #: lite/includes/admin/wp-site-health.php:428
6008
  msgid "View Addons"
6009
  msgstr ""
6010
 
6011
- #: languages/vue.php:599
6012
  msgid "Dismiss"
6013
  msgstr ""
6014
 
6015
- #: languages/vue.php:602
6016
  msgid "Redirecting"
6017
  msgstr ""
6018
 
6019
- #: languages/vue.php:605
6020
  msgid "Please wait"
6021
  msgstr ""
6022
 
6023
- #: languages/vue.php:608
6024
  msgid "activate"
6025
  msgstr ""
6026
 
6027
- #: languages/vue.php:611
6028
  msgid "install"
6029
  msgstr ""
6030
 
6031
- #: languages/vue.php:614
6032
  msgid "Visit addons page"
6033
  msgstr ""
6034
 
6035
- #: languages/vue.php:617
6036
  msgid "Report Unavailable"
6037
  msgstr ""
6038
 
6039
  #. Translators: Install/Activate the addon.
6040
- #: languages/vue.php:621
6041
  msgid "%s Addon"
6042
  msgstr ""
6043
 
6044
- #: languages/vue.php:624
6045
  msgid "Go Back To Reports"
6046
  msgstr ""
6047
 
6048
- #: languages/vue.php:627
6049
  msgid "Enable Enhanced eCommerce"
6050
  msgstr ""
6051
 
6052
  #. Translators: Placeholders are replaced with the current step number out of the total number of steps.
6053
- #: languages/vue.php:631
6054
  msgid "Step %1$s of %2$s"
6055
  msgstr ""
6056
 
6057
- #: languages/vue.php:634
6058
  msgid "Go back"
6059
  msgstr ""
6060
 
6061
- #: languages/vue.php:637
6062
  msgid "Welcome to ExactMetrics!"
6063
  msgstr ""
6064
 
6065
- #: languages/vue.php:640
6066
  msgid "Let's get you set up."
6067
  msgstr ""
6068
 
6069
- #: languages/vue.php:643
6070
  msgid "Save and Continue"
6071
  msgstr ""
6072
 
6073
- #: languages/vue.php:646
6074
  msgid "Which category best describes your website?"
6075
  msgstr ""
6076
 
6077
- #: languages/vue.php:649
6078
  msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
6079
  msgstr ""
6080
 
6081
- #: languages/vue.php:652
6082
  msgid "Business Website"
6083
  msgstr ""
6084
 
6085
  #. Translators: Make text bold.
6086
- #: languages/vue.php:656
6087
  msgid "Publisher %1$s(Blog)%2$s"
6088
  msgstr ""
6089
 
6090
- #: languages/vue.php:659
6091
  msgid "Ecommerce"
6092
  msgstr ""
6093
 
6094
- #: languages/vue.php:662
6095
  msgid "Connect ExactMetrics to Your Website"
6096
  msgstr ""
6097
 
6098
- #: languages/vue.php:665
6099
  msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
6100
  msgstr ""
6101
 
6102
- #: languages/vue.php:668
6103
  msgid "Connect Google Analytics + WordPress"
6104
  msgstr ""
6105
 
6106
- #: languages/vue.php:671
6107
  msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
6108
  msgstr ""
6109
 
6110
- #: languages/vue.php:674
6111
  msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
6112
  msgstr ""
6113
 
6114
- #: languages/vue.php:677
6115
  msgid "Manually enter your UA code"
6116
  msgstr ""
6117
 
6118
- #: languages/vue.php:680
6119
  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."
6120
  msgstr ""
6121
 
6122
- #: languages/vue.php:683
6123
  msgid "UA code can't be empty"
6124
  msgstr ""
6125
 
6126
- #: languages/vue.php:686
6127
  msgid "Saving UA code..."
6128
  msgstr ""
6129
 
6130
- #: languages/vue.php:689
6131
  msgid "ExactMetrics Recommends WPForms"
6132
  msgstr ""
6133
 
6134
- #: languages/vue.php:692
6135
  msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
6136
  msgstr ""
6137
 
6138
- #: languages/vue.php:695
6139
  msgid "Used on over 4,000,000 websites!"
6140
  msgstr ""
6141
 
6142
- #: languages/vue.php:698
6143
  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!"
6144
  msgstr ""
6145
 
6146
- #: languages/vue.php:701
6147
  msgid "Skip this Step"
6148
  msgstr ""
6149
 
6150
- #: languages/vue.php:704
6151
  msgid "Continue & Install WPForms"
6152
  msgstr ""
6153
 
6154
- #: languages/vue.php:709
6155
  msgid "Installing..."
6156
  msgstr ""
6157
 
6158
- #: languages/vue.php:712
6159
  msgid "Recommended Settings"
6160
  msgstr ""
6161
 
6162
- #: languages/vue.php:715
6163
  msgid "ExactMetrics recommends the following settings based on your configuration."
6164
  msgstr ""
6165
 
6166
- #: languages/vue.php:718
6167
  msgid "Events Tracking"
6168
  msgstr ""
6169
 
6170
- #: languages/vue.php:721
6171
  msgid "Must have for all click tracking on site."
6172
  msgstr ""
6173
 
6174
- #: languages/vue.php:724
6175
  msgid "ExactMetrics uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don't have to write any code."
6176
  msgstr ""
6177
 
6178
- #: languages/vue.php:727
6179
  msgid "Enhanced Link Attribution"
6180
  msgstr ""
6181
 
6182
- #: languages/vue.php:730
6183
  msgid "Improves the accuracy of your In-Page Analytics."
6184
  msgstr ""
6185
 
6186
- #: languages/vue.php:733
6187
  msgid "ExactMetrics will automatically help Google determine which links are unique and where they are on your site so that your In-Page Analytics reporting will be more accurate."
6188
  msgstr ""
6189
 
6190
- #: languages/vue.php:736
6191
  msgid "Install Updates Automatically"
6192
  msgstr ""
6193
 
6194
- #: languages/vue.php:739
6195
  msgid "Get the latest features, bug fixes, and security updates as they are released."
6196
  msgstr ""
6197
 
6198
- #: languages/vue.php:742
6199
  msgid "To ensure you get the latest bug fixes and security updates and avoid needing to spend time logging into your WordPress site to update ExactMetrics, we offer the ability to automatically have ExactMetrics update itself."
6200
  msgstr ""
6201
 
6202
- #: languages/vue.php:745
6203
  msgid "File Download Tracking"
6204
  msgstr ""
6205
 
6206
- #: languages/vue.php:748
6207
  msgid "Helps you see file downloads data."
6208
  msgstr ""
6209
 
6210
- #: languages/vue.php:751
6211
  msgid "ExactMetrics will automatically track downloads of common file types from links you have inserted onto your website. For example: want to know how many of your site's visitors have downloaded a PDF or other file you offer your visitors to download on your site? ExactMetrics makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
6212
  msgstr ""
6213
 
6214
  #. Translators: Example path (/go/).
6215
- #: languages/vue.php:756
6216
  msgid "Path (example: %s)"
6217
  msgstr ""
6218
 
6219
- #: languages/vue.php:760
6220
  msgid "Path has to start with a / and have no spaces"
6221
  msgstr ""
6222
 
6223
  #. Translators: Example label (aff).
6224
- #: languages/vue.php:765
6225
  msgid "Label (example: %s)"
6226
  msgstr ""
6227
 
6228
- #: languages/vue.php:769
6229
  msgid "Label can't contain any spaces"
6230
  msgstr ""
6231
 
6232
- #: languages/vue.php:772
6233
  msgid "Helps you increase affiliate revenue."
6234
  msgstr ""
6235
 
6236
- #: languages/vue.php:775
6237
  msgid "ExactMetrics will automatically help you track affiliate links that use internal looking urls like example.com/go/ or example.com/refer/. You can add custom affiliate patterns on our settings panel when you finish the onboarding wizard."
6238
  msgstr ""
6239
 
6240
- #: languages/vue.php:778
6241
  msgid "Affiliate Link Tracking"
6242
  msgstr ""
6243
 
6244
- #: languages/vue.php:781
6245
  msgid "Who Can See Reports"
6246
  msgstr ""
6247
 
6248
- #: languages/vue.php:784
6249
  msgid "These user roles will be able to access ExactMetrics' reports in the WordPress admin area."
6250
  msgstr ""
6251
 
6252
- #: languages/vue.php:787
6253
  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."
6254
  msgstr ""
6255
 
6256
- #: languages/vue.php:790
6257
  msgid "Save and continue"
6258
  msgstr ""
6259
 
6260
- #: languages/vue.php:793
6261
  msgid "Events Tracking is enabled the moment you set up ExactMetrics"
6262
  msgstr ""
6263
 
6264
- #: languages/vue.php:796
6265
  msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
6266
  msgstr ""
6267
 
6268
- #: languages/vue.php:799
6269
  msgid "+ Add Role"
6270
  msgstr ""
6271
 
6272
  #. Translators: Placeholders are used for making text bold and adding a link.
6273
- #: languages/vue.php:803
6274
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6275
  msgstr ""
6276
 
6277
- #: languages/vue.php:806
6278
  #: lite/includes/admin/reports/report-dimensions.php:22
6279
  msgid "Dimensions"
6280
  msgstr ""
6281
 
6282
- #: languages/vue.php:809
6283
  msgid "Site Speed"
6284
  msgstr ""
6285
 
6286
- #: languages/vue.php:812
6287
  msgid "License Key"
6288
  msgstr ""
6289
 
6290
  #. Translators: Add link to retrieve license key from account.
6291
- #: languages/vue.php:816
6292
  msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6293
  msgstr ""
6294
 
6295
- #: languages/vue.php:819
6296
  msgid "Google Authentication"
6297
  msgstr ""
6298
 
6299
- #: languages/vue.php:822
6300
  msgid "Miscellaneous"
6301
  msgstr ""
6302
 
6303
- #: languages/vue.php:825
6304
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6305
  msgstr ""
6306
 
6307
- #: languages/vue.php:828
6308
  msgid "Hide Announcements"
6309
  msgstr ""
6310
 
6311
- #: languages/vue.php:831
6312
  msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
6313
  msgstr ""
6314
 
6315
- #. Translators: Add link to upgrade.
6316
- #: languages/vue.php:835
6317
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
6318
  msgstr ""
6319
 
6320
- #: languages/vue.php:838
6321
  msgid "Receive 50% off automatically applied at the checkout!"
6322
  msgstr ""
6323
 
6324
- #: languages/vue.php:841
6325
  msgid "See all features"
6326
  msgstr ""
6327
 
6328
- #: languages/vue.php:844
6329
  msgid "Setup Wizard"
6330
  msgstr ""
6331
 
6332
- #: languages/vue.php:847
6333
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6334
  msgstr ""
6335
 
6336
- #: languages/vue.php:850
6337
  msgid "Relaunch Setup Wizard"
6338
  msgstr ""
6339
 
6340
- #: languages/vue.php:853
6341
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6342
  msgstr ""
6343
 
6344
- #: languages/vue.php:856
6345
  msgid "No addons found."
6346
  msgstr ""
6347
 
6348
- #: languages/vue.php:859
6349
  msgid "Refresh Addons"
6350
  msgstr ""
6351
 
6352
  #. Translators: Adds a line break.
6353
- #: languages/vue.php:866
6354
  msgid "Upgrade to Pro to unlock addons and other great features."
6355
  msgstr ""
6356
 
6357
- #: languages/vue.php:869
6358
  msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
6359
  msgstr ""
6360
 
6361
- #: languages/vue.php:872
6362
  msgid "Refreshing Addons"
6363
  msgstr ""
6364
 
6365
- #: languages/vue.php:875
6366
  msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
6367
  msgstr ""
6368
 
6369
  #. Translators: Placeholders make the text green.
6370
- #: languages/vue.php:879
6371
  msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6372
  msgstr ""
6373
 
6374
- #: languages/vue.php:882
6375
  msgid "How to Connect to Google Analytics"
6376
  msgstr ""
6377
 
6378
- #: languages/vue.php:885
6379
  msgid "After you install ExactMetrics, you’ll need to connect your WordPress site with your Google Analytics account. ExactMetrics makes the process easy, with no coding required."
6380
  msgstr ""
6381
 
6382
- #: languages/vue.php:888
6383
  msgid "Guide and Checklist for Advanced Insights"
6384
  msgstr ""
6385
 
6386
- #: languages/vue.php:891
6387
  msgid "Our goal is to make it as easy as possible for you to measure and track your stats so you can grow your business. This easy-to-follow guide and checklist will get you set up with ExactMetrics’ advanced tracking."
6388
  msgstr ""
6389
 
6390
- #: languages/vue.php:894
6391
  msgid "GDPR Guide"
6392
  msgstr ""
6393
 
6394
- #: languages/vue.php:897
6395
  msgid "Compliance with European data laws including GDPR can be confusing and time-consuming. In order to help ExactMetrics users comply with these laws, we’ve created an addon that automates a lot of the necessary configuration changes for you. "
6396
  msgstr ""
6397
 
6398
- #: languages/vue.php:900
6399
  msgid "How to Install and Activate ExactMetrics Addons"
6400
  msgstr ""
6401
 
6402
- #: languages/vue.php:903
6403
  msgid "The process for installing and activating addons is quick and easy after you install the ExactMetrics plugin. In this guide we’ll walk you through the process, step by step."
6404
  msgstr ""
6405
 
6406
- #: languages/vue.php:906
6407
  msgid "Enabling eCommerce Tracking and Reports"
6408
  msgstr ""
6409
 
6410
- #: languages/vue.php:909
6411
  msgid "Want to track your eCommerce sales data for your WooCommerce, MemberPress, or Easy Digital Downloads store with ExactMetrics? In this guide, we’ll show you how to enable eCommerce tracking in Google Analytics in just a few clicks."
6412
  msgstr ""
6413
 
6414
- #: languages/vue.php:912
6415
  msgid "Read Documentation"
6416
  msgstr ""
6417
 
6418
  #. Translators: Makes the text bold.
6419
- #: languages/vue.php:916
6420
  msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
6421
  msgstr ""
6422
 
6423
  #. Translators: Makes the text bold.
6424
- #: languages/vue.php:920
6425
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
6426
  msgstr ""
6427
 
6428
- #: languages/vue.php:929
6429
  msgid "One-click Complete eCommerce tracking"
6430
  msgstr ""
6431
 
6432
- #: languages/vue.php:932
6433
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6434
  msgstr ""
6435
 
6436
- #: languages/vue.php:935
6437
  msgid "Forms Tracking"
6438
  msgstr ""
6439
 
6440
- #: languages/vue.php:938
6441
  msgid "One-click Form Events Tracking"
6442
  msgstr ""
6443
 
6444
- #: languages/vue.php:941
6445
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6446
  msgstr ""
6447
 
6448
- #: languages/vue.php:944
6449
  msgid "WordPress Admin Area Reports"
6450
  msgstr ""
6451
 
6452
- #: languages/vue.php:947
6453
  msgid "Standard Reports"
6454
  msgstr ""
6455
 
6456
- #: languages/vue.php:950
6457
  msgid "Overview Reports for the last 30 days."
6458
  msgstr ""
6459
 
6460
- #: languages/vue.php:953
6461
  msgid "Advanced Reports"
6462
  msgstr ""
6463
 
6464
- #: languages/vue.php:956
6465
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6466
  msgstr ""
6467
 
6468
- #: languages/vue.php:959
6469
  msgid "Dashboard Widget"
6470
  msgstr ""
6471
 
6472
- #: languages/vue.php:962
6473
  msgid "Basic Widget"
6474
  msgstr ""
6475
 
6476
- #: languages/vue.php:965
6477
  msgid "Overview Report Synopsis"
6478
  msgstr ""
6479
 
6480
- #: languages/vue.php:968
6481
  msgid "Advanced Dashboard Widget"
6482
  msgstr ""
6483
 
6484
- #: languages/vue.php:971
6485
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6486
  msgstr ""
6487
 
6488
- #: languages/vue.php:974
6489
  msgid "Publisher Reports"
6490
  msgstr ""
6491
 
6492
- #: languages/vue.php:977
6493
  msgid "Advanced Publisher Reports & Tracking"
6494
  msgstr ""
6495
 
6496
- #: languages/vue.php:980
6497
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6498
  msgstr ""
6499
 
6500
- #: languages/vue.php:986
6501
  msgid "Email Summaries"
6502
  msgstr ""
6503
 
6504
- #: languages/vue.php:989
6505
  msgid "Included"
6506
  msgstr ""
6507
 
6508
- #: languages/vue.php:992
6509
  msgid "Get weekly traffic reports directly in your inbox."
6510
  msgstr ""
6511
 
6512
- #: languages/vue.php:998
6513
  msgid "Basic Options"
6514
  msgstr ""
6515
 
6516
- #: languages/vue.php:1001
6517
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6518
  msgstr ""
6519
 
6520
- #: languages/vue.php:1004
6521
  msgid "Dynamic Popular Posts & Popular Products"
6522
  msgstr ""
6523
 
6524
- #: languages/vue.php:1007
6525
  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."
6526
  msgstr ""
6527
 
6528
- #: languages/vue.php:1010
6529
  msgid "Not Available"
6530
  msgstr ""
6531
 
6532
- #: languages/vue.php:1013
6533
  msgid "Complete Custom Dimensions Tracking"
6534
  msgstr ""
6535
 
6536
- #: languages/vue.php:1016
6537
  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"
6538
  msgstr ""
6539
 
6540
- #: languages/vue.php:1022
6541
  msgid "Limited Support"
6542
  msgstr ""
6543
 
6544
- #: languages/vue.php:1025
6545
  msgid "Priority Support"
6546
  msgstr ""
6547
 
6548
- #: languages/vue.php:1028
6549
  msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
6550
  msgstr ""
6551
 
6552
- #: languages/vue.php:1031
6553
  msgid "Feature"
6554
  msgstr ""
6555
 
6556
- #: languages/vue.php:1034
6557
  msgid "Lite"
6558
  msgstr ""
6559
 
6560
- #: languages/vue.php:1037
6561
  msgid "Pro"
6562
  msgstr ""
6563
 
6564
- #: languages/vue.php:1040
6565
  msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
6566
  msgstr ""
6567
 
6568
- #: languages/vue.php:1046
6569
  msgid "Universal Tracking"
6570
  msgstr ""
6571
 
6572
- #: languages/vue.php:1049
6573
  msgid "Custom Google Analytics Link Tracking"
6574
  msgstr ""
6575
 
6576
- #: languages/vue.php:1052
6577
  msgid "Standard Tracking"
6578
  msgstr ""
6579
 
6580
- #: languages/vue.php:1055
6581
  msgid "Advanced Tracking"
6582
  msgstr ""
6583
 
6584
- #: languages/vue.php:1058
6585
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6586
  msgstr ""
6587
 
6588
- #: languages/vue.php:1061
6589
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6590
  msgstr ""
6591
 
6592
- #: languages/vue.php:1064
6593
  msgid "No-Code-Needed Tracking Features"
6594
  msgstr ""
6595
 
6596
- #: languages/vue.php:1067
6597
  msgid "Basic Tracking Options"
6598
  msgstr ""
6599
 
6600
- #: languages/vue.php:1070
6601
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6602
  msgstr ""
6603
 
6604
- #: languages/vue.php:1073
6605
  msgid "Advanced Tracking Options"
6606
  msgstr ""
6607
 
6608
- #: languages/vue.php:1076
6609
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6610
  msgstr ""
6611
 
6612
- #: languages/vue.php:1079
6613
  msgid "Inbox"
6614
  msgstr ""
6615
 
6616
- #: languages/vue.php:1082
6617
  msgid "Back to Inbox"
6618
  msgstr ""
6619
 
6620
- #: languages/vue.php:1085
6621
  msgid "View Dismissed"
6622
  msgstr ""
6623
 
6624
- #: languages/vue.php:1088
6625
  msgid "Notifications"
6626
  msgstr ""
6627
 
6628
- #: languages/vue.php:1091
6629
  msgid "Dismiss All"
6630
  msgstr ""
6631
 
6632
- #: languages/vue.php:1094
6633
  msgid "Dismissed"
6634
  msgstr ""
6635
 
6636
- #: languages/vue.php:1097
6637
  msgid "No Notifications"
6638
  msgstr ""
6639
 
6640
  #. Translators: Error status and error text.
6641
- #: languages/vue.php:1101
6642
  msgid "Can't load settings. Error: %1$s, %2$s"
6643
  msgstr ""
6644
 
6645
- #: languages/vue.php:1104
6646
  msgid "You appear to be offline."
6647
  msgstr ""
6648
 
6649
  #. Translators: Error status and error text.
6650
- #: languages/vue.php:1108
6651
  msgid "Can't save settings. Error: %1$s, %2$s"
6652
  msgstr ""
6653
 
6654
- #: languages/vue.php:1111
6655
  msgid "Network error encountered. Settings not saved."
6656
  msgstr ""
6657
 
6658
- #: languages/vue.php:1114
6659
  msgid "Show in widget mode"
6660
  msgstr ""
6661
 
6662
- #: languages/vue.php:1117
6663
  msgid "Show in full-width mode"
6664
  msgstr ""
6665
 
6666
- #: languages/vue.php:1120
6667
  msgid "Show Overview Reports"
6668
  msgstr ""
6669
 
6670
- #: languages/vue.php:1123
6671
  msgid "Show Publishers Reports"
6672
  msgstr ""
6673
 
6674
- #: languages/vue.php:1126
6675
  msgid "Show eCommerce Reports"
6676
  msgstr ""
6677
 
6678
- #: languages/vue.php:1129
6679
  msgid "Settings Menu"
6680
  msgstr ""
6681
 
6682
- #: languages/vue.php:1132
6683
  msgid "Available in PRO version"
6684
  msgstr ""
6685
 
6686
- #: languages/vue.php:1135
6687
  msgid "See All Reports"
6688
  msgstr ""
6689
 
6690
- #: languages/vue.php:1138
6691
  msgid "Go to the Analytics Dashboard"
6692
  msgstr ""
6693
 
6694
- #: languages/vue.php:1153
6695
  msgid "Cart Funnel"
6696
  msgstr ""
6697
 
6698
- #: languages/vue.php:1156
6699
  msgid "Customer Insights"
6700
  msgstr ""
6701
 
6702
- #: languages/vue.php:1159
6703
  msgid "Campaign Measurement"
6704
  msgstr ""
6705
 
6706
- #: languages/vue.php:1162
6707
  msgid "Customer Profiles"
6708
  msgstr ""
6709
 
6710
- #: languages/vue.php:1165
6711
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
6712
  msgstr ""
6713
 
6714
- #: languages/vue.php:1168
6715
  msgid "Truly Understand Your%1$s Customers With %2$sExactMetrics%3$s"
6716
  msgstr ""
6717
 
6718
- #: languages/vue.php:1171
6719
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from ExactMetrics!"
6720
  msgstr ""
6721
 
6722
- #: languages/vue.php:1174
6723
  msgid "Track all-new metrics!"
6724
  msgstr ""
6725
 
6726
- #: languages/vue.php:1177
6727
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
6728
  msgstr ""
6729
 
6730
- #: languages/vue.php:1180
6731
  msgid "FEATURES"
6732
  msgstr ""
6733
 
6734
- #: languages/vue.php:1183
6735
  msgid "Get The Unique Metrics Neccessary for Growth"
6736
  msgstr ""
6737
 
6738
- #: languages/vue.php:1186
6739
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
6740
  msgstr ""
6741
 
6742
- #: languages/vue.php:1189
6743
  msgid "Get Answers to the important questions %1$syou should know."
6744
  msgstr ""
6745
 
6746
- #: languages/vue.php:1192
6747
  msgid "Did the login/registration step of the checkout put users off?"
6748
  msgstr ""
6749
 
6750
- #: languages/vue.php:1195
6751
  msgid "Which ad campaign is driving the most revenue?"
6752
  msgstr ""
6753
 
6754
- #: languages/vue.php:1198
6755
  msgid "Who is my typical customer?"
6756
  msgstr ""
6757
 
6758
- #: languages/vue.php:1201
6759
  msgid "Level-up Your eCommerce store with %1$sExactMetrics + WooCommerce!%1$s"
6760
  msgstr ""
6761
 
6762
  #. Translators: Error status and error text.
6763
- #: languages/vue.php:1205
6764
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
6765
  msgstr ""
6766
 
6767
  #. Translators: Error status and error text.
6768
- #: languages/vue.php:1209
6769
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
6770
  msgstr ""
6771
 
6772
  #. Translators: Error status and error text.
6773
- #: languages/vue.php:1213
6774
  msgid "Can't load license details. Error: %1$s, %2$s"
6775
  msgstr ""
6776
 
6777
- #: languages/vue.php:1216
6778
  msgid "Error loading license details"
6779
  msgstr ""
6780
 
6781
  #. Translators: Error status and error text.
6782
- #: languages/vue.php:1220
6783
  msgid "Can't verify the license. Error: %1$s, %2$s"
6784
  msgstr ""
6785
 
6786
  #. Translators: Error status and error text.
6787
- #: languages/vue.php:1224
6788
  msgid "Can't validate the license. Error: %1$s, %2$s"
6789
  msgstr ""
6790
 
6791
- #: languages/vue.php:1227
6792
  msgid "Reset to default"
6793
  msgstr ""
6794
 
6795
- #: languages/vue.php:1230
6796
  msgid "The value entered does not match the required format"
6797
  msgstr ""
6798
 
6799
- #: languages/vue.php:1233
6800
  msgid "Check out the newly added classic mode"
6801
  msgstr ""
6802
 
6803
  #. Translators: Placeholder adds a line break.
6804
- #: languages/vue.php:1237
6805
  msgid "You can customize your %sdate range only in the PRO version."
6806
  msgstr ""
6807
 
6808
- #: languages/vue.php:1240
6809
  msgid "Help Us Improve"
6810
  msgstr ""
6811
 
6812
- #: languages/vue.php:1243
6813
  msgid "Help us better understand our users and their website needs."
6814
  msgstr ""
6815
 
6816
  #. Translators: Adds a link to the documentation.
6817
- #: languages/vue.php:1247
6818
  msgid "If enabled ExactMetrics will send some information about your WordPress site like what plugins and themes you use and which ExactMetrics settings you use to us so that we can improve our product. For a complete list of what we send and what we use it for, %1$svisit our website.%2$s"
6819
  msgstr ""
6820
 
6821
  #. Translators: The name of the field that is throwing a validation error.
6822
- #: languages/vue.php:1251
6823
  msgid "%s can't be empty."
6824
  msgstr ""
6825
 
6826
- #: languages/vue.php:1254
6827
  msgid "Duplicate values are not allowed."
6828
  msgstr ""
6829
 
6830
- #: languages/vue.php:1257
6831
  msgid "You can add maximum 5 items."
6832
  msgstr ""
6833
 
6834
- #: languages/vue.php:1260
6835
  msgid "At least 0 item required."
6836
  msgstr ""
6837
 
6838
- #: languages/vue.php:1263
6839
  msgid "Add Another Link Path"
6840
  msgstr ""
6841
 
6842
- #: languages/vue.php:1266
6843
  msgid "Remove row"
6844
  msgstr ""
6845
 
6846
- #: languages/vue.php:1269
6847
  msgid "Sessions"
6848
  msgstr ""
6849
 
6850
  #. Translators: Line break.
6851
- #: languages/vue.php:1273
6852
  msgid "Unique %s Sessions"
6853
  msgstr ""
6854
 
6855
- #: languages/vue.php:1276
6856
  msgid "Pageviews"
6857
  msgstr ""
6858
 
6859
  #. Translators: Line break.
6860
- #: languages/vue.php:1280
6861
  msgid "Unique %s Pageviews"
6862
  msgstr ""
6863
 
6864
- #: languages/vue.php:1283
6865
  msgid "A session is the browsing session of a single user to your site."
6866
  msgstr ""
6867
 
6868
- #: languages/vue.php:1286
6869
  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."
6870
  msgstr ""
6871
 
6872
- #: languages/vue.php:1289
6873
  msgid "Total duration of all sessions (in seconds) / number of sessions."
6874
  msgstr ""
6875
 
6876
- #: languages/vue.php:1292
6877
  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."
6878
  msgstr ""
6879
 
6880
- #: languages/vue.php:1295
6881
  msgid "The number of distinct tracked users"
6882
  msgstr ""
6883
 
6884
- #: languages/vue.php:1298
6885
  msgid "Avg. Session Duration"
6886
  msgstr ""
6887
 
6888
- #: languages/vue.php:1304
6889
  msgid "Total Users"
6890
  msgstr ""
6891
 
6892
- #: languages/vue.php:1307
6893
  msgid "No options available"
6894
  msgstr ""
6895
 
6896
  #. Translators: Placeholders make the text highlighted.
6897
- #: languages/vue.php:1311
6898
  msgid "%1$sNeed%2$s to Grow FASTER??"
6899
  msgstr ""
6900
 
6901
- #: languages/vue.php:1314
6902
  msgid "Get additional, actionable insights by going Pro."
6903
  msgstr ""
6904
 
6905
- #: languages/vue.php:1317
6906
  msgid "Skip"
6907
  msgstr ""
6908
 
6909
- #: languages/vue.php:1320
6910
  msgid "See All Features"
6911
  msgstr ""
6912
 
6913
- #: languages/vue.php:1323
6914
  msgid "Upgrade to Pro to get the complete ExactMetrics experience including 1 click tracking integrations for your favorite WordPress plugins and insightful reports backed by our legendary support team."
6915
  msgstr ""
6916
 
6917
- #: languages/vue.php:1326
6918
  msgid "Our Pro plan includes:"
6919
  msgstr ""
6920
 
6921
  #. Translators: Error status and error text.
6922
- #: languages/vue.php:1330
6923
  msgid "Can't load errors. Error: %1$s, %2$s"
6924
  msgstr ""
6925
 
6926
- #: languages/vue.php:1333
6927
  msgid "Real-Time Report"
6928
  msgstr ""
6929
 
6930
- #: languages/vue.php:1336
6931
  msgid "Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitor's activity when you need it."
6932
  msgstr ""
6933
 
6934
  #. Translators: add link to blog.
6935
- #: languages/vue.php:1340
6936
  msgid "To comply with Google's API policies we've had to remove the real time report from the lite version. You can read about this decision and why it was made in %1$sthis blog post%2$s. To access the real time report in the WordPress backend, you will need to upgrade to Pro."
6937
  msgstr ""
6938
 
6939
- #: languages/vue.php:1343
6940
  msgid "Here's what you get:"
6941
  msgstr ""
6942
 
6943
- #: languages/vue.php:1346
6944
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
6945
  msgstr ""
6946
 
6947
- #: languages/vue.php:1349
6948
  msgid "See Your Top Pages Immediately After Making Changes"
6949
  msgstr ""
6950
 
6951
- #: languages/vue.php:1352
6952
  msgid "See Your Top Referral Sources and Adapt Faster"
6953
  msgstr ""
6954
 
6955
- #: languages/vue.php:1355
6956
  msgid "See Your Traffic Demographics"
6957
  msgstr ""
6958
 
6959
- #: languages/vue.php:1358
6960
  msgid "Get Fresh Report Data Every 60 Seconds"
6961
  msgstr ""
6962
 
6963
- #: languages/vue.php:1361
6964
  msgid "See Where Your Visitors are Connecting From (country & city)"
6965
  msgstr ""
6966
 
6967
- #: languages/vue.php:1364
6968
  msgid "Forms Report"
6969
  msgstr ""
6970
 
6971
- #: languages/vue.php:1367
6972
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
6973
  msgstr ""
6974
 
6975
- #: languages/vue.php:1370
6976
  msgid "See Your Top Converting Forms and Optimize"
6977
  msgstr ""
6978
 
6979
- #: languages/vue.php:1373
6980
  msgid "See Your Forms Impressions Count to Find the Best Placement"
6981
  msgstr ""
6982
 
6983
- #: languages/vue.php:1376
6984
  msgid "Awesome, You're All Set!"
6985
  msgstr ""
6986
 
6987
- #: languages/vue.php:1379
6988
  msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
6989
  msgstr ""
6990
 
6991
  #. Translators: Make text bold.
6992
- #: languages/vue.php:1383
6993
  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."
6994
  msgstr ""
6995
 
6996
  #. Translators: Add link to blog.
6997
  #. Translators: Link to our blog.
6998
- #: languages/vue.php:1387
6999
- #: languages/vue.php:3585
7000
  msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
7001
  msgstr ""
7002
 
7003
- #: languages/vue.php:1390
7004
  msgid "Finish Setup & Exit Wizard"
7005
  msgstr ""
7006
 
7007
- #: languages/vue.php:1393
7008
  msgid "Google Analytics"
7009
  msgstr ""
7010
 
7011
- #: languages/vue.php:1396
7012
  msgid "Subscribe"
7013
  msgstr ""
7014
 
7015
- #: languages/vue.php:1399
7016
  msgid "Checking your website..."
7017
  msgstr ""
7018
 
7019
- #: languages/vue.php:1402
7020
  msgid "Recommended Addons"
7021
  msgstr ""
7022
 
7023
  #. Translators: Add a link to upgrade and make the text green.
7024
- #: languages/vue.php:1406
7025
  msgid "To unlock more features consider %1$supgrading to PRO%2$s.%3$s As a valued ExactMetrics Lite user you %4$sreceive 50%% off%5$s, automatically applied at checkout!"
7026
  msgstr ""
7027
 
7028
- #: languages/vue.php:1409
7029
  msgid "Upgrade to PRO Now"
7030
  msgstr ""
7031
 
7032
- #: languages/vue.php:1412
7033
  msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
7034
  msgstr ""
7035
 
7036
- #: languages/vue.php:1415
7037
  msgid "See All Your Important Store Metrics in One Place."
7038
  msgstr ""
7039
 
7040
- #: languages/vue.php:1418
7041
  msgid "... and more:"
7042
  msgstr ""
7043
 
7044
- #: languages/vue.php:1421
7045
  msgid "Dimensions- Track authors, categories, trags, searches, users and more."
7046
  msgstr ""
7047
 
7048
- #: languages/vue.php:1424
7049
  msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
7050
  msgstr ""
7051
 
7052
- #: languages/vue.php:1427
7053
  msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
7054
  msgstr ""
7055
 
7056
- #: languages/vue.php:1430
7057
  msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
7058
  msgstr ""
7059
 
7060
- #: languages/vue.php:1433
7061
  msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
7062
  msgstr ""
7063
 
7064
- #: languages/vue.php:1436
7065
  msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
7066
  msgstr ""
7067
 
7068
- #: languages/vue.php:1439
7069
  msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
7070
  msgstr ""
7071
 
7072
- #: languages/vue.php:1442
7073
  msgid "Ads- See who’s clicking on your Google Adsense banner ads."
7074
  msgstr ""
7075
 
7076
- #: languages/vue.php:1445
7077
  msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
7078
  msgstr ""
7079
 
7080
- #: languages/vue.php:1448
7081
  msgid "Ready to take your website to the next level? ExactMetrics gives you the accurate insights you need to make data-driven decisions to grow your traffic and conversions faster than ever before. Now you can easily enable advanced tracking on your website without having to know any code."
7082
  msgstr ""
7083
 
7084
- #: languages/vue.php:1451
7085
  msgid "The ExactMetrics Team"
7086
  msgstr ""
7087
 
7088
- #: languages/vue.php:1454
7089
  msgid "Custom Dimensions Report"
7090
  msgstr ""
7091
 
7092
- #: languages/vue.php:1457
7093
  msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
7094
  msgstr ""
7095
 
7096
- #: languages/vue.php:1460
7097
  msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
7098
  msgstr ""
7099
 
7100
- #: languages/vue.php:1463
7101
  msgid "Author tracking to see which author’s posts generate the most traffic"
7102
  msgstr ""
7103
 
7104
- #: languages/vue.php:1466
7105
  msgid "Post Type tracking to see which WordPress post types perform better"
7106
  msgstr ""
7107
 
7108
- #: languages/vue.php:1469
7109
  msgid "Category tracking to see which sections of your sites are the most popular"
7110
  msgstr ""
7111
 
7112
- #: languages/vue.php:1472
7113
  msgid "SEO score tracking to see which blog SEO scores are the most popular"
7114
  msgstr ""
7115
 
7116
- #: languages/vue.php:1475
7117
  msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
7118
  msgstr ""
7119
 
7120
- #: languages/vue.php:1478
7121
  msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
7122
  msgstr ""
7123
 
7124
  #. Translators: add link to blog.
7125
- #: languages/vue.php:1482
7126
  msgid "One of the factors that help deliver an outstanding user experience is having a website that loads quickly. With the Site Speed report you'll be able to check your site's performance directly from your ExactMetrics dashboard."
7127
  msgstr ""
7128
 
7129
- #: languages/vue.php:1485
7130
  msgid "See Your Homepage's Overall Performance Score"
7131
  msgstr ""
7132
 
7133
- #: languages/vue.php:1488
7134
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
7135
  msgstr ""
7136
 
7137
- #: languages/vue.php:1491
7138
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
7139
  msgstr ""
7140
 
7141
- #: languages/vue.php:1494
7142
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
7143
  msgstr ""
7144
 
7145
- #: languages/vue.php:1497
7146
  msgid "Hide dashboard widget"
7147
  msgstr ""
7148
 
7149
- #: languages/vue.php:1500
7150
  msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
7151
  msgstr ""
7152
 
7153
- #: languages/vue.php:1503
7154
  msgid "Yes, hide it!"
7155
  msgstr ""
7156
 
7157
- #: languages/vue.php:1506
7158
  msgid "No, cancel!"
7159
  msgstr ""
7160
 
7161
- #: languages/vue.php:1509
7162
  msgid "ExactMetrics Widget Hidden"
7163
  msgstr ""
7164
 
7165
- #: languages/vue.php:1512
7166
  msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
7167
  msgstr ""
7168
 
7169
  #. Translators: Error status and error text.
7170
- #: languages/vue.php:1516
7171
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7172
  msgstr ""
7173
 
7174
  #. Translators: Error status and error text.
7175
- #: languages/vue.php:1520
7176
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7177
  msgstr ""
7178
 
7179
- #: languages/vue.php:1523
7180
  msgid "You appear to be offline. Settings not saved."
7181
  msgstr ""
7182
 
7183
  #. Translators: Error status and error text.
7184
- #: languages/vue.php:1527
7185
  msgid "Can't authenticate. Error: %1$s, %2$s"
7186
  msgstr ""
7187
 
7188
  #. Translators: Error status and error text.
7189
- #: languages/vue.php:1531
7190
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7191
  msgstr ""
7192
 
7193
  #. Translators: Error status and error text.
7194
- #: languages/vue.php:1535
7195
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7196
  msgstr ""
7197
 
7198
- #: languages/vue.php:1538
7199
  msgid "Still Calculating..."
7200
  msgstr ""
7201
 
7202
- #: languages/vue.php:1541
7203
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7204
  msgstr ""
7205
 
7206
- #: languages/vue.php:1544
7207
  msgid "Back to Overview Report"
7208
  msgstr ""
7209
 
7210
- #: languages/vue.php:1547
7211
  msgid "Your 2020 Analytics Report"
7212
  msgstr ""
7213
 
7214
- #: languages/vue.php:1550
7215
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7216
  msgstr ""
7217
 
7218
- #: languages/vue.php:1553
7219
  msgid "Audience"
7220
  msgstr ""
7221
 
7222
- #: languages/vue.php:1556
7223
  msgid "Congrats"
7224
  msgstr ""
7225
 
7226
- #: languages/vue.php:1559
7227
  msgid "Your website was quite popular this year! "
7228
  msgstr ""
7229
 
7230
- #: languages/vue.php:1562
7231
  msgid "You had "
7232
  msgstr ""
7233
 
7234
- #: languages/vue.php:1565
7235
  msgid " visitors!"
7236
  msgstr ""
7237
 
7238
- #: languages/vue.php:1568
7239
  msgid " visitors"
7240
  msgstr ""
7241
 
7242
- #: languages/vue.php:1571
7243
  msgid "Total Visitors"
7244
  msgstr ""
7245
 
7246
- #: languages/vue.php:1574
7247
  msgid "Total Sessions"
7248
  msgstr ""
7249
 
7250
- #: languages/vue.php:1577
7251
  msgid "Visitors by Month"
7252
  msgstr ""
7253
 
7254
- #: languages/vue.php:1580
7255
  msgid "January 1, 2020 - December 31, 2020"
7256
  msgstr ""
7257
 
7258
- #: languages/vue.php:1583
7259
  msgid "A Tip for 2021"
7260
  msgstr ""
7261
 
7262
- #: languages/vue.php:1586
7263
  msgid "Demographics"
7264
  msgstr ""
7265
 
7266
- #: languages/vue.php:1589
7267
  msgid "#1"
7268
  msgstr ""
7269
 
7270
- #: languages/vue.php:1592
7271
  msgid "You Top 5 Countries"
7272
  msgstr ""
7273
 
7274
- #: languages/vue.php:1595
7275
  msgid "Let’s get to know your visitors a little better, shall we?"
7276
  msgstr ""
7277
 
7278
- #: languages/vue.php:1598
7279
  msgid "Gender"
7280
  msgstr ""
7281
 
7282
- #: languages/vue.php:1601
7283
  msgid "Female"
7284
  msgstr ""
7285
 
7286
- #: languages/vue.php:1604
7287
  msgid "Women"
7288
  msgstr ""
7289
 
7290
- #: languages/vue.php:1607
7291
  msgid "Male"
7292
  msgstr ""
7293
 
7294
- #: languages/vue.php:1610
7295
  msgid "Average Age"
7296
  msgstr ""
7297
 
7298
- #: languages/vue.php:1613
7299
  msgid "Behavior"
7300
  msgstr ""
7301
 
7302
- #: languages/vue.php:1616
7303
  msgid "Your Top 5 Pages"
7304
  msgstr ""
7305
 
7306
- #: languages/vue.php:1619
7307
  msgid "Time Spent on Site"
7308
  msgstr ""
7309
 
7310
- #: languages/vue.php:1622
7311
  msgid "minutes"
7312
  msgstr ""
7313
 
7314
- #: languages/vue.php:1625
7315
  msgid "Device Type"
7316
  msgstr ""
7317
 
7318
- #: languages/vue.php:1628
7319
  msgid "A Tip For 2021"
7320
  msgstr ""
7321
 
7322
- #: languages/vue.php:1631
7323
  msgid "Are you looking for a way to track your landing pages and see which one gets the most conversions on your website?"
7324
  msgstr ""
7325
 
7326
- #: languages/vue.php:1634
7327
  msgid "Read - How to Track Google Analytics Landing Page Conversions"
7328
  msgstr ""
7329
 
7330
- #: languages/vue.php:1637
7331
  msgid "So, where did all of these visitors come from?"
7332
  msgstr ""
7333
 
7334
- #: languages/vue.php:1640
7335
  msgid "Clicks"
7336
  msgstr ""
7337
 
7338
- #: languages/vue.php:1643
7339
  msgid "Your Top 5 Keywords"
7340
  msgstr ""
7341
 
7342
- #: languages/vue.php:1646
7343
  msgid "What keywords visitors searched for to find your site"
7344
  msgstr ""
7345
 
7346
- #: languages/vue.php:1649
7347
  msgid "Your Top 5 Referrals"
7348
  msgstr ""
7349
 
7350
- #: languages/vue.php:1652
7351
  msgid "The websites that link back to your website"
7352
  msgstr ""
7353
 
7354
- #: languages/vue.php:1655
7355
  msgid "Opportunity"
7356
  msgstr ""
7357
 
7358
- #: languages/vue.php:1658
7359
  msgid "Learn how to boost your SEO rankings using ExactMetrics so more visitors reach your articles and increase engagement."
7360
  msgstr ""
7361
 
7362
- #: languages/vue.php:1661
7363
  msgid "Read - 5 Ways to Skyrocket Your SEO Rankings with Google Analytics"
7364
  msgstr ""
7365
 
7366
- #: languages/vue.php:1664
7367
  msgid "Thank you for using ExactMetrics!"
7368
  msgstr ""
7369
 
7370
- #: languages/vue.php:1667
7371
  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."
7372
  msgstr ""
7373
 
7374
- #: languages/vue.php:1670
7375
  msgid "Here's to an amazing 2021!"
7376
  msgstr ""
7377
 
7378
- #: languages/vue.php:1673
7379
  msgid "Enjoying ExactMetrics"
7380
  msgstr ""
7381
 
7382
- #: languages/vue.php:1676
7383
  msgid "Leave a five star review!"
7384
  msgstr ""
7385
 
7386
- #: languages/vue.php:1679
7387
  msgid "Syed Balkhi"
7388
  msgstr ""
7389
 
7390
- #: languages/vue.php:1682
7391
  msgid "Chris Christoff"
7392
  msgstr ""
7393
 
7394
- #: languages/vue.php:1685
7395
  msgid "Write Review"
7396
  msgstr ""
7397
 
7398
- #: languages/vue.php:1688
7399
  msgid "Did you know over 10 million websites use our plugins?"
7400
  msgstr ""
7401
 
7402
- #: languages/vue.php:1691
7403
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7404
  msgstr ""
7405
 
7406
- #: languages/vue.php:1694
7407
  msgid "Join our Communities!"
7408
  msgstr ""
7409
 
7410
- #: languages/vue.php:1697
7411
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7412
  msgstr ""
7413
 
7414
- #: languages/vue.php:1700
7415
  msgid "Facebook Group"
7416
  msgstr ""
7417
 
7418
- #: languages/vue.php:1703
7419
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7420
  msgstr ""
7421
 
7422
- #: languages/vue.php:1706
7423
  msgid "Join Now...It’s Free!"
7424
  msgstr ""
7425
 
7426
- #: languages/vue.php:1709
7427
  msgid "WordPress Tutorials by WPBeginner"
7428
  msgstr ""
7429
 
7430
- #: languages/vue.php:1712
7431
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7432
  msgstr ""
7433
 
7434
- #: languages/vue.php:1715
7435
  msgid "Visit WPBeginner"
7436
  msgstr ""
7437
 
7438
- #: languages/vue.php:1718
7439
  msgid "Follow Us!"
7440
  msgstr ""
7441
 
7442
- #: languages/vue.php:1721
7443
  msgid "Follow ExactMetrics on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
7444
  msgstr ""
7445
 
7446
- #: languages/vue.php:1724
7447
  msgid "Copyright ExactMetrics, 2021"
7448
  msgstr ""
7449
 
7450
- #: languages/vue.php:1727
7451
  msgid "Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights"
7452
  msgstr ""
7453
 
7454
- #: languages/vue.php:1733
7455
  msgid "January"
7456
  msgstr ""
7457
 
7458
- #: languages/vue.php:1736
7459
  msgid "February"
7460
  msgstr ""
7461
 
7462
- #: languages/vue.php:1739
7463
  msgid "March"
7464
  msgstr ""
7465
 
7466
- #: languages/vue.php:1742
7467
  msgid "April"
7468
  msgstr ""
7469
 
7470
- #: languages/vue.php:1745
7471
  msgid "May"
7472
  msgstr ""
7473
 
7474
- #: languages/vue.php:1748
7475
  msgid "June"
7476
  msgstr ""
7477
 
7478
- #: languages/vue.php:1751
7479
  msgid "July"
7480
  msgstr ""
7481
 
7482
- #: languages/vue.php:1754
7483
  msgid "August"
7484
  msgstr ""
7485
 
7486
- #: languages/vue.php:1757
7487
  msgid "September"
7488
  msgstr ""
7489
 
7490
- #: languages/vue.php:1760
7491
  msgid "October"
7492
  msgstr ""
7493
 
7494
- #: languages/vue.php:1763
7495
  msgid "November"
7496
  msgstr ""
7497
 
7498
- #: languages/vue.php:1766
7499
  msgid "December"
7500
  msgstr ""
7501
 
7502
  #. Translators: Number of visitors.
7503
- #: languages/vue.php:1770
7504
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7505
  msgstr ""
7506
 
7507
- #: languages/vue.php:1773
7508
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7509
  msgstr ""
7510
 
7511
  #. Translators: Number of visitors.
7512
- #: languages/vue.php:1777
7513
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7514
  msgstr ""
7515
 
7516
  #. Translators: Number of visitors.
7517
- #: languages/vue.php:1781
7518
  msgid "%s Visitors"
7519
  msgstr ""
7520
 
7521
  #. Translators: Percent and Number of visitors.
7522
- #: languages/vue.php:1785
7523
  msgid "%1$s&#37 of your visitors were %2$s"
7524
  msgstr ""
7525
 
7526
  #. Translators: Number of visitors and their age.
7527
- #: languages/vue.php:1789
7528
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7529
  msgstr ""
7530
 
7531
- #: languages/vue.php:1792
7532
  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>"
7533
  msgstr ""
7534
 
7535
  #. Translators: Number of minutes spent on site.
7536
- #: languages/vue.php:1796
7537
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7538
  msgstr ""
7539
 
7540
  #. Translators: Name of device type.
7541
- #: languages/vue.php:1800
7542
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7543
  msgstr ""
7544
 
7545
  #. Translators: Number of visitors and device percentage.
7546
- #: languages/vue.php:1804
7547
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7548
  msgstr ""
7549
 
7550
- #: languages/vue.php:1808
7551
  msgid "Desktop"
7552
  msgstr ""
7553
 
7554
- #: languages/vue.php:1812
7555
  msgid "Tablet"
7556
  msgstr ""
7557
 
7558
- #: languages/vue.php:1816
7559
  msgid "Mobile"
7560
  msgstr ""
7561
 
7562
- #: languages/vue.php:1819
7563
  msgid "Force Deauthenticate"
7564
  msgstr ""
7565
 
7566
- #: languages/vue.php:1822
7567
  msgid "Disconnect ExactMetrics"
7568
  msgstr ""
7569
 
7570
- #: languages/vue.php:1825
7571
  msgid "Authenticating"
7572
  msgstr ""
7573
 
7574
- #: languages/vue.php:1828
7575
  msgid "Verifying Credentials"
7576
  msgstr ""
7577
 
7578
- #: languages/vue.php:1831
7579
  msgid "Your site is connected to ExactMetrics!"
7580
  msgstr ""
7581
 
7582
- #: languages/vue.php:1834
7583
  msgid "Deauthenticating"
7584
  msgstr ""
7585
 
7586
- #: languages/vue.php:1837
7587
  msgid "You've disconnected your site from ExactMetrics. Your site is no longer being tracked by Google Analytics and you won't see reports anymore."
7588
  msgstr ""
7589
 
7590
- #: languages/vue.php:1840
7591
- #: languages/vue.php:1912
7592
  msgid "Connect ExactMetrics"
7593
  msgstr ""
7594
 
7595
- #: languages/vue.php:1843
7596
  msgid "Verify Credentials"
7597
  msgstr ""
7598
 
7599
- #: languages/vue.php:1849
7600
  msgid "Website Profile"
7601
  msgstr ""
7602
 
7603
- #: languages/vue.php:1852
7604
  msgid "Active Profile"
7605
  msgstr ""
7606
 
7607
- #: languages/vue.php:1855
7608
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
7609
  msgstr ""
7610
 
7611
- #: languages/vue.php:1858
7612
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
7613
  msgstr ""
7614
 
7615
- #: languages/vue.php:1861
7616
  msgid "Dual Tracking Profile"
7617
  msgstr ""
7618
 
7619
- #: languages/vue.php:1864
7620
  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."
7621
  msgstr ""
7622
 
7623
- #: languages/vue.php:1867
7624
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
7625
  msgstr ""
7626
 
7627
- #: languages/vue.php:1870
7628
  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."
7629
  msgstr ""
7630
 
7631
- #: languages/vue.php:1873
7632
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
7633
  msgstr ""
7634
 
7635
- #: languages/vue.php:1876
7636
  msgid "Measurement Protocol API Secret"
7637
  msgstr ""
7638
 
7639
- #: languages/vue.php:1879
7640
  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."
7641
  msgstr ""
7642
 
7643
- #: languages/vue.php:1882
7644
  msgid "Classic mode"
7645
  msgstr ""
7646
 
7647
- #: languages/vue.php:1885
7648
  msgid "Proceed"
7649
  msgstr ""
7650
 
7651
- #: languages/vue.php:1888
7652
  msgid "Connection Information"
7653
  msgstr ""
7654
 
7655
- #: languages/vue.php:1891
7656
  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."
7657
  msgstr ""
7658
 
7659
- #: languages/vue.php:1894
7660
  msgid "Hostname"
7661
  msgstr ""
7662
 
7663
- #: languages/vue.php:1897
7664
  msgid "FTP Username"
7665
  msgstr ""
7666
 
7667
- #: languages/vue.php:1900
7668
  msgid "FTP Password"
7669
  msgstr ""
7670
 
7671
- #: languages/vue.php:1903
7672
  msgid "This password will not be stored on the server."
7673
  msgstr ""
7674
 
7675
- #: languages/vue.php:1906
7676
  msgid "Connection Type"
7677
  msgstr ""
7678
 
7679
- #: languages/vue.php:1909
7680
  msgid "Cancel"
7681
  msgstr ""
7682
 
7683
- #: languages/vue.php:1915
7684
  msgid "Website profile"
7685
  msgstr ""
7686
 
7687
- #: languages/vue.php:1918
7688
  msgid "Active profile"
7689
  msgstr ""
7690
 
7691
- #: languages/vue.php:1921
7692
  msgid "Skip and Keep Connection"
7693
  msgstr ""
7694
 
7695
- #. Translators: Replaced with the number of days
7696
- #: languages/vue.php:1925
7697
  msgid "vs. Previous Day"
7698
  msgstr ""
7699
 
7700
- #: languages/vue.php:1928
7701
  msgid "No change"
7702
  msgstr ""
7703
 
7704
- #: languages/vue.php:1931
7705
  msgid "Choose Theme"
7706
  msgstr ""
7707
 
7708
- #: languages/vue.php:1934
7709
  msgid "Widget Styling"
7710
  msgstr ""
7711
 
7712
- #: languages/vue.php:1937
7713
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
7714
  msgstr ""
7715
 
7716
- #: languages/vue.php:1940
7717
  msgid "Sort By"
7718
  msgstr ""
7719
 
7720
- #: languages/vue.php:1943
7721
  msgid "Choose how you'd like the widget to determine your popular posts."
7722
  msgstr ""
7723
 
7724
- #: languages/vue.php:1946
7725
  msgid "Display Title"
7726
  msgstr ""
7727
 
7728
- #: languages/vue.php:1952
7729
  msgid "Title your widget and set its display preferences."
7730
  msgstr ""
7731
 
7732
- #: languages/vue.php:1955
7733
  msgid "Include in Post Types"
7734
  msgstr ""
7735
 
7736
- #: languages/vue.php:1958
7737
  msgid "Exclude from specific posts"
7738
  msgstr ""
7739
 
7740
  #. Translators: Placeholders make the text bold.
7741
- #: languages/vue.php:1962
7742
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
7743
  msgstr ""
7744
 
7745
  #. Translators: Placeholders make the text bold.
7746
- #: languages/vue.php:1966
7747
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
7748
  msgstr ""
7749
 
7750
- #: languages/vue.php:1969
7751
  msgid "Loading Themes"
7752
  msgstr ""
7753
 
7754
  #. Translators: placeholders make text small.
7755
- #: languages/vue.php:1973
7756
  msgid "Default Styles %1$s- As seen above.%2$s"
7757
  msgstr ""
7758
 
7759
  #. Translators: placeholders make text small.
7760
- #: languages/vue.php:1977
7761
  msgid "No Styles %1$s- Use your own CSS.%2$s"
7762
  msgstr ""
7763
 
7764
  #. Translators: placeholders make text small.
7765
- #: languages/vue.php:1981
7766
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
7767
  msgstr ""
7768
 
7769
  #. Translators: placeholders make text small.
7770
- #: languages/vue.php:1985
7771
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
7772
  msgstr ""
7773
 
7774
  #. Translators: placeholders make text small.
7775
- #: languages/vue.php:1989
7776
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
7777
  msgstr ""
7778
 
7779
- #: languages/vue.php:1992
7780
  msgid "Placement"
7781
  msgstr ""
7782
 
7783
- #: languages/vue.php:1995
7784
  msgid "Choose how you'd like to place the widget."
7785
  msgstr ""
7786
 
7787
- #: languages/vue.php:1998
7788
  msgid "Insert After"
7789
  msgstr ""
7790
 
7791
- #: languages/vue.php:2001
7792
  msgid "Choose where in the post body the widget will be placed."
7793
  msgstr ""
7794
 
7795
- #: languages/vue.php:2005
7796
  msgid "Customize Design"
7797
  msgstr ""
7798
 
7799
- #: languages/vue.php:2008
7800
  msgid "words"
7801
  msgstr ""
7802
 
7803
- #: languages/vue.php:2011
7804
  msgid "Please select at least one post to display."
7805
  msgstr ""
7806
 
7807
  #. Translators: placeholders make text small.
7808
- #: languages/vue.php:2015
7809
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
7810
  msgstr ""
7811
 
7812
  #. Translators: placeholders make text small.
7813
- #: languages/vue.php:2019
7814
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
7815
  msgstr ""
7816
 
7817
- #: languages/vue.php:2022
7818
  msgid "Caching"
7819
  msgstr ""
7820
 
7821
- #: languages/vue.php:2025
7822
  msgid "Enable Data Caching"
7823
  msgstr ""
7824
 
7825
- #: languages/vue.php:2028
7826
  msgid "Refresh Cache Every"
7827
  msgstr ""
7828
 
7829
- #: languages/vue.php:2031
7830
  msgid "Choose how often to refresh the cache."
7831
  msgstr ""
7832
 
7833
- #: languages/vue.php:2034
7834
  msgid "Enable Ajaxify"
7835
  msgstr ""
7836
 
7837
- #: languages/vue.php:2037
7838
  msgid "Ajaxify Widget"
7839
  msgstr ""
7840
 
7841
- #: languages/vue.php:2040
7842
  msgid "Use to bypass page caching."
7843
  msgstr ""
7844
 
7845
- #: languages/vue.php:2043
7846
  msgid "Empty Cache"
7847
  msgstr ""
7848
 
7849
- #: languages/vue.php:2046
7850
  msgid "Click to manually wipe the cache right now."
7851
  msgstr ""
7852
 
7853
- #: languages/vue.php:2049
7854
  msgid "Popular posts cache emptied"
7855
  msgstr ""
7856
 
7857
- #: languages/vue.php:2052
7858
  msgid "Error emptying the popular posts cache. Please try again."
7859
  msgstr ""
7860
 
7861
- #: languages/vue.php:2055
7862
  msgid "Last 30 Days Analytics for "
7863
  msgstr ""
7864
 
7865
- #: languages/vue.php:2058
7866
  msgid "Your Website"
7867
  msgstr ""
7868
 
7869
- #: languages/vue.php:2061
7870
  msgid "Avg. Duration"
7871
  msgstr ""
7872
 
7873
- #: languages/vue.php:2064
7874
  msgid "More data is available"
7875
  msgstr ""
7876
 
7877
- #: languages/vue.php:2067
7878
  msgid "Want to see page-specific stats?"
7879
  msgstr ""
7880
 
7881
- #: languages/vue.php:2070
7882
  msgid "You appear to be offline. WPForms not installed."
7883
  msgstr ""
7884
 
7885
  #. Translators: Error status and error text.
7886
- #: languages/vue.php:2074
7887
  msgid "Can't activate addon. Error: %1$s, %2$s"
7888
  msgstr ""
7889
 
7890
- #: languages/vue.php:2077
7891
  msgid "You appear to be offline. Addon not activated."
7892
  msgstr ""
7893
 
7894
  #. Translators: Error status and error text.
7895
- #: languages/vue.php:2081
7896
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
7897
  msgstr ""
7898
 
7899
- #: languages/vue.php:2084
7900
  msgid "You appear to be offline. Addon not deactivated."
7901
  msgstr ""
7902
 
7903
  #. Translators: Error status and error text.
7904
- #: languages/vue.php:2088
7905
  msgid "Can't install plugin. Error: %1$s, %2$s"
7906
  msgstr ""
7907
 
7908
- #: languages/vue.php:2091
7909
  msgid "You appear to be offline. Plugin not installed."
7910
  msgstr ""
7911
 
7912
  #. Translators: Error status and error text.
7913
- #: languages/vue.php:2095
7914
  msgid "Can't install addon. Error: %1$s, %2$s"
7915
  msgstr ""
7916
 
7917
- #: languages/vue.php:2098
7918
  msgid "You appear to be offline. Addon not installed."
7919
  msgstr ""
7920
 
7921
  #. Translators: Error status and error text.
7922
- #: languages/vue.php:2102
7923
  msgid "Can't install WPForms. Error: %1$s, %2$s"
7924
  msgstr ""
7925
 
7926
- #: languages/vue.php:2105
7927
  msgid "Network Active"
7928
  msgstr ""
7929
 
7930
- #: languages/vue.php:2108
7931
  msgid "Active"
7932
  msgstr ""
7933
 
7934
- #: languages/vue.php:2111
7935
  msgid "Inactive"
7936
  msgstr ""
7937
 
7938
  #. Translators: Placeholder for the addon status (installed, active, etc).
7939
- #: languages/vue.php:2115
7940
  msgid "Status: %s"
7941
  msgstr ""
7942
 
7943
- #: languages/vue.php:2118
7944
  msgid "Not Installed"
7945
  msgstr ""
7946
 
7947
  #. Translators: Makes text bold and adds smiley.
7948
- #: languages/vue.php:2122
7949
  msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
7950
  msgstr ""
7951
 
7952
  #. Translators: Makes text green.
7953
- #: languages/vue.php:2126
7954
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
7955
  msgstr ""
7956
 
7957
- #: languages/vue.php:2129
7958
  msgid "Unlock All Features and Upgrade to Pro"
7959
  msgstr ""
7960
 
7961
  #. Translators: Make text green and add smiley face.
7962
- #: languages/vue.php:2133
7963
  msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
7964
  msgstr ""
7965
 
7966
  #. Translators: Make text green.
7967
- #: languages/vue.php:2137
7968
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
7969
  msgstr ""
7970
 
7971
- #: languages/vue.php:2140
7972
  msgid "Unlock PRO Features Now"
7973
  msgstr ""
7974
 
7975
- #: languages/vue.php:2143
7976
  msgid "Paste your license key here"
7977
  msgstr ""
7978
 
7979
- #: languages/vue.php:2146
7980
  msgid "Verify"
7981
  msgstr ""
7982
 
7983
  #. Translators: Add link to retrieve license from account area.
7984
- #: languages/vue.php:2150
7985
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
7986
  msgstr ""
7987
 
7988
- #: languages/vue.php:2153
7989
- #: languages/vue.php:3622
7990
  msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
7991
  msgstr ""
7992
 
7993
- #: languages/vue.php:2156
7994
  msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
7995
  msgstr ""
7996
 
7997
- #: languages/vue.php:2159
7998
  msgid "Automatically migrate all of your SEO settings with just 1 click!"
7999
  msgstr ""
8000
 
8001
- #: languages/vue.php:2162
8002
  msgid "1,938"
8003
  msgstr ""
8004
 
8005
- #: languages/vue.php:2165
8006
  msgid "2+ Million Active Installs"
8007
  msgstr ""
8008
 
8009
- #: languages/vue.php:2168
8010
  msgid "AIOSEO is the DIY Solution for Managing your SEO"
8011
  msgstr ""
8012
 
8013
- #: languages/vue.php:2171
8014
  msgid "Set up the proper SEO foundations in less than 10 minutes."
8015
  msgstr ""
8016
 
8017
- #: languages/vue.php:2174
8018
  msgid "SEO Audit Checklist"
8019
  msgstr ""
8020
 
8021
- #: languages/vue.php:2177
8022
  msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
8023
  msgstr ""
8024
 
8025
- #: languages/vue.php:2180
8026
  msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
8027
  msgstr ""
8028
 
8029
- #: languages/vue.php:2183
8030
  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."
8031
  msgstr ""
8032
 
8033
- #: languages/vue.php:2186
8034
  msgid "Get AIOSEO for WordPress"
8035
  msgstr ""
8036
 
8037
- #: languages/vue.php:2189
8038
  msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
8039
  msgstr ""
8040
 
8041
- #: languages/vue.php:2192
8042
  msgid "Try it out today, for free."
8043
  msgstr ""
8044
 
8045
- #: languages/vue.php:2195
8046
  msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
8047
  msgstr ""
8048
 
8049
- #: languages/vue.php:2198
8050
  msgid "Activate and Install the Plugin with just one click!"
8051
  msgstr ""
8052
 
8053
- #: languages/vue.php:2201
8054
  msgid "Installing AIOSEO..."
8055
  msgstr ""
8056
 
8057
- #: languages/vue.php:2204
8058
  msgid "Congrats! All-in-One SEO Installed."
8059
  msgstr ""
8060
 
8061
- #: languages/vue.php:2207
8062
  msgid "Switch to AIOSEO"
8063
  msgstr ""
8064
 
8065
- #: languages/vue.php:2210
8066
  msgid "Installation Failed. Please refresh and try again."
8067
  msgstr ""
8068
 
8069
- #: languages/vue.php:2213
8070
  msgid "Activating AIOSEO..."
8071
  msgstr ""
8072
 
8073
- #: languages/vue.php:2216
8074
  msgid "Activate AIOSEO"
8075
  msgstr ""
8076
 
8077
- #: languages/vue.php:2219
8078
  msgid "Activation Failed. Please refresh and try again."
8079
  msgstr ""
8080
 
8081
- #: languages/vue.php:2222
8082
  msgid "Unlock Form Tracking"
8083
  msgstr ""
8084
 
8085
- #: languages/vue.php:2225
8086
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
8087
  msgstr ""
8088
 
8089
- #: languages/vue.php:2228
8090
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
8091
  msgstr ""
8092
 
8093
- #: languages/vue.php:2231
8094
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
8095
  msgstr ""
8096
 
8097
- #: languages/vue.php:2234
8098
  msgid "Show"
8099
  msgstr ""
8100
 
8101
- #: languages/vue.php:2237
8102
  msgid "File imported"
8103
  msgstr ""
8104
 
8105
- #: languages/vue.php:2240
8106
  msgid "Settings successfully updated!"
8107
  msgstr ""
8108
 
8109
- #: languages/vue.php:2243
8110
  msgid "Error importing settings"
8111
  msgstr ""
8112
 
8113
- #: languages/vue.php:2246
8114
  msgid "Please choose a .json file generated by a ExactMetrics settings export."
8115
  msgstr ""
8116
 
8117
- #: languages/vue.php:2249
8118
  msgid "Import/Export"
8119
  msgstr ""
8120
 
8121
- #: languages/vue.php:2252
8122
  msgid "Import"
8123
  msgstr ""
8124
 
8125
- #: languages/vue.php:2255
8126
  msgid "Import settings from another ExactMetrics website."
8127
  msgstr ""
8128
 
8129
- #: languages/vue.php:2258
8130
  msgid "Export"
8131
  msgstr ""
8132
 
8133
- #: languages/vue.php:2261
8134
  msgid "Export settings to import into another ExactMetrics install."
8135
  msgstr ""
8136
 
8137
- #: languages/vue.php:2264
8138
  msgid "Import Settings"
8139
  msgstr ""
8140
 
8141
- #: languages/vue.php:2267
8142
  msgid "Export Settings"
8143
  msgstr ""
8144
 
8145
- #: languages/vue.php:2270
8146
  msgid "Please choose a file to import"
8147
  msgstr ""
8148
 
8149
- #: languages/vue.php:2273
8150
  msgid "Click Choose file below to select the settings export file from another site."
8151
  msgstr ""
8152
 
8153
- #: languages/vue.php:2276
8154
  msgid "Use the button below to export a file with your ExactMetrics settings."
8155
  msgstr ""
8156
 
8157
- #: languages/vue.php:2279
8158
  msgid "Choose file"
8159
  msgstr ""
8160
 
8161
- #: languages/vue.php:2282
8162
  msgid "No file chosen"
8163
  msgstr ""
8164
 
8165
- #: languages/vue.php:2285
8166
  msgid "Uploading file..."
8167
  msgstr ""
8168
 
8169
- #: languages/vue.php:2288
8170
  msgid "Custom code"
8171
  msgstr ""
8172
 
8173
  #. Translators: Adds a link to the Google reference.
8174
- #: languages/vue.php:2292
8175
  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."
8176
  msgstr ""
8177
 
8178
- #: languages/vue.php:2298
8179
  msgid "Automatic Updates"
8180
  msgstr ""
8181
 
8182
- #: languages/vue.php:2301
8183
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
8184
  msgstr ""
8185
 
8186
- #: languages/vue.php:2304
8187
  msgid "Hide Admin Bar Reports"
8188
  msgstr ""
8189
 
8190
  #. Translators: placeholders make text small.
8191
- #: languages/vue.php:2308
8192
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
8193
  msgstr ""
8194
 
8195
  #. Translators: placeholders make text small.
8196
- #: languages/vue.php:2312
8197
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
8198
  msgstr ""
8199
 
8200
  #. Translators: placeholders make text small.
8201
- #: languages/vue.php:2316
8202
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
8203
  msgstr ""
8204
 
8205
  #. Translators: placeholders make text small.
8206
- #: languages/vue.php:2320
8207
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
8208
  msgstr ""
8209
 
8210
  #. Translators: placeholders make text small.
8211
- #: languages/vue.php:2324
8212
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
8213
  msgstr ""
8214
 
8215
  #. Translators: placeholders make text small.
8216
- #: languages/vue.php:2328
8217
  msgid "None %1$s- Manually update everything.%2$s"
8218
  msgstr ""
8219
 
8220
  #. Translators: Adds a link to the general settings tab.
8221
- #: languages/vue.php:2332
8222
  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."
8223
  msgstr ""
8224
 
8225
- #: languages/vue.php:2335
8226
  msgid "Permissions"
8227
  msgstr ""
8228
 
8229
- #: languages/vue.php:2338
8230
  msgid "Export PDF Reports"
8231
  msgstr ""
8232
 
8233
- #: languages/vue.php:2341
8234
  msgid "Allow These User Roles to See Reports"
8235
  msgstr ""
8236
 
8237
- #: languages/vue.php:2344
8238
  msgid "Users that have at least one of these roles will be able to view the reports."
8239
  msgstr ""
8240
 
8241
- #: languages/vue.php:2347
8242
  msgid "Allow These User Roles to Save Settings"
8243
  msgstr ""
8244
 
8245
- #: languages/vue.php:2350
8246
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
8247
  msgstr ""
8248
 
8249
- #: languages/vue.php:2353
8250
  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."
8251
  msgstr ""
8252
 
8253
- #: languages/vue.php:2356
8254
  msgid "Exclude These User Roles From Tracking"
8255
  msgstr ""
8256
 
8257
- #: languages/vue.php:2359
8258
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
8259
  msgstr ""
8260
 
8261
- #: languages/vue.php:2362
8262
  msgid "Make your ExactMetrics campaign links prettier with Pretty Links!"
8263
  msgstr ""
8264
 
8265
- #: languages/vue.php:2365
8266
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
8267
  msgstr ""
8268
 
8269
- #: languages/vue.php:2368
8270
  msgid "Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!"
8271
  msgstr ""
8272
 
8273
- #: languages/vue.php:2371
8274
  msgid "Over 200,000 websites use Pretty Links!"
8275
  msgstr ""
8276
 
8277
- #: languages/vue.php:2374
8278
  msgid "Install Pretty Links"
8279
  msgstr ""
8280
 
8281
- #: languages/vue.php:2377
8282
  msgid "Pretty Links Installed & Activated"
8283
  msgstr ""
8284
 
8285
- #: languages/vue.php:2381
8286
  msgid "Download Pretty Links"
8287
  msgstr ""
8288
 
8289
- #: languages/vue.php:2384
8290
  msgid "Install Pretty Links from the WordPress.org plugin repository."
8291
  msgstr ""
8292
 
8293
- #: languages/vue.php:2387
8294
  msgid "Activate Pretty Links"
8295
  msgstr ""
8296
 
8297
- #: languages/vue.php:2390
8298
  msgid "Activating Pretty Links..."
8299
  msgstr ""
8300
 
8301
- #: languages/vue.php:2393
8302
  msgid "Create New Pretty Link"
8303
  msgstr ""
8304
 
8305
- #: languages/vue.php:2396
8306
  msgid "Create a New Pretty Link"
8307
  msgstr ""
8308
 
8309
- #: languages/vue.php:2399
8310
  msgid "Grab your campaign link and paste it into the Target URL field."
8311
  msgstr ""
8312
 
8313
- #: languages/vue.php:2402
8314
  msgid "Custom Campaign Parameters"
8315
  msgstr ""
8316
 
8317
- #: languages/vue.php:2405
8318
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
8319
  msgstr ""
8320
 
8321
- #: languages/vue.php:2408
8322
  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."
8323
  msgstr ""
8324
 
8325
  #. Translators: Marks the field as required.
8326
- #: languages/vue.php:2412
8327
  msgid "Website URL %s"
8328
  msgstr ""
8329
 
8330
  #. Translators: Display the current website url in italic.
8331
- #: languages/vue.php:2416
8332
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
8333
  msgstr ""
8334
 
8335
  #. Translators: Marks the field as required.
8336
- #: languages/vue.php:2420
8337
  msgid "Campaign Source %s"
8338
  msgstr ""
8339
 
8340
  #. Translators: Make the text italic.
8341
- #: languages/vue.php:2424
8342
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
8343
  msgstr ""
8344
 
8345
  #. Translators: Make the text italic.
8346
- #: languages/vue.php:2428
8347
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
8348
  msgstr ""
8349
 
8350
  #. Translators: Make the text italic.
8351
- #: languages/vue.php:2432
8352
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
8353
  msgstr ""
8354
 
8355
- #: languages/vue.php:2435
8356
  msgid "Enter the paid keyword"
8357
  msgstr ""
8358
 
8359
- #: languages/vue.php:2438
8360
  msgid "Enter something to differentiate ads"
8361
  msgstr ""
8362
 
8363
- #: languages/vue.php:2441
8364
  msgid "Use Fragment"
8365
  msgstr ""
8366
 
8367
  #. Translators: Make the text bold.
8368
- #: languages/vue.php:2445
8369
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
8370
  msgstr ""
8371
 
8372
- #: languages/vue.php:2448
8373
  msgid "URL to use"
8374
  msgstr ""
8375
 
8376
- #: languages/vue.php:2451
8377
  msgid "(Updates automatically)"
8378
  msgstr ""
8379
 
8380
- #: languages/vue.php:2454
8381
  msgid "Copy to Clipboard"
8382
  msgstr ""
8383
 
8384
- #: languages/vue.php:2457
8385
  msgid "Copy to Pretty Links"
8386
  msgstr ""
8387
 
8388
- #: languages/vue.php:2460
8389
  msgid "Make your campaign links prettier!"
8390
  msgstr ""
8391
 
8392
- #: languages/vue.php:2463
8393
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
8394
  msgstr ""
8395
 
8396
- #: languages/vue.php:2466
8397
  msgid "More Information & Examples"
8398
  msgstr ""
8399
 
8400
- #: languages/vue.php:2469
8401
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
8402
  msgstr ""
8403
 
8404
- #: languages/vue.php:2472
8405
  msgid "Campaign Source"
8406
  msgstr ""
8407
 
8408
- #: languages/vue.php:2475
8409
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
8410
  msgstr ""
8411
 
8412
- #: languages/vue.php:2478
8413
  msgid "Campaign Medium"
8414
  msgstr ""
8415
 
8416
- #: languages/vue.php:2481
8417
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
8418
  msgstr ""
8419
 
8420
- #: languages/vue.php:2484
8421
  msgid "Campaign Name"
8422
  msgstr ""
8423
 
8424
- #: languages/vue.php:2487
8425
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
8426
  msgstr ""
8427
 
8428
- #: languages/vue.php:2490
8429
  msgid "Campaign Term"
8430
  msgstr ""
8431
 
8432
- #: languages/vue.php:2493
8433
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
8434
  msgstr ""
8435
 
8436
- #: languages/vue.php:2496
8437
  msgid "Campaign Content"
8438
  msgstr ""
8439
 
8440
- #: languages/vue.php:2499
8441
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
8442
  msgstr ""
8443
 
8444
  #. Translators: Example.
8445
- #: languages/vue.php:2503
8446
  msgid "Example: %s"
8447
  msgstr ""
8448
 
8449
  #. Translators: Examples.
8450
- #: languages/vue.php:2507
8451
  msgid "Examples: %s"
8452
  msgstr ""
8453
 
8454
- #: languages/vue.php:2510
8455
  msgid "About Campaigns"
8456
  msgstr ""
8457
 
8458
- #: languages/vue.php:2513
8459
  msgid "About Custom Campaigns"
8460
  msgstr ""
8461
 
8462
- #: languages/vue.php:2516
8463
  msgid "Best Practices for Creating Custom Campaigns"
8464
  msgstr ""
8465
 
8466
- #: languages/vue.php:2519
8467
  msgid "About the Referral Traffic Report"
8468
  msgstr ""
8469
 
8470
- #: languages/vue.php:2522
8471
  msgid "About Traffic Source Dimensions"
8472
  msgstr ""
8473
 
8474
- #: languages/vue.php:2525
8475
  msgid "AdWords Auto-Tagging"
8476
  msgstr ""
8477
 
8478
- #: languages/vue.php:2528
8479
  msgid "Additional Information"
8480
  msgstr ""
8481
 
8482
- #: languages/vue.php:2531
8483
  msgid "Affiliate Links"
8484
  msgstr ""
8485
 
8486
  #. Translators: Add links to documentation.
8487
- #: languages/vue.php:2535
8488
  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."
8489
  msgstr ""
8490
 
8491
- #: languages/vue.php:2538
8492
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
8493
  msgstr ""
8494
 
8495
- #: languages/vue.php:2541
8496
  msgid "The ExactMetrics Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results."
8497
  msgstr ""
8498
 
8499
- #: languages/vue.php:2544
8500
  msgid "Disable the Headline Analyzer"
8501
  msgstr ""
8502
 
8503
  #. Translators: Add line break.
8504
- #: languages/vue.php:2548
8505
  msgid "See All Your Important Store%s Metrics in One Place"
8506
  msgstr ""
8507
 
8508
- #: languages/vue.php:2551
8509
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
8510
  msgstr ""
8511
 
8512
- #: languages/vue.php:2554
8513
  msgid "See Your Conversion Rate to Improve Funnel"
8514
  msgstr ""
8515
 
8516
- #: languages/vue.php:2557
8517
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
8518
  msgstr ""
8519
 
8520
- #: languages/vue.php:2560
8521
  msgid "See The Total Revenue to Track Growth"
8522
  msgstr ""
8523
 
8524
- #: languages/vue.php:2563
8525
  msgid "See Average Order Value to Find Offer Opportunities"
8526
  msgstr ""
8527
 
8528
- #: languages/vue.php:2566
8529
  msgid "See Your Top Products to See Individual Performance"
8530
  msgstr ""
8531
 
8532
- #: languages/vue.php:2569
8533
  msgid "See your Top Conversion Sources and Focus on what's Working"
8534
  msgstr ""
8535
 
8536
- #: languages/vue.php:2572
8537
  msgid "See The Time it Takes for Customers to Purchase"
8538
  msgstr ""
8539
 
8540
- #: languages/vue.php:2575
8541
  msgid "See How Many Sessions are Needed for a Purchase"
8542
  msgstr ""
8543
 
8544
- #: languages/vue.php:2578
8545
  msgid "Automatically Track Affiliate Sales"
8546
  msgstr ""
8547
 
8548
- #: languages/vue.php:2581
8549
  msgid "The ExactMetrics eCommerce addon works with EasyAffiliate, so that you can instantly track all affiliate referrals and sales inside WordPress and Google Analytics, with no coding needed."
8550
  msgstr ""
8551
 
8552
- #: languages/vue.php:2584
8553
  msgid "Works with WooCommerce, MemberPress, and EasyDigitalDownloads."
8554
  msgstr ""
8555
 
8556
- #: languages/vue.php:2587
8557
  msgid "Cross Domain Tracking"
8558
  msgstr ""
8559
 
8560
  #. Translators: Add links to documentation.
8561
- #: languages/vue.php:2591
8562
  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."
8563
  msgstr ""
8564
 
8565
- #: languages/vue.php:2594
8566
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
8567
  msgstr ""
8568
 
8569
- #: languages/vue.php:2597
8570
  msgid "Anonymize IP Addresses"
8571
  msgstr ""
8572
 
8573
- #: languages/vue.php:2600
8574
  msgid "Link Attribution"
8575
  msgstr ""
8576
 
8577
- #: languages/vue.php:2603
8578
  msgid "Enable Enhanced Link Attribution"
8579
  msgstr ""
8580
 
8581
- #: languages/vue.php:2606
8582
  msgid "Enable Anchor Tracking"
8583
  msgstr ""
8584
 
8585
- #: languages/vue.php:2609
8586
  msgid "Enable allowAnchor"
8587
  msgstr ""
8588
 
8589
- #: languages/vue.php:2612
8590
  msgid "Enable allowLinker"
8591
  msgstr ""
8592
 
8593
- #: languages/vue.php:2615
8594
  msgid "Enable Tag Links in RSS"
8595
  msgstr ""
8596
 
8597
- #: languages/vue.php:2618
8598
  msgid "File Downloads"
8599
  msgstr ""
8600
 
8601
- #: languages/vue.php:2621
8602
  msgid "Extensions of Files to Track as Downloads"
8603
  msgstr ""
8604
 
8605
- #: languages/vue.php:2624
8606
  msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
8607
  msgstr ""
8608
 
8609
  #. Translators: Add links to documentation.
8610
- #: languages/vue.php:2628
8611
  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."
8612
  msgstr ""
8613
 
8614
  #. Translators: Add links to documentation.
8615
- #: languages/vue.php:2632
8616
  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."
8617
  msgstr ""
8618
 
8619
  #. Translators: Add links to documentation.
8620
- #: languages/vue.php:2636
8621
  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."
8622
  msgstr ""
8623
 
8624
- #: languages/vue.php:2639
8625
  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."
8626
  msgstr ""
8627
 
8628
  #. Translators: Add links to documentation.
8629
- #: languages/vue.php:2643
8630
  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."
8631
  msgstr ""
8632
 
8633
  #. Translators: Add links to documentation.
8634
- #: languages/vue.php:2647
8635
  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."
8636
  msgstr ""
8637
 
8638
  #. Translators: Add links to documentation.
8639
- #: languages/vue.php:2651
8640
  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."
8641
  msgstr ""
8642
 
8643
- #: languages/vue.php:2654
8644
  msgid "Add domain"
8645
  msgstr ""
8646
 
8647
  #. Translators: Domain name example.
8648
- #: languages/vue.php:2658
8649
  msgid "Domain (example: %s)"
8650
  msgstr ""
8651
 
8652
  #. Translators: Current domain name that should not be used.
8653
- #: languages/vue.php:2662
8654
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
8655
  msgstr ""
8656
 
8657
  #. Translators: Adds link to the account area to retreive license key.
8658
- #: languages/vue.php:2666
8659
  msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
8660
  msgstr ""
8661
 
8662
- #: languages/vue.php:2669
8663
  msgid "Connect ExactMetrics to Start Tracking Your Data"
8664
  msgstr ""
8665
 
8666
- #: languages/vue.php:2672
8667
  msgid "Complete Upgrade"
8668
  msgstr ""
8669
 
8670
- #: languages/vue.php:2675
8671
  msgid "Upgrade to Pro Version!"
8672
  msgstr ""
8673
 
8674
  #. Translators: Make text bold.
8675
- #: languages/vue.php:2679
8676
  msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
8677
  msgstr ""
8678
 
8679
- #: languages/vue.php:2682
8680
  msgid "Install All-in-One SEO"
8681
  msgstr ""
8682
 
8683
- #: languages/vue.php:2685
8684
  msgid "Improve Your Website Search Rankings With All-In-One SEO"
8685
  msgstr ""
8686
 
8687
- #: languages/vue.php:2688
8688
  msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8689
  msgstr ""
8690
 
8691
- #: languages/vue.php:2691
8692
  msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8693
  msgstr ""
8694
 
8695
- #: languages/vue.php:2694
8696
  msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8697
  msgstr ""
8698
 
8699
- #: languages/vue.php:2697
8700
  msgid "Local SEO"
8701
  msgstr ""
8702
 
8703
- #: languages/vue.php:2700
8704
  msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8705
  msgstr ""
8706
 
8707
- #: languages/vue.php:2703
8708
  msgid "WooCommerce SEO"
8709
  msgstr ""
8710
 
8711
- #: languages/vue.php:2706
8712
  msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8713
  msgstr ""
8714
 
8715
- #: languages/vue.php:2709
8716
  msgid "SEO Custom User Roles"
8717
  msgstr ""
8718
 
8719
- #: languages/vue.php:2712
8720
  msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8721
  msgstr ""
8722
 
8723
- #: languages/vue.php:2715
8724
  msgid "Google News Sitemap"
8725
  msgstr ""
8726
 
8727
- #: languages/vue.php:2718
8728
  msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8729
  msgstr ""
8730
 
8731
- #: languages/vue.php:2721
8732
  msgid "Smart XML Sitemaps"
8733
  msgstr ""
8734
 
8735
- #: languages/vue.php:2724
8736
  msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8737
  msgstr ""
8738
 
8739
- #: languages/vue.php:2727
8740
  msgid "Social Media Integration"
8741
  msgstr ""
8742
 
8743
- #: languages/vue.php:2730
8744
  msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8745
  msgstr ""
8746
 
8747
- #: languages/vue.php:2733
8748
  msgid "TruSEO On-Page Analysis"
8749
  msgstr ""
8750
 
8751
- #: languages/vue.php:2736
8752
  msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8753
  msgstr ""
8754
 
8755
- #: languages/vue.php:2739
8756
  msgid "& Many More!"
8757
  msgstr ""
8758
 
8759
- #: languages/vue.php:2742
8760
  msgid "Installing. Please wait.."
8761
  msgstr ""
8762
 
8763
- #: languages/vue.php:2745
8764
  msgid "Install All-in-One-SEO"
8765
  msgstr ""
8766
 
8767
- #: languages/vue.php:2748
8768
  msgid "Unlock the Publisher Report and Focus on the Content That Matters"
8769
  msgstr ""
8770
 
8771
- #: languages/vue.php:2751
8772
  msgid "See Your Top Landing Pages to Improve Engagement"
8773
  msgstr ""
8774
 
8775
- #: languages/vue.php:2754
8776
  msgid "See Your Top Exit Pages to Reduce Abandonment"
8777
  msgstr ""
8778
 
8779
- #: languages/vue.php:2757
8780
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
8781
  msgstr ""
8782
 
8783
- #: languages/vue.php:2760
8784
  msgid "See Your Top Affiliate Links and Focus on What’s Working"
8785
  msgstr ""
8786
 
8787
- #: languages/vue.php:2763
8788
  msgid "See Your Top Downloads and Improve Conversions"
8789
  msgstr ""
8790
 
8791
- #: languages/vue.php:2766
8792
  msgid "See Audience Demographic Report (Age / Gender / Interests)"
8793
  msgstr ""
8794
 
8795
- #: languages/vue.php:2769
8796
  msgid "Welcome to the all-new ExactMetrics"
8797
  msgstr ""
8798
 
8799
- #: languages/vue.php:2772
8800
  msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
8801
  msgstr ""
8802
 
8803
- #: languages/vue.php:2775
8804
  msgid "The New & Improved ExactMetrics includes:"
8805
  msgstr ""
8806
 
8807
- #: languages/vue.php:2778
8808
  msgid "All-New Design"
8809
  msgstr ""
8810
 
8811
- #: languages/vue.php:2781
8812
  msgid "Better Reporting"
8813
  msgstr ""
8814
 
8815
- #: languages/vue.php:2784
8816
  msgid "Better Tracking"
8817
  msgstr ""
8818
 
8819
- #: languages/vue.php:2787
8820
  msgid "Better Support"
8821
  msgstr ""
8822
 
8823
- #: languages/vue.php:2790
8824
  msgid "Continue"
8825
  msgstr ""
8826
 
8827
- #: languages/vue.php:2793
8828
  msgid "Your settings have been automatically transferred."
8829
  msgstr ""
8830
 
8831
- #: languages/vue.php:2796
8832
  msgid "On the next step, you will be asked to re-authenticate with Google Analytics. Please %1$ssee our detailed post%2$s to learn why we need your help. Don't worry, your tracking will continue to work as-is even if you don't do this, but re-auth is required to see analytics reports inside WordPress dashboard."
8833
  msgstr ""
8834
 
8835
- #: languages/vue.php:2799
8836
  msgid "New"
8837
  msgstr ""
8838
 
8839
- #: languages/vue.php:2802
8840
  msgid "Returning"
8841
  msgstr ""
8842
 
8843
- #: languages/vue.php:2805
8844
  msgid "Top 10 Countries"
8845
  msgstr ""
8846
 
8847
- #: languages/vue.php:2808
8848
  msgid "View Countries Report"
8849
  msgstr ""
8850
 
8851
- #: languages/vue.php:2811
8852
  msgid "Top 10 Referrals"
8853
  msgstr ""
8854
 
8855
- #: languages/vue.php:2814
8856
  msgid "View All Referral Sources"
8857
  msgstr ""
8858
 
8859
- #: languages/vue.php:2817
8860
  msgid "View Full Posts/Pages Report"
8861
  msgstr ""
8862
 
8863
- #: languages/vue.php:2820
8864
  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."
8865
  msgstr ""
8866
 
8867
- #: languages/vue.php:2823
8868
  msgid "This list shows the top countries your website visitors are from."
8869
  msgstr ""
8870
 
8871
- #: languages/vue.php:2826
8872
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8873
  msgstr ""
8874
 
8875
- #: languages/vue.php:2829
8876
  msgid "This feature requires ExactMetrics Pro"
8877
  msgstr ""
8878
 
8879
- #: languages/vue.php:2832
8880
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
8881
  msgstr ""
8882
 
8883
- #: languages/vue.php:2835
8884
  msgid "Upgrade to Pro and Unlock Popular Products"
8885
  msgstr ""
8886
 
8887
- #: languages/vue.php:2838
8888
  msgid "View all Pro features"
8889
  msgstr ""
8890
 
8891
- #: languages/vue.php:2841
8892
  msgid "View notifications"
8893
  msgstr ""
8894
 
8895
- #: languages/vue.php:2844
8896
  msgid "Days"
8897
  msgstr ""
8898
 
8899
  #. Translators: placeholders make text small.
8900
- #: languages/vue.php:2848
8901
  msgid "7 days"
8902
  msgstr ""
8903
 
8904
- #: languages/vue.php:2851
8905
  msgid "30 days"
8906
  msgstr ""
8907
 
8908
- #: languages/vue.php:2854
8909
  msgid "Custom"
8910
  msgstr ""
8911
 
8912
- #: languages/vue.php:2857
8913
  msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8914
  msgstr ""
8915
 
8916
- #: languages/vue.php:2860
8917
  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."
8918
  msgstr ""
8919
 
8920
- #: languages/vue.php:2863
8921
  msgid "Jack Brown"
8922
  msgstr ""
8923
 
8924
- #: languages/vue.php:2866
8925
  msgid "PJB Internet Marketing"
8926
  msgstr ""
8927
 
8928
- #: languages/vue.php:2869
8929
  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."
8930
  msgstr ""
8931
 
8932
- #: languages/vue.php:2872
8933
  msgid "Joel Steinmann"
8934
  msgstr ""
8935
 
8936
- #: languages/vue.php:2875
8937
  msgid "CEO, Solergo"
8938
  msgstr ""
8939
 
8940
- #: languages/vue.php:2878
8941
  msgid "Only Show Posts from These Categories"
8942
  msgstr ""
8943
 
8944
- #: languages/vue.php:2881
8945
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
8946
  msgstr ""
8947
 
8948
- #: languages/vue.php:2885
8949
  msgid "Activating..."
8950
  msgstr ""
8951
 
8952
- #: languages/vue.php:2888
8953
  msgid "Deactivating..."
8954
  msgstr ""
8955
 
8956
- #: languages/vue.php:2891
8957
  msgid "Deactivate"
8958
  msgstr ""
8959
 
8960
- #: languages/vue.php:2894
8961
  msgid "Search Console Report"
8962
  msgstr ""
8963
 
8964
- #: languages/vue.php:2897
8965
  msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
8966
  msgstr ""
8967
 
8968
- #: languages/vue.php:2900
8969
  msgid "See Your Top Google Search Terms and Optimize Content"
8970
  msgstr ""
8971
 
8972
- #: languages/vue.php:2903
8973
  msgid "See The Number of Clicks and Track Interests"
8974
  msgstr ""
8975
 
8976
- #: languages/vue.php:2906
8977
  msgid "See The Click-Through-Ratio and Improve SEO"
8978
  msgstr ""
8979
 
8980
- #: languages/vue.php:2909
8981
  msgid "See The Average Results Position and Focus on what works."
8982
  msgstr ""
8983
 
8984
- #: languages/vue.php:2912
8985
  msgid "Ecommerce Report"
8986
  msgstr ""
8987
 
8988
- #: languages/vue.php:2915
8989
  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."
8990
  msgstr ""
8991
 
8992
- #: languages/vue.php:2918
8993
  msgid "See Your Conversion Rate to Improve Your Funnel"
8994
  msgstr ""
8995
 
8996
- #: languages/vue.php:2921
8997
  msgid "See Your Top Conversion Sources and Focus on What's Working"
8998
  msgstr ""
8999
 
9000
- #: languages/vue.php:2924
9001
  msgid "Popular Posts data can be fetched correctly"
9002
  msgstr ""
9003
 
9004
- #: languages/vue.php:2927
9005
  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."
9006
  msgstr ""
9007
 
9008
- #: languages/vue.php:2930
9009
  msgid "Close"
9010
  msgstr ""
9011
 
9012
- #: languages/vue.php:2933
9013
  msgid "Add Top 5 Posts from Google Analytics"
9014
  msgstr ""
9015
 
9016
- #: languages/vue.php:2936
9017
  msgid "In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both ExactMetrics and Google Analytics settings."
9018
  msgstr ""
9019
 
9020
- #: languages/vue.php:2939
9021
  msgid "Test Automated Posts"
9022
  msgstr ""
9023
 
9024
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
9025
- #: languages/vue.php:2943
9026
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
9027
  msgstr ""
9028
 
9029
- #: languages/vue.php:2946
9030
  msgid "Automated + Curated"
9031
  msgstr ""
9032
 
9033
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9034
- #: languages/vue.php:2950
9035
  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."
9036
  msgstr ""
9037
 
9038
  #. Translators: Placeholder gets replaced with current license version.
9039
- #: languages/vue.php:2954
9040
  msgid "Pro version is required."
9041
  msgstr ""
9042
 
9043
- #: languages/vue.php:2957
9044
  msgid "Verifying Popular Posts data"
9045
  msgstr ""
9046
 
9047
- #: languages/vue.php:2960
9048
  msgid "Multiple Entries"
9049
  msgstr ""
9050
 
9051
- #: languages/vue.php:2963
9052
  msgid "Total Number of Widgets to Show"
9053
  msgstr ""
9054
 
9055
- #: languages/vue.php:2966
9056
  msgid "Choose how many widgets will be placed in a single Post."
9057
  msgstr ""
9058
 
9059
- #: languages/vue.php:2969
9060
  msgid "Minimum Distance Between Widgets"
9061
  msgstr ""
9062
 
9063
- #: languages/vue.php:2972
9064
  msgid "Choose the distance between widgets."
9065
  msgstr ""
9066
 
9067
- #: languages/vue.php:2975
9068
  msgid "Minimum Word Count to Display Multiple Widgets"
9069
  msgstr ""
9070
 
9071
- #: languages/vue.php:2978
9072
  msgid "Choose the minimum word count for a Post to have multiple entries."
9073
  msgstr ""
9074
 
9075
- #: languages/vue.php:2981
9076
  msgid "Pro version is required"
9077
  msgstr ""
9078
 
9079
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9080
- #: languages/vue.php:2985
9081
  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)."
9082
  msgstr ""
9083
 
9084
- #: languages/vue.php:2988
9085
  msgid "Select posts/search"
9086
  msgstr ""
9087
 
9088
- #: languages/vue.php:2991
9089
  msgid "Oops! No posts found."
9090
  msgstr ""
9091
 
9092
- #: languages/vue.php:2994
9093
  msgid "Search by post title"
9094
  msgstr ""
9095
 
9096
- #: languages/vue.php:2997
9097
  msgid "Can't load posts."
9098
  msgstr ""
9099
 
9100
- #: languages/vue.php:3000
9101
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
9102
  msgstr ""
9103
 
9104
- #: languages/vue.php:3003
9105
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
9106
  msgstr ""
9107
 
9108
- #: languages/vue.php:3006
9109
  msgid "Color"
9110
  msgstr ""
9111
 
9112
- #: languages/vue.php:3009
9113
  msgid "Size"
9114
  msgstr ""
9115
 
9116
- #: languages/vue.php:3012
9117
  msgid "Title"
9118
  msgstr ""
9119
 
9120
- #: languages/vue.php:3015
9121
  msgid "Label"
9122
  msgstr ""
9123
 
9124
- #: languages/vue.php:3018
9125
  msgid "Background"
9126
  msgstr ""
9127
 
9128
- #: languages/vue.php:3021
9129
  msgid "Border"
9130
  msgstr ""
9131
 
9132
- #: languages/vue.php:3024
9133
  msgid "Icon"
9134
  msgstr ""
9135
 
9136
- #: languages/vue.php:3027
9137
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
9138
  msgid "Theme Preview"
9139
  msgstr ""
9140
 
9141
- #: languages/vue.php:3030
9142
  msgid "SharedCount API Key"
9143
  msgstr ""
9144
 
9145
- #: languages/vue.php:3033
9146
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
9147
  msgstr ""
9148
 
9149
- #: languages/vue.php:3036
9150
  msgid "Start Indexing"
9151
  msgstr ""
9152
 
9153
- #: languages/vue.php:3039
9154
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
9155
  msgstr ""
9156
 
9157
- #: languages/vue.php:3042
9158
  msgid "Indexing completed, counts will update automatically every day."
9159
  msgstr ""
9160
 
9161
  #. Translators: Minimum and maximum number that can be used.
9162
- #: languages/vue.php:3046
9163
  msgid "Please enter a value between %1$s and %2$s"
9164
  msgstr ""
9165
 
9166
  #. Translators: The minimum set value.
9167
- #: languages/vue.php:3050
9168
  msgid "Please enter a value higher than %s"
9169
  msgstr ""
9170
 
9171
  #. Translators: The maximum set value.
9172
- #: languages/vue.php:3054
9173
  msgid "Please enter a value lower than %s"
9174
  msgstr ""
9175
 
9176
- #: languages/vue.php:3057
9177
  msgid "Please enter a number"
9178
  msgstr ""
9179
 
9180
- #: languages/vue.php:3060
9181
  msgid "Value has to be a round number"
9182
  msgstr ""
9183
 
9184
- #: languages/vue.php:3063
9185
  msgid "Author/Date"
9186
  msgstr ""
9187
 
9188
- #: languages/vue.php:3075
9189
  msgid "Choose which content you would like displayed in the widget."
9190
  msgstr ""
9191
 
9192
- #: languages/vue.php:3087
9193
  msgid "Comments"
9194
  msgstr ""
9195
 
9196
- #: languages/vue.php:3093
9197
  msgid "Choose how many posts you’d like displayed in the widget."
9198
  msgstr ""
9199
 
9200
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
9201
- #: languages/vue.php:3097
9202
  msgid "%1$sPage %3$s%2$s of %4$s"
9203
  msgstr ""
9204
 
9205
- #: languages/vue.php:3100
9206
  msgid "Wide"
9207
  msgstr ""
9208
 
9209
- #: languages/vue.php:3103
9210
  msgid "Narrow"
9211
  msgstr ""
9212
 
9213
  #. Translators: Make text green.
9214
- #: languages/vue.php:3107
9215
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9216
  msgstr ""
9217
 
9218
- #: languages/vue.php:3113
9219
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
9220
  msgstr ""
9221
 
9222
- #: languages/vue.php:3116
9223
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
9224
  msgstr ""
9225
 
9226
- #: languages/vue.php:3119
9227
  msgid "Usage Tracking"
9228
  msgstr ""
9229
 
9230
- #: languages/vue.php:3122
9231
  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."
9232
  msgstr ""
9233
 
9234
- #: languages/vue.php:3125
9235
  msgid "Allow usage tracking"
9236
  msgstr ""
9237
 
9238
  #. Translators: Adds a link to the documentation.
9239
- #: languages/vue.php:3129
9240
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
9241
  msgstr ""
9242
 
9243
- #: languages/vue.php:3132
9244
  msgid "Facebook Instant Articles"
9245
  msgstr ""
9246
 
9247
- #: languages/vue.php:3135
9248
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
9249
  msgstr ""
9250
 
9251
- #: languages/vue.php:3138
9252
  msgid "Performance"
9253
  msgstr ""
9254
 
9255
- #: languages/vue.php:3141
9256
  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."
9257
  msgstr ""
9258
 
9259
- #: languages/vue.php:3144
9260
  msgid "Google AMP"
9261
  msgstr ""
9262
 
9263
- #: languages/vue.php:3147
9264
  msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
9265
  msgstr ""
9266
 
9267
- #: languages/vue.php:3150
9268
  msgid "Ads Tracking"
9269
  msgstr ""
9270
 
9271
- #: languages/vue.php:3153
9272
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
9273
  msgstr ""
9274
 
9275
- #: languages/vue.php:3156
9276
  msgid "Unlock with %s"
9277
  msgstr ""
9278
 
9279
- #: languages/vue.php:3159
9280
  msgid "Scroll Tracking"
9281
  msgstr ""
9282
 
9283
- #: languages/vue.php:3162
9284
  msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
9285
  msgstr ""
9286
 
9287
- #: languages/vue.php:3165
9288
  msgid ""
9289
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
9290
  " and other privacy regulations."
9291
  msgstr ""
9292
 
9293
- #: languages/vue.php:3169
9294
  msgid "EU Compliance"
9295
  msgstr ""
9296
 
9297
- #: languages/vue.php:3172
9298
  msgid "Compatibility mode"
9299
  msgstr ""
9300
 
9301
- #: languages/vue.php:3175
9302
  msgid "Enable _gtagTracker Compatibility"
9303
  msgstr ""
9304
 
9305
  #. Translators: Placeholder gets replaced with default GA js function.
9306
- #: languages/vue.php:3179
9307
  msgid "This enables ExactMetrics to work with plugins that use %1$s and don't support %2$s"
9308
  msgstr ""
9309
 
9310
- #: languages/vue.php:3182
9311
  msgid "It's easy to double your traffic and sales when you know exactly how people find and use your website. ExactMetrics Pro shows you the stats that matter!"
9312
  msgstr ""
9313
 
9314
- #: languages/vue.php:3185
9315
  msgid "To unlock more features consider upgrading to PRO."
9316
  msgstr ""
9317
 
9318
- #: languages/vue.php:3188
9319
  msgid "Upgrade to"
9320
  msgstr ""
9321
 
9322
- #: languages/vue.php:3191
9323
  msgid "Export PDF Report"
9324
  msgstr ""
9325
 
9326
- #: languages/vue.php:3194
9327
  msgid "You can export PDF reports only in the PRO version."
9328
  msgstr ""
9329
 
9330
- #: languages/vue.php:3197
9331
  msgid "Display Method"
9332
  msgstr ""
9333
 
9334
- #: languages/vue.php:3200
9335
  msgid "There are two ways to manual include the widget in your posts."
9336
  msgstr ""
9337
 
9338
- #: languages/vue.php:3203
9339
  msgid "Using the Gutenberg Block"
9340
  msgstr ""
9341
 
9342
- #: languages/vue.php:3206
9343
  msgid "Using the Shortcode"
9344
  msgstr ""
9345
 
9346
- #: languages/vue.php:3209
9347
  msgid "Learn how to insert the widget using Gutenberg blocks."
9348
  msgstr ""
9349
 
9350
- #: languages/vue.php:3212
9351
  msgid "Learn how to insert the widget using out Shortcode."
9352
  msgstr ""
9353
 
9354
- #: languages/vue.php:3215
9355
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9356
  msgstr ""
9357
 
9358
- #: languages/vue.php:3218
9359
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
9360
  msgstr ""
9361
 
9362
- #: languages/vue.php:3221
9363
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”."
9364
  msgstr ""
9365
 
9366
- #: languages/vue.php:3224
9367
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9368
  msgstr ""
9369
 
9370
- #: languages/vue.php:3227
9371
  msgid "Shortcode"
9372
  msgstr ""
9373
 
9374
- #: languages/vue.php:3230
9375
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9376
  msgstr ""
9377
 
9378
- #: languages/vue.php:3233
9379
  msgid "Copy Shortcode"
9380
  msgstr ""
9381
 
9382
- #: languages/vue.php:3236
9383
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9384
  msgstr ""
9385
 
9386
- #: languages/vue.php:3239
9387
  msgid "Automatic Placement"
9388
  msgstr ""
9389
 
9390
- #: languages/vue.php:3242
9391
  msgid "Display using Gutenberg Blocks"
9392
  msgstr ""
9393
 
9394
- #: languages/vue.php:3245
9395
  msgid "Embed Options"
9396
  msgstr ""
9397
 
9398
- #: languages/vue.php:3248
9399
  msgid "All Embed Options can be used in conjunction with one another."
9400
  msgstr ""
9401
 
9402
- #: languages/vue.php:3251
9403
  msgid "Using Automatic Embed"
9404
  msgstr ""
9405
 
9406
- #: languages/vue.php:3254
9407
  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."
9408
  msgstr ""
9409
 
9410
- #: languages/vue.php:3257
9411
  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."
9412
  msgstr ""
9413
 
9414
- #: languages/vue.php:3260
9415
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9416
  msgstr ""
9417
 
9418
- #: languages/vue.php:3263
9419
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9420
  msgstr ""
9421
 
9422
- #: languages/vue.php:3266
9423
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9424
  msgstr ""
9425
 
9426
- #: languages/vue.php:3269
9427
  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."
9428
  msgstr ""
9429
 
9430
- #: languages/vue.php:3272
9431
  msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - ExactMetrics widget and drag it into the desired Sidebar on the right."
9432
  msgstr ""
9433
 
9434
- #: languages/vue.php:3275
9435
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9436
  msgstr ""
9437
 
9438
- #: languages/vue.php:3278
9439
  msgid "Display using a Shortcode"
9440
  msgstr ""
9441
 
9442
- #: languages/vue.php:3281
9443
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9444
  msgstr ""
9445
 
9446
- #: languages/vue.php:3284
9447
  msgid "Enable Automatic Placement"
9448
  msgstr ""
9449
 
9450
- #: languages/vue.php:3287
9451
  msgid "Display in a Sidebar"
9452
  msgstr ""
9453
 
9454
- #: languages/vue.php:3290
9455
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9456
  msgstr ""
9457
 
9458
- #: languages/vue.php:3293
9459
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9460
  msgstr ""
9461
 
9462
  #. Translators: The number of results.
9463
- #: languages/vue.php:3297
9464
  msgid "%s results"
9465
  msgstr ""
9466
 
9467
- #: languages/vue.php:3300
9468
  msgid "Media"
9469
  msgstr ""
9470
 
9471
- #: languages/vue.php:3303
9472
  msgid "Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro."
9473
  msgstr ""
9474
 
9475
- #: languages/vue.php:3306
9476
  msgid "2021 Year in Review"
9477
  msgstr ""
9478
 
9479
- #: languages/vue.php:3309
9480
  msgid "Media- Track how your users interact with videos on your website."
9481
  msgstr ""
9482
 
9483
- #: languages/vue.php:3312
9484
  msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9485
  msgstr ""
9486
 
9487
- #: languages/vue.php:3315
9488
  msgid "Your 2021 Analytics Report"
9489
  msgstr ""
9490
 
9491
- #: languages/vue.php:3321
9492
  msgid "January 1, 2021 - December 31, 2021"
9493
  msgstr ""
9494
 
9495
- #: languages/vue.php:3324
9496
  msgid "A Tip for 2022"
9497
  msgstr ""
9498
 
9499
- #: languages/vue.php:3327
9500
  msgid "A Tip For 2022"
9501
  msgstr ""
9502
 
9503
- #: languages/vue.php:3330
9504
  msgid "Here's to an amazing 2022!"
9505
  msgstr ""
9506
 
9507
- #: languages/vue.php:3333
9508
  msgid "Try our other popular WordPress plugins to grow your website in 2022."
9509
  msgstr ""
9510
 
9511
- #: languages/vue.php:3336
9512
  msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9513
  msgstr ""
9514
 
9515
- #: languages/vue.php:3339
9516
  msgid "Copyright ExactMetrics, 2022"
9517
  msgstr ""
9518
 
9519
  #. Translators: Number of minutes spent on site.
9520
- #: languages/vue.php:3343
9521
  msgid "Each visitor spent an average of %s minutes on your website in 2021."
9522
  msgstr ""
9523
 
9524
  #. Translators: Placeholders are used for making text bold and adding a link.
9525
- #: languages/vue.php:3347
9526
  msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9527
  msgstr ""
9528
 
9529
- #: languages/vue.php:3350
9530
  msgid "With ExactMetrics Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9531
  msgstr ""
9532
 
9533
- #: languages/vue.php:3353
9534
  msgid "RafflePress"
9535
  msgstr ""
9536
 
9537
- #: languages/vue.php:3356
9538
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9539
  msgstr ""
9540
 
9541
- #: languages/vue.php:3359
9542
  msgid "Constant Contact"
9543
  msgstr ""
9544
 
9545
- #: languages/vue.php:3362
9546
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9547
  msgstr ""
9548
 
9549
- #: languages/vue.php:3365
9550
  msgid "SEMRUSH"
9551
  msgstr ""
9552
 
9553
- #: languages/vue.php:3368
9554
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9555
  msgstr ""
9556
 
9557
- #: languages/vue.php:3371
9558
  msgid "Engagement Tools"
9559
  msgstr ""
9560
 
9561
- #: languages/vue.php:3374
9562
  msgid "WPForms"
9563
  msgstr ""
9564
 
9565
- #: languages/vue.php:3377
9566
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9567
  msgstr ""
9568
 
9569
- #: languages/vue.php:3380
9570
  msgid "OptinMonster"
9571
  msgstr ""
9572
 
9573
- #: languages/vue.php:3383
9574
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9575
  msgstr ""
9576
 
9577
- #: languages/vue.php:3386
9578
  msgid "Smash Balloon - Facebook"
9579
  msgstr ""
9580
 
9581
- #: languages/vue.php:3389
9582
  msgid "Smash Balloon - Instagram"
9583
  msgstr ""
9584
 
9585
- #: languages/vue.php:3392
9586
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9587
  msgstr ""
9588
 
9589
- #: languages/vue.php:3395
9590
  msgid "Popular Posts by ExactMetrics"
9591
  msgstr ""
9592
 
9593
- #: languages/vue.php:3398
9594
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9595
  msgstr ""
9596
 
9597
- #: languages/vue.php:3401
9598
  msgid "Popular Products by ExactMetrics"
9599
  msgstr ""
9600
 
9601
- #: languages/vue.php:3404
9602
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9603
  msgstr ""
9604
 
9605
- #: languages/vue.php:3407
9606
  msgid "Revenue Tools"
9607
  msgstr ""
9608
 
9609
- #: languages/vue.php:3410
9610
  msgid "SeedProd"
9611
  msgstr ""
9612
 
9613
- #: languages/vue.php:3413
9614
  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."
9615
  msgstr ""
9616
 
9617
- #: languages/vue.php:3416
9618
  msgid "Featured Tools"
9619
  msgstr ""
9620
 
9621
- #: languages/vue.php:3419
9622
  msgid "Easy Affiliate"
9623
  msgstr ""
9624
 
9625
- #: languages/vue.php:3422
9626
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with ExactMetrics."
9627
  msgstr ""
9628
 
9629
- #: languages/vue.php:3425
9630
  msgid "SearchWP"
9631
  msgstr ""
9632
 
9633
- #: languages/vue.php:3428
9634
  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."
9635
  msgstr ""
9636
 
9637
- #: languages/vue.php:3431
9638
  msgid "Easy Digital Downloads"
9639
  msgstr ""
9640
 
9641
- #: languages/vue.php:3434
9642
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9643
  msgstr ""
9644
 
9645
- #: languages/vue.php:3437
9646
  msgid "MemberPress"
9647
  msgstr ""
9648
 
9649
- #: languages/vue.php:3440
9650
  msgid "Create a membership website. Works automatically with ExactMetrics, no coding needed."
9651
  msgstr ""
9652
 
9653
- #: languages/vue.php:3443
9654
  msgid "Thirsty Affiliates"
9655
  msgstr ""
9656
 
9657
- #: languages/vue.php:3446
9658
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9659
  msgstr ""
9660
 
9661
- #: languages/vue.php:3449
9662
  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."
9663
  msgstr ""
9664
 
9665
- #: languages/vue.php:3452
9666
  msgid "Advanced Coupons"
9667
  msgstr ""
9668
 
9669
- #: languages/vue.php:3455
9670
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9671
  msgstr ""
9672
 
9673
- #: languages/vue.php:3458
9674
  msgid "PrettyLinks"
9675
  msgstr ""
9676
 
9677
- #: languages/vue.php:3461
9678
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9679
  msgstr ""
9680
 
9681
- #: languages/vue.php:3464
9682
  msgid "Install Now"
9683
  msgstr ""
9684
 
9685
- #: languages/vue.php:3467
9686
  msgid "Online Marketing Guides & Resources"
9687
  msgstr ""
9688
 
9689
- #: languages/vue.php:3470
9690
  msgid "Read This Guide"
9691
  msgstr ""
9692
 
9693
- #: languages/vue.php:3476
9694
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9695
  msgstr ""
9696
 
9697
- #: languages/vue.php:3479
9698
  msgid "Traffic Tools"
9699
  msgstr ""
9700
 
9701
- #: languages/vue.php:3482
9702
  msgid "All in One SEO (AIOSEO)"
9703
  msgstr ""
9704
 
9705
- #: languages/vue.php:3485
9706
  msgid "The best WordPress SEO plugin that works automatically with ExactMetrics."
9707
  msgstr ""
9708
 
9709
- #: languages/vue.php:3488
9710
  msgid "PushEngage"
9711
  msgstr ""
9712
 
9713
- #: languages/vue.php:3491
9714
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9715
  msgstr ""
9716
 
9717
- #: languages/vue.php:3494
9718
  msgid "Featured"
9719
  msgstr ""
9720
 
9721
- #: languages/vue.php:3497
9722
  msgid "Traffic"
9723
  msgstr ""
9724
 
9725
- #: languages/vue.php:3500
9726
  msgid "Revenue"
9727
  msgstr ""
9728
 
9729
- #: languages/vue.php:3503
9730
  msgid "Guides & Resources"
9731
  msgstr ""
9732
 
9733
- #: languages/vue.php:3506
9734
  msgid "Media Tracking"
9735
  msgstr ""
9736
 
9737
- #: languages/vue.php:3509
9738
  msgid "Get Started"
9739
  msgstr ""
9740
 
9741
- #: languages/vue.php:3512
9742
  msgid "Privacy Compliance Addon"
9743
  msgstr ""
9744
 
9745
- #: languages/vue.php:3515
9746
  msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
9747
  msgstr ""
9748
 
9749
- #: languages/vue.php:3518
9750
  msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
9751
  msgstr ""
9752
 
9753
- #: languages/vue.php:3521
9754
  msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
9755
  msgstr ""
9756
 
9757
- #: languages/vue.php:3524
9758
  msgid "20+ Advanced Tracking"
9759
  msgstr ""
9760
 
9761
- #: languages/vue.php:3527
9762
  msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
9763
  msgstr ""
9764
 
9765
- #: languages/vue.php:3530
9766
  msgid "Advanced Growth Tools"
9767
  msgstr ""
9768
 
9769
- #: languages/vue.php:3533
9770
  msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
9771
  msgstr ""
9772
 
9773
- #: languages/vue.php:3536
9774
  msgid "Track how your users interact with videos on your website."
9775
  msgstr ""
9776
 
9777
- #: languages/vue.php:3539
9778
  msgid "Error Processing"
9779
  msgstr ""
9780
 
9781
- #: languages/vue.php:3542
9782
  msgid "There was an error while processing some features. Please try again or you can skip this process for now"
9783
  msgstr ""
9784
 
9785
- #: languages/vue.php:3545
9786
  msgid "Which website features would you like to enable?"
9787
  msgstr ""
9788
 
9789
- #: languages/vue.php:3548
9790
  msgid "We’ve already selected our recommended features based on your site. "
9791
  msgstr ""
9792
 
9793
- #: languages/vue.php:3551
9794
  msgid "Other Addons"
9795
  msgstr ""
9796
 
9797
- #: languages/vue.php:3554
9798
  msgid "View all ExactMetrics addons"
9799
  msgstr ""
9800
 
9801
- #: languages/vue.php:3557
9802
  msgid "Standard Analytics & Reports"
9803
  msgstr ""
9804
 
9805
- #: languages/vue.php:3560
9806
  msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
9807
  msgstr ""
9808
 
9809
- #: languages/vue.php:3563
9810
  msgid "Helps you see what links your users are clicking on your site."
9811
  msgstr ""
9812
 
9813
- #: languages/vue.php:3566
9814
  msgid "All In One SEO Toolkit"
9815
  msgstr ""
9816
 
9817
- #: languages/vue.php:3569
9818
  msgid "The best WordPress SEO plugin that works with ExactMetrics to boost your rankings."
9819
  msgstr ""
9820
 
9821
- #: languages/vue.php:3572
9822
  msgid "Smart Form Builder by WPForms"
9823
  msgstr ""
9824
 
9825
- #: languages/vue.php:3575
9826
  msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
9827
  msgstr ""
9828
 
9829
- #: languages/vue.php:3578
9830
  msgid "Awesome! Tracking and Analytics are All Setup!"
9831
  msgstr ""
9832
 
9833
- #: languages/vue.php:3581
9834
  msgid "ExactMetrics is connected to Google Analytics and data is being collected."
9835
  msgstr ""
9836
 
9837
- #: languages/vue.php:3588
9838
  msgid "Complete Setup without Upgrading"
9839
  msgstr ""
9840
 
9841
- #: languages/vue.php:3591
9842
  msgid "Success"
9843
  msgstr ""
9844
 
9845
- #: languages/vue.php:3594
9846
  msgid "Connected to Google Analytics"
9847
  msgstr ""
9848
 
9849
- #: languages/vue.php:3597
9850
  msgid "Tracking Code Installed"
9851
  msgstr ""
9852
 
9853
- #: languages/vue.php:3600
9854
  msgid "Data Being Collected"
9855
  msgstr ""
9856
 
9857
  #. Translators: Add link to retrieve license from account area.
9858
- #: languages/vue.php:3604
9859
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO!"
9860
  msgstr ""
9861
 
9862
- #: languages/vue.php:3607
9863
  msgid "Verify License Key"
9864
  msgstr ""
9865
 
9866
- #: languages/vue.php:3610
9867
  msgid "Upgrade to Unlock These Features"
9868
  msgstr ""
9869
 
9870
- #: languages/vue.php:3613
9871
  msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
9872
  msgstr ""
9873
 
9874
- #: languages/vue.php:3616
9875
  msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
9876
  msgstr ""
9877
 
9878
- #: languages/vue.php:3619
9879
  msgid "Verifying License..."
9880
  msgstr ""
9881
 
9882
- #: languages/vue.php:3625
9883
  msgid "The following plugins will be installed: "
9884
  msgstr ""
9885
 
9886
- #: languages/vue.php:3628
9887
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
9888
  msgstr ""
9889
 
9890
- #: languages/vue.php:3631
9891
  msgid "Manually enter your GA4 Measurement ID"
9892
  msgstr ""
9893
 
9894
- #: languages/vue.php:3634
9895
  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."
9896
  msgstr ""
9897
 
9898
- #: languages/vue.php:3637
9899
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
9900
  msgstr ""
9901
 
9902
- #: languages/vue.php:3640
9903
  msgid "Your ExactMetrics license key has expired."
9904
  msgstr ""
9905
 
9906
- #: languages/vue.php:3643
9907
  msgid "Renew today to ensure Google Analytics continues to track properly."
9908
  msgstr ""
9909
 
9910
- #: languages/vue.php:3646
9911
  msgid "Click here."
9912
  msgstr ""
9913
 
9914
- #: languages/vue.php:3649
9915
  msgid "ExactMetrics makes it effortless for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
9916
  msgstr ""
9917
 
9918
- #: languages/vue.php:3652
9919
  msgid "License Expired"
9920
  msgstr ""
9921
 
9922
- #: languages/vue.php:3655
9923
  msgid "Expired"
9924
  msgstr ""
9925
 
9926
  #. Translators: Adds a link to the license renewal.
9927
- #: languages/vue.php:3659
9928
  msgid "To ensure tracking works properly, reactivate your license"
9929
  msgstr ""
9930
 
9931
- #: languages/vue.php:3662
9932
  msgid "Reactivate License"
9933
  msgstr ""
9934
 
9935
- #: languages/vue.php:3665
9936
  msgid "View All Reports"
9937
  msgstr ""
9938
 
9939
- #: languages/vue.php:3668
9940
  msgid "WP Simple Pay"
9941
  msgstr ""
9942
 
9943
  #. Translators: tag to make text italic starts, tag end.
9944
- #: languages/vue.php:3675
9945
  msgid "See What Your Website Visitors Are %1$sReally%2$s Thinking!"
9946
  msgstr ""
9947
 
9948
- #: languages/vue.php:3678
9949
  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."
9950
  msgstr ""
9951
 
9952
- #: languages/vue.php:3681
9953
  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"
9954
  msgstr ""
9955
 
9956
- #: languages/vue.php:3684
9957
  msgid "Ask open ended questions, run polls or surveys, gather ratings, and more with an easy survey builder"
9958
  msgstr ""
9959
 
9960
- #: languages/vue.php:3687
9961
  msgid "Customize targeting rules to get specific feedback on certain pages or products"
9962
  msgstr ""
9963
 
9964
- #: languages/vue.php:3690
9965
  msgid "Easily analyze your responses and export data"
9966
  msgstr ""
9967
 
9968
- #: languages/vue.php:3693
9969
  msgid "Install & Activate UserFeedback"
9970
  msgstr ""
9971
 
9972
- #: languages/vue.php:3696
9973
  msgid "Install UserFeedback by clicking the button below."
9974
  msgstr ""
9975
 
9976
- #: languages/vue.php:3699
9977
  msgid "Install UserFeedback"
9978
  msgstr ""
9979
 
9980
- #: languages/vue.php:3702
9981
  msgid "Set Up UserFeedback"
9982
  msgstr ""
9983
 
9984
- #: languages/vue.php:3705
9985
  msgid "Run the UserFeedback setup wizard to launch your first UserFeedback survey."
9986
  msgstr ""
9987
 
9988
- #: languages/vue.php:3708
9989
  msgid "Start Setup"
9990
  msgstr ""
9991
 
9992
- #: languages/vue.php:3711
9993
  msgid "Installing UserFeedback..."
9994
  msgstr ""
9995
 
9996
- #: languages/vue.php:3714
9997
  msgid "Activating UserFeedback..."
9998
  msgstr ""
9999
 
10000
- #: languages/vue.php:3717
10001
  msgid "Installed & Active"
10002
  msgstr ""
10003
 
10004
- #: languages/vue.php:3720
10005
  msgid "Oops! There was an error processing request. Please try again later."
10006
  msgstr ""
10007
 
10008
- #: languages/vue.php:3723
10009
  msgid "Oops! We could not save your changes. Please try again. If the problem persists, please %1$scontact our support%2$s team."
10010
  msgstr ""
10011
 
10012
- #: languages/vue.php:3726
10013
  msgid "Installing UserFeedback"
10014
  msgstr ""
10015
 
10016
- #: languages/vue.php:3729
10017
  msgid "Activating UserFeedback"
10018
  msgstr ""
10019
 
10020
- #: languages/vue.php:3732
10021
  msgid "Oops! Something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
10022
  msgstr ""
10023
 
10024
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10025
- #: languages/vue.php:3736
10026
  msgid "Can't load settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance. "
10027
  msgstr ""
10028
 
10029
- #. Translators: Error status and error text, Support link tag starts with url and support link tag ends.
10030
- #: languages/vue.php:3740
10031
  msgid "Can't save settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance."
10032
  msgstr ""
10033
 
10034
  #. Translators: Support link tag starts with url and support link tag ends.
10035
- #: languages/vue.php:3744
10036
  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."
10037
  msgstr ""
10038
 
10039
  #. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
10040
- #: languages/vue.php:3748
10041
  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"
10042
  msgstr ""
10043
 
10044
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10045
- #: languages/vue.php:3752
10046
  msgid "Oops! There was an issue deactivating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10047
  msgstr ""
10048
 
10049
  #. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
10050
- #: languages/vue.php:3756
10051
  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"
10052
  msgstr ""
10053
 
10054
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10055
- #: languages/vue.php:3760
10056
  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."
10057
  msgstr ""
10058
 
10059
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10060
- #: languages/vue.php:3764
10061
  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"
10062
  msgstr ""
10063
 
10064
- #: languages/vue.php:3767
10065
  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."
10066
  msgstr ""
10067
 
10068
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10069
- #: languages/vue.php:3771
10070
  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"
10071
  msgstr ""
10072
 
10073
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10074
- #: languages/vue.php:3775
10075
  msgid "Oops! There was an issue verifying your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10076
  msgstr ""
10077
 
10078
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10079
- #: languages/vue.php:3779
10080
  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"
10081
  msgstr ""
10082
 
10083
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10084
- #: languages/vue.php:3783
10085
  msgid "Oops! There was an issue validating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10086
  msgstr ""
10087
 
10088
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10089
- #: languages/vue.php:3787
10090
  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."
10091
  msgstr ""
10092
 
10093
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10094
- #: languages/vue.php:3791
10095
  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. "
10096
  msgstr ""
10097
 
10098
  #. Translators: Support page link tag starts and support page link tag ends.
10099
- #: languages/vue.php:3795
10100
  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."
10101
  msgstr ""
10102
 
10103
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10104
- #: languages/vue.php:3799
10105
  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."
10106
  msgstr ""
10107
 
10108
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10109
- #: languages/vue.php:3803
10110
  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. "
10111
  msgstr ""
10112
 
10113
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10114
- #: languages/vue.php:3807
10115
  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"
10116
  msgstr ""
10117
 
10118
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10119
- #: languages/vue.php:3811
10120
  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."
10121
  msgstr ""
10122
 
10123
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10124
- #: languages/vue.php:3815
10125
  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."
10126
  msgstr ""
10127
 
10128
  #. Translators: Error status and error text.
10129
- #: languages/vue.php:3819
10130
  msgid "Oops! Can't install WPForms. Error: %1$s, %2$s"
10131
  msgstr ""
10132
 
10133
  #. Translators: Error status and error text.
10134
- #: languages/vue.php:3823
10135
  msgid "Oops! Can't activate addon. Error: %1$s, %2$s"
10136
  msgstr ""
10137
 
10138
- #: languages/vue.php:3826
10139
  msgid "Oops! There was an error activating the addon. Please try again. If the issue persists, please %1$scontact our support%2$s team."
10140
  msgstr ""
10141
 
10142
  #. Translators: Error status and error text.
10143
- #: languages/vue.php:3830
10144
  msgid "Oops! Can't deactivate addon. Error: %1$s, %2$s"
10145
  msgstr ""
10146
 
10147
  #. Translators: Error status and error text.
10148
- #: languages/vue.php:3834
10149
  msgid "Oops! Can't install plugin. Error: %1$s, %2$s"
10150
  msgstr ""
10151
 
10152
  #. Translators: Error status and error text.
10153
- #: languages/vue.php:3838
10154
  msgid "Oops! Can't install addon. Error: %1$s, %2$s"
10155
  msgstr ""
10156
 
10157
  #. Translators: Support link tag starts with url and support link tag ends.
10158
- #: languages/vue.php:3842
10159
  msgid "Oops! An error occurred while importing your settings. Please ensure you selected the correct file. If the issue continues please %1$scontact our support%2$s team."
10160
  msgstr ""
10161
 
10162
  #. Translators: Support link tag starts with url and support link tag ends.
10163
- #: languages/vue.php:3846
10164
  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."
10165
  msgstr ""
10166
 
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.8.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-08-24T10:48:36+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-dashboard-for-wp\n"
16
 
17
  #. Plugin Name of the plugin
18
+ #: languages/vue.php:3504
19
  msgid "ExactMetrics Pro"
20
  msgstr ""
21
 
105
  msgstr ""
106
 
107
  #. Translators: Adds a link to the plugins page.
108
+ #: exactmetrics.php:426
109
  #: googleanalytics.php:444
110
  msgid "Please %1$suninstall%2$s the ExactMetrics Lite Plugin. Your Pro version of ExactMetrics may not work as expected until the Lite version is uninstalled."
111
  msgstr ""
113
  #: includes/admin/admin.php:34
114
  #: includes/admin/admin.php:42
115
  #: includes/admin/admin.php:230
116
+ #: languages/vue.php:542
117
  msgid "Settings"
118
  msgstr ""
119
 
129
 
130
  #: includes/admin/admin.php:39
131
  #: includes/admin/admin.php:131
132
+ #: languages/vue.php:2326
133
  msgid "Reports"
134
  msgstr ""
135
 
139
 
140
  #: includes/admin/admin.php:51
141
  #: languages/gutenberg.php:83
142
+ #: languages/vue.php:1018
143
  msgid "Popular Posts"
144
  msgstr ""
145
 
173
 
174
  #: includes/admin/admin.php:71
175
  #: includes/admin/admin.php:147
176
+ #: languages/vue.php:157
177
  msgid "About Us"
178
  msgstr ""
179
 
192
  #: includes/admin/admin.php:76
193
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
194
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
195
+ #: languages/vue.php:1066
196
  msgid "Upgrade to Pro"
197
  msgstr ""
198
 
220
 
221
  #: includes/admin/admin.php:220
222
  #: includes/admin/admin.php:223
223
+ #: languages/vue.php:1042
224
  msgid "Support"
225
  msgstr ""
226
 
232
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
233
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:31
234
  #: includes/admin/reports/abstract-report.php:452
235
+ #: languages/vue.php:1173
236
  msgid "Get ExactMetrics Pro"
237
  msgstr ""
238
 
243
 
244
  #: includes/admin/admin.php:334
245
  #: includes/admin/admin.php:501
246
+ #: languages/vue.php:1164
247
  msgid "Please Setup Website Analytics to See Audience Insights"
248
  msgstr ""
249
 
250
  #: includes/admin/admin.php:335
251
  #: includes/admin/admin.php:502
252
+ #: languages/vue.php:1170
253
  msgid "Connect ExactMetrics and Setup Website Analytics"
254
  msgstr ""
255
 
264
  #: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
265
  #: includes/admin/notifications/notification-returning-visitors.php:43
266
  #: includes/admin/notifications/notification-traffic-dropping.php:43
267
+ #: languages/vue.php:337
268
  msgid "Learn More"
269
  msgstr ""
270
 
271
  #: includes/admin/admin.php:339
272
  #: includes/admin/admin.php:506
273
+ #: languages/vue.php:1167
274
  msgid "ExactMetrics, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 3 million website owners use ExactMetrics to see the stats that matter and grow their business."
275
  msgstr ""
276
 
283
  #. Translators: Adds a link to the license renewal.
284
  #: includes/admin/admin.php:362
285
  #: includes/admin/admin.php:529
286
+ #: languages/vue.php:478
287
  msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
288
  msgstr ""
289
 
294
  #: includes/admin/admin.php:366
295
  #: includes/admin/admin.php:533
296
  #: includes/admin/api-auth.php:303
297
+ #: languages/vue.php:484
298
  msgid "Your license key for ExactMetrics is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
299
  msgstr ""
300
 
343
  msgstr ""
344
 
345
  #: includes/admin/admin.php:531
346
+ #: languages/vue.php:481
347
  msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
348
  msgstr ""
349
 
510
  msgstr ""
511
 
512
  #: includes/admin/common.php:951
513
+ #: languages/vue.php:3349
514
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
515
  msgstr ""
516
 
531
 
532
  #: includes/admin/exclude-page-metabox.php:144
533
  #: languages/gutenberg.php:354
534
+ #: languages/vue.php:3141
535
  msgid "Upgrade"
536
  msgstr ""
537
 
728
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:25
729
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:25
730
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:25
731
+ #: languages/vue.php:1753
732
  #: lite/includes/admin/helpers.php:85
733
  msgid "Upgrade to ExactMetrics Pro"
734
  msgstr ""
764
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
765
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
766
  #: includes/admin/reports/abstract-report.php:449
767
+ #: languages/vue.php:225
768
  msgid "Upgrade Now"
769
  msgstr ""
770
 
942
  msgstr ""
943
 
944
  #: includes/admin/reports/overview.php:34
945
+ #: languages/vue.php:440
946
  msgid "Overview"
947
  msgstr ""
948
 
1043
  msgstr ""
1044
 
1045
  #: includes/admin/routes.php:533
1046
+ #: languages/vue.php:3702
1047
  msgid "Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required."
1048
  msgstr ""
1049
 
1495
  msgstr ""
1496
 
1497
  #: includes/gutenberg/headline-tool/headline-tool.php:304
1498
+ #: languages/vue.php:549
1499
  msgid "General"
1500
  msgstr ""
1501
 
3720
  msgid "something"
3721
  msgstr ""
3722
 
3723
+ #: includes/helpers.php:414
3724
  msgid "United States"
3725
  msgstr ""
3726
 
3727
+ #: includes/helpers.php:415
3728
+ #: includes/helpers.php:1861
3729
  msgid "Canada"
3730
  msgstr ""
3731
 
3732
+ #: includes/helpers.php:416
3733
+ #: includes/helpers.php:1906
3734
  msgid "United Kingdom"
3735
  msgstr ""
3736
 
3737
+ #: includes/helpers.php:417
3738
  msgid "Afghanistan"
3739
  msgstr ""
3740
 
3741
+ #: includes/helpers.php:418
3742
  msgid "&#197;land Islands"
3743
  msgstr ""
3744
 
3745
+ #: includes/helpers.php:419
3746
  msgid "Albania"
3747
  msgstr ""
3748
 
3749
+ #: includes/helpers.php:420
3750
  msgid "Algeria"
3751
  msgstr ""
3752
 
3753
+ #: includes/helpers.php:421
3754
  msgid "American Samoa"
3755
  msgstr ""
3756
 
3757
+ #: includes/helpers.php:422
3758
  msgid "Andorra"
3759
  msgstr ""
3760
 
3761
+ #: includes/helpers.php:423
3762
  msgid "Angola"
3763
  msgstr ""
3764
 
3765
+ #: includes/helpers.php:424
3766
  msgid "Anguilla"
3767
  msgstr ""
3768
 
3769
+ #: includes/helpers.php:425
3770
  msgid "Antarctica"
3771
  msgstr ""
3772
 
3773
+ #: includes/helpers.php:426
3774
+ #: includes/helpers.php:1854
3775
  msgid "Antigua and Barbuda"
3776
  msgstr ""
3777
 
3778
+ #: includes/helpers.php:427
3779
  msgid "Argentina"
3780
  msgstr ""
3781
 
3782
+ #: includes/helpers.php:428
3783
  msgid "Armenia"
3784
  msgstr ""
3785
 
3786
+ #: includes/helpers.php:429
3787
  msgid "Aruba"
3788
  msgstr ""
3789
 
3790
+ #: includes/helpers.php:430
3791
+ #: includes/helpers.php:1855
3792
  msgid "Australia"
3793
  msgstr ""
3794
 
3795
+ #: includes/helpers.php:431
3796
  msgid "Austria"
3797
  msgstr ""
3798
 
3799
+ #: includes/helpers.php:432
3800
  msgid "Azerbaijan"
3801
  msgstr ""
3802
 
3803
+ #: includes/helpers.php:433
3804
  msgid "Bahamas"
3805
  msgstr ""
3806
 
3807
+ #: includes/helpers.php:434
3808
  msgid "Bahrain"
3809
  msgstr ""
3810
 
3811
+ #: includes/helpers.php:435
3812
  msgid "Bangladesh"
3813
  msgstr ""
3814
 
3815
+ #: includes/helpers.php:436
3816
+ #: includes/helpers.php:1856
3817
  msgid "Barbados"
3818
  msgstr ""
3819
 
3820
+ #: includes/helpers.php:437
3821
  msgid "Belarus"
3822
  msgstr ""
3823
 
3824
+ #: includes/helpers.php:438
3825
  msgid "Belgium"
3826
  msgstr ""
3827
 
3828
+ #: includes/helpers.php:439
3829
+ #: includes/helpers.php:1857
3830
  msgid "Belize"
3831
  msgstr ""
3832
 
3833
+ #: includes/helpers.php:440
3834
  msgid "Benin"
3835
  msgstr ""
3836
 
3837
+ #: includes/helpers.php:441
3838
  msgid "Bermuda"
3839
  msgstr ""
3840
 
3841
+ #: includes/helpers.php:442
3842
  msgid "Bhutan"
3843
  msgstr ""
3844
 
3845
+ #: includes/helpers.php:443
3846
  msgid "Bolivia"
3847
  msgstr ""
3848
 
3849
+ #: includes/helpers.php:444
3850
  msgid "Bonaire, Saint Eustatius and Saba"
3851
  msgstr ""
3852
 
3853
+ #: includes/helpers.php:445
3854
  msgid "Bosnia and Herzegovina"
3855
  msgstr ""
3856
 
3857
+ #: includes/helpers.php:446
3858
+ #: includes/helpers.php:1858
3859
  msgid "Botswana"
3860
  msgstr ""
3861
 
3862
+ #: includes/helpers.php:447
3863
  msgid "Bouvet Island"
3864
  msgstr ""
3865
 
3866
+ #: includes/helpers.php:448
3867
  msgid "Brazil"
3868
  msgstr ""
3869
 
3870
+ #: includes/helpers.php:449
3871
  msgid "British Indian Ocean Territory"
3872
  msgstr ""
3873
 
3874
+ #: includes/helpers.php:450
3875
  msgid "Brunei Darrussalam"
3876
  msgstr ""
3877
 
3878
+ #: includes/helpers.php:451
3879
  msgid "Bulgaria"
3880
  msgstr ""
3881
 
3882
+ #: includes/helpers.php:452
3883
  msgid "Burkina Faso"
3884
  msgstr ""
3885
 
3886
+ #: includes/helpers.php:453
3887
+ #: includes/helpers.php:1859
3888
  msgid "Burundi"
3889
  msgstr ""
3890
 
3891
+ #: includes/helpers.php:454
3892
  msgid "Cambodia"
3893
  msgstr ""
3894
 
3895
+ #: includes/helpers.php:455
3896
+ #: includes/helpers.php:1860
3897
  msgid "Cameroon"
3898
  msgstr ""
3899
 
3900
+ #: includes/helpers.php:456
3901
  msgid "Cape Verde"
3902
  msgstr ""
3903
 
3904
+ #: includes/helpers.php:457
3905
  msgid "Cayman Islands"
3906
  msgstr ""
3907
 
3908
+ #: includes/helpers.php:458
3909
  msgid "Central African Republic"
3910
  msgstr ""
3911
 
3912
+ #: includes/helpers.php:459
3913
  msgid "Chad"
3914
  msgstr ""
3915
 
3916
+ #: includes/helpers.php:460
3917
  msgid "Chile"
3918
  msgstr ""
3919
 
3920
+ #: includes/helpers.php:461
3921
  msgid "China"
3922
  msgstr ""
3923
 
3924
+ #: includes/helpers.php:462
3925
  msgid "Christmas Island"
3926
  msgstr ""
3927
 
3928
+ #: includes/helpers.php:463
3929
  msgid "Cocos Islands"
3930
  msgstr ""
3931
 
3932
+ #: includes/helpers.php:464
3933
  msgid "Colombia"
3934
  msgstr ""
3935
 
3936
+ #: includes/helpers.php:465
3937
  msgid "Comoros"
3938
  msgstr ""
3939
 
3940
+ #: includes/helpers.php:466
3941
  msgid "Congo, Democratic People's Republic"
3942
  msgstr ""
3943
 
3944
+ #: includes/helpers.php:467
3945
  msgid "Congo, Republic of"
3946
  msgstr ""
3947
 
3948
+ #: includes/helpers.php:468
3949
  msgid "Cook Islands"
3950
  msgstr ""
3951
 
3952
+ #: includes/helpers.php:469
3953
  msgid "Costa Rica"
3954
  msgstr ""
3955
 
3956
+ #: includes/helpers.php:470
3957
  msgid "Cote d'Ivoire"
3958
  msgstr ""
3959
 
3960
+ #: includes/helpers.php:471
3961
  msgid "Croatia/Hrvatska"
3962
  msgstr ""
3963
 
3964
+ #: includes/helpers.php:472
3965
  msgid "Cuba"
3966
  msgstr ""
3967
 
3968
+ #: includes/helpers.php:473
3969
  msgid "Cura&Ccedil;ao"
3970
  msgstr ""
3971
 
3972
+ #: includes/helpers.php:474
3973
  msgid "Cyprus"
3974
  msgstr ""
3975
 
3976
+ #: includes/helpers.php:475
3977
  msgid "Czechia"
3978
  msgstr ""
3979
 
3980
+ #: includes/helpers.php:476
3981
  msgid "Denmark"
3982
  msgstr ""
3983
 
3984
+ #: includes/helpers.php:477
3985
  msgid "Djibouti"
3986
  msgstr ""
3987
 
3988
+ #: includes/helpers.php:478
3989
+ #: includes/helpers.php:1862
3990
  msgid "Dominica"
3991
  msgstr ""
3992
 
3993
+ #: includes/helpers.php:479
3994
  msgid "Dominican Republic"
3995
  msgstr ""
3996
 
3997
+ #: includes/helpers.php:480
3998
  msgid "East Timor"
3999
  msgstr ""
4000
 
4001
+ #: includes/helpers.php:481
4002
  msgid "Ecuador"
4003
  msgstr ""
4004
 
4005
+ #: includes/helpers.php:482
4006
  msgid "Egypt"
4007
  msgstr ""
4008
 
4009
+ #: includes/helpers.php:483
4010
  msgid "Equatorial Guinea"
4011
  msgstr ""
4012
 
4013
+ #: includes/helpers.php:484
4014
  msgid "El Salvador"
4015
  msgstr ""
4016
 
4017
+ #: includes/helpers.php:485
4018
  msgid "Eritrea"
4019
  msgstr ""
4020
 
4021
+ #: includes/helpers.php:486
4022
  msgid "Estonia"
4023
  msgstr ""
4024
 
4025
+ #: includes/helpers.php:487
4026
  msgid "Ethiopia"
4027
  msgstr ""
4028
 
4029
+ #: includes/helpers.php:488
4030
  msgid "Falkland Islands"
4031
  msgstr ""
4032
 
4033
+ #: includes/helpers.php:489
4034
  msgid "Faroe Islands"
4035
  msgstr ""
4036
 
4037
+ #: includes/helpers.php:490
4038
+ #: includes/helpers.php:1863
4039
  msgid "Fiji"
4040
  msgstr ""
4041
 
4042
+ #: includes/helpers.php:491
4043
  msgid "Finland"
4044
  msgstr ""
4045
 
4046
+ #: includes/helpers.php:492
4047
  msgid "France"
4048
  msgstr ""
4049
 
4050
+ #: includes/helpers.php:493
4051
  msgid "French Guiana"
4052
  msgstr ""
4053
 
4054
+ #: includes/helpers.php:494
4055
  msgid "French Polynesia"
4056
  msgstr ""
4057
 
4058
+ #: includes/helpers.php:495
4059
  msgid "French Southern Territories"
4060
  msgstr ""
4061
 
4062
+ #: includes/helpers.php:496
4063
  msgid "Gabon"
4064
  msgstr ""
4065
 
4066
+ #: includes/helpers.php:497
4067
+ #: includes/helpers.php:1866
4068
  msgid "Gambia"
4069
  msgstr ""
4070
 
4071
+ #: includes/helpers.php:498
4072
  msgid "Georgia"
4073
  msgstr ""
4074
 
4075
+ #: includes/helpers.php:499
4076
  msgid "Germany"
4077
  msgstr ""
4078
 
4079
+ #: includes/helpers.php:500
4080
  msgid "Greece"
4081
  msgstr ""
4082
 
4083
+ #: includes/helpers.php:501
4084
+ #: includes/helpers.php:1867
4085
  msgid "Ghana"
4086
  msgstr ""
4087
 
4088
+ #: includes/helpers.php:502
4089
  msgid "Gibraltar"
4090
  msgstr ""
4091
 
4092
+ #: includes/helpers.php:503
4093
  msgid "Greenland"
4094
  msgstr ""
4095
 
4096
+ #: includes/helpers.php:504
4097
+ #: includes/helpers.php:1864
4098
  msgid "Grenada"
4099
  msgstr ""
4100
 
4101
+ #: includes/helpers.php:505
4102
  msgid "Guadeloupe"
4103
  msgstr ""
4104
 
4105
+ #: includes/helpers.php:506
4106
  msgid "Guam"
4107
  msgstr ""
4108
 
4109
+ #: includes/helpers.php:507
4110
  msgid "Guatemala"
4111
  msgstr ""
4112
 
4113
+ #: includes/helpers.php:508
4114
  msgid "Guernsey"
4115
  msgstr ""
4116
 
4117
+ #: includes/helpers.php:509
4118
  msgid "Guinea"
4119
  msgstr ""
4120
 
4121
+ #: includes/helpers.php:510
4122
  msgid "Guinea-Bissau"
4123
  msgstr ""
4124
 
4125
+ #: includes/helpers.php:511
4126
+ #: includes/helpers.php:1865
4127
  msgid "Guyana"
4128
  msgstr ""
4129
 
4130
+ #: includes/helpers.php:512
4131
  msgid "Haiti"
4132
  msgstr ""
4133
 
4134
+ #: includes/helpers.php:513
4135
  msgid "Heard and McDonald Islands"
4136
  msgstr ""
4137
 
4138
+ #: includes/helpers.php:514
4139
  msgid "Holy See (City Vatican State)"
4140
  msgstr ""
4141
 
4142
+ #: includes/helpers.php:515
4143
  msgid "Honduras"
4144
  msgstr ""
4145
 
4146
+ #: includes/helpers.php:516
4147
  msgid "Hong Kong"
4148
  msgstr ""
4149
 
4150
+ #: includes/helpers.php:517
4151
  msgid "Hungary"
4152
  msgstr ""
4153
 
4154
+ #: includes/helpers.php:518
4155
  msgid "Iceland"
4156
  msgstr ""
4157
 
4158
+ #: includes/helpers.php:519
4159
+ #: includes/helpers.php:1869
4160
  msgid "India"
4161
  msgstr ""
4162
 
4163
+ #: includes/helpers.php:520
4164
  msgid "Indonesia"
4165
  msgstr ""
4166
 
4167
+ #: includes/helpers.php:521
4168
  msgid "Iran"
4169
  msgstr ""
4170
 
4171
+ #: includes/helpers.php:522
4172
  msgid "Iraq"
4173
  msgstr ""
4174
 
4175
+ #: includes/helpers.php:523
4176
+ #: includes/helpers.php:1868
4177
  msgid "Ireland"
4178
  msgstr ""
4179
 
4180
+ #: includes/helpers.php:524
4181
  msgid "Isle of Man"
4182
  msgstr ""
4183
 
4184
+ #: includes/helpers.php:525
4185
  msgid "Israel"
4186
  msgstr ""
4187
 
4188
+ #: includes/helpers.php:526
4189
  msgid "Italy"
4190
  msgstr ""
4191
 
4192
+ #: includes/helpers.php:527
4193
+ #: includes/helpers.php:1870
4194
  msgid "Jamaica"
4195
  msgstr ""
4196
 
4197
+ #: includes/helpers.php:528
4198
  msgid "Japan"
4199
  msgstr ""
4200
 
4201
+ #: includes/helpers.php:529
4202
  msgid "Jersey"
4203
  msgstr ""
4204
 
4205
+ #: includes/helpers.php:530
4206
  msgid "Jordan"
4207
  msgstr ""
4208
 
4209
+ #: includes/helpers.php:531
4210
  msgid "Kazakhstan"
4211
  msgstr ""
4212
 
4213
+ #: includes/helpers.php:532
4214
+ #: includes/helpers.php:1871
4215
  msgid "Kenya"
4216
  msgstr ""
4217
 
4218
+ #: includes/helpers.php:533
4219
+ #: includes/helpers.php:1872
4220
  msgid "Kiribati"
4221
  msgstr ""
4222
 
4223
+ #: includes/helpers.php:534
4224
  msgid "Kuwait"
4225
  msgstr ""
4226
 
4227
+ #: includes/helpers.php:535
4228
  msgid "Kyrgyzstan"
4229
  msgstr ""
4230
 
4231
+ #: includes/helpers.php:536
4232
  msgid "Lao People's Democratic Republic"
4233
  msgstr ""
4234
 
4235
+ #: includes/helpers.php:537
4236
  msgid "Latvia"
4237
  msgstr ""
4238
 
4239
+ #: includes/helpers.php:538
4240
  msgid "Lebanon"
4241
  msgstr ""
4242
 
4243
+ #: includes/helpers.php:539
4244
+ #: includes/helpers.php:1873
4245
  msgid "Lesotho"
4246
  msgstr ""
4247
 
4248
+ #: includes/helpers.php:540
4249
+ #: includes/helpers.php:1874
4250
  msgid "Liberia"
4251
  msgstr ""
4252
 
4253
+ #: includes/helpers.php:541
4254
  msgid "Libyan Arab Jamahiriya"
4255
  msgstr ""
4256
 
4257
+ #: includes/helpers.php:542
4258
  msgid "Liechtenstein"
4259
  msgstr ""
4260
 
4261
+ #: includes/helpers.php:543
4262
  msgid "Lithuania"
4263
  msgstr ""
4264
 
4265
+ #: includes/helpers.php:544
4266
  msgid "Luxembourg"
4267
  msgstr ""
4268
 
4269
+ #: includes/helpers.php:545
4270
  msgid "Macau"
4271
  msgstr ""
4272
 
4273
+ #: includes/helpers.php:546
4274
  msgid "Macedonia (FYROM)"
4275
  msgstr ""
4276
 
4277
+ #: includes/helpers.php:547
4278
  msgid "Madagascar"
4279
  msgstr ""
4280
 
4281
+ #: includes/helpers.php:548
4282
+ #: includes/helpers.php:1875
4283
  msgid "Malawi"
4284
  msgstr ""
4285
 
4286
+ #: includes/helpers.php:549
4287
  msgid "Malaysia"
4288
  msgstr ""
4289
 
4290
+ #: includes/helpers.php:550
4291
  msgid "Maldives"
4292
  msgstr ""
4293
 
4294
+ #: includes/helpers.php:551
4295
  msgid "Mali"
4296
  msgstr ""
4297
 
4298
+ #: includes/helpers.php:552
4299
+ #: includes/helpers.php:1876
4300
  msgid "Malta"
4301
  msgstr ""
4302
 
4303
+ #: includes/helpers.php:553
4304
+ #: includes/helpers.php:1877
4305
  msgid "Marshall Islands"
4306
  msgstr ""
4307
 
4308
+ #: includes/helpers.php:554
4309
  msgid "Martinique"
4310
  msgstr ""
4311
 
4312
+ #: includes/helpers.php:555
4313
  msgid "Mauritania"
4314
  msgstr ""
4315
 
4316
+ #: includes/helpers.php:556
4317
+ #: includes/helpers.php:1878
4318
  msgid "Mauritius"
4319
  msgstr ""
4320
 
4321
+ #: includes/helpers.php:557
4322
  msgid "Mayotte"
4323
  msgstr ""
4324
 
4325
+ #: includes/helpers.php:558
4326
  msgid "Mexico"
4327
  msgstr ""
4328
 
4329
+ #: includes/helpers.php:559
4330
+ #: includes/helpers.php:1879
4331
  msgid "Micronesia"
4332
  msgstr ""
4333
 
4334
+ #: includes/helpers.php:560
4335
  msgid "Moldova, Republic of"
4336
  msgstr ""
4337
 
4338
+ #: includes/helpers.php:561
4339
  msgid "Monaco"
4340
  msgstr ""
4341
 
4342
+ #: includes/helpers.php:562
4343
  msgid "Mongolia"
4344
  msgstr ""
4345
 
4346
+ #: includes/helpers.php:563
4347
  msgid "Montenegro"
4348
  msgstr ""
4349
 
4350
+ #: includes/helpers.php:564
4351
  msgid "Montserrat"
4352
  msgstr ""
4353
 
4354
+ #: includes/helpers.php:565
4355
  msgid "Morocco"
4356
  msgstr ""
4357
 
4358
+ #: includes/helpers.php:566
4359
  msgid "Mozambique"
4360
  msgstr ""
4361
 
4362
+ #: includes/helpers.php:567
4363
  msgid "Myanmar"
4364
  msgstr ""
4365
 
4366
+ #: includes/helpers.php:568
4367
+ #: includes/helpers.php:1881
4368
  msgid "Namibia"
4369
  msgstr ""
4370
 
4371
+ #: includes/helpers.php:569
4372
+ #: includes/helpers.php:1882
4373
  msgid "Nauru"
4374
  msgstr ""
4375
 
4376
+ #: includes/helpers.php:570
4377
  msgid "Nepal"
4378
  msgstr ""
4379
 
4380
+ #: includes/helpers.php:571
4381
  msgid "Netherlands"
4382
  msgstr ""
4383
 
4384
+ #: includes/helpers.php:572
4385
  msgid "Netherlands Antilles"
4386
  msgstr ""
4387
 
4388
+ #: includes/helpers.php:573
4389
  msgid "New Caledonia"
4390
  msgstr ""
4391
 
4392
+ #: includes/helpers.php:574
4393
+ #: includes/helpers.php:1880
4394
  msgid "New Zealand"
4395
  msgstr ""
4396
 
4397
+ #: includes/helpers.php:575
4398
  msgid "Nicaragua"
4399
  msgstr ""
4400
 
4401
+ #: includes/helpers.php:576
4402
  msgid "Niger"
4403
  msgstr ""
4404
 
4405
+ #: includes/helpers.php:577
4406
+ #: includes/helpers.php:1883
4407
  msgid "Nigeria"
4408
  msgstr ""
4409
 
4410
+ #: includes/helpers.php:578
4411
  msgid "Niue"
4412
  msgstr ""
4413
 
4414
+ #: includes/helpers.php:579
4415
  msgid "Norfolk Island"
4416
  msgstr ""
4417
 
4418
+ #: includes/helpers.php:580
4419
  msgid "North Korea"
4420
  msgstr ""
4421
 
4422
+ #: includes/helpers.php:581
4423
  msgid "Northern Mariana Islands"
4424
  msgstr ""
4425
 
4426
+ #: includes/helpers.php:582
4427
  msgid "Norway"
4428
  msgstr ""
4429
 
4430
+ #: includes/helpers.php:583
4431
  msgid "Oman"
4432
  msgstr ""
4433
 
4434
+ #: includes/helpers.php:584
4435
+ #: includes/helpers.php:1884
4436
  msgid "Pakistan"
4437
  msgstr ""
4438
 
4439
+ #: includes/helpers.php:585
4440
+ #: includes/helpers.php:1885
4441
  msgid "Palau"
4442
  msgstr ""
4443
 
4444
+ #: includes/helpers.php:586
4445
  msgid "Palestinian Territories"
4446
  msgstr ""
4447
 
4448
+ #: includes/helpers.php:587
4449
  msgid "Panama"
4450
  msgstr ""
4451
 
4452
+ #: includes/helpers.php:588
4453
+ #: includes/helpers.php:1886
4454
  msgid "Papua New Guinea"
4455
  msgstr ""
4456
 
4457
+ #: includes/helpers.php:589
4458
  msgid "Paraguay"
4459
  msgstr ""
4460
 
4461
+ #: includes/helpers.php:590
4462
  msgid "Peru"
4463
  msgstr ""
4464
 
4465
+ #: includes/helpers.php:591
4466
+ #: includes/helpers.php:1887
4467
  msgid "Philippines"
4468
  msgstr ""
4469
 
4470
+ #: includes/helpers.php:592
4471
  msgid "Pitcairn Island"
4472
  msgstr ""
4473
 
4474
+ #: includes/helpers.php:593
4475
  msgid "Poland"
4476
  msgstr ""
4477
 
4478
+ #: includes/helpers.php:594
4479
  msgid "Portugal"
4480
  msgstr ""
4481
 
4482
+ #: includes/helpers.php:595
4483
  msgid "Puerto Rico"
4484
  msgstr ""
4485
 
4486
+ #: includes/helpers.php:596
4487
  msgid "Qatar"
4488
  msgstr ""
4489
 
4490
+ #: includes/helpers.php:597
4491
  msgid "Republic of Kosovo"
4492
  msgstr ""
4493
 
4494
+ #: includes/helpers.php:598
4495
  msgid "Reunion Island"
4496
  msgstr ""
4497
 
4498
+ #: includes/helpers.php:599
4499
  msgid "Romania"
4500
  msgstr ""
4501
 
4502
+ #: includes/helpers.php:600
4503
  msgid "Russian Federation"
4504
  msgstr ""
4505
 
4506
+ #: includes/helpers.php:601
4507
+ #: includes/helpers.php:1888
4508
  msgid "Rwanda"
4509
  msgstr ""
4510
 
4511
+ #: includes/helpers.php:602
4512
  msgid "Saint Barth&eacute;lemy"
4513
  msgstr ""
4514
 
4515
+ #: includes/helpers.php:603
4516
  msgid "Saint Helena"
4517
  msgstr ""
4518
 
4519
+ #: includes/helpers.php:604
4520
  msgid "Saint Kitts and Nevis"
4521
  msgstr ""
4522
 
4523
+ #: includes/helpers.php:605
4524
  msgid "Saint Lucia"
4525
  msgstr ""
4526
 
4527
+ #: includes/helpers.php:606
4528
  msgid "Saint Martin (French)"
4529
  msgstr ""
4530
 
4531
+ #: includes/helpers.php:607
4532
  msgid "Saint Martin (Dutch)"
4533
  msgstr ""
4534
 
4535
+ #: includes/helpers.php:608
4536
  msgid "Saint Pierre and Miquelon"
4537
  msgstr ""
4538
 
4539
+ #: includes/helpers.php:609
4540
  msgid "Saint Vincent and the Grenadines"
4541
  msgstr ""
4542
 
4543
+ #: includes/helpers.php:610
4544
  msgid "San Marino"
4545
  msgstr ""
4546
 
4547
+ #: includes/helpers.php:611
4548
  msgid "S&atilde;o Tom&eacute; and Pr&iacute;ncipe"
4549
  msgstr ""
4550
 
4551
+ #: includes/helpers.php:612
4552
  msgid "Saudi Arabia"
4553
  msgstr ""
4554
 
4555
+ #: includes/helpers.php:613
4556
  msgid "Senegal"
4557
  msgstr ""
4558
 
4559
+ #: includes/helpers.php:614
4560
  msgid "Serbia"
4561
  msgstr ""
4562
 
4563
+ #: includes/helpers.php:615
4564
+ #: includes/helpers.php:1895
4565
  msgid "Seychelles"
4566
  msgstr ""
4567
 
4568
+ #: includes/helpers.php:616
4569
+ #: includes/helpers.php:1896
4570
  msgid "Sierra Leone"
4571
  msgstr ""
4572
 
4573
+ #: includes/helpers.php:617
4574
+ #: includes/helpers.php:1889
4575
  msgid "Singapore"
4576
  msgstr ""
4577
 
4578
+ #: includes/helpers.php:618
4579
  msgid "Slovak Republic"
4580
  msgstr ""
4581
 
4582
+ #: includes/helpers.php:619
4583
  msgid "Slovenia"
4584
  msgstr ""
4585
 
4586
+ #: includes/helpers.php:620
4587
+ #: includes/helpers.php:1897
4588
  msgid "Solomon Islands"
4589
  msgstr ""
4590
 
4591
+ #: includes/helpers.php:621
4592
  msgid "Somalia"
4593
  msgstr ""
4594
 
4595
+ #: includes/helpers.php:622
4596
+ #: includes/helpers.php:1898
4597
  msgid "South Africa"
4598
  msgstr ""
4599
 
4600
+ #: includes/helpers.php:623
4601
  msgid "South Georgia"
4602
  msgstr ""
4603
 
4604
+ #: includes/helpers.php:624
4605
  msgid "South Korea"
4606
  msgstr ""
4607
 
4608
+ #: includes/helpers.php:625
4609
+ #: includes/helpers.php:1899
4610
  msgid "South Sudan"
4611
  msgstr ""
4612
 
4613
+ #: includes/helpers.php:626
4614
  msgid "Spain"
4615
  msgstr ""
4616
 
4617
+ #: includes/helpers.php:627
4618
  msgid "Sri Lanka"
4619
  msgstr ""
4620
 
4621
+ #: includes/helpers.php:628
4622
+ #: includes/helpers.php:1900
4623
  msgid "Sudan"
4624
  msgstr ""
4625
 
4626
+ #: includes/helpers.php:629
4627
  msgid "Suriname"
4628
  msgstr ""
4629
 
4630
+ #: includes/helpers.php:630
4631
  msgid "Svalbard and Jan Mayen Islands"
4632
  msgstr ""
4633
 
4634
+ #: includes/helpers.php:631
4635
+ #: includes/helpers.php:1893
4636
  msgid "Swaziland"
4637
  msgstr ""
4638
 
4639
+ #: includes/helpers.php:632
4640
  msgid "Sweden"
4641
  msgstr ""
4642
 
4643
+ #: includes/helpers.php:633
4644
  msgid "Switzerland"
4645
  msgstr ""
4646
 
4647
+ #: includes/helpers.php:634
4648
  msgid "Syrian Arab Republic"
4649
  msgstr ""
4650
 
4651
+ #: includes/helpers.php:635
4652
  msgid "Taiwan"
4653
  msgstr ""
4654
 
4655
+ #: includes/helpers.php:636
4656
  msgid "Tajikistan"
4657
  msgstr ""
4658
 
4659
+ #: includes/helpers.php:637
4660
+ #: includes/helpers.php:1903
4661
  msgid "Tanzania"
4662
  msgstr ""
4663
 
4664
+ #: includes/helpers.php:638
4665
  msgid "Thailand"
4666
  msgstr ""
4667
 
4668
+ #: includes/helpers.php:639
4669
  msgid "Timor-Leste"
4670
  msgstr ""
4671
 
4672
+ #: includes/helpers.php:640
4673
  msgid "Togo"
4674
  msgstr ""
4675
 
4676
+ #: includes/helpers.php:641
4677
  msgid "Tokelau"
4678
  msgstr ""
4679
 
4680
+ #: includes/helpers.php:642
4681
+ #: includes/helpers.php:1904
4682
  msgid "Tonga"
4683
  msgstr ""
4684
 
4685
+ #: includes/helpers.php:643
4686
+ #: includes/helpers.php:1901
4687
  msgid "Trinidad and Tobago"
4688
  msgstr ""
4689
 
4690
+ #: includes/helpers.php:644
4691
  msgid "Tunisia"
4692
  msgstr ""
4693
 
4694
+ #: includes/helpers.php:645
4695
  msgid "Turkey"
4696
  msgstr ""
4697
 
4698
+ #: includes/helpers.php:646
4699
  msgid "Turkmenistan"
4700
  msgstr ""
4701
 
4702
+ #: includes/helpers.php:647
4703
  msgid "Turks and Caicos Islands"
4704
  msgstr ""
4705
 
4706
+ #: includes/helpers.php:648
4707
+ #: includes/helpers.php:1905
4708
  msgid "Tuvalu"
4709
  msgstr ""
4710
 
4711
+ #: includes/helpers.php:649
4712
+ #: includes/helpers.php:1908
4713
  msgid "Uganda"
4714
  msgstr ""
4715
 
4716
+ #: includes/helpers.php:650
4717
  msgid "Ukraine"
4718
  msgstr ""
4719
 
4720
+ #: includes/helpers.php:651
4721
  msgid "United Arab Emirates"
4722
  msgstr ""
4723
 
4724
+ #: includes/helpers.php:652
4725
  msgid "Uruguay"
4726
  msgstr ""
4727
 
4728
+ #: includes/helpers.php:653
4729
  msgid "US Minor Outlying Islands"
4730
  msgstr ""
4731
 
4732
+ #: includes/helpers.php:654
4733
  msgid "Uzbekistan"
4734
  msgstr ""
4735
 
4736
+ #: includes/helpers.php:655
4737
+ #: includes/helpers.php:1909
4738
  msgid "Vanuatu"
4739
  msgstr ""
4740
 
4741
+ #: includes/helpers.php:656
4742
  msgid "Venezuela"
4743
  msgstr ""
4744
 
4745
+ #: includes/helpers.php:657
4746
  msgid "Vietnam"
4747
  msgstr ""
4748
 
4749
+ #: includes/helpers.php:658
4750
  msgid "Virgin Islands (British)"
4751
  msgstr ""
4752
 
4753
+ #: includes/helpers.php:659
4754
  msgid "Virgin Islands (USA)"
4755
  msgstr ""
4756
 
4757
+ #: includes/helpers.php:660
4758
  msgid "Wallis and Futuna Islands"
4759
  msgstr ""
4760
 
4761
+ #: includes/helpers.php:661
4762
  msgid "Western Sahara"
4763
  msgstr ""
4764
 
4765
+ #: includes/helpers.php:662
4766
  msgid "Western Samoa"
4767
  msgstr ""
4768
 
4769
+ #: includes/helpers.php:663
4770
  msgid "Yemen"
4771
  msgstr ""
4772
 
4773
+ #: includes/helpers.php:664
4774
+ #: includes/helpers.php:1910
4775
  msgid "Zambia"
4776
  msgstr ""
4777
 
4778
+ #: includes/helpers.php:665
4779
+ #: includes/helpers.php:1911
4780
  msgid "Zimbabwe"
4781
  msgstr ""
4782
 
4783
+ #: includes/helpers.php:666
4784
  msgid "Unknown Country"
4785
  msgstr ""
4786
 
4787
  #. Translators: The placeholders are for making the "We noticed you're using a caching plugin" text bold.
4788
+ #: includes/helpers.php:1346
4789
  msgid "%1$sWe noticed you're using a caching plugin or caching from your hosting provider.%2$s Be sure to clear the cache to ensure the tracking appears on all pages and posts. %3$s(See this guide on how to clear cache)%4$s."
4790
  msgstr ""
4791
 
4792
  #. Translators: The placeholders are for making the "We have detected multiple tracking codes" text bold & adding a link to support.
4793
+ #: includes/helpers.php:1396
4794
  msgid "%1$sWe have detected multiple tracking codes%2$s! You should remove non-ExactMetrics ones. If you need help finding them please %3$sread this article%4$s."
4795
  msgstr ""
4796
 
4797
+ #: includes/helpers.php:1890
4798
  msgid "St Kitts and Nevis"
4799
  msgstr ""
4800
 
4801
+ #: includes/helpers.php:1891
4802
  msgid "St Lucia"
4803
  msgstr ""
4804
 
4805
+ #: includes/helpers.php:1892
4806
  msgid "St Vincent and the Grenadines"
4807
  msgstr ""
4808
 
4809
+ #: includes/helpers.php:1894
4810
  msgid "Samoa"
4811
  msgstr ""
4812
 
4813
+ #: includes/helpers.php:1902
4814
  msgid "The Bahamas"
4815
  msgstr ""
4816
 
4817
+ #: includes/helpers.php:1907
4818
  msgid "United States of America"
4819
  msgstr ""
4820
 
4895
  msgstr ""
4896
 
4897
  #: languages/gutenberg.php:77
4898
+ #: languages/vue.php:533
4899
  msgid "Inline Popular Posts"
4900
  msgstr ""
4901
 
4932
  msgstr ""
4933
 
4934
  #: languages/gutenberg.php:107
4935
+ #: languages/vue.php:3096
4936
  msgid "Wide-Layout Options"
4937
  msgstr ""
4938
 
4941
  msgstr ""
4942
 
4943
  #: languages/gutenberg.php:113
4944
+ #: languages/vue.php:3099
4945
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4946
  msgstr ""
4947
 
4948
  #: languages/gutenberg.php:116
4949
+ #: languages/vue.php:3120
4950
  msgid "Post Count"
4951
  msgstr ""
4952
 
4955
  msgstr ""
4956
 
4957
  #: languages/gutenberg.php:122
4958
+ #: languages/vue.php:3102
4959
  msgid "Display Options"
4960
  msgstr ""
4961
 
4968
  msgstr ""
4969
 
4970
  #: languages/gutenberg.php:131
4971
+ #: languages/vue.php:1981
4972
  msgid "Widget Title"
4973
  msgstr ""
4974
 
4977
  msgstr ""
4978
 
4979
  #: languages/gutenberg.php:137
4980
+ #: languages/vue.php:3108
4981
  msgid "Display Author"
4982
  msgstr ""
4983
 
4984
  #: languages/gutenberg.php:140
4985
+ #: languages/vue.php:3111
4986
  msgid "Display Date"
4987
  msgstr ""
4988
 
4989
  #: languages/gutenberg.php:143
4990
+ #: languages/vue.php:3114
4991
  msgid "Display Comments"
4992
  msgstr ""
4993
 
5208
  msgstr ""
5209
 
5210
  #: languages/gutenberg.php:312
5211
+ #: languages/vue.php:1006
5212
  msgid "Headline Analyzer"
5213
  msgstr ""
5214
 
5221
  msgstr ""
5222
 
5223
  #: languages/gutenberg.php:321
5224
+ #: languages/vue.php:109
5225
  #: lite/includes/admin/metaboxes.php:47
5226
  msgid "Last 30 days"
5227
  msgstr ""
5228
 
5229
  #: languages/gutenberg.php:324
5230
+ #: languages/vue.php:97
5231
  #: lite/includes/admin/metaboxes.php:51
5232
  msgid "Yesterday"
5233
  msgstr ""
5234
 
5235
  #: languages/gutenberg.php:327
5236
+ #: languages/vue.php:1324
5237
  #: lite/includes/admin/metaboxes.php:65
5238
  #: lite/includes/admin/metaboxes.php:127
5239
  msgid "Bounce Rate"
5315
  msgstr ""
5316
 
5317
  #. Translators: Adds an arrow icon.
5318
+ #: languages/vue.php:35
5319
  msgid "Continue %s"
5320
  msgstr ""
5321
 
5322
+ #: languages/vue.php:40
5323
  msgid "Error"
5324
  msgstr ""
5325
 
5326
+ #: languages/vue.php:43
5327
  msgid "Please try again."
5328
  msgstr ""
5329
 
5330
+ #: languages/vue.php:46
5331
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5332
  msgstr ""
5333
 
5334
+ #: languages/vue.php:49
5335
  msgid "Stop guessing about what content your visitors are interested in. ExactMetrics Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
5336
  msgstr ""
5337
 
5338
+ #: languages/vue.php:52
5339
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5340
  msgstr ""
5341
 
5342
+ #: languages/vue.php:55
5343
  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."
5344
  msgstr ""
5345
 
5346
+ #: languages/vue.php:58
5347
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5348
  msgstr ""
5349
 
5350
+ #: languages/vue.php:61
5351
  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."
5352
  msgstr ""
5353
 
5354
+ #: languages/vue.php:64
5355
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5356
  msgstr ""
5357
 
5358
+ #: languages/vue.php:67
5359
  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."
5360
  msgstr ""
5361
 
5362
+ #: languages/vue.php:70
5363
  msgid "Unlock the Forms Report and Improve Conversions"
5364
  msgstr ""
5365
 
5366
+ #: languages/vue.php:73
5367
  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."
5368
  msgstr ""
5369
 
5370
+ #: languages/vue.php:76
5371
  msgid "Unlock the Search Console Report and See How People Find Your Website"
5372
  msgstr ""
5373
 
5374
+ #: languages/vue.php:79
5375
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5376
  msgstr ""
5377
 
5378
+ #: languages/vue.php:82
5379
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5380
  msgstr ""
5381
 
5382
+ #: languages/vue.php:85
5383
  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."
5384
  msgstr ""
5385
 
5386
+ #: languages/vue.php:88
5387
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5388
  msgstr ""
5389
 
5390
+ #: languages/vue.php:91
5391
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5392
  msgstr ""
5393
 
5394
+ #: languages/vue.php:94
5395
  msgid "Today"
5396
  msgstr ""
5397
 
5398
+ #: languages/vue.php:100
5399
  msgid "Last Week"
5400
  msgstr ""
5401
 
5402
+ #: languages/vue.php:103
5403
  msgid "Last Month"
5404
  msgstr ""
5405
 
5406
+ #: languages/vue.php:106
5407
  msgid "Last 7 days"
5408
  msgstr ""
5409
 
5410
+ #: languages/vue.php:112
5411
  msgid "Loading settings"
5412
  msgstr ""
5413
 
5414
  #. Translators: Number of visitors.
5415
+ #: languages/vue.php:116
5416
  msgid "See how %s visitors found your site!"
5417
  msgstr ""
5418
 
5419
  #. Translators: Number of visitors.
5420
+ #: languages/vue.php:120
5421
  msgid "Your website was visited by %s users in the last 30 days."
5422
  msgstr ""
5423
 
5424
+ #: languages/vue.php:123
5425
  msgid "See the full analytics report!"
5426
  msgstr ""
5427
 
5428
+ #: languages/vue.php:126
5429
  msgid "Overview Report"
5430
  msgstr ""
5431
 
5432
  #. Translators: Current PHP version and recommended PHP version.
5433
+ #: languages/vue.php:130
5434
  msgid "ExactMetrics has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
5435
  msgstr ""
5436
 
5437
  #. Translators: Current WordPress version.
5438
+ #: languages/vue.php:134
5439
  msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.9 in 2020. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5440
  msgstr ""
5441
 
5442
+ #: languages/vue.php:137
5443
  msgid "Yikes! PHP Update Required"
5444
  msgstr ""
5445
 
5446
  #. Translators: Current PHP version and recommended PHP version.
5447
+ #: languages/vue.php:141
5448
  msgid "ExactMetrics has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
5449
  msgstr ""
5450
 
5451
+ #: languages/vue.php:144
5452
  msgid "Learn more about updating PHP"
5453
  msgstr ""
5454
 
5455
+ #: languages/vue.php:147
5456
  msgid "Yikes! WordPress Update Required"
5457
  msgstr ""
5458
 
5459
  #. Translators: Current WordPress version.
5460
+ #: languages/vue.php:151
5461
  msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5462
  msgstr ""
5463
 
5464
+ #: languages/vue.php:154
5465
  msgid "Learn more about updating WordPress"
5466
  msgstr ""
5467
 
5468
+ #: languages/vue.php:160
5469
  msgid "Getting Started"
5470
  msgstr ""
5471
 
5472
+ #: languages/vue.php:163
5473
  msgid "Lite vs Pro"
5474
  msgstr ""
5475
 
5476
+ #: languages/vue.php:166
5477
  msgid "Success! "
5478
  msgstr ""
5479
 
5480
+ #: languages/vue.php:169
5481
  msgid "You're now using ExactMetrics Pro with all the features."
5482
  msgstr ""
5483
 
5484
  #. Translators: Placeholder gets replaced with an arrow icon.
5485
+ #: languages/vue.php:173
5486
  msgid "Get Started %s"
5487
  msgstr ""
5488
 
5489
  #. Translators: Error status and error text.
5490
+ #: languages/vue.php:177
5491
  msgid "Can't load report data. Error: %1$s, %2$s"
5492
  msgstr ""
5493
 
5494
+ #: languages/vue.php:180
5495
  msgid "Error loading report data"
5496
  msgstr ""
5497
 
5498
  #. Translators: Makes the text bold.
5499
+ #: languages/vue.php:184
5500
  msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5501
  msgstr ""
5502
 
5503
  #. Translators: Makes the text bold.
5504
+ #: languages/vue.php:188
5505
  msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
5506
  msgstr ""
5507
 
5508
  #. Translators: Makes the text bold.
5509
+ #: languages/vue.php:192
5510
  msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
5511
  msgstr ""
5512
 
5513
  #. Translators: Makes text bold.
5514
+ #: languages/vue.php:196
5515
  msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
5516
  msgstr ""
5517
 
5518
  #. Translators: Makes the text bold.
5519
+ #: languages/vue.php:200
5520
  msgid "%1$sPage Level Analytics%2$s - Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
5521
  msgstr ""
5522
 
5523
  #. Translators: Makes the text bold.
5524
+ #: languages/vue.php:204
5525
  msgid "%1$sAffiliate Link & Ads Tracking%2$s - Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
5526
  msgstr ""
5527
 
5528
  #. Translators: Makes the text bold.
5529
+ #: languages/vue.php:208
5530
  msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5531
  msgstr ""
5532
 
5533
  #. Translators: Makes text bold.
5534
+ #: languages/vue.php:212
5535
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
5536
  msgstr ""
5537
 
5538
  #. Translators: Adds a link and an arrow icon.
5539
+ #: languages/vue.php:216
5540
  msgid "%1$sSee All Features%2$s"
5541
  msgstr ""
5542
 
5543
+ #: languages/vue.php:219
5544
  msgid "Pro Plan"
5545
  msgstr ""
5546
 
5547
+ #: languages/vue.php:222
5548
  msgid "per year"
5549
  msgstr ""
5550
 
5551
+ #: languages/vue.php:228
5552
  msgid "Upgrade to ExactMetrics Pro Now"
5553
  msgstr ""
5554
 
5555
+ #: languages/vue.php:231
5556
  msgid "This is absolutely, positively, one of the TOP plugins to install on your WP site. There is no better way to quickly gauge traffic for spikes, surges, and consistency. I installed this on over a dozen WordPress installations and counting, thank you for an outstanding app!"
5557
  msgstr ""
5558
 
5559
+ #: languages/vue.php:234
5560
  msgid "Daniel Monaghan - Experienced"
5561
  msgstr ""
5562
 
5563
+ #: languages/vue.php:237
5564
  msgid "Very simple to configure and the results are very clearly displayed. So much easier for clients to view than in their own analytics account! Delighted with it."
5565
  msgstr ""
5566
 
5567
+ #: languages/vue.php:240
5568
  msgid "Naomi Spirit - From This Day"
5569
  msgstr ""
5570
 
5571
+ #: languages/vue.php:243
5572
  msgid "Love this plugin! It’s got powerful customization options, it’s easy to use, there’s good documentation, and if all that’s not enough, ExactMetrics is quick to provide support. Thanks for this wonderful plugin!"
5573
  msgstr ""
5574
 
5575
+ #: languages/vue.php:246
5576
  msgid "Julie Dupuis - Faraway Land Travel"
5577
  msgstr ""
5578
 
5579
+ #: languages/vue.php:249
5580
  msgid "Guides and Documentation:"
5581
  msgstr ""
5582
 
5583
+ #: languages/vue.php:253
5584
  msgid "Upgrade to PRO"
5585
  msgstr ""
5586
 
5587
+ #: languages/vue.php:257
5588
  msgid "eCommerce Tracking"
5589
  msgstr ""
5590
 
5591
+ #: languages/vue.php:260
5592
  msgid "Custom Dimensions"
5593
  msgstr ""
5594
 
5595
+ #: languages/vue.php:264
5596
  msgid "Form Tracking"
5597
  msgstr ""
5598
 
5599
+ #: languages/vue.php:268
5600
  msgid "AMP Support"
5601
  msgstr ""
5602
 
5603
+ #: languages/vue.php:272
5604
  msgid "Author Tracking"
5605
  msgstr ""
5606
 
5607
+ #: languages/vue.php:276
5608
  msgid "EU Compliance Addon"
5609
  msgstr ""
5610
 
5611
+ #: languages/vue.php:280
5612
  msgid "Real Time Report"
5613
  msgstr ""
5614
 
5615
+ #: languages/vue.php:283
5616
  msgid "Google Optimize"
5617
  msgstr ""
5618
 
5619
+ #: languages/vue.php:287
5620
  #: lite/includes/admin/reports/report-queries.php:22
5621
  msgid "Search Console"
5622
  msgstr ""
5623
 
5624
+ #: languages/vue.php:291
5625
  msgid "Custom Date Ranges"
5626
  msgstr ""
5627
 
5628
+ #: languages/vue.php:294
5629
+ #: languages/vue.php:946
5630
  msgid "Getting Started with ExactMetrics"
5631
  msgstr ""
5632
 
5633
+ #: languages/vue.php:297
5634
+ #: languages/vue.php:949
5635
  msgid "ExactMetrics is the easiest analytics solution on the market to get started with, as we walk you through exactly what you need to do, in plain english, using our 3 minute setup wizard."
5636
  msgstr ""
5637
 
5638
+ #: languages/vue.php:300
5639
  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."
5640
  msgstr ""
5641
 
5642
+ #: languages/vue.php:303
5643
  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!."
5644
  msgstr ""
5645
 
5646
+ #: languages/vue.php:306
5647
  msgid "Launch the wizard!"
5648
  msgstr ""
5649
 
5650
+ #: languages/vue.php:309
5651
  msgid "Welcome to"
5652
  msgstr ""
5653
 
5654
  #. Translators: Adds a line break.
5655
+ #: languages/vue.php:313
5656
  msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
5657
  msgstr ""
5658
 
5659
  #. Translators: Makes the product name bold.
5660
+ #: languages/vue.php:317
5661
  msgid "%1$sExactMetrics%2$s makes it “effortless” to setup Google Analytics in WordPress, the RIGHT Way. You can watch the video tutorial or use our 3 minute setup wizard."
5662
  msgstr ""
5663
 
5664
+ #: languages/vue.php:320
5665
  msgid "ExactMetrics Features & Addons"
5666
  msgstr ""
5667
 
5668
+ #: languages/vue.php:323
5669
  msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
5670
  msgstr ""
5671
 
5672
  #. Translators: Placeholder is replaced with WPForms.
5673
+ #: languages/vue.php:327
5674
  msgid "Recommended Plugin: %s"
5675
  msgstr ""
5676
 
5677
+ #: languages/vue.php:330
5678
  msgid "Install"
5679
  msgstr ""
5680
 
5681
+ #: languages/vue.php:333
5682
  msgid "Activate"
5683
  msgstr ""
5684
 
5685
+ #: languages/vue.php:340
5686
  msgid "ExactMetrics encountered an error loading your report data"
5687
  msgstr ""
5688
 
5689
+ #: languages/vue.php:343
5690
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5691
  msgstr ""
5692
 
5693
+ #: languages/vue.php:346
5694
+ #: languages/vue.php:1870
5695
  msgid "Reconnect ExactMetrics"
5696
  msgstr ""
5697
 
5698
+ #: languages/vue.php:350
5699
  msgid "Re-Authenticating"
5700
  msgstr ""
5701
 
5702
+ #: languages/vue.php:353
5703
  msgid "Ok"
5704
  msgstr ""
5705
 
5706
+ #: languages/vue.php:356
5707
+ #: languages/vue.php:885
5708
  msgid "ExactMetrics Addons"
5709
  msgstr ""
5710
 
5711
+ #: languages/vue.php:359
5712
  msgid "Search Addons"
5713
  msgstr ""
5714
 
5715
+ #: languages/vue.php:362
5716
  msgid "Save Changes"
5717
  msgstr ""
5718
 
5719
+ #: languages/vue.php:365
5720
  msgid "Exit Setup"
5721
  msgstr ""
5722
 
5723
+ #: languages/vue.php:368
5724
  msgid "Time to Purchase"
5725
  msgstr ""
5726
 
5727
+ #: languages/vue.php:371
5728
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
5729
  msgstr ""
5730
 
5731
+ #: languages/vue.php:374
5732
  msgid "Sessions to Purchase"
5733
  msgstr ""
5734
 
5735
+ #: languages/vue.php:377
5736
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5737
  msgstr ""
5738
 
5739
+ #: languages/vue.php:380
5740
  msgid "New Customers"
5741
  msgstr ""
5742
 
5743
+ #: languages/vue.php:383
5744
  msgid "This list shows the percentage of new customers who purchased a product from your website."
5745
  msgstr ""
5746
 
5747
+ #: languages/vue.php:386
5748
  msgid "Abandoned Checkouts"
5749
  msgstr ""
5750
 
5751
+ #: languages/vue.php:389
5752
  msgid "This list shows the percentage of carts that never went through the checkout process."
5753
  msgstr ""
5754
 
5755
+ #: languages/vue.php:392
5756
  msgid "Top Posts/Pages"
5757
  msgstr ""
5758
 
5759
+ #: languages/vue.php:395
5760
  msgid "This list shows the most viewed posts and pages on your website."
5761
  msgstr ""
5762
 
5763
+ #: languages/vue.php:398
5764
  msgid "New vs. Returning Visitors"
5765
  msgstr ""
5766
 
5767
+ #: languages/vue.php:401
5768
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5769
  msgstr ""
5770
 
5771
+ #: languages/vue.php:404
5772
  msgid "Device Breakdown"
5773
  msgstr ""
5774
 
5775
+ #: languages/vue.php:407
5776
  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."
5777
  msgstr ""
5778
 
5779
+ #: languages/vue.php:410
5780
  msgid "Top Landing Pages"
5781
  msgstr ""
5782
 
5783
+ #: languages/vue.php:413
5784
  msgid "This list shows the top pages users first land on when visiting your website."
5785
  msgstr ""
5786
 
5787
+ #: languages/vue.php:416
5788
  msgid "Top Exit Pages"
5789
  msgstr ""
5790
 
5791
+ #: languages/vue.php:419
5792
  msgid "This list shows the top pages users exit your website from."
5793
  msgstr ""
5794
 
5795
+ #: languages/vue.php:422
5796
  msgid "Top Outbound Links"
5797
  msgstr ""
5798
 
5799
+ #: languages/vue.php:425
5800
  msgid "This list shows the top links clicked on your website that go to another website."
5801
  msgstr ""
5802
 
5803
+ #: languages/vue.php:428
5804
  msgid "Top Affiliate Links"
5805
  msgstr ""
5806
 
5807
+ #: languages/vue.php:431
5808
  msgid "This list shows the top affiliate links your visitors clicked on."
5809
  msgstr ""
5810
 
5811
+ #: languages/vue.php:434
5812
  msgid "Top Download Links"
5813
  msgstr ""
5814
 
5815
+ #: languages/vue.php:437
5816
  msgid "This list shows the download links your visitors clicked the most."
5817
  msgstr ""
5818
 
5819
+ #: languages/vue.php:443
5820
  msgid "Top Products"
5821
  msgstr ""
5822
 
5823
+ #: languages/vue.php:446
5824
  msgid "This list shows the top selling products on your website."
5825
  msgstr ""
5826
 
5827
+ #: languages/vue.php:449
5828
  msgid "Top Conversion Sources"
5829
  msgstr ""
5830
 
5831
+ #: languages/vue.php:452
5832
  msgid "This list shows the top referral websites in terms of product revenue."
5833
  msgstr ""
5834
 
5835
+ #: languages/vue.php:455
5836
  msgid "Total Add/Remove"
5837
  msgstr ""
5838
 
5839
+ #: languages/vue.php:458
5840
  msgid "Analytics"
5841
  msgstr ""
5842
 
5843
  #. Translators: Adds an arrow icon.
5844
+ #: languages/vue.php:462
5845
  msgid "View All Reports %s"
5846
  msgstr ""
5847
 
5848
+ #: languages/vue.php:465
5849
  msgid "You must connect with ExactMetrics before you can view reports."
5850
  msgstr ""
5851
 
5852
+ #: languages/vue.php:468
5853
  msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5854
  msgstr ""
5855
 
5856
+ #: languages/vue.php:471
5857
  msgid "Launch Setup Wizard"
5858
  msgstr ""
5859
 
5860
+ #: languages/vue.php:474
5861
  msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
5862
  msgstr ""
5863
 
5864
+ #: languages/vue.php:487
5865
  msgid "See Quick Links"
5866
  msgstr ""
5867
 
5868
+ #: languages/vue.php:490
5869
  msgid "Suggest a Feature"
5870
  msgstr ""
5871
 
5872
+ #: languages/vue.php:493
5873
  msgid "Join Our Community"
5874
  msgstr ""
5875
 
5876
+ #: languages/vue.php:496
5877
  msgid "Support & Docs"
5878
  msgstr ""
5879
 
5880
+ #: languages/vue.php:499
5881
  msgid "Upgrade to Pro &#187;"
5882
  msgstr ""
5883
 
5884
+ #: languages/vue.php:502
5885
  #: lite/includes/admin/reports/report-publisher.php:22
5886
  msgid "Publishers"
5887
  msgstr ""
5888
 
5889
+ #: languages/vue.php:506
5890
  #: lite/includes/admin/reports/report-ecommerce.php:22
5891
  msgid "eCommerce"
5892
  msgstr ""
5893
 
5894
+ #: languages/vue.php:509
5895
  msgid "Dimensions Report"
5896
  msgstr ""
5897
 
5898
+ #: languages/vue.php:512
5899
  #: lite/includes/admin/reports/report-forms.php:22
5900
  msgid "Forms"
5901
  msgstr ""
5902
 
5903
+ #: languages/vue.php:515
5904
  msgid "Real-Time"
5905
  msgstr ""
5906
 
5907
+ #: languages/vue.php:519
5908
  msgid "Site Speed Report"
5909
  msgstr ""
5910
 
5911
+ #: languages/vue.php:523
5912
  msgid "2020 Year in Review"
5913
  msgstr ""
5914
 
5915
+ #: languages/vue.php:527
5916
  msgid "Import Export"
5917
  msgstr ""
5918
 
5919
+ #: languages/vue.php:530
5920
  msgid "PrettyLinks Integration"
5921
  msgstr ""
5922
 
5923
+ #: languages/vue.php:536
5924
  msgid "Popular Posts Widget"
5925
  msgstr ""
5926
 
5927
+ #: languages/vue.php:539
5928
  msgid "Popular Products"
5929
  msgstr ""
5930
 
5931
+ #: languages/vue.php:545
5932
  msgid "Sub menu item for WooCommerce Analytics"
5933
  msgstr ""
5934
 
5935
+ #: languages/vue.php:553
5936
  msgid "Engagement"
5937
  msgstr ""
5938
 
5939
+ #: languages/vue.php:557
5940
  msgid "Publisher"
5941
  msgstr ""
5942
 
5943
+ #: languages/vue.php:562
5944
  msgid "Conversions"
5945
  msgstr ""
5946
 
5947
+ #: languages/vue.php:566
5948
  msgid "Advanced"
5949
  msgstr ""
5950
 
5951
+ #: languages/vue.php:570
5952
  msgid "URL Builder"
5953
  msgstr ""
5954
 
5955
  #. Translators: Adds a link to documentation.
5956
+ #: languages/vue.php:574
5957
  msgid "In order for the ExactMetrics Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s"
5958
  msgstr ""
5959
 
5960
  #. Translators: Adds link to activate/install plugin and documentation.
5961
+ #: languages/vue.php:578
5962
  msgid "In order for the ExactMetrics Google AMP addon to work properly, you need to install the WordPress AMP plugin by Automattic. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s"
5963
  msgstr ""
5964
 
5965
  #. Translators: Adds a link to documentation.
5966
+ #: languages/vue.php:582
5967
  msgid "In order for the ExactMetrics Instant Articles addon to work properly, please ask your webmaster to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$sLearn More%2$s"
5968
  msgstr ""
5969
 
5970
  #. Translators: Adds link to activate/install plugin and documentation.
5971
+ #: languages/vue.php:586
5972
  msgid "In order for the ExactMetrics Instant Articles addon to work properly, you need to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s"
5973
  msgstr ""
5974
 
5975
+ #: languages/vue.php:589
5976
  msgid "Installing Addon"
5977
  msgstr ""
5978
 
5979
+ #: languages/vue.php:592
5980
  msgid "Activating Addon"
5981
  msgstr ""
5982
 
5983
+ #: languages/vue.php:595
5984
  msgid "Addon Activated"
5985
  msgstr ""
5986
 
5987
+ #: languages/vue.php:598
5988
  msgid "Loading report data"
5989
  msgstr ""
5990
 
5991
+ #: languages/vue.php:601
5992
  msgid "Please activate manually"
5993
  msgstr ""
5994
 
5995
  #. Translators: Adds the error status and status text.
5996
+ #: languages/vue.php:605
5997
  msgid "Error: %1$s, %2$s"
5998
  msgstr ""
5999
 
6000
+ #: languages/vue.php:608
6001
  msgid "Error Activating Addon"
6002
  msgstr ""
6003
 
6004
+ #: languages/vue.php:611
6005
  #: lite/includes/admin/wp-site-health.php:375
6006
  #: lite/includes/admin/wp-site-health.php:401
6007
  #: lite/includes/admin/wp-site-health.php:428
6008
  msgid "View Addons"
6009
  msgstr ""
6010
 
6011
+ #: languages/vue.php:614
6012
  msgid "Dismiss"
6013
  msgstr ""
6014
 
6015
+ #: languages/vue.php:617
6016
  msgid "Redirecting"
6017
  msgstr ""
6018
 
6019
+ #: languages/vue.php:620
6020
  msgid "Please wait"
6021
  msgstr ""
6022
 
6023
+ #: languages/vue.php:623
6024
  msgid "activate"
6025
  msgstr ""
6026
 
6027
+ #: languages/vue.php:626
6028
  msgid "install"
6029
  msgstr ""
6030
 
6031
+ #: languages/vue.php:629
6032
  msgid "Visit addons page"
6033
  msgstr ""
6034
 
6035
+ #: languages/vue.php:632
6036
  msgid "Report Unavailable"
6037
  msgstr ""
6038
 
6039
  #. Translators: Install/Activate the addon.
6040
+ #: languages/vue.php:636
6041
  msgid "%s Addon"
6042
  msgstr ""
6043
 
6044
+ #: languages/vue.php:639
6045
  msgid "Go Back To Reports"
6046
  msgstr ""
6047
 
6048
+ #: languages/vue.php:642
6049
  msgid "Enable Enhanced eCommerce"
6050
  msgstr ""
6051
 
6052
  #. Translators: Placeholders are replaced with the current step number out of the total number of steps.
6053
+ #: languages/vue.php:646
6054
  msgid "Step %1$s of %2$s"
6055
  msgstr ""
6056
 
6057
+ #: languages/vue.php:649
6058
  msgid "Go back"
6059
  msgstr ""
6060
 
6061
+ #: languages/vue.php:652
6062
  msgid "Welcome to ExactMetrics!"
6063
  msgstr ""
6064
 
6065
+ #: languages/vue.php:655
6066
  msgid "Let's get you set up."
6067
  msgstr ""
6068
 
6069
+ #: languages/vue.php:658
6070
  msgid "Save and Continue"
6071
  msgstr ""
6072
 
6073
+ #: languages/vue.php:661
6074
  msgid "Which category best describes your website?"
6075
  msgstr ""
6076
 
6077
+ #: languages/vue.php:664
6078
  msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
6079
  msgstr ""
6080
 
6081
+ #: languages/vue.php:667
6082
  msgid "Business Website"
6083
  msgstr ""
6084
 
6085
  #. Translators: Make text bold.
6086
+ #: languages/vue.php:671
6087
  msgid "Publisher %1$s(Blog)%2$s"
6088
  msgstr ""
6089
 
6090
+ #: languages/vue.php:674
6091
  msgid "Ecommerce"
6092
  msgstr ""
6093
 
6094
+ #: languages/vue.php:677
6095
  msgid "Connect ExactMetrics to Your Website"
6096
  msgstr ""
6097
 
6098
+ #: languages/vue.php:680
6099
  msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
6100
  msgstr ""
6101
 
6102
+ #: languages/vue.php:685
6103
  msgid "Connect Google Analytics + WordPress"
6104
  msgstr ""
6105
 
6106
+ #: languages/vue.php:690
6107
  msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
6108
  msgstr ""
6109
 
6110
+ #: languages/vue.php:693
6111
  msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
6112
  msgstr ""
6113
 
6114
+ #: languages/vue.php:696
6115
  msgid "Manually enter your UA code"
6116
  msgstr ""
6117
 
6118
+ #: languages/vue.php:699
6119
  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."
6120
  msgstr ""
6121
 
6122
+ #: languages/vue.php:702
6123
  msgid "UA code can't be empty"
6124
  msgstr ""
6125
 
6126
+ #: languages/vue.php:705
6127
  msgid "Saving UA code..."
6128
  msgstr ""
6129
 
6130
+ #: languages/vue.php:708
6131
  msgid "ExactMetrics Recommends WPForms"
6132
  msgstr ""
6133
 
6134
+ #: languages/vue.php:711
6135
  msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
6136
  msgstr ""
6137
 
6138
+ #: languages/vue.php:714
6139
  msgid "Used on over 4,000,000 websites!"
6140
  msgstr ""
6141
 
6142
+ #: languages/vue.php:717
6143
  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!"
6144
  msgstr ""
6145
 
6146
+ #: languages/vue.php:720
6147
  msgid "Skip this Step"
6148
  msgstr ""
6149
 
6150
+ #: languages/vue.php:723
6151
  msgid "Continue & Install WPForms"
6152
  msgstr ""
6153
 
6154
+ #: languages/vue.php:726
6155
  msgid "Installing..."
6156
  msgstr ""
6157
 
6158
+ #: languages/vue.php:729
6159
  msgid "Recommended Settings"
6160
  msgstr ""
6161
 
6162
+ #: languages/vue.php:732
6163
  msgid "ExactMetrics recommends the following settings based on your configuration."
6164
  msgstr ""
6165
 
6166
+ #: languages/vue.php:735
6167
  msgid "Events Tracking"
6168
  msgstr ""
6169
 
6170
+ #: languages/vue.php:738
6171
  msgid "Must have for all click tracking on site."
6172
  msgstr ""
6173
 
6174
+ #: languages/vue.php:741
6175
  msgid "ExactMetrics uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don't have to write any code."
6176
  msgstr ""
6177
 
6178
+ #: languages/vue.php:744
6179
  msgid "Enhanced Link Attribution"
6180
  msgstr ""
6181
 
6182
+ #: languages/vue.php:747
6183
  msgid "Improves the accuracy of your In-Page Analytics."
6184
  msgstr ""
6185
 
6186
+ #: languages/vue.php:750
6187
  msgid "ExactMetrics will automatically help Google determine which links are unique and where they are on your site so that your In-Page Analytics reporting will be more accurate."
6188
  msgstr ""
6189
 
6190
+ #: languages/vue.php:753
6191
  msgid "Install Updates Automatically"
6192
  msgstr ""
6193
 
6194
+ #: languages/vue.php:756
6195
  msgid "Get the latest features, bug fixes, and security updates as they are released."
6196
  msgstr ""
6197
 
6198
+ #: languages/vue.php:759
6199
  msgid "To ensure you get the latest bug fixes and security updates and avoid needing to spend time logging into your WordPress site to update ExactMetrics, we offer the ability to automatically have ExactMetrics update itself."
6200
  msgstr ""
6201
 
6202
+ #: languages/vue.php:762
6203
  msgid "File Download Tracking"
6204
  msgstr ""
6205
 
6206
+ #: languages/vue.php:765
6207
  msgid "Helps you see file downloads data."
6208
  msgstr ""
6209
 
6210
+ #: languages/vue.php:768
6211
  msgid "ExactMetrics will automatically track downloads of common file types from links you have inserted onto your website. For example: want to know how many of your site's visitors have downloaded a PDF or other file you offer your visitors to download on your site? ExactMetrics makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
6212
  msgstr ""
6213
 
6214
  #. Translators: Example path (/go/).
6215
+ #: languages/vue.php:772
6216
  msgid "Path (example: %s)"
6217
  msgstr ""
6218
 
6219
+ #: languages/vue.php:775
6220
  msgid "Path has to start with a / and have no spaces"
6221
  msgstr ""
6222
 
6223
  #. Translators: Example label (aff).
6224
+ #: languages/vue.php:779
6225
  msgid "Label (example: %s)"
6226
  msgstr ""
6227
 
6228
+ #: languages/vue.php:782
6229
  msgid "Label can't contain any spaces"
6230
  msgstr ""
6231
 
6232
+ #: languages/vue.php:785
6233
  msgid "Helps you increase affiliate revenue."
6234
  msgstr ""
6235
 
6236
+ #: languages/vue.php:788
6237
  msgid "ExactMetrics will automatically help you track affiliate links that use internal looking urls like example.com/go/ or example.com/refer/. You can add custom affiliate patterns on our settings panel when you finish the onboarding wizard."
6238
  msgstr ""
6239
 
6240
+ #: languages/vue.php:791
6241
  msgid "Affiliate Link Tracking"
6242
  msgstr ""
6243
 
6244
+ #: languages/vue.php:794
6245
  msgid "Who Can See Reports"
6246
  msgstr ""
6247
 
6248
+ #: languages/vue.php:797
6249
  msgid "These user roles will be able to access ExactMetrics' reports in the WordPress admin area."
6250
  msgstr ""
6251
 
6252
+ #: languages/vue.php:800
6253
  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."
6254
  msgstr ""
6255
 
6256
+ #: languages/vue.php:803
6257
  msgid "Save and continue"
6258
  msgstr ""
6259
 
6260
+ #: languages/vue.php:806
6261
  msgid "Events Tracking is enabled the moment you set up ExactMetrics"
6262
  msgstr ""
6263
 
6264
+ #: languages/vue.php:809
6265
  msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
6266
  msgstr ""
6267
 
6268
+ #: languages/vue.php:812
6269
  msgid "+ Add Role"
6270
  msgstr ""
6271
 
6272
  #. Translators: Placeholders are used for making text bold and adding a link.
6273
+ #: languages/vue.php:816
6274
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6275
  msgstr ""
6276
 
6277
+ #: languages/vue.php:819
6278
  #: lite/includes/admin/reports/report-dimensions.php:22
6279
  msgid "Dimensions"
6280
  msgstr ""
6281
 
6282
+ #: languages/vue.php:822
6283
  msgid "Site Speed"
6284
  msgstr ""
6285
 
6286
+ #: languages/vue.php:827
6287
  msgid "License Key"
6288
  msgstr ""
6289
 
6290
  #. Translators: Add link to retrieve license key from account.
6291
+ #: languages/vue.php:831
6292
  msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6293
  msgstr ""
6294
 
6295
+ #: languages/vue.php:835
6296
  msgid "Google Authentication"
6297
  msgstr ""
6298
 
6299
+ #: languages/vue.php:838
6300
  msgid "Miscellaneous"
6301
  msgstr ""
6302
 
6303
+ #: languages/vue.php:841
6304
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6305
  msgstr ""
6306
 
6307
+ #: languages/vue.php:844
6308
  msgid "Hide Announcements"
6309
  msgstr ""
6310
 
6311
+ #: languages/vue.php:848
6312
  msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
6313
  msgstr ""
6314
 
6315
+ #. Translators: Adds link to upgrade.
6316
+ #: languages/vue.php:853
6317
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
6318
  msgstr ""
6319
 
6320
+ #: languages/vue.php:857
6321
  msgid "Receive 50% off automatically applied at the checkout!"
6322
  msgstr ""
6323
 
6324
+ #: languages/vue.php:861
6325
  msgid "See all features"
6326
  msgstr ""
6327
 
6328
+ #: languages/vue.php:865
6329
  msgid "Setup Wizard"
6330
  msgstr ""
6331
 
6332
+ #: languages/vue.php:869
6333
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6334
  msgstr ""
6335
 
6336
+ #: languages/vue.php:873
6337
  msgid "Relaunch Setup Wizard"
6338
  msgstr ""
6339
 
6340
+ #: languages/vue.php:876
6341
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6342
  msgstr ""
6343
 
6344
+ #: languages/vue.php:879
6345
  msgid "No addons found."
6346
  msgstr ""
6347
 
6348
+ #: languages/vue.php:882
6349
  msgid "Refresh Addons"
6350
  msgstr ""
6351
 
6352
  #. Translators: Adds a line break.
6353
+ #: languages/vue.php:889
6354
  msgid "Upgrade to Pro to unlock addons and other great features."
6355
  msgstr ""
6356
 
6357
+ #: languages/vue.php:892
6358
  msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
6359
  msgstr ""
6360
 
6361
+ #: languages/vue.php:895
6362
  msgid "Refreshing Addons"
6363
  msgstr ""
6364
 
6365
+ #: languages/vue.php:898
6366
  msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
6367
  msgstr ""
6368
 
6369
  #. Translators: Placeholders make the text green.
6370
+ #: languages/vue.php:902
6371
  msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6372
  msgstr ""
6373
 
6374
+ #: languages/vue.php:905
6375
  msgid "How to Connect to Google Analytics"
6376
  msgstr ""
6377
 
6378
+ #: languages/vue.php:908
6379
  msgid "After you install ExactMetrics, you’ll need to connect your WordPress site with your Google Analytics account. ExactMetrics makes the process easy, with no coding required."
6380
  msgstr ""
6381
 
6382
+ #: languages/vue.php:911
6383
  msgid "Guide and Checklist for Advanced Insights"
6384
  msgstr ""
6385
 
6386
+ #: languages/vue.php:914
6387
  msgid "Our goal is to make it as easy as possible for you to measure and track your stats so you can grow your business. This easy-to-follow guide and checklist will get you set up with ExactMetrics’ advanced tracking."
6388
  msgstr ""
6389
 
6390
+ #: languages/vue.php:917
6391
  msgid "GDPR Guide"
6392
  msgstr ""
6393
 
6394
+ #: languages/vue.php:920
6395
  msgid "Compliance with European data laws including GDPR can be confusing and time-consuming. In order to help ExactMetrics users comply with these laws, we’ve created an addon that automates a lot of the necessary configuration changes for you. "
6396
  msgstr ""
6397
 
6398
+ #: languages/vue.php:923
6399
  msgid "How to Install and Activate ExactMetrics Addons"
6400
  msgstr ""
6401
 
6402
+ #: languages/vue.php:926
6403
  msgid "The process for installing and activating addons is quick and easy after you install the ExactMetrics plugin. In this guide we’ll walk you through the process, step by step."
6404
  msgstr ""
6405
 
6406
+ #: languages/vue.php:929
6407
  msgid "Enabling eCommerce Tracking and Reports"
6408
  msgstr ""
6409
 
6410
+ #: languages/vue.php:932
6411
  msgid "Want to track your eCommerce sales data for your WooCommerce, MemberPress, or Easy Digital Downloads store with ExactMetrics? In this guide, we’ll show you how to enable eCommerce tracking in Google Analytics in just a few clicks."
6412
  msgstr ""
6413
 
6414
+ #: languages/vue.php:935
6415
  msgid "Read Documentation"
6416
  msgstr ""
6417
 
6418
  #. Translators: Makes the text bold.
6419
+ #: languages/vue.php:939
6420
  msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
6421
  msgstr ""
6422
 
6423
  #. Translators: Makes the text bold.
6424
+ #: languages/vue.php:943
6425
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
6426
  msgstr ""
6427
 
6428
+ #: languages/vue.php:952
6429
  msgid "One-click Complete eCommerce tracking"
6430
  msgstr ""
6431
 
6432
+ #: languages/vue.php:955
6433
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6434
  msgstr ""
6435
 
6436
+ #: languages/vue.php:958
6437
  msgid "Forms Tracking"
6438
  msgstr ""
6439
 
6440
+ #: languages/vue.php:961
6441
  msgid "One-click Form Events Tracking"
6442
  msgstr ""
6443
 
6444
+ #: languages/vue.php:964
6445
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6446
  msgstr ""
6447
 
6448
+ #: languages/vue.php:967
6449
  msgid "WordPress Admin Area Reports"
6450
  msgstr ""
6451
 
6452
+ #: languages/vue.php:970
6453
  msgid "Standard Reports"
6454
  msgstr ""
6455
 
6456
+ #: languages/vue.php:973
6457
  msgid "Overview Reports for the last 30 days."
6458
  msgstr ""
6459
 
6460
+ #: languages/vue.php:976
6461
  msgid "Advanced Reports"
6462
  msgstr ""
6463
 
6464
+ #: languages/vue.php:979
6465
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6466
  msgstr ""
6467
 
6468
+ #: languages/vue.php:982
6469
  msgid "Dashboard Widget"
6470
  msgstr ""
6471
 
6472
+ #: languages/vue.php:985
6473
  msgid "Basic Widget"
6474
  msgstr ""
6475
 
6476
+ #: languages/vue.php:988
6477
  msgid "Overview Report Synopsis"
6478
  msgstr ""
6479
 
6480
+ #: languages/vue.php:991
6481
  msgid "Advanced Dashboard Widget"
6482
  msgstr ""
6483
 
6484
+ #: languages/vue.php:994
6485
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6486
  msgstr ""
6487
 
6488
+ #: languages/vue.php:997
6489
  msgid "Publisher Reports"
6490
  msgstr ""
6491
 
6492
+ #: languages/vue.php:1000
6493
  msgid "Advanced Publisher Reports & Tracking"
6494
  msgstr ""
6495
 
6496
+ #: languages/vue.php:1003
6497
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6498
  msgstr ""
6499
 
6500
+ #: languages/vue.php:1009
6501
  msgid "Email Summaries"
6502
  msgstr ""
6503
 
6504
+ #: languages/vue.php:1012
6505
  msgid "Included"
6506
  msgstr ""
6507
 
6508
+ #: languages/vue.php:1015
6509
  msgid "Get weekly traffic reports directly in your inbox."
6510
  msgstr ""
6511
 
6512
+ #: languages/vue.php:1021
6513
  msgid "Basic Options"
6514
  msgstr ""
6515
 
6516
+ #: languages/vue.php:1024
6517
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6518
  msgstr ""
6519
 
6520
+ #: languages/vue.php:1027
6521
  msgid "Dynamic Popular Posts & Popular Products"
6522
  msgstr ""
6523
 
6524
+ #: languages/vue.php:1030
6525
  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."
6526
  msgstr ""
6527
 
6528
+ #: languages/vue.php:1033
6529
  msgid "Not Available"
6530
  msgstr ""
6531
 
6532
+ #: languages/vue.php:1036
6533
  msgid "Complete Custom Dimensions Tracking"
6534
  msgstr ""
6535
 
6536
+ #: languages/vue.php:1039
6537
  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"
6538
  msgstr ""
6539
 
6540
+ #: languages/vue.php:1045
6541
  msgid "Limited Support"
6542
  msgstr ""
6543
 
6544
+ #: languages/vue.php:1048
6545
  msgid "Priority Support"
6546
  msgstr ""
6547
 
6548
+ #: languages/vue.php:1051
6549
  msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
6550
  msgstr ""
6551
 
6552
+ #: languages/vue.php:1054
6553
  msgid "Feature"
6554
  msgstr ""
6555
 
6556
+ #: languages/vue.php:1057
6557
  msgid "Lite"
6558
  msgstr ""
6559
 
6560
+ #: languages/vue.php:1060
6561
  msgid "Pro"
6562
  msgstr ""
6563
 
6564
+ #: languages/vue.php:1063
6565
  msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
6566
  msgstr ""
6567
 
6568
+ #: languages/vue.php:1069
6569
  msgid "Universal Tracking"
6570
  msgstr ""
6571
 
6572
+ #: languages/vue.php:1072
6573
  msgid "Custom Google Analytics Link Tracking"
6574
  msgstr ""
6575
 
6576
+ #: languages/vue.php:1075
6577
  msgid "Standard Tracking"
6578
  msgstr ""
6579
 
6580
+ #: languages/vue.php:1078
6581
  msgid "Advanced Tracking"
6582
  msgstr ""
6583
 
6584
+ #: languages/vue.php:1081
6585
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6586
  msgstr ""
6587
 
6588
+ #: languages/vue.php:1084
6589
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6590
  msgstr ""
6591
 
6592
+ #: languages/vue.php:1087
6593
  msgid "No-Code-Needed Tracking Features"
6594
  msgstr ""
6595
 
6596
+ #: languages/vue.php:1090
6597
  msgid "Basic Tracking Options"
6598
  msgstr ""
6599
 
6600
+ #: languages/vue.php:1093
6601
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6602
  msgstr ""
6603
 
6604
+ #: languages/vue.php:1096
6605
  msgid "Advanced Tracking Options"
6606
  msgstr ""
6607
 
6608
+ #: languages/vue.php:1099
6609
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6610
  msgstr ""
6611
 
6612
+ #: languages/vue.php:1102
6613
  msgid "Inbox"
6614
  msgstr ""
6615
 
6616
+ #: languages/vue.php:1105
6617
  msgid "Back to Inbox"
6618
  msgstr ""
6619
 
6620
+ #: languages/vue.php:1108
6621
  msgid "View Dismissed"
6622
  msgstr ""
6623
 
6624
+ #: languages/vue.php:1111
6625
  msgid "Notifications"
6626
  msgstr ""
6627
 
6628
+ #: languages/vue.php:1114
6629
  msgid "Dismiss All"
6630
  msgstr ""
6631
 
6632
+ #: languages/vue.php:1117
6633
  msgid "Dismissed"
6634
  msgstr ""
6635
 
6636
+ #: languages/vue.php:1120
6637
  msgid "No Notifications"
6638
  msgstr ""
6639
 
6640
  #. Translators: Error status and error text.
6641
+ #: languages/vue.php:1124
6642
  msgid "Can't load settings. Error: %1$s, %2$s"
6643
  msgstr ""
6644
 
6645
+ #: languages/vue.php:1127
6646
  msgid "You appear to be offline."
6647
  msgstr ""
6648
 
6649
  #. Translators: Error status and error text.
6650
+ #: languages/vue.php:1131
6651
  msgid "Can't save settings. Error: %1$s, %2$s"
6652
  msgstr ""
6653
 
6654
+ #: languages/vue.php:1134
6655
  msgid "Network error encountered. Settings not saved."
6656
  msgstr ""
6657
 
6658
+ #: languages/vue.php:1137
6659
  msgid "Show in widget mode"
6660
  msgstr ""
6661
 
6662
+ #: languages/vue.php:1140
6663
  msgid "Show in full-width mode"
6664
  msgstr ""
6665
 
6666
+ #: languages/vue.php:1143
6667
  msgid "Show Overview Reports"
6668
  msgstr ""
6669
 
6670
+ #: languages/vue.php:1146
6671
  msgid "Show Publishers Reports"
6672
  msgstr ""
6673
 
6674
+ #: languages/vue.php:1149
6675
  msgid "Show eCommerce Reports"
6676
  msgstr ""
6677
 
6678
+ #: languages/vue.php:1152
6679
  msgid "Settings Menu"
6680
  msgstr ""
6681
 
6682
+ #: languages/vue.php:1155
6683
  msgid "Available in PRO version"
6684
  msgstr ""
6685
 
6686
+ #: languages/vue.php:1158
6687
  msgid "See All Reports"
6688
  msgstr ""
6689
 
6690
+ #: languages/vue.php:1161
6691
  msgid "Go to the Analytics Dashboard"
6692
  msgstr ""
6693
 
6694
+ #: languages/vue.php:1176
6695
  msgid "Cart Funnel"
6696
  msgstr ""
6697
 
6698
+ #: languages/vue.php:1179
6699
  msgid "Customer Insights"
6700
  msgstr ""
6701
 
6702
+ #: languages/vue.php:1182
6703
  msgid "Campaign Measurement"
6704
  msgstr ""
6705
 
6706
+ #: languages/vue.php:1185
6707
  msgid "Customer Profiles"
6708
  msgstr ""
6709
 
6710
+ #: languages/vue.php:1188
6711
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
6712
  msgstr ""
6713
 
6714
+ #: languages/vue.php:1191
6715
  msgid "Truly Understand Your%1$s Customers With %2$sExactMetrics%3$s"
6716
  msgstr ""
6717
 
6718
+ #: languages/vue.php:1194
6719
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from ExactMetrics!"
6720
  msgstr ""
6721
 
6722
+ #: languages/vue.php:1197
6723
  msgid "Track all-new metrics!"
6724
  msgstr ""
6725
 
6726
+ #: languages/vue.php:1200
6727
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
6728
  msgstr ""
6729
 
6730
+ #: languages/vue.php:1203
6731
  msgid "FEATURES"
6732
  msgstr ""
6733
 
6734
+ #: languages/vue.php:1206
6735
  msgid "Get The Unique Metrics Neccessary for Growth"
6736
  msgstr ""
6737
 
6738
+ #: languages/vue.php:1209
6739
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
6740
  msgstr ""
6741
 
6742
+ #: languages/vue.php:1212
6743
  msgid "Get Answers to the important questions %1$syou should know."
6744
  msgstr ""
6745
 
6746
+ #: languages/vue.php:1215
6747
  msgid "Did the login/registration step of the checkout put users off?"
6748
  msgstr ""
6749
 
6750
+ #: languages/vue.php:1218
6751
  msgid "Which ad campaign is driving the most revenue?"
6752
  msgstr ""
6753
 
6754
+ #: languages/vue.php:1221
6755
  msgid "Who is my typical customer?"
6756
  msgstr ""
6757
 
6758
+ #: languages/vue.php:1224
6759
  msgid "Level-up Your eCommerce store with %1$sExactMetrics + WooCommerce!%1$s"
6760
  msgstr ""
6761
 
6762
  #. Translators: Error status and error text.
6763
+ #: languages/vue.php:1228
6764
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
6765
  msgstr ""
6766
 
6767
  #. Translators: Error status and error text.
6768
+ #: languages/vue.php:1232
6769
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
6770
  msgstr ""
6771
 
6772
  #. Translators: Error status and error text.
6773
+ #: languages/vue.php:1236
6774
  msgid "Can't load license details. Error: %1$s, %2$s"
6775
  msgstr ""
6776
 
6777
+ #: languages/vue.php:1239
6778
  msgid "Error loading license details"
6779
  msgstr ""
6780
 
6781
  #. Translators: Error status and error text.
6782
+ #: languages/vue.php:1243
6783
  msgid "Can't verify the license. Error: %1$s, %2$s"
6784
  msgstr ""
6785
 
6786
  #. Translators: Error status and error text.
6787
+ #: languages/vue.php:1247
6788
  msgid "Can't validate the license. Error: %1$s, %2$s"
6789
  msgstr ""
6790
 
6791
+ #: languages/vue.php:1250
6792
  msgid "Reset to default"
6793
  msgstr ""
6794
 
6795
+ #: languages/vue.php:1253
6796
  msgid "The value entered does not match the required format"
6797
  msgstr ""
6798
 
6799
+ #: languages/vue.php:1256
6800
  msgid "Check out the newly added classic mode"
6801
  msgstr ""
6802
 
6803
  #. Translators: Placeholder adds a line break.
6804
+ #: languages/vue.php:1260
6805
  msgid "You can customize your %sdate range only in the PRO version."
6806
  msgstr ""
6807
 
6808
+ #: languages/vue.php:1263
6809
  msgid "Help Us Improve"
6810
  msgstr ""
6811
 
6812
+ #: languages/vue.php:1266
6813
  msgid "Help us better understand our users and their website needs."
6814
  msgstr ""
6815
 
6816
  #. Translators: Adds a link to the documentation.
6817
+ #: languages/vue.php:1270
6818
  msgid "If enabled ExactMetrics will send some information about your WordPress site like what plugins and themes you use and which ExactMetrics settings you use to us so that we can improve our product. For a complete list of what we send and what we use it for, %1$svisit our website.%2$s"
6819
  msgstr ""
6820
 
6821
  #. Translators: The name of the field that is throwing a validation error.
6822
+ #: languages/vue.php:1274
6823
  msgid "%s can't be empty."
6824
  msgstr ""
6825
 
6826
+ #: languages/vue.php:1277
6827
  msgid "Duplicate values are not allowed."
6828
  msgstr ""
6829
 
6830
+ #: languages/vue.php:1280
6831
  msgid "You can add maximum 5 items."
6832
  msgstr ""
6833
 
6834
+ #: languages/vue.php:1283
6835
  msgid "At least 0 item required."
6836
  msgstr ""
6837
 
6838
+ #: languages/vue.php:1286
6839
  msgid "Add Another Link Path"
6840
  msgstr ""
6841
 
6842
+ #: languages/vue.php:1289
6843
  msgid "Remove row"
6844
  msgstr ""
6845
 
6846
+ #: languages/vue.php:1292
6847
  msgid "Sessions"
6848
  msgstr ""
6849
 
6850
  #. Translators: Line break.
6851
+ #: languages/vue.php:1296
6852
  msgid "Unique %s Sessions"
6853
  msgstr ""
6854
 
6855
+ #: languages/vue.php:1299
6856
  msgid "Pageviews"
6857
  msgstr ""
6858
 
6859
  #. Translators: Line break.
6860
+ #: languages/vue.php:1303
6861
  msgid "Unique %s Pageviews"
6862
  msgstr ""
6863
 
6864
+ #: languages/vue.php:1306
6865
  msgid "A session is the browsing session of a single user to your site."
6866
  msgstr ""
6867
 
6868
+ #: languages/vue.php:1309
6869
  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."
6870
  msgstr ""
6871
 
6872
+ #: languages/vue.php:1312
6873
  msgid "Total duration of all sessions (in seconds) / number of sessions."
6874
  msgstr ""
6875
 
6876
+ #: languages/vue.php:1315
6877
  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."
6878
  msgstr ""
6879
 
6880
+ #: languages/vue.php:1318
6881
  msgid "The number of distinct tracked users"
6882
  msgstr ""
6883
 
6884
+ #: languages/vue.php:1321
6885
  msgid "Avg. Session Duration"
6886
  msgstr ""
6887
 
6888
+ #: languages/vue.php:1327
6889
  msgid "Total Users"
6890
  msgstr ""
6891
 
6892
+ #: languages/vue.php:1330
6893
  msgid "No options available"
6894
  msgstr ""
6895
 
6896
  #. Translators: Placeholders make the text highlighted.
6897
+ #: languages/vue.php:1334
6898
  msgid "%1$sNeed%2$s to Grow FASTER??"
6899
  msgstr ""
6900
 
6901
+ #: languages/vue.php:1337
6902
  msgid "Get additional, actionable insights by going Pro."
6903
  msgstr ""
6904
 
6905
+ #: languages/vue.php:1340
6906
  msgid "Skip"
6907
  msgstr ""
6908
 
6909
+ #: languages/vue.php:1343
6910
  msgid "See All Features"
6911
  msgstr ""
6912
 
6913
+ #: languages/vue.php:1346
6914
  msgid "Upgrade to Pro to get the complete ExactMetrics experience including 1 click tracking integrations for your favorite WordPress plugins and insightful reports backed by our legendary support team."
6915
  msgstr ""
6916
 
6917
+ #: languages/vue.php:1349
6918
  msgid "Our Pro plan includes:"
6919
  msgstr ""
6920
 
6921
  #. Translators: Error status and error text.
6922
+ #: languages/vue.php:1353
6923
  msgid "Can't load errors. Error: %1$s, %2$s"
6924
  msgstr ""
6925
 
6926
+ #: languages/vue.php:1356
6927
  msgid "Real-Time Report"
6928
  msgstr ""
6929
 
6930
+ #: languages/vue.php:1359
6931
  msgid "Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitor's activity when you need it."
6932
  msgstr ""
6933
 
6934
  #. Translators: add link to blog.
6935
+ #: languages/vue.php:1363
6936
  msgid "To comply with Google's API policies we've had to remove the real time report from the lite version. You can read about this decision and why it was made in %1$sthis blog post%2$s. To access the real time report in the WordPress backend, you will need to upgrade to Pro."
6937
  msgstr ""
6938
 
6939
+ #: languages/vue.php:1366
6940
  msgid "Here's what you get:"
6941
  msgstr ""
6942
 
6943
+ #: languages/vue.php:1369
6944
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
6945
  msgstr ""
6946
 
6947
+ #: languages/vue.php:1372
6948
  msgid "See Your Top Pages Immediately After Making Changes"
6949
  msgstr ""
6950
 
6951
+ #: languages/vue.php:1375
6952
  msgid "See Your Top Referral Sources and Adapt Faster"
6953
  msgstr ""
6954
 
6955
+ #: languages/vue.php:1378
6956
  msgid "See Your Traffic Demographics"
6957
  msgstr ""
6958
 
6959
+ #: languages/vue.php:1381
6960
  msgid "Get Fresh Report Data Every 60 Seconds"
6961
  msgstr ""
6962
 
6963
+ #: languages/vue.php:1384
6964
  msgid "See Where Your Visitors are Connecting From (country & city)"
6965
  msgstr ""
6966
 
6967
+ #: languages/vue.php:1387
6968
  msgid "Forms Report"
6969
  msgstr ""
6970
 
6971
+ #: languages/vue.php:1390
6972
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
6973
  msgstr ""
6974
 
6975
+ #: languages/vue.php:1393
6976
  msgid "See Your Top Converting Forms and Optimize"
6977
  msgstr ""
6978
 
6979
+ #: languages/vue.php:1396
6980
  msgid "See Your Forms Impressions Count to Find the Best Placement"
6981
  msgstr ""
6982
 
6983
+ #: languages/vue.php:1399
6984
  msgid "Awesome, You're All Set!"
6985
  msgstr ""
6986
 
6987
+ #: languages/vue.php:1402
6988
  msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
6989
  msgstr ""
6990
 
6991
  #. Translators: Make text bold.
6992
+ #: languages/vue.php:1406
6993
  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."
6994
  msgstr ""
6995
 
6996
  #. Translators: Add link to blog.
6997
  #. Translators: Link to our blog.
6998
+ #: languages/vue.php:1410
6999
+ #: languages/vue.php:3616
7000
  msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
7001
  msgstr ""
7002
 
7003
+ #: languages/vue.php:1413
7004
  msgid "Finish Setup & Exit Wizard"
7005
  msgstr ""
7006
 
7007
+ #: languages/vue.php:1416
7008
  msgid "Google Analytics"
7009
  msgstr ""
7010
 
7011
+ #: languages/vue.php:1419
7012
  msgid "Subscribe"
7013
  msgstr ""
7014
 
7015
+ #: languages/vue.php:1422
7016
  msgid "Checking your website..."
7017
  msgstr ""
7018
 
7019
+ #: languages/vue.php:1425
7020
  msgid "Recommended Addons"
7021
  msgstr ""
7022
 
7023
  #. Translators: Add a link to upgrade and make the text green.
7024
+ #: languages/vue.php:1429
7025
  msgid "To unlock more features consider %1$supgrading to PRO%2$s.%3$s As a valued ExactMetrics Lite user you %4$sreceive 50%% off%5$s, automatically applied at checkout!"
7026
  msgstr ""
7027
 
7028
+ #: languages/vue.php:1432
7029
  msgid "Upgrade to PRO Now"
7030
  msgstr ""
7031
 
7032
+ #: languages/vue.php:1435
7033
  msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
7034
  msgstr ""
7035
 
7036
+ #: languages/vue.php:1438
7037
  msgid "See All Your Important Store Metrics in One Place."
7038
  msgstr ""
7039
 
7040
+ #: languages/vue.php:1441
7041
  msgid "... and more:"
7042
  msgstr ""
7043
 
7044
+ #: languages/vue.php:1444
7045
  msgid "Dimensions- Track authors, categories, trags, searches, users and more."
7046
  msgstr ""
7047
 
7048
+ #: languages/vue.php:1447
7049
  msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
7050
  msgstr ""
7051
 
7052
+ #: languages/vue.php:1450
7053
  msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
7054
  msgstr ""
7055
 
7056
+ #: languages/vue.php:1453
7057
  msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
7058
  msgstr ""
7059
 
7060
+ #: languages/vue.php:1456
7061
  msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
7062
  msgstr ""
7063
 
7064
+ #: languages/vue.php:1459
7065
  msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
7066
  msgstr ""
7067
 
7068
+ #: languages/vue.php:1462
7069
  msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
7070
  msgstr ""
7071
 
7072
+ #: languages/vue.php:1465
7073
  msgid "Ads- See who’s clicking on your Google Adsense banner ads."
7074
  msgstr ""
7075
 
7076
+ #: languages/vue.php:1468
7077
  msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
7078
  msgstr ""
7079
 
7080
+ #: languages/vue.php:1471
7081
  msgid "Ready to take your website to the next level? ExactMetrics gives you the accurate insights you need to make data-driven decisions to grow your traffic and conversions faster than ever before. Now you can easily enable advanced tracking on your website without having to know any code."
7082
  msgstr ""
7083
 
7084
+ #: languages/vue.php:1474
7085
  msgid "The ExactMetrics Team"
7086
  msgstr ""
7087
 
7088
+ #: languages/vue.php:1477
7089
  msgid "Custom Dimensions Report"
7090
  msgstr ""
7091
 
7092
+ #: languages/vue.php:1480
7093
  msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
7094
  msgstr ""
7095
 
7096
+ #: languages/vue.php:1483
7097
  msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
7098
  msgstr ""
7099
 
7100
+ #: languages/vue.php:1486
7101
  msgid "Author tracking to see which author’s posts generate the most traffic"
7102
  msgstr ""
7103
 
7104
+ #: languages/vue.php:1489
7105
  msgid "Post Type tracking to see which WordPress post types perform better"
7106
  msgstr ""
7107
 
7108
+ #: languages/vue.php:1492
7109
  msgid "Category tracking to see which sections of your sites are the most popular"
7110
  msgstr ""
7111
 
7112
+ #: languages/vue.php:1495
7113
  msgid "SEO score tracking to see which blog SEO scores are the most popular"
7114
  msgstr ""
7115
 
7116
+ #: languages/vue.php:1498
7117
  msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
7118
  msgstr ""
7119
 
7120
+ #: languages/vue.php:1501
7121
  msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
7122
  msgstr ""
7123
 
7124
  #. Translators: add link to blog.
7125
+ #: languages/vue.php:1505
7126
  msgid "One of the factors that help deliver an outstanding user experience is having a website that loads quickly. With the Site Speed report you'll be able to check your site's performance directly from your ExactMetrics dashboard."
7127
  msgstr ""
7128
 
7129
+ #: languages/vue.php:1508
7130
  msgid "See Your Homepage's Overall Performance Score"
7131
  msgstr ""
7132
 
7133
+ #: languages/vue.php:1511
7134
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
7135
  msgstr ""
7136
 
7137
+ #: languages/vue.php:1514
7138
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
7139
  msgstr ""
7140
 
7141
+ #: languages/vue.php:1517
7142
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
7143
  msgstr ""
7144
 
7145
+ #: languages/vue.php:1520
7146
  msgid "Hide dashboard widget"
7147
  msgstr ""
7148
 
7149
+ #: languages/vue.php:1523
7150
  msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
7151
  msgstr ""
7152
 
7153
+ #: languages/vue.php:1526
7154
  msgid "Yes, hide it!"
7155
  msgstr ""
7156
 
7157
+ #: languages/vue.php:1529
7158
  msgid "No, cancel!"
7159
  msgstr ""
7160
 
7161
+ #: languages/vue.php:1532
7162
  msgid "ExactMetrics Widget Hidden"
7163
  msgstr ""
7164
 
7165
+ #: languages/vue.php:1535
7166
  msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
7167
  msgstr ""
7168
 
7169
  #. Translators: Error status and error text.
7170
+ #: languages/vue.php:1539
7171
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7172
  msgstr ""
7173
 
7174
  #. Translators: Error status and error text.
7175
+ #: languages/vue.php:1543
7176
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7177
  msgstr ""
7178
 
7179
+ #: languages/vue.php:1546
7180
  msgid "You appear to be offline. Settings not saved."
7181
  msgstr ""
7182
 
7183
  #. Translators: Error status and error text.
7184
+ #: languages/vue.php:1550
7185
  msgid "Can't authenticate. Error: %1$s, %2$s"
7186
  msgstr ""
7187
 
7188
  #. Translators: Error status and error text.
7189
+ #: languages/vue.php:1554
7190
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7191
  msgstr ""
7192
 
7193
  #. Translators: Error status and error text.
7194
+ #: languages/vue.php:1558
7195
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7196
  msgstr ""
7197
 
7198
+ #: languages/vue.php:1561
7199
  msgid "Still Calculating..."
7200
  msgstr ""
7201
 
7202
+ #: languages/vue.php:1564
7203
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7204
  msgstr ""
7205
 
7206
+ #: languages/vue.php:1567
7207
  msgid "Back to Overview Report"
7208
  msgstr ""
7209
 
7210
+ #: languages/vue.php:1570
7211
  msgid "Your 2020 Analytics Report"
7212
  msgstr ""
7213
 
7214
+ #: languages/vue.php:1573
7215
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7216
  msgstr ""
7217
 
7218
+ #: languages/vue.php:1576
7219
  msgid "Audience"
7220
  msgstr ""
7221
 
7222
+ #: languages/vue.php:1579
7223
  msgid "Congrats"
7224
  msgstr ""
7225
 
7226
+ #: languages/vue.php:1582
7227
  msgid "Your website was quite popular this year! "
7228
  msgstr ""
7229
 
7230
+ #: languages/vue.php:1585
7231
  msgid "You had "
7232
  msgstr ""
7233
 
7234
+ #: languages/vue.php:1588
7235
  msgid " visitors!"
7236
  msgstr ""
7237
 
7238
+ #: languages/vue.php:1591
7239
  msgid " visitors"
7240
  msgstr ""
7241
 
7242
+ #: languages/vue.php:1594
7243
  msgid "Total Visitors"
7244
  msgstr ""
7245
 
7246
+ #: languages/vue.php:1597
7247
  msgid "Total Sessions"
7248
  msgstr ""
7249
 
7250
+ #: languages/vue.php:1600
7251
  msgid "Visitors by Month"
7252
  msgstr ""
7253
 
7254
+ #: languages/vue.php:1603
7255
  msgid "January 1, 2020 - December 31, 2020"
7256
  msgstr ""
7257
 
7258
+ #: languages/vue.php:1606
7259
  msgid "A Tip for 2021"
7260
  msgstr ""
7261
 
7262
+ #: languages/vue.php:1609
7263
  msgid "Demographics"
7264
  msgstr ""
7265
 
7266
+ #: languages/vue.php:1612
7267
  msgid "#1"
7268
  msgstr ""
7269
 
7270
+ #: languages/vue.php:1615
7271
  msgid "You Top 5 Countries"
7272
  msgstr ""
7273
 
7274
+ #: languages/vue.php:1618
7275
  msgid "Let’s get to know your visitors a little better, shall we?"
7276
  msgstr ""
7277
 
7278
+ #: languages/vue.php:1621
7279
  msgid "Gender"
7280
  msgstr ""
7281
 
7282
+ #: languages/vue.php:1624
7283
  msgid "Female"
7284
  msgstr ""
7285
 
7286
+ #: languages/vue.php:1627
7287
  msgid "Women"
7288
  msgstr ""
7289
 
7290
+ #: languages/vue.php:1630
7291
  msgid "Male"
7292
  msgstr ""
7293
 
7294
+ #: languages/vue.php:1633
7295
  msgid "Average Age"
7296
  msgstr ""
7297
 
7298
+ #: languages/vue.php:1636
7299
  msgid "Behavior"
7300
  msgstr ""
7301
 
7302
+ #: languages/vue.php:1639
7303
  msgid "Your Top 5 Pages"
7304
  msgstr ""
7305
 
7306
+ #: languages/vue.php:1642
7307
  msgid "Time Spent on Site"
7308
  msgstr ""
7309
 
7310
+ #: languages/vue.php:1645
7311
  msgid "minutes"
7312
  msgstr ""
7313
 
7314
+ #: languages/vue.php:1648
7315
  msgid "Device Type"
7316
  msgstr ""
7317
 
7318
+ #: languages/vue.php:1651
7319
  msgid "A Tip For 2021"
7320
  msgstr ""
7321
 
7322
+ #: languages/vue.php:1654
7323
  msgid "Are you looking for a way to track your landing pages and see which one gets the most conversions on your website?"
7324
  msgstr ""
7325
 
7326
+ #: languages/vue.php:1657
7327
  msgid "Read - How to Track Google Analytics Landing Page Conversions"
7328
  msgstr ""
7329
 
7330
+ #: languages/vue.php:1660
7331
  msgid "So, where did all of these visitors come from?"
7332
  msgstr ""
7333
 
7334
+ #: languages/vue.php:1663
7335
  msgid "Clicks"
7336
  msgstr ""
7337
 
7338
+ #: languages/vue.php:1666
7339
  msgid "Your Top 5 Keywords"
7340
  msgstr ""
7341
 
7342
+ #: languages/vue.php:1669
7343
  msgid "What keywords visitors searched for to find your site"
7344
  msgstr ""
7345
 
7346
+ #: languages/vue.php:1672
7347
  msgid "Your Top 5 Referrals"
7348
  msgstr ""
7349
 
7350
+ #: languages/vue.php:1675
7351
  msgid "The websites that link back to your website"
7352
  msgstr ""
7353
 
7354
+ #: languages/vue.php:1678
7355
  msgid "Opportunity"
7356
  msgstr ""
7357
 
7358
+ #: languages/vue.php:1681
7359
  msgid "Learn how to boost your SEO rankings using ExactMetrics so more visitors reach your articles and increase engagement."
7360
  msgstr ""
7361
 
7362
+ #: languages/vue.php:1684
7363
  msgid "Read - 5 Ways to Skyrocket Your SEO Rankings with Google Analytics"
7364
  msgstr ""
7365
 
7366
+ #: languages/vue.php:1687
7367
  msgid "Thank you for using ExactMetrics!"
7368
  msgstr ""
7369
 
7370
+ #: languages/vue.php:1690
7371
  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."
7372
  msgstr ""
7373
 
7374
+ #: languages/vue.php:1693
7375
  msgid "Here's to an amazing 2021!"
7376
  msgstr ""
7377
 
7378
+ #: languages/vue.php:1696
7379
  msgid "Enjoying ExactMetrics"
7380
  msgstr ""
7381
 
7382
+ #: languages/vue.php:1699
7383
  msgid "Leave a five star review!"
7384
  msgstr ""
7385
 
7386
+ #: languages/vue.php:1702
7387
  msgid "Syed Balkhi"
7388
  msgstr ""
7389
 
7390
+ #: languages/vue.php:1705
7391
  msgid "Chris Christoff"
7392
  msgstr ""
7393
 
7394
+ #: languages/vue.php:1708
7395
  msgid "Write Review"
7396
  msgstr ""
7397
 
7398
+ #: languages/vue.php:1711
7399
  msgid "Did you know over 10 million websites use our plugins?"
7400
  msgstr ""
7401
 
7402
+ #: languages/vue.php:1714
7403
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7404
  msgstr ""
7405
 
7406
+ #: languages/vue.php:1717
7407
  msgid "Join our Communities!"
7408
  msgstr ""
7409
 
7410
+ #: languages/vue.php:1720
7411
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7412
  msgstr ""
7413
 
7414
+ #: languages/vue.php:1723
7415
  msgid "Facebook Group"
7416
  msgstr ""
7417
 
7418
+ #: languages/vue.php:1726
7419
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7420
  msgstr ""
7421
 
7422
+ #: languages/vue.php:1729
7423
  msgid "Join Now...It’s Free!"
7424
  msgstr ""
7425
 
7426
+ #: languages/vue.php:1732
7427
  msgid "WordPress Tutorials by WPBeginner"
7428
  msgstr ""
7429
 
7430
+ #: languages/vue.php:1735
7431
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7432
  msgstr ""
7433
 
7434
+ #: languages/vue.php:1738
7435
  msgid "Visit WPBeginner"
7436
  msgstr ""
7437
 
7438
+ #: languages/vue.php:1741
7439
  msgid "Follow Us!"
7440
  msgstr ""
7441
 
7442
+ #: languages/vue.php:1744
7443
  msgid "Follow ExactMetrics on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
7444
  msgstr ""
7445
 
7446
+ #: languages/vue.php:1747
7447
  msgid "Copyright ExactMetrics, 2021"
7448
  msgstr ""
7449
 
7450
+ #: languages/vue.php:1750
7451
  msgid "Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights"
7452
  msgstr ""
7453
 
7454
+ #: languages/vue.php:1756
7455
  msgid "January"
7456
  msgstr ""
7457
 
7458
+ #: languages/vue.php:1759
7459
  msgid "February"
7460
  msgstr ""
7461
 
7462
+ #: languages/vue.php:1762
7463
  msgid "March"
7464
  msgstr ""
7465
 
7466
+ #: languages/vue.php:1765
7467
  msgid "April"
7468
  msgstr ""
7469
 
7470
+ #: languages/vue.php:1768
7471
  msgid "May"
7472
  msgstr ""
7473
 
7474
+ #: languages/vue.php:1771
7475
  msgid "June"
7476
  msgstr ""
7477
 
7478
+ #: languages/vue.php:1774
7479
  msgid "July"
7480
  msgstr ""
7481
 
7482
+ #: languages/vue.php:1777
7483
  msgid "August"
7484
  msgstr ""
7485
 
7486
+ #: languages/vue.php:1780
7487
  msgid "September"
7488
  msgstr ""
7489
 
7490
+ #: languages/vue.php:1783
7491
  msgid "October"
7492
  msgstr ""
7493
 
7494
+ #: languages/vue.php:1786
7495
  msgid "November"
7496
  msgstr ""
7497
 
7498
+ #: languages/vue.php:1789
7499
  msgid "December"
7500
  msgstr ""
7501
 
7502
  #. Translators: Number of visitors.
7503
+ #: languages/vue.php:1793
7504
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7505
  msgstr ""
7506
 
7507
+ #: languages/vue.php:1796
7508
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7509
  msgstr ""
7510
 
7511
  #. Translators: Number of visitors.
7512
+ #: languages/vue.php:1800
7513
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7514
  msgstr ""
7515
 
7516
  #. Translators: Number of visitors.
7517
+ #: languages/vue.php:1804
7518
  msgid "%s Visitors"
7519
  msgstr ""
7520
 
7521
  #. Translators: Percent and Number of visitors.
7522
+ #: languages/vue.php:1808
7523
  msgid "%1$s&#37 of your visitors were %2$s"
7524
  msgstr ""
7525
 
7526
  #. Translators: Number of visitors and their age.
7527
+ #: languages/vue.php:1812
7528
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7529
  msgstr ""
7530
 
7531
+ #: languages/vue.php:1815
7532
  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>"
7533
  msgstr ""
7534
 
7535
  #. Translators: Number of minutes spent on site.
7536
+ #: languages/vue.php:1819
7537
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7538
  msgstr ""
7539
 
7540
  #. Translators: Name of device type.
7541
+ #: languages/vue.php:1823
7542
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7543
  msgstr ""
7544
 
7545
  #. Translators: Number of visitors and device percentage.
7546
+ #: languages/vue.php:1827
7547
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7548
  msgstr ""
7549
 
7550
+ #: languages/vue.php:1831
7551
  msgid "Desktop"
7552
  msgstr ""
7553
 
7554
+ #: languages/vue.php:1835
7555
  msgid "Tablet"
7556
  msgstr ""
7557
 
7558
+ #: languages/vue.php:1839
7559
  msgid "Mobile"
7560
  msgstr ""
7561
 
7562
+ #: languages/vue.php:1842
7563
  msgid "Force Deauthenticate"
7564
  msgstr ""
7565
 
7566
+ #: languages/vue.php:1845
7567
  msgid "Disconnect ExactMetrics"
7568
  msgstr ""
7569
 
7570
+ #: languages/vue.php:1849
7571
  msgid "Authenticating"
7572
  msgstr ""
7573
 
7574
+ #: languages/vue.php:1852
7575
  msgid "Verifying Credentials"
7576
  msgstr ""
7577
 
7578
+ #: languages/vue.php:1855
7579
  msgid "Your site is connected to ExactMetrics!"
7580
  msgstr ""
7581
 
7582
+ #: languages/vue.php:1858
7583
  msgid "Deauthenticating"
7584
  msgstr ""
7585
 
7586
+ #: languages/vue.php:1861
7587
  msgid "You've disconnected your site from ExactMetrics. Your site is no longer being tracked by Google Analytics and you won't see reports anymore."
7588
  msgstr ""
7589
 
7590
+ #: languages/vue.php:1864
7591
+ #: languages/vue.php:1944
7592
  msgid "Connect ExactMetrics"
7593
  msgstr ""
7594
 
7595
+ #: languages/vue.php:1867
7596
  msgid "Verify Credentials"
7597
  msgstr ""
7598
 
7599
+ #: languages/vue.php:1873
7600
  msgid "Website Profile"
7601
  msgstr ""
7602
 
7603
+ #: languages/vue.php:1876
7604
  msgid "Active Profile"
7605
  msgstr ""
7606
 
7607
+ #: languages/vue.php:1880
7608
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
7609
  msgstr ""
7610
 
7611
+ #: languages/vue.php:1884
7612
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
7613
  msgstr ""
7614
 
7615
+ #: languages/vue.php:1888
7616
  msgid "Dual Tracking Profile"
7617
  msgstr ""
7618
 
7619
+ #: languages/vue.php:1892
7620
  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."
7621
  msgstr ""
7622
 
7623
+ #: languages/vue.php:1896
7624
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
7625
  msgstr ""
7626
 
7627
+ #: languages/vue.php:1900
7628
  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."
7629
  msgstr ""
7630
 
7631
+ #: languages/vue.php:1903
7632
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
7633
  msgstr ""
7634
 
7635
+ #: languages/vue.php:1907
7636
  msgid "Measurement Protocol API Secret"
7637
  msgstr ""
7638
 
7639
+ #: languages/vue.php:1911
7640
  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."
7641
  msgstr ""
7642
 
7643
+ #: languages/vue.php:1914
7644
  msgid "Classic mode"
7645
  msgstr ""
7646
 
7647
+ #: languages/vue.php:1917
7648
  msgid "Proceed"
7649
  msgstr ""
7650
 
7651
+ #: languages/vue.php:1920
7652
  msgid "Connection Information"
7653
  msgstr ""
7654
 
7655
+ #: languages/vue.php:1923
7656
  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."
7657
  msgstr ""
7658
 
7659
+ #: languages/vue.php:1926
7660
  msgid "Hostname"
7661
  msgstr ""
7662
 
7663
+ #: languages/vue.php:1929
7664
  msgid "FTP Username"
7665
  msgstr ""
7666
 
7667
+ #: languages/vue.php:1932
7668
  msgid "FTP Password"
7669
  msgstr ""
7670
 
7671
+ #: languages/vue.php:1935
7672
  msgid "This password will not be stored on the server."
7673
  msgstr ""
7674
 
7675
+ #: languages/vue.php:1938
7676
  msgid "Connection Type"
7677
  msgstr ""
7678
 
7679
+ #: languages/vue.php:1941
7680
  msgid "Cancel"
7681
  msgstr ""
7682
 
7683
+ #: languages/vue.php:1947
7684
  msgid "Website profile"
7685
  msgstr ""
7686
 
7687
+ #: languages/vue.php:1950
7688
  msgid "Active profile"
7689
  msgstr ""
7690
 
7691
+ #: languages/vue.php:1953
7692
  msgid "Skip and Keep Connection"
7693
  msgstr ""
7694
 
7695
+ #. Translators: Number of days.
7696
+ #: languages/vue.php:1957
7697
  msgid "vs. Previous Day"
7698
  msgstr ""
7699
 
7700
+ #: languages/vue.php:1960
7701
  msgid "No change"
7702
  msgstr ""
7703
 
7704
+ #: languages/vue.php:1963
7705
  msgid "Choose Theme"
7706
  msgstr ""
7707
 
7708
+ #: languages/vue.php:1966
7709
  msgid "Widget Styling"
7710
  msgstr ""
7711
 
7712
+ #: languages/vue.php:1969
7713
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
7714
  msgstr ""
7715
 
7716
+ #: languages/vue.php:1972
7717
  msgid "Sort By"
7718
  msgstr ""
7719
 
7720
+ #: languages/vue.php:1975
7721
  msgid "Choose how you'd like the widget to determine your popular posts."
7722
  msgstr ""
7723
 
7724
+ #: languages/vue.php:1978
7725
  msgid "Display Title"
7726
  msgstr ""
7727
 
7728
+ #: languages/vue.php:1984
7729
  msgid "Title your widget and set its display preferences."
7730
  msgstr ""
7731
 
7732
+ #: languages/vue.php:1987
7733
  msgid "Include in Post Types"
7734
  msgstr ""
7735
 
7736
+ #: languages/vue.php:1990
7737
  msgid "Exclude from specific posts"
7738
  msgstr ""
7739
 
7740
  #. Translators: Placeholders make the text bold.
7741
+ #: languages/vue.php:1994
7742
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
7743
  msgstr ""
7744
 
7745
  #. Translators: Placeholders make the text bold.
7746
+ #: languages/vue.php:1998
7747
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
7748
  msgstr ""
7749
 
7750
+ #: languages/vue.php:2001
7751
  msgid "Loading Themes"
7752
  msgstr ""
7753
 
7754
  #. Translators: placeholders make text small.
7755
+ #: languages/vue.php:2005
7756
  msgid "Default Styles %1$s- As seen above.%2$s"
7757
  msgstr ""
7758
 
7759
  #. Translators: placeholders make text small.
7760
+ #: languages/vue.php:2009
7761
  msgid "No Styles %1$s- Use your own CSS.%2$s"
7762
  msgstr ""
7763
 
7764
  #. Translators: placeholders make text small.
7765
+ #: languages/vue.php:2013
7766
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
7767
  msgstr ""
7768
 
7769
  #. Translators: placeholders make text small.
7770
+ #: languages/vue.php:2017
7771
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
7772
  msgstr ""
7773
 
7774
  #. Translators: placeholders make text small.
7775
+ #: languages/vue.php:2021
7776
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
7777
  msgstr ""
7778
 
7779
+ #: languages/vue.php:2024
7780
  msgid "Placement"
7781
  msgstr ""
7782
 
7783
+ #: languages/vue.php:2027
7784
  msgid "Choose how you'd like to place the widget."
7785
  msgstr ""
7786
 
7787
+ #: languages/vue.php:2030
7788
  msgid "Insert After"
7789
  msgstr ""
7790
 
7791
+ #: languages/vue.php:2033
7792
  msgid "Choose where in the post body the widget will be placed."
7793
  msgstr ""
7794
 
7795
+ #: languages/vue.php:2036
7796
  msgid "Customize Design"
7797
  msgstr ""
7798
 
7799
+ #: languages/vue.php:2039
7800
  msgid "words"
7801
  msgstr ""
7802
 
7803
+ #: languages/vue.php:2042
7804
  msgid "Please select at least one post to display."
7805
  msgstr ""
7806
 
7807
  #. Translators: placeholders make text small.
7808
+ #: languages/vue.php:2046
7809
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
7810
  msgstr ""
7811
 
7812
  #. Translators: placeholders make text small.
7813
+ #: languages/vue.php:2050
7814
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
7815
  msgstr ""
7816
 
7817
+ #: languages/vue.php:2053
7818
  msgid "Caching"
7819
  msgstr ""
7820
 
7821
+ #: languages/vue.php:2056
7822
  msgid "Enable Data Caching"
7823
  msgstr ""
7824
 
7825
+ #: languages/vue.php:2059
7826
  msgid "Refresh Cache Every"
7827
  msgstr ""
7828
 
7829
+ #: languages/vue.php:2062
7830
  msgid "Choose how often to refresh the cache."
7831
  msgstr ""
7832
 
7833
+ #: languages/vue.php:2065
7834
  msgid "Enable Ajaxify"
7835
  msgstr ""
7836
 
7837
+ #: languages/vue.php:2068
7838
  msgid "Ajaxify Widget"
7839
  msgstr ""
7840
 
7841
+ #: languages/vue.php:2071
7842
  msgid "Use to bypass page caching."
7843
  msgstr ""
7844
 
7845
+ #: languages/vue.php:2074
7846
  msgid "Empty Cache"
7847
  msgstr ""
7848
 
7849
+ #: languages/vue.php:2077
7850
  msgid "Click to manually wipe the cache right now."
7851
  msgstr ""
7852
 
7853
+ #: languages/vue.php:2080
7854
  msgid "Popular posts cache emptied"
7855
  msgstr ""
7856
 
7857
+ #: languages/vue.php:2083
7858
  msgid "Error emptying the popular posts cache. Please try again."
7859
  msgstr ""
7860
 
7861
+ #: languages/vue.php:2086
7862
  msgid "Last 30 Days Analytics for "
7863
  msgstr ""
7864
 
7865
+ #: languages/vue.php:2089
7866
  msgid "Your Website"
7867
  msgstr ""
7868
 
7869
+ #: languages/vue.php:2092
7870
  msgid "Avg. Duration"
7871
  msgstr ""
7872
 
7873
+ #: languages/vue.php:2095
7874
  msgid "More data is available"
7875
  msgstr ""
7876
 
7877
+ #: languages/vue.php:2098
7878
  msgid "Want to see page-specific stats?"
7879
  msgstr ""
7880
 
7881
+ #: languages/vue.php:2101
7882
  msgid "You appear to be offline. WPForms not installed."
7883
  msgstr ""
7884
 
7885
  #. Translators: Error status and error text.
7886
+ #: languages/vue.php:2105
7887
  msgid "Can't activate addon. Error: %1$s, %2$s"
7888
  msgstr ""
7889
 
7890
+ #: languages/vue.php:2108
7891
  msgid "You appear to be offline. Addon not activated."
7892
  msgstr ""
7893
 
7894
  #. Translators: Error status and error text.
7895
+ #: languages/vue.php:2112
7896
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
7897
  msgstr ""
7898
 
7899
+ #: languages/vue.php:2115
7900
  msgid "You appear to be offline. Addon not deactivated."
7901
  msgstr ""
7902
 
7903
  #. Translators: Error status and error text.
7904
+ #: languages/vue.php:2119
7905
  msgid "Can't install plugin. Error: %1$s, %2$s"
7906
  msgstr ""
7907
 
7908
+ #: languages/vue.php:2122
7909
  msgid "You appear to be offline. Plugin not installed."
7910
  msgstr ""
7911
 
7912
  #. Translators: Error status and error text.
7913
+ #: languages/vue.php:2126
7914
  msgid "Can't install addon. Error: %1$s, %2$s"
7915
  msgstr ""
7916
 
7917
+ #: languages/vue.php:2129
7918
  msgid "You appear to be offline. Addon not installed."
7919
  msgstr ""
7920
 
7921
  #. Translators: Error status and error text.
7922
+ #: languages/vue.php:2133
7923
  msgid "Can't install WPForms. Error: %1$s, %2$s"
7924
  msgstr ""
7925
 
7926
+ #: languages/vue.php:2136
7927
  msgid "Network Active"
7928
  msgstr ""
7929
 
7930
+ #: languages/vue.php:2139
7931
  msgid "Active"
7932
  msgstr ""
7933
 
7934
+ #: languages/vue.php:2142
7935
  msgid "Inactive"
7936
  msgstr ""
7937
 
7938
  #. Translators: Placeholder for the addon status (installed, active, etc).
7939
+ #: languages/vue.php:2146
7940
  msgid "Status: %s"
7941
  msgstr ""
7942
 
7943
+ #: languages/vue.php:2149
7944
  msgid "Not Installed"
7945
  msgstr ""
7946
 
7947
  #. Translators: Makes text bold and adds smiley.
7948
+ #: languages/vue.php:2153
7949
  msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
7950
  msgstr ""
7951
 
7952
  #. Translators: Makes text green.
7953
+ #: languages/vue.php:2157
7954
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
7955
  msgstr ""
7956
 
7957
+ #: languages/vue.php:2160
7958
  msgid "Unlock All Features and Upgrade to Pro"
7959
  msgstr ""
7960
 
7961
  #. Translators: Make text green and add smiley face.
7962
+ #: languages/vue.php:2164
7963
  msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
7964
  msgstr ""
7965
 
7966
  #. Translators: Make text green.
7967
+ #: languages/vue.php:2168
7968
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
7969
  msgstr ""
7970
 
7971
+ #: languages/vue.php:2171
7972
  msgid "Unlock PRO Features Now"
7973
  msgstr ""
7974
 
7975
+ #: languages/vue.php:2174
7976
  msgid "Paste your license key here"
7977
  msgstr ""
7978
 
7979
+ #: languages/vue.php:2177
7980
  msgid "Verify"
7981
  msgstr ""
7982
 
7983
  #. Translators: Add link to retrieve license from account area.
7984
+ #: languages/vue.php:2181
7985
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
7986
  msgstr ""
7987
 
7988
+ #: languages/vue.php:2184
7989
+ #: languages/vue.php:3653
7990
  msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
7991
  msgstr ""
7992
 
7993
+ #: languages/vue.php:2187
7994
  msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
7995
  msgstr ""
7996
 
7997
+ #: languages/vue.php:2190
7998
  msgid "Automatically migrate all of your SEO settings with just 1 click!"
7999
  msgstr ""
8000
 
8001
+ #: languages/vue.php:2193
8002
  msgid "1,938"
8003
  msgstr ""
8004
 
8005
+ #: languages/vue.php:2196
8006
  msgid "2+ Million Active Installs"
8007
  msgstr ""
8008
 
8009
+ #: languages/vue.php:2199
8010
  msgid "AIOSEO is the DIY Solution for Managing your SEO"
8011
  msgstr ""
8012
 
8013
+ #: languages/vue.php:2202
8014
  msgid "Set up the proper SEO foundations in less than 10 minutes."
8015
  msgstr ""
8016
 
8017
+ #: languages/vue.php:2205
8018
  msgid "SEO Audit Checklist"
8019
  msgstr ""
8020
 
8021
+ #: languages/vue.php:2208
8022
  msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
8023
  msgstr ""
8024
 
8025
+ #: languages/vue.php:2211
8026
  msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
8027
  msgstr ""
8028
 
8029
+ #: languages/vue.php:2214
8030
  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."
8031
  msgstr ""
8032
 
8033
+ #: languages/vue.php:2217
8034
  msgid "Get AIOSEO for WordPress"
8035
  msgstr ""
8036
 
8037
+ #: languages/vue.php:2220
8038
  msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
8039
  msgstr ""
8040
 
8041
+ #: languages/vue.php:2223
8042
  msgid "Try it out today, for free."
8043
  msgstr ""
8044
 
8045
+ #: languages/vue.php:2226
8046
  msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
8047
  msgstr ""
8048
 
8049
+ #: languages/vue.php:2229
8050
  msgid "Activate and Install the Plugin with just one click!"
8051
  msgstr ""
8052
 
8053
+ #: languages/vue.php:2232
8054
  msgid "Installing AIOSEO..."
8055
  msgstr ""
8056
 
8057
+ #: languages/vue.php:2235
8058
  msgid "Congrats! All-in-One SEO Installed."
8059
  msgstr ""
8060
 
8061
+ #: languages/vue.php:2238
8062
  msgid "Switch to AIOSEO"
8063
  msgstr ""
8064
 
8065
+ #: languages/vue.php:2241
8066
  msgid "Installation Failed. Please refresh and try again."
8067
  msgstr ""
8068
 
8069
+ #: languages/vue.php:2244
8070
  msgid "Activating AIOSEO..."
8071
  msgstr ""
8072
 
8073
+ #: languages/vue.php:2247
8074
  msgid "Activate AIOSEO"
8075
  msgstr ""
8076
 
8077
+ #: languages/vue.php:2250
8078
  msgid "Activation Failed. Please refresh and try again."
8079
  msgstr ""
8080
 
8081
+ #: languages/vue.php:2253
8082
  msgid "Unlock Form Tracking"
8083
  msgstr ""
8084
 
8085
+ #: languages/vue.php:2256
8086
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
8087
  msgstr ""
8088
 
8089
+ #: languages/vue.php:2259
8090
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
8091
  msgstr ""
8092
 
8093
+ #: languages/vue.php:2262
8094
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
8095
  msgstr ""
8096
 
8097
+ #: languages/vue.php:2265
8098
  msgid "Show"
8099
  msgstr ""
8100
 
8101
+ #: languages/vue.php:2268
8102
  msgid "File imported"
8103
  msgstr ""
8104
 
8105
+ #: languages/vue.php:2271
8106
  msgid "Settings successfully updated!"
8107
  msgstr ""
8108
 
8109
+ #: languages/vue.php:2274
8110
  msgid "Error importing settings"
8111
  msgstr ""
8112
 
8113
+ #: languages/vue.php:2277
8114
  msgid "Please choose a .json file generated by a ExactMetrics settings export."
8115
  msgstr ""
8116
 
8117
+ #: languages/vue.php:2280
8118
  msgid "Import/Export"
8119
  msgstr ""
8120
 
8121
+ #: languages/vue.php:2283
8122
  msgid "Import"
8123
  msgstr ""
8124
 
8125
+ #: languages/vue.php:2286
8126
  msgid "Import settings from another ExactMetrics website."
8127
  msgstr ""
8128
 
8129
+ #: languages/vue.php:2289
8130
  msgid "Export"
8131
  msgstr ""
8132
 
8133
+ #: languages/vue.php:2292
8134
  msgid "Export settings to import into another ExactMetrics install."
8135
  msgstr ""
8136
 
8137
+ #: languages/vue.php:2295
8138
  msgid "Import Settings"
8139
  msgstr ""
8140
 
8141
+ #: languages/vue.php:2298
8142
  msgid "Export Settings"
8143
  msgstr ""
8144
 
8145
+ #: languages/vue.php:2301
8146
  msgid "Please choose a file to import"
8147
  msgstr ""
8148
 
8149
+ #: languages/vue.php:2304
8150
  msgid "Click Choose file below to select the settings export file from another site."
8151
  msgstr ""
8152
 
8153
+ #: languages/vue.php:2307
8154
  msgid "Use the button below to export a file with your ExactMetrics settings."
8155
  msgstr ""
8156
 
8157
+ #: languages/vue.php:2310
8158
  msgid "Choose file"
8159
  msgstr ""
8160
 
8161
+ #: languages/vue.php:2313
8162
  msgid "No file chosen"
8163
  msgstr ""
8164
 
8165
+ #: languages/vue.php:2316
8166
  msgid "Uploading file..."
8167
  msgstr ""
8168
 
8169
+ #: languages/vue.php:2319
8170
  msgid "Custom code"
8171
  msgstr ""
8172
 
8173
  #. Translators: Adds a link to the Google reference.
8174
+ #: languages/vue.php:2323
8175
  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."
8176
  msgstr ""
8177
 
8178
+ #: languages/vue.php:2330
8179
  msgid "Automatic Updates"
8180
  msgstr ""
8181
 
8182
+ #: languages/vue.php:2333
8183
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
8184
  msgstr ""
8185
 
8186
+ #: languages/vue.php:2336
8187
  msgid "Hide Admin Bar Reports"
8188
  msgstr ""
8189
 
8190
  #. Translators: placeholders make text small.
8191
+ #: languages/vue.php:2340
8192
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
8193
  msgstr ""
8194
 
8195
  #. Translators: placeholders make text small.
8196
+ #: languages/vue.php:2344
8197
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
8198
  msgstr ""
8199
 
8200
  #. Translators: placeholders make text small.
8201
+ #: languages/vue.php:2348
8202
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
8203
  msgstr ""
8204
 
8205
  #. Translators: placeholders make text small.
8206
+ #: languages/vue.php:2352
8207
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
8208
  msgstr ""
8209
 
8210
  #. Translators: placeholders make text small.
8211
+ #: languages/vue.php:2356
8212
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
8213
  msgstr ""
8214
 
8215
  #. Translators: placeholders make text small.
8216
+ #: languages/vue.php:2360
8217
  msgid "None %1$s- Manually update everything.%2$s"
8218
  msgstr ""
8219
 
8220
  #. Translators: Adds a link to the general settings tab.
8221
+ #: languages/vue.php:2364
8222
  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."
8223
  msgstr ""
8224
 
8225
+ #: languages/vue.php:2367
8226
  msgid "Permissions"
8227
  msgstr ""
8228
 
8229
+ #: languages/vue.php:2370
8230
  msgid "Export PDF Reports"
8231
  msgstr ""
8232
 
8233
+ #: languages/vue.php:2373
8234
  msgid "Allow These User Roles to See Reports"
8235
  msgstr ""
8236
 
8237
+ #: languages/vue.php:2376
8238
  msgid "Users that have at least one of these roles will be able to view the reports."
8239
  msgstr ""
8240
 
8241
+ #: languages/vue.php:2379
8242
  msgid "Allow These User Roles to Save Settings"
8243
  msgstr ""
8244
 
8245
+ #: languages/vue.php:2382
8246
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
8247
  msgstr ""
8248
 
8249
+ #: languages/vue.php:2385
8250
  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."
8251
  msgstr ""
8252
 
8253
+ #: languages/vue.php:2388
8254
  msgid "Exclude These User Roles From Tracking"
8255
  msgstr ""
8256
 
8257
+ #: languages/vue.php:2391
8258
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
8259
  msgstr ""
8260
 
8261
+ #: languages/vue.php:2394
8262
  msgid "Make your ExactMetrics campaign links prettier with Pretty Links!"
8263
  msgstr ""
8264
 
8265
+ #: languages/vue.php:2397
8266
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
8267
  msgstr ""
8268
 
8269
+ #: languages/vue.php:2400
8270
  msgid "Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!"
8271
  msgstr ""
8272
 
8273
+ #: languages/vue.php:2403
8274
  msgid "Over 200,000 websites use Pretty Links!"
8275
  msgstr ""
8276
 
8277
+ #: languages/vue.php:2406
8278
  msgid "Install Pretty Links"
8279
  msgstr ""
8280
 
8281
+ #: languages/vue.php:2409
8282
  msgid "Pretty Links Installed & Activated"
8283
  msgstr ""
8284
 
8285
+ #: languages/vue.php:2412
8286
  msgid "Download Pretty Links"
8287
  msgstr ""
8288
 
8289
+ #: languages/vue.php:2415
8290
  msgid "Install Pretty Links from the WordPress.org plugin repository."
8291
  msgstr ""
8292
 
8293
+ #: languages/vue.php:2418
8294
  msgid "Activate Pretty Links"
8295
  msgstr ""
8296
 
8297
+ #: languages/vue.php:2421
8298
  msgid "Activating Pretty Links..."
8299
  msgstr ""
8300
 
8301
+ #: languages/vue.php:2424
8302
  msgid "Create New Pretty Link"
8303
  msgstr ""
8304
 
8305
+ #: languages/vue.php:2427
8306
  msgid "Create a New Pretty Link"
8307
  msgstr ""
8308
 
8309
+ #: languages/vue.php:2430
8310
  msgid "Grab your campaign link and paste it into the Target URL field."
8311
  msgstr ""
8312
 
8313
+ #: languages/vue.php:2433
8314
  msgid "Custom Campaign Parameters"
8315
  msgstr ""
8316
 
8317
+ #: languages/vue.php:2436
8318
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
8319
  msgstr ""
8320
 
8321
+ #: languages/vue.php:2439
8322
  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."
8323
  msgstr ""
8324
 
8325
  #. Translators: Marks the field as required.
8326
+ #: languages/vue.php:2443
8327
  msgid "Website URL %s"
8328
  msgstr ""
8329
 
8330
  #. Translators: Display the current website url in italic.
8331
+ #: languages/vue.php:2447
8332
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
8333
  msgstr ""
8334
 
8335
  #. Translators: Marks the field as required.
8336
+ #: languages/vue.php:2451
8337
  msgid "Campaign Source %s"
8338
  msgstr ""
8339
 
8340
  #. Translators: Make the text italic.
8341
+ #: languages/vue.php:2455
8342
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
8343
  msgstr ""
8344
 
8345
  #. Translators: Make the text italic.
8346
+ #: languages/vue.php:2459
8347
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
8348
  msgstr ""
8349
 
8350
  #. Translators: Make the text italic.
8351
+ #: languages/vue.php:2463
8352
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
8353
  msgstr ""
8354
 
8355
+ #: languages/vue.php:2466
8356
  msgid "Enter the paid keyword"
8357
  msgstr ""
8358
 
8359
+ #: languages/vue.php:2469
8360
  msgid "Enter something to differentiate ads"
8361
  msgstr ""
8362
 
8363
+ #: languages/vue.php:2472
8364
  msgid "Use Fragment"
8365
  msgstr ""
8366
 
8367
  #. Translators: Make the text bold.
8368
+ #: languages/vue.php:2476
8369
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
8370
  msgstr ""
8371
 
8372
+ #: languages/vue.php:2479
8373
  msgid "URL to use"
8374
  msgstr ""
8375
 
8376
+ #: languages/vue.php:2482
8377
  msgid "(Updates automatically)"
8378
  msgstr ""
8379
 
8380
+ #: languages/vue.php:2485
8381
  msgid "Copy to Clipboard"
8382
  msgstr ""
8383
 
8384
+ #: languages/vue.php:2488
8385
  msgid "Copy to Pretty Links"
8386
  msgstr ""
8387
 
8388
+ #: languages/vue.php:2491
8389
  msgid "Make your campaign links prettier!"
8390
  msgstr ""
8391
 
8392
+ #: languages/vue.php:2494
8393
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
8394
  msgstr ""
8395
 
8396
+ #: languages/vue.php:2497
8397
  msgid "More Information & Examples"
8398
  msgstr ""
8399
 
8400
+ #: languages/vue.php:2500
8401
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
8402
  msgstr ""
8403
 
8404
+ #: languages/vue.php:2503
8405
  msgid "Campaign Source"
8406
  msgstr ""
8407
 
8408
+ #: languages/vue.php:2506
8409
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
8410
  msgstr ""
8411
 
8412
+ #: languages/vue.php:2509
8413
  msgid "Campaign Medium"
8414
  msgstr ""
8415
 
8416
+ #: languages/vue.php:2512
8417
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
8418
  msgstr ""
8419
 
8420
+ #: languages/vue.php:2515
8421
  msgid "Campaign Name"
8422
  msgstr ""
8423
 
8424
+ #: languages/vue.php:2518
8425
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
8426
  msgstr ""
8427
 
8428
+ #: languages/vue.php:2521
8429
  msgid "Campaign Term"
8430
  msgstr ""
8431
 
8432
+ #: languages/vue.php:2524
8433
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
8434
  msgstr ""
8435
 
8436
+ #: languages/vue.php:2527
8437
  msgid "Campaign Content"
8438
  msgstr ""
8439
 
8440
+ #: languages/vue.php:2530
8441
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
8442
  msgstr ""
8443
 
8444
  #. Translators: Example.
8445
+ #: languages/vue.php:2534
8446
  msgid "Example: %s"
8447
  msgstr ""
8448
 
8449
  #. Translators: Examples.
8450
+ #: languages/vue.php:2538
8451
  msgid "Examples: %s"
8452
  msgstr ""
8453
 
8454
+ #: languages/vue.php:2541
8455
  msgid "About Campaigns"
8456
  msgstr ""
8457
 
8458
+ #: languages/vue.php:2544
8459
  msgid "About Custom Campaigns"
8460
  msgstr ""
8461
 
8462
+ #: languages/vue.php:2547
8463
  msgid "Best Practices for Creating Custom Campaigns"
8464
  msgstr ""
8465
 
8466
+ #: languages/vue.php:2550
8467
  msgid "About the Referral Traffic Report"
8468
  msgstr ""
8469
 
8470
+ #: languages/vue.php:2553
8471
  msgid "About Traffic Source Dimensions"
8472
  msgstr ""
8473
 
8474
+ #: languages/vue.php:2556
8475
  msgid "AdWords Auto-Tagging"
8476
  msgstr ""
8477
 
8478
+ #: languages/vue.php:2559
8479
  msgid "Additional Information"
8480
  msgstr ""
8481
 
8482
+ #: languages/vue.php:2562
8483
  msgid "Affiliate Links"
8484
  msgstr ""
8485
 
8486
  #. Translators: Add links to documentation.
8487
+ #: languages/vue.php:2566
8488
  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."
8489
  msgstr ""
8490
 
8491
+ #: languages/vue.php:2569
8492
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
8493
  msgstr ""
8494
 
8495
+ #: languages/vue.php:2572
8496
  msgid "The ExactMetrics Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results."
8497
  msgstr ""
8498
 
8499
+ #: languages/vue.php:2575
8500
  msgid "Disable the Headline Analyzer"
8501
  msgstr ""
8502
 
8503
  #. Translators: Add line break.
8504
+ #: languages/vue.php:2579
8505
  msgid "See All Your Important Store%s Metrics in One Place"
8506
  msgstr ""
8507
 
8508
+ #: languages/vue.php:2582
8509
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
8510
  msgstr ""
8511
 
8512
+ #: languages/vue.php:2585
8513
  msgid "See Your Conversion Rate to Improve Funnel"
8514
  msgstr ""
8515
 
8516
+ #: languages/vue.php:2588
8517
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
8518
  msgstr ""
8519
 
8520
+ #: languages/vue.php:2591
8521
  msgid "See The Total Revenue to Track Growth"
8522
  msgstr ""
8523
 
8524
+ #: languages/vue.php:2594
8525
  msgid "See Average Order Value to Find Offer Opportunities"
8526
  msgstr ""
8527
 
8528
+ #: languages/vue.php:2597
8529
  msgid "See Your Top Products to See Individual Performance"
8530
  msgstr ""
8531
 
8532
+ #: languages/vue.php:2600
8533
  msgid "See your Top Conversion Sources and Focus on what's Working"
8534
  msgstr ""
8535
 
8536
+ #: languages/vue.php:2603
8537
  msgid "See The Time it Takes for Customers to Purchase"
8538
  msgstr ""
8539
 
8540
+ #: languages/vue.php:2606
8541
  msgid "See How Many Sessions are Needed for a Purchase"
8542
  msgstr ""
8543
 
8544
+ #: languages/vue.php:2609
8545
  msgid "Automatically Track Affiliate Sales"
8546
  msgstr ""
8547
 
8548
+ #: languages/vue.php:2612
8549
  msgid "The ExactMetrics eCommerce addon works with EasyAffiliate, so that you can instantly track all affiliate referrals and sales inside WordPress and Google Analytics, with no coding needed."
8550
  msgstr ""
8551
 
8552
+ #: languages/vue.php:2615
8553
  msgid "Works with WooCommerce, MemberPress, and EasyDigitalDownloads."
8554
  msgstr ""
8555
 
8556
+ #: languages/vue.php:2618
8557
  msgid "Cross Domain Tracking"
8558
  msgstr ""
8559
 
8560
  #. Translators: Add links to documentation.
8561
+ #: languages/vue.php:2622
8562
  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."
8563
  msgstr ""
8564
 
8565
+ #: languages/vue.php:2625
8566
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
8567
  msgstr ""
8568
 
8569
+ #: languages/vue.php:2628
8570
  msgid "Anonymize IP Addresses"
8571
  msgstr ""
8572
 
8573
+ #: languages/vue.php:2631
8574
  msgid "Link Attribution"
8575
  msgstr ""
8576
 
8577
+ #: languages/vue.php:2634
8578
  msgid "Enable Enhanced Link Attribution"
8579
  msgstr ""
8580
 
8581
+ #: languages/vue.php:2637
8582
  msgid "Enable Anchor Tracking"
8583
  msgstr ""
8584
 
8585
+ #: languages/vue.php:2640
8586
  msgid "Enable allowAnchor"
8587
  msgstr ""
8588
 
8589
+ #: languages/vue.php:2643
8590
  msgid "Enable allowLinker"
8591
  msgstr ""
8592
 
8593
+ #: languages/vue.php:2646
8594
  msgid "Enable Tag Links in RSS"
8595
  msgstr ""
8596
 
8597
+ #: languages/vue.php:2649
8598
  msgid "File Downloads"
8599
  msgstr ""
8600
 
8601
+ #: languages/vue.php:2652
8602
  msgid "Extensions of Files to Track as Downloads"
8603
  msgstr ""
8604
 
8605
+ #: languages/vue.php:2655
8606
  msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
8607
  msgstr ""
8608
 
8609
  #. Translators: Add links to documentation.
8610
+ #: languages/vue.php:2659
8611
  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."
8612
  msgstr ""
8613
 
8614
  #. Translators: Add links to documentation.
8615
+ #: languages/vue.php:2663
8616
  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."
8617
  msgstr ""
8618
 
8619
  #. Translators: Add links to documentation.
8620
+ #: languages/vue.php:2667
8621
  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."
8622
  msgstr ""
8623
 
8624
+ #: languages/vue.php:2670
8625
  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."
8626
  msgstr ""
8627
 
8628
  #. Translators: Add links to documentation.
8629
+ #: languages/vue.php:2674
8630
  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."
8631
  msgstr ""
8632
 
8633
  #. Translators: Add links to documentation.
8634
+ #: languages/vue.php:2678
8635
  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."
8636
  msgstr ""
8637
 
8638
  #. Translators: Add links to documentation.
8639
+ #: languages/vue.php:2682
8640
  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."
8641
  msgstr ""
8642
 
8643
+ #: languages/vue.php:2685
8644
  msgid "Add domain"
8645
  msgstr ""
8646
 
8647
  #. Translators: Domain name example.
8648
+ #: languages/vue.php:2689
8649
  msgid "Domain (example: %s)"
8650
  msgstr ""
8651
 
8652
  #. Translators: Current domain name that should not be used.
8653
+ #: languages/vue.php:2693
8654
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
8655
  msgstr ""
8656
 
8657
  #. Translators: Adds link to the account area to retreive license key.
8658
+ #: languages/vue.php:2697
8659
  msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
8660
  msgstr ""
8661
 
8662
+ #: languages/vue.php:2700
8663
  msgid "Connect ExactMetrics to Start Tracking Your Data"
8664
  msgstr ""
8665
 
8666
+ #: languages/vue.php:2703
8667
  msgid "Complete Upgrade"
8668
  msgstr ""
8669
 
8670
+ #: languages/vue.php:2706
8671
  msgid "Upgrade to Pro Version!"
8672
  msgstr ""
8673
 
8674
  #. Translators: Make text bold.
8675
+ #: languages/vue.php:2710
8676
  msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
8677
  msgstr ""
8678
 
8679
+ #: languages/vue.php:2713
8680
  msgid "Install All-in-One SEO"
8681
  msgstr ""
8682
 
8683
+ #: languages/vue.php:2716
8684
  msgid "Improve Your Website Search Rankings With All-In-One SEO"
8685
  msgstr ""
8686
 
8687
+ #: languages/vue.php:2719
8688
  msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8689
  msgstr ""
8690
 
8691
+ #: languages/vue.php:2722
8692
  msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8693
  msgstr ""
8694
 
8695
+ #: languages/vue.php:2725
8696
  msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8697
  msgstr ""
8698
 
8699
+ #: languages/vue.php:2728
8700
  msgid "Local SEO"
8701
  msgstr ""
8702
 
8703
+ #: languages/vue.php:2731
8704
  msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8705
  msgstr ""
8706
 
8707
+ #: languages/vue.php:2734
8708
  msgid "WooCommerce SEO"
8709
  msgstr ""
8710
 
8711
+ #: languages/vue.php:2737
8712
  msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8713
  msgstr ""
8714
 
8715
+ #: languages/vue.php:2740
8716
  msgid "SEO Custom User Roles"
8717
  msgstr ""
8718
 
8719
+ #: languages/vue.php:2743
8720
  msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8721
  msgstr ""
8722
 
8723
+ #: languages/vue.php:2746
8724
  msgid "Google News Sitemap"
8725
  msgstr ""
8726
 
8727
+ #: languages/vue.php:2749
8728
  msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8729
  msgstr ""
8730
 
8731
+ #: languages/vue.php:2752
8732
  msgid "Smart XML Sitemaps"
8733
  msgstr ""
8734
 
8735
+ #: languages/vue.php:2755
8736
  msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8737
  msgstr ""
8738
 
8739
+ #: languages/vue.php:2758
8740
  msgid "Social Media Integration"
8741
  msgstr ""
8742
 
8743
+ #: languages/vue.php:2761
8744
  msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8745
  msgstr ""
8746
 
8747
+ #: languages/vue.php:2764
8748
  msgid "TruSEO On-Page Analysis"
8749
  msgstr ""
8750
 
8751
+ #: languages/vue.php:2767
8752
  msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8753
  msgstr ""
8754
 
8755
+ #: languages/vue.php:2770
8756
  msgid "& Many More!"
8757
  msgstr ""
8758
 
8759
+ #: languages/vue.php:2773
8760
  msgid "Installing. Please wait.."
8761
  msgstr ""
8762
 
8763
+ #: languages/vue.php:2776
8764
  msgid "Install All-in-One-SEO"
8765
  msgstr ""
8766
 
8767
+ #: languages/vue.php:2779
8768
  msgid "Unlock the Publisher Report and Focus on the Content That Matters"
8769
  msgstr ""
8770
 
8771
+ #: languages/vue.php:2782
8772
  msgid "See Your Top Landing Pages to Improve Engagement"
8773
  msgstr ""
8774
 
8775
+ #: languages/vue.php:2785
8776
  msgid "See Your Top Exit Pages to Reduce Abandonment"
8777
  msgstr ""
8778
 
8779
+ #: languages/vue.php:2788
8780
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
8781
  msgstr ""
8782
 
8783
+ #: languages/vue.php:2791
8784
  msgid "See Your Top Affiliate Links and Focus on What’s Working"
8785
  msgstr ""
8786
 
8787
+ #: languages/vue.php:2794
8788
  msgid "See Your Top Downloads and Improve Conversions"
8789
  msgstr ""
8790
 
8791
+ #: languages/vue.php:2797
8792
  msgid "See Audience Demographic Report (Age / Gender / Interests)"
8793
  msgstr ""
8794
 
8795
+ #: languages/vue.php:2800
8796
  msgid "Welcome to the all-new ExactMetrics"
8797
  msgstr ""
8798
 
8799
+ #: languages/vue.php:2803
8800
  msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
8801
  msgstr ""
8802
 
8803
+ #: languages/vue.php:2806
8804
  msgid "The New & Improved ExactMetrics includes:"
8805
  msgstr ""
8806
 
8807
+ #: languages/vue.php:2809
8808
  msgid "All-New Design"
8809
  msgstr ""
8810
 
8811
+ #: languages/vue.php:2812
8812
  msgid "Better Reporting"
8813
  msgstr ""
8814
 
8815
+ #: languages/vue.php:2815
8816
  msgid "Better Tracking"
8817
  msgstr ""
8818
 
8819
+ #: languages/vue.php:2818
8820
  msgid "Better Support"
8821
  msgstr ""
8822
 
8823
+ #: languages/vue.php:2821
8824
  msgid "Continue"
8825
  msgstr ""
8826
 
8827
+ #: languages/vue.php:2824
8828
  msgid "Your settings have been automatically transferred."
8829
  msgstr ""
8830
 
8831
+ #: languages/vue.php:2827
8832
  msgid "On the next step, you will be asked to re-authenticate with Google Analytics. Please %1$ssee our detailed post%2$s to learn why we need your help. Don't worry, your tracking will continue to work as-is even if you don't do this, but re-auth is required to see analytics reports inside WordPress dashboard."
8833
  msgstr ""
8834
 
8835
+ #: languages/vue.php:2830
8836
  msgid "New"
8837
  msgstr ""
8838
 
8839
+ #: languages/vue.php:2833
8840
  msgid "Returning"
8841
  msgstr ""
8842
 
8843
+ #: languages/vue.php:2836
8844
  msgid "Top 10 Countries"
8845
  msgstr ""
8846
 
8847
+ #: languages/vue.php:2839
8848
  msgid "View Countries Report"
8849
  msgstr ""
8850
 
8851
+ #: languages/vue.php:2842
8852
  msgid "Top 10 Referrals"
8853
  msgstr ""
8854
 
8855
+ #: languages/vue.php:2845
8856
  msgid "View All Referral Sources"
8857
  msgstr ""
8858
 
8859
+ #: languages/vue.php:2848
8860
  msgid "View Full Posts/Pages Report"
8861
  msgstr ""
8862
 
8863
+ #: languages/vue.php:2851
8864
  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."
8865
  msgstr ""
8866
 
8867
+ #: languages/vue.php:2854
8868
  msgid "This list shows the top countries your website visitors are from."
8869
  msgstr ""
8870
 
8871
+ #: languages/vue.php:2857
8872
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8873
  msgstr ""
8874
 
8875
+ #: languages/vue.php:2860
8876
  msgid "This feature requires ExactMetrics Pro"
8877
  msgstr ""
8878
 
8879
+ #: languages/vue.php:2863
8880
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
8881
  msgstr ""
8882
 
8883
+ #: languages/vue.php:2866
8884
  msgid "Upgrade to Pro and Unlock Popular Products"
8885
  msgstr ""
8886
 
8887
+ #: languages/vue.php:2869
8888
  msgid "View all Pro features"
8889
  msgstr ""
8890
 
8891
+ #: languages/vue.php:2872
8892
  msgid "View notifications"
8893
  msgstr ""
8894
 
8895
+ #: languages/vue.php:2875
8896
  msgid "Days"
8897
  msgstr ""
8898
 
8899
  #. Translators: placeholders make text small.
8900
+ #: languages/vue.php:2879
8901
  msgid "7 days"
8902
  msgstr ""
8903
 
8904
+ #: languages/vue.php:2882
8905
  msgid "30 days"
8906
  msgstr ""
8907
 
8908
+ #: languages/vue.php:2885
8909
  msgid "Custom"
8910
  msgstr ""
8911
 
8912
+ #: languages/vue.php:2888
8913
  msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8914
  msgstr ""
8915
 
8916
+ #: languages/vue.php:2891
8917
  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."
8918
  msgstr ""
8919
 
8920
+ #: languages/vue.php:2894
8921
  msgid "Jack Brown"
8922
  msgstr ""
8923
 
8924
+ #: languages/vue.php:2897
8925
  msgid "PJB Internet Marketing"
8926
  msgstr ""
8927
 
8928
+ #: languages/vue.php:2900
8929
  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."
8930
  msgstr ""
8931
 
8932
+ #: languages/vue.php:2903
8933
  msgid "Joel Steinmann"
8934
  msgstr ""
8935
 
8936
+ #: languages/vue.php:2906
8937
  msgid "CEO, Solergo"
8938
  msgstr ""
8939
 
8940
+ #: languages/vue.php:2909
8941
  msgid "Only Show Posts from These Categories"
8942
  msgstr ""
8943
 
8944
+ #: languages/vue.php:2912
8945
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
8946
  msgstr ""
8947
 
8948
+ #: languages/vue.php:2915
8949
  msgid "Activating..."
8950
  msgstr ""
8951
 
8952
+ #: languages/vue.php:2918
8953
  msgid "Deactivating..."
8954
  msgstr ""
8955
 
8956
+ #: languages/vue.php:2921
8957
  msgid "Deactivate"
8958
  msgstr ""
8959
 
8960
+ #: languages/vue.php:2924
8961
  msgid "Search Console Report"
8962
  msgstr ""
8963
 
8964
+ #: languages/vue.php:2927
8965
  msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
8966
  msgstr ""
8967
 
8968
+ #: languages/vue.php:2930
8969
  msgid "See Your Top Google Search Terms and Optimize Content"
8970
  msgstr ""
8971
 
8972
+ #: languages/vue.php:2933
8973
  msgid "See The Number of Clicks and Track Interests"
8974
  msgstr ""
8975
 
8976
+ #: languages/vue.php:2936
8977
  msgid "See The Click-Through-Ratio and Improve SEO"
8978
  msgstr ""
8979
 
8980
+ #: languages/vue.php:2939
8981
  msgid "See The Average Results Position and Focus on what works."
8982
  msgstr ""
8983
 
8984
+ #: languages/vue.php:2942
8985
  msgid "Ecommerce Report"
8986
  msgstr ""
8987
 
8988
+ #: languages/vue.php:2945
8989
  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."
8990
  msgstr ""
8991
 
8992
+ #: languages/vue.php:2948
8993
  msgid "See Your Conversion Rate to Improve Your Funnel"
8994
  msgstr ""
8995
 
8996
+ #: languages/vue.php:2951
8997
  msgid "See Your Top Conversion Sources and Focus on What's Working"
8998
  msgstr ""
8999
 
9000
+ #: languages/vue.php:2954
9001
  msgid "Popular Posts data can be fetched correctly"
9002
  msgstr ""
9003
 
9004
+ #: languages/vue.php:2957
9005
  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."
9006
  msgstr ""
9007
 
9008
+ #: languages/vue.php:2960
9009
  msgid "Close"
9010
  msgstr ""
9011
 
9012
+ #: languages/vue.php:2963
9013
  msgid "Add Top 5 Posts from Google Analytics"
9014
  msgstr ""
9015
 
9016
+ #: languages/vue.php:2966
9017
  msgid "In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both ExactMetrics and Google Analytics settings."
9018
  msgstr ""
9019
 
9020
+ #: languages/vue.php:2969
9021
  msgid "Test Automated Posts"
9022
  msgstr ""
9023
 
9024
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
9025
+ #: languages/vue.php:2973
9026
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
9027
  msgstr ""
9028
 
9029
+ #: languages/vue.php:2976
9030
  msgid "Automated + Curated"
9031
  msgstr ""
9032
 
9033
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9034
+ #: languages/vue.php:2980
9035
  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."
9036
  msgstr ""
9037
 
9038
  #. Translators: Placeholder gets replaced with current license version.
9039
+ #: languages/vue.php:2984
9040
  msgid "Pro version is required."
9041
  msgstr ""
9042
 
9043
+ #: languages/vue.php:2987
9044
  msgid "Verifying Popular Posts data"
9045
  msgstr ""
9046
 
9047
+ #: languages/vue.php:2990
9048
  msgid "Multiple Entries"
9049
  msgstr ""
9050
 
9051
+ #: languages/vue.php:2993
9052
  msgid "Total Number of Widgets to Show"
9053
  msgstr ""
9054
 
9055
+ #: languages/vue.php:2996
9056
  msgid "Choose how many widgets will be placed in a single Post."
9057
  msgstr ""
9058
 
9059
+ #: languages/vue.php:2999
9060
  msgid "Minimum Distance Between Widgets"
9061
  msgstr ""
9062
 
9063
+ #: languages/vue.php:3002
9064
  msgid "Choose the distance between widgets."
9065
  msgstr ""
9066
 
9067
+ #: languages/vue.php:3005
9068
  msgid "Minimum Word Count to Display Multiple Widgets"
9069
  msgstr ""
9070
 
9071
+ #: languages/vue.php:3008
9072
  msgid "Choose the minimum word count for a Post to have multiple entries."
9073
  msgstr ""
9074
 
9075
+ #: languages/vue.php:3011
9076
  msgid "Pro version is required"
9077
  msgstr ""
9078
 
9079
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9080
+ #: languages/vue.php:3015
9081
  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)."
9082
  msgstr ""
9083
 
9084
+ #: languages/vue.php:3018
9085
  msgid "Select posts/search"
9086
  msgstr ""
9087
 
9088
+ #: languages/vue.php:3021
9089
  msgid "Oops! No posts found."
9090
  msgstr ""
9091
 
9092
+ #: languages/vue.php:3024
9093
  msgid "Search by post title"
9094
  msgstr ""
9095
 
9096
+ #: languages/vue.php:3027
9097
  msgid "Can't load posts."
9098
  msgstr ""
9099
 
9100
+ #: languages/vue.php:3030
9101
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
9102
  msgstr ""
9103
 
9104
+ #: languages/vue.php:3033
9105
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
9106
  msgstr ""
9107
 
9108
+ #: languages/vue.php:3036
9109
  msgid "Color"
9110
  msgstr ""
9111
 
9112
+ #: languages/vue.php:3039
9113
  msgid "Size"
9114
  msgstr ""
9115
 
9116
+ #: languages/vue.php:3042
9117
  msgid "Title"
9118
  msgstr ""
9119
 
9120
+ #: languages/vue.php:3045
9121
  msgid "Label"
9122
  msgstr ""
9123
 
9124
+ #: languages/vue.php:3048
9125
  msgid "Background"
9126
  msgstr ""
9127
 
9128
+ #: languages/vue.php:3051
9129
  msgid "Border"
9130
  msgstr ""
9131
 
9132
+ #: languages/vue.php:3054
9133
  msgid "Icon"
9134
  msgstr ""
9135
 
9136
+ #: languages/vue.php:3057
9137
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
9138
  msgid "Theme Preview"
9139
  msgstr ""
9140
 
9141
+ #: languages/vue.php:3060
9142
  msgid "SharedCount API Key"
9143
  msgstr ""
9144
 
9145
+ #: languages/vue.php:3063
9146
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
9147
  msgstr ""
9148
 
9149
+ #: languages/vue.php:3066
9150
  msgid "Start Indexing"
9151
  msgstr ""
9152
 
9153
+ #: languages/vue.php:3069
9154
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
9155
  msgstr ""
9156
 
9157
+ #: languages/vue.php:3072
9158
  msgid "Indexing completed, counts will update automatically every day."
9159
  msgstr ""
9160
 
9161
  #. Translators: Minimum and maximum number that can be used.
9162
+ #: languages/vue.php:3076
9163
  msgid "Please enter a value between %1$s and %2$s"
9164
  msgstr ""
9165
 
9166
  #. Translators: The minimum set value.
9167
+ #: languages/vue.php:3080
9168
  msgid "Please enter a value higher than %s"
9169
  msgstr ""
9170
 
9171
  #. Translators: The maximum set value.
9172
+ #: languages/vue.php:3084
9173
  msgid "Please enter a value lower than %s"
9174
  msgstr ""
9175
 
9176
+ #: languages/vue.php:3087
9177
  msgid "Please enter a number"
9178
  msgstr ""
9179
 
9180
+ #: languages/vue.php:3090
9181
  msgid "Value has to be a round number"
9182
  msgstr ""
9183
 
9184
+ #: languages/vue.php:3093
9185
  msgid "Author/Date"
9186
  msgstr ""
9187
 
9188
+ #: languages/vue.php:3105
9189
  msgid "Choose which content you would like displayed in the widget."
9190
  msgstr ""
9191
 
9192
+ #: languages/vue.php:3117
9193
  msgid "Comments"
9194
  msgstr ""
9195
 
9196
+ #: languages/vue.php:3123
9197
  msgid "Choose how many posts you’d like displayed in the widget."
9198
  msgstr ""
9199
 
9200
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
9201
+ #: languages/vue.php:3127
9202
  msgid "%1$sPage %3$s%2$s of %4$s"
9203
  msgstr ""
9204
 
9205
+ #: languages/vue.php:3130
9206
  msgid "Wide"
9207
  msgstr ""
9208
 
9209
+ #: languages/vue.php:3133
9210
  msgid "Narrow"
9211
  msgstr ""
9212
 
9213
  #. Translators: Make text green.
9214
+ #: languages/vue.php:3137
9215
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9216
  msgstr ""
9217
 
9218
+ #: languages/vue.php:3144
9219
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
9220
  msgstr ""
9221
 
9222
+ #: languages/vue.php:3147
9223
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
9224
  msgstr ""
9225
 
9226
+ #: languages/vue.php:3150
9227
  msgid "Usage Tracking"
9228
  msgstr ""
9229
 
9230
+ #: languages/vue.php:3153
9231
  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."
9232
  msgstr ""
9233
 
9234
+ #: languages/vue.php:3156
9235
  msgid "Allow usage tracking"
9236
  msgstr ""
9237
 
9238
  #. Translators: Adds a link to the documentation.
9239
+ #: languages/vue.php:3160
9240
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
9241
  msgstr ""
9242
 
9243
+ #: languages/vue.php:3163
9244
  msgid "Facebook Instant Articles"
9245
  msgstr ""
9246
 
9247
+ #: languages/vue.php:3166
9248
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
9249
  msgstr ""
9250
 
9251
+ #: languages/vue.php:3169
9252
  msgid "Performance"
9253
  msgstr ""
9254
 
9255
+ #: languages/vue.php:3172
9256
  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."
9257
  msgstr ""
9258
 
9259
+ #: languages/vue.php:3175
9260
  msgid "Google AMP"
9261
  msgstr ""
9262
 
9263
+ #: languages/vue.php:3178
9264
  msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
9265
  msgstr ""
9266
 
9267
+ #: languages/vue.php:3181
9268
  msgid "Ads Tracking"
9269
  msgstr ""
9270
 
9271
+ #: languages/vue.php:3184
9272
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
9273
  msgstr ""
9274
 
9275
+ #: languages/vue.php:3187
9276
  msgid "Unlock with %s"
9277
  msgstr ""
9278
 
9279
+ #: languages/vue.php:3190
9280
  msgid "Scroll Tracking"
9281
  msgstr ""
9282
 
9283
+ #: languages/vue.php:3193
9284
  msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
9285
  msgstr ""
9286
 
9287
+ #: languages/vue.php:3196
9288
  msgid ""
9289
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
9290
  " and other privacy regulations."
9291
  msgstr ""
9292
 
9293
+ #: languages/vue.php:3200
9294
  msgid "EU Compliance"
9295
  msgstr ""
9296
 
9297
+ #: languages/vue.php:3203
9298
  msgid "Compatibility mode"
9299
  msgstr ""
9300
 
9301
+ #: languages/vue.php:3206
9302
  msgid "Enable _gtagTracker Compatibility"
9303
  msgstr ""
9304
 
9305
  #. Translators: Placeholder gets replaced with default GA js function.
9306
+ #: languages/vue.php:3210
9307
  msgid "This enables ExactMetrics to work with plugins that use %1$s and don't support %2$s"
9308
  msgstr ""
9309
 
9310
+ #: languages/vue.php:3213
9311
  msgid "It's easy to double your traffic and sales when you know exactly how people find and use your website. ExactMetrics Pro shows you the stats that matter!"
9312
  msgstr ""
9313
 
9314
+ #: languages/vue.php:3216
9315
  msgid "To unlock more features consider upgrading to PRO."
9316
  msgstr ""
9317
 
9318
+ #: languages/vue.php:3219
9319
  msgid "Upgrade to"
9320
  msgstr ""
9321
 
9322
+ #: languages/vue.php:3222
9323
  msgid "Export PDF Report"
9324
  msgstr ""
9325
 
9326
+ #: languages/vue.php:3225
9327
  msgid "You can export PDF reports only in the PRO version."
9328
  msgstr ""
9329
 
9330
+ #: languages/vue.php:3228
9331
  msgid "Display Method"
9332
  msgstr ""
9333
 
9334
+ #: languages/vue.php:3231
9335
  msgid "There are two ways to manual include the widget in your posts."
9336
  msgstr ""
9337
 
9338
+ #: languages/vue.php:3234
9339
  msgid "Using the Gutenberg Block"
9340
  msgstr ""
9341
 
9342
+ #: languages/vue.php:3237
9343
  msgid "Using the Shortcode"
9344
  msgstr ""
9345
 
9346
+ #: languages/vue.php:3240
9347
  msgid "Learn how to insert the widget using Gutenberg blocks."
9348
  msgstr ""
9349
 
9350
+ #: languages/vue.php:3243
9351
  msgid "Learn how to insert the widget using out Shortcode."
9352
  msgstr ""
9353
 
9354
+ #: languages/vue.php:3246
9355
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9356
  msgstr ""
9357
 
9358
+ #: languages/vue.php:3249
9359
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
9360
  msgstr ""
9361
 
9362
+ #: languages/vue.php:3252
9363
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”."
9364
  msgstr ""
9365
 
9366
+ #: languages/vue.php:3255
9367
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9368
  msgstr ""
9369
 
9370
+ #: languages/vue.php:3258
9371
  msgid "Shortcode"
9372
  msgstr ""
9373
 
9374
+ #: languages/vue.php:3261
9375
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9376
  msgstr ""
9377
 
9378
+ #: languages/vue.php:3264
9379
  msgid "Copy Shortcode"
9380
  msgstr ""
9381
 
9382
+ #: languages/vue.php:3267
9383
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9384
  msgstr ""
9385
 
9386
+ #: languages/vue.php:3270
9387
  msgid "Automatic Placement"
9388
  msgstr ""
9389
 
9390
+ #: languages/vue.php:3273
9391
  msgid "Display using Gutenberg Blocks"
9392
  msgstr ""
9393
 
9394
+ #: languages/vue.php:3276
9395
  msgid "Embed Options"
9396
  msgstr ""
9397
 
9398
+ #: languages/vue.php:3279
9399
  msgid "All Embed Options can be used in conjunction with one another."
9400
  msgstr ""
9401
 
9402
+ #: languages/vue.php:3282
9403
  msgid "Using Automatic Embed"
9404
  msgstr ""
9405
 
9406
+ #: languages/vue.php:3285
9407
  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."
9408
  msgstr ""
9409
 
9410
+ #: languages/vue.php:3288
9411
  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."
9412
  msgstr ""
9413
 
9414
+ #: languages/vue.php:3291
9415
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9416
  msgstr ""
9417
 
9418
+ #: languages/vue.php:3294
9419
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9420
  msgstr ""
9421
 
9422
+ #: languages/vue.php:3297
9423
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9424
  msgstr ""
9425
 
9426
+ #: languages/vue.php:3300
9427
  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."
9428
  msgstr ""
9429
 
9430
+ #: languages/vue.php:3303
9431
  msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - ExactMetrics widget and drag it into the desired Sidebar on the right."
9432
  msgstr ""
9433
 
9434
+ #: languages/vue.php:3306
9435
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9436
  msgstr ""
9437
 
9438
+ #: languages/vue.php:3309
9439
  msgid "Display using a Shortcode"
9440
  msgstr ""
9441
 
9442
+ #: languages/vue.php:3312
9443
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9444
  msgstr ""
9445
 
9446
+ #: languages/vue.php:3315
9447
  msgid "Enable Automatic Placement"
9448
  msgstr ""
9449
 
9450
+ #: languages/vue.php:3318
9451
  msgid "Display in a Sidebar"
9452
  msgstr ""
9453
 
9454
+ #: languages/vue.php:3321
9455
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9456
  msgstr ""
9457
 
9458
+ #: languages/vue.php:3324
9459
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9460
  msgstr ""
9461
 
9462
  #. Translators: The number of results.
9463
+ #: languages/vue.php:3328
9464
  msgid "%s results"
9465
  msgstr ""
9466
 
9467
+ #: languages/vue.php:3331
9468
  msgid "Media"
9469
  msgstr ""
9470
 
9471
+ #: languages/vue.php:3334
9472
  msgid "Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro."
9473
  msgstr ""
9474
 
9475
+ #: languages/vue.php:3337
9476
  msgid "2021 Year in Review"
9477
  msgstr ""
9478
 
9479
+ #: languages/vue.php:3340
9480
  msgid "Media- Track how your users interact with videos on your website."
9481
  msgstr ""
9482
 
9483
+ #: languages/vue.php:3343
9484
  msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9485
  msgstr ""
9486
 
9487
+ #: languages/vue.php:3346
9488
  msgid "Your 2021 Analytics Report"
9489
  msgstr ""
9490
 
9491
+ #: languages/vue.php:3352
9492
  msgid "January 1, 2021 - December 31, 2021"
9493
  msgstr ""
9494
 
9495
+ #: languages/vue.php:3355
9496
  msgid "A Tip for 2022"
9497
  msgstr ""
9498
 
9499
+ #: languages/vue.php:3358
9500
  msgid "A Tip For 2022"
9501
  msgstr ""
9502
 
9503
+ #: languages/vue.php:3361
9504
  msgid "Here's to an amazing 2022!"
9505
  msgstr ""
9506
 
9507
+ #: languages/vue.php:3364
9508
  msgid "Try our other popular WordPress plugins to grow your website in 2022."
9509
  msgstr ""
9510
 
9511
+ #: languages/vue.php:3367
9512
  msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9513
  msgstr ""
9514
 
9515
+ #: languages/vue.php:3370
9516
  msgid "Copyright ExactMetrics, 2022"
9517
  msgstr ""
9518
 
9519
  #. Translators: Number of minutes spent on site.
9520
+ #: languages/vue.php:3374
9521
  msgid "Each visitor spent an average of %s minutes on your website in 2021."
9522
  msgstr ""
9523
 
9524
  #. Translators: Placeholders are used for making text bold and adding a link.
9525
+ #: languages/vue.php:3378
9526
  msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9527
  msgstr ""
9528
 
9529
+ #: languages/vue.php:3381
9530
  msgid "With ExactMetrics Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9531
  msgstr ""
9532
 
9533
+ #: languages/vue.php:3384
9534
  msgid "RafflePress"
9535
  msgstr ""
9536
 
9537
+ #: languages/vue.php:3387
9538
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9539
  msgstr ""
9540
 
9541
+ #: languages/vue.php:3390
9542
  msgid "Constant Contact"
9543
  msgstr ""
9544
 
9545
+ #: languages/vue.php:3393
9546
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9547
  msgstr ""
9548
 
9549
+ #: languages/vue.php:3396
9550
  msgid "SEMRUSH"
9551
  msgstr ""
9552
 
9553
+ #: languages/vue.php:3399
9554
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9555
  msgstr ""
9556
 
9557
+ #: languages/vue.php:3402
9558
  msgid "Engagement Tools"
9559
  msgstr ""
9560
 
9561
+ #: languages/vue.php:3405
9562
  msgid "WPForms"
9563
  msgstr ""
9564
 
9565
+ #: languages/vue.php:3408
9566
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9567
  msgstr ""
9568
 
9569
+ #: languages/vue.php:3411
9570
  msgid "OptinMonster"
9571
  msgstr ""
9572
 
9573
+ #: languages/vue.php:3414
9574
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9575
  msgstr ""
9576
 
9577
+ #: languages/vue.php:3417
9578
  msgid "Smash Balloon - Facebook"
9579
  msgstr ""
9580
 
9581
+ #: languages/vue.php:3420
9582
  msgid "Smash Balloon - Instagram"
9583
  msgstr ""
9584
 
9585
+ #: languages/vue.php:3423
9586
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9587
  msgstr ""
9588
 
9589
+ #: languages/vue.php:3426
9590
  msgid "Popular Posts by ExactMetrics"
9591
  msgstr ""
9592
 
9593
+ #: languages/vue.php:3429
9594
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9595
  msgstr ""
9596
 
9597
+ #: languages/vue.php:3432
9598
  msgid "Popular Products by ExactMetrics"
9599
  msgstr ""
9600
 
9601
+ #: languages/vue.php:3435
9602
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9603
  msgstr ""
9604
 
9605
+ #: languages/vue.php:3438
9606
  msgid "Revenue Tools"
9607
  msgstr ""
9608
 
9609
+ #: languages/vue.php:3441
9610
  msgid "SeedProd"
9611
  msgstr ""
9612
 
9613
+ #: languages/vue.php:3444
9614
  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."
9615
  msgstr ""
9616
 
9617
+ #: languages/vue.php:3447
9618
  msgid "Featured Tools"
9619
  msgstr ""
9620
 
9621
+ #: languages/vue.php:3450
9622
  msgid "Easy Affiliate"
9623
  msgstr ""
9624
 
9625
+ #: languages/vue.php:3453
9626
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with ExactMetrics."
9627
  msgstr ""
9628
 
9629
+ #: languages/vue.php:3456
9630
  msgid "SearchWP"
9631
  msgstr ""
9632
 
9633
+ #: languages/vue.php:3459
9634
  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."
9635
  msgstr ""
9636
 
9637
+ #: languages/vue.php:3462
9638
  msgid "Easy Digital Downloads"
9639
  msgstr ""
9640
 
9641
+ #: languages/vue.php:3465
9642
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9643
  msgstr ""
9644
 
9645
+ #: languages/vue.php:3468
9646
  msgid "MemberPress"
9647
  msgstr ""
9648
 
9649
+ #: languages/vue.php:3471
9650
  msgid "Create a membership website. Works automatically with ExactMetrics, no coding needed."
9651
  msgstr ""
9652
 
9653
+ #: languages/vue.php:3474
9654
  msgid "Thirsty Affiliates"
9655
  msgstr ""
9656
 
9657
+ #: languages/vue.php:3477
9658
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9659
  msgstr ""
9660
 
9661
+ #: languages/vue.php:3480
9662
  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."
9663
  msgstr ""
9664
 
9665
+ #: languages/vue.php:3483
9666
  msgid "Advanced Coupons"
9667
  msgstr ""
9668
 
9669
+ #: languages/vue.php:3486
9670
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9671
  msgstr ""
9672
 
9673
+ #: languages/vue.php:3489
9674
  msgid "PrettyLinks"
9675
  msgstr ""
9676
 
9677
+ #: languages/vue.php:3492
9678
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9679
  msgstr ""
9680
 
9681
+ #: languages/vue.php:3495
9682
  msgid "Install Now"
9683
  msgstr ""
9684
 
9685
+ #: languages/vue.php:3498
9686
  msgid "Online Marketing Guides & Resources"
9687
  msgstr ""
9688
 
9689
+ #: languages/vue.php:3501
9690
  msgid "Read This Guide"
9691
  msgstr ""
9692
 
9693
+ #: languages/vue.php:3507
9694
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9695
  msgstr ""
9696
 
9697
+ #: languages/vue.php:3510
9698
  msgid "Traffic Tools"
9699
  msgstr ""
9700
 
9701
+ #: languages/vue.php:3513
9702
  msgid "All in One SEO (AIOSEO)"
9703
  msgstr ""
9704
 
9705
+ #: languages/vue.php:3516
9706
  msgid "The best WordPress SEO plugin that works automatically with ExactMetrics."
9707
  msgstr ""
9708
 
9709
+ #: languages/vue.php:3519
9710
  msgid "PushEngage"
9711
  msgstr ""
9712
 
9713
+ #: languages/vue.php:3522
9714
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9715
  msgstr ""
9716
 
9717
+ #: languages/vue.php:3525
9718
  msgid "Featured"
9719
  msgstr ""
9720
 
9721
+ #: languages/vue.php:3528
9722
  msgid "Traffic"
9723
  msgstr ""
9724
 
9725
+ #: languages/vue.php:3531
9726
  msgid "Revenue"
9727
  msgstr ""
9728
 
9729
+ #: languages/vue.php:3534
9730
  msgid "Guides & Resources"
9731
  msgstr ""
9732
 
9733
+ #: languages/vue.php:3537
9734
  msgid "Media Tracking"
9735
  msgstr ""
9736
 
9737
+ #: languages/vue.php:3540
9738
  msgid "Get Started"
9739
  msgstr ""
9740
 
9741
+ #: languages/vue.php:3543
9742
  msgid "Privacy Compliance Addon"
9743
  msgstr ""
9744
 
9745
+ #: languages/vue.php:3546
9746
  msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
9747
  msgstr ""
9748
 
9749
+ #: languages/vue.php:3549
9750
  msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
9751
  msgstr ""
9752
 
9753
+ #: languages/vue.php:3552
9754
  msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
9755
  msgstr ""
9756
 
9757
+ #: languages/vue.php:3555
9758
  msgid "20+ Advanced Tracking"
9759
  msgstr ""
9760
 
9761
+ #: languages/vue.php:3558
9762
  msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
9763
  msgstr ""
9764
 
9765
+ #: languages/vue.php:3561
9766
  msgid "Advanced Growth Tools"
9767
  msgstr ""
9768
 
9769
+ #: languages/vue.php:3564
9770
  msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
9771
  msgstr ""
9772
 
9773
+ #: languages/vue.php:3567
9774
  msgid "Track how your users interact with videos on your website."
9775
  msgstr ""
9776
 
9777
+ #: languages/vue.php:3570
9778
  msgid "Error Processing"
9779
  msgstr ""
9780
 
9781
+ #: languages/vue.php:3573
9782
  msgid "There was an error while processing some features. Please try again or you can skip this process for now"
9783
  msgstr ""
9784
 
9785
+ #: languages/vue.php:3576
9786
  msgid "Which website features would you like to enable?"
9787
  msgstr ""
9788
 
9789
+ #: languages/vue.php:3579
9790
  msgid "We’ve already selected our recommended features based on your site. "
9791
  msgstr ""
9792
 
9793
+ #: languages/vue.php:3582
9794
  msgid "Other Addons"
9795
  msgstr ""
9796
 
9797
+ #: languages/vue.php:3585
9798
  msgid "View all ExactMetrics addons"
9799
  msgstr ""
9800
 
9801
+ #: languages/vue.php:3588
9802
  msgid "Standard Analytics & Reports"
9803
  msgstr ""
9804
 
9805
+ #: languages/vue.php:3591
9806
  msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
9807
  msgstr ""
9808
 
9809
+ #: languages/vue.php:3594
9810
  msgid "Helps you see what links your users are clicking on your site."
9811
  msgstr ""
9812
 
9813
+ #: languages/vue.php:3597
9814
  msgid "All In One SEO Toolkit"
9815
  msgstr ""
9816
 
9817
+ #: languages/vue.php:3600
9818
  msgid "The best WordPress SEO plugin that works with ExactMetrics to boost your rankings."
9819
  msgstr ""
9820
 
9821
+ #: languages/vue.php:3603
9822
  msgid "Smart Form Builder by WPForms"
9823
  msgstr ""
9824
 
9825
+ #: languages/vue.php:3606
9826
  msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
9827
  msgstr ""
9828
 
9829
+ #: languages/vue.php:3609
9830
  msgid "Awesome! Tracking and Analytics are All Setup!"
9831
  msgstr ""
9832
 
9833
+ #: languages/vue.php:3612
9834
  msgid "ExactMetrics is connected to Google Analytics and data is being collected."
9835
  msgstr ""
9836
 
9837
+ #: languages/vue.php:3619
9838
  msgid "Complete Setup without Upgrading"
9839
  msgstr ""
9840
 
9841
+ #: languages/vue.php:3622
9842
  msgid "Success"
9843
  msgstr ""
9844
 
9845
+ #: languages/vue.php:3625
9846
  msgid "Connected to Google Analytics"
9847
  msgstr ""
9848
 
9849
+ #: languages/vue.php:3628
9850
  msgid "Tracking Code Installed"
9851
  msgstr ""
9852
 
9853
+ #: languages/vue.php:3631
9854
  msgid "Data Being Collected"
9855
  msgstr ""
9856
 
9857
  #. Translators: Add link to retrieve license from account area.
9858
+ #: languages/vue.php:3635
9859
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO!"
9860
  msgstr ""
9861
 
9862
+ #: languages/vue.php:3638
9863
  msgid "Verify License Key"
9864
  msgstr ""
9865
 
9866
+ #: languages/vue.php:3641
9867
  msgid "Upgrade to Unlock These Features"
9868
  msgstr ""
9869
 
9870
+ #: languages/vue.php:3644
9871
  msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
9872
  msgstr ""
9873
 
9874
+ #: languages/vue.php:3647
9875
  msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
9876
  msgstr ""
9877
 
9878
+ #: languages/vue.php:3650
9879
  msgid "Verifying License..."
9880
  msgstr ""
9881
 
9882
+ #: languages/vue.php:3656
9883
  msgid "The following plugins will be installed: "
9884
  msgstr ""
9885
 
9886
+ #: languages/vue.php:3659
9887
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
9888
  msgstr ""
9889
 
9890
+ #: languages/vue.php:3662
9891
  msgid "Manually enter your GA4 Measurement ID"
9892
  msgstr ""
9893
 
9894
+ #: languages/vue.php:3665
9895
  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."
9896
  msgstr ""
9897
 
9898
+ #: languages/vue.php:3668
9899
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
9900
  msgstr ""
9901
 
9902
+ #: languages/vue.php:3671
9903
  msgid "Your ExactMetrics license key has expired."
9904
  msgstr ""
9905
 
9906
+ #: languages/vue.php:3674
9907
  msgid "Renew today to ensure Google Analytics continues to track properly."
9908
  msgstr ""
9909
 
9910
+ #: languages/vue.php:3677
9911
  msgid "Click here."
9912
  msgstr ""
9913
 
9914
+ #: languages/vue.php:3680
9915
  msgid "ExactMetrics makes it effortless for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
9916
  msgstr ""
9917
 
9918
+ #: languages/vue.php:3683
9919
  msgid "License Expired"
9920
  msgstr ""
9921
 
9922
+ #: languages/vue.php:3686
9923
  msgid "Expired"
9924
  msgstr ""
9925
 
9926
  #. Translators: Adds a link to the license renewal.
9927
+ #: languages/vue.php:3690
9928
  msgid "To ensure tracking works properly, reactivate your license"
9929
  msgstr ""
9930
 
9931
+ #: languages/vue.php:3693
9932
  msgid "Reactivate License"
9933
  msgstr ""
9934
 
9935
+ #: languages/vue.php:3696
9936
  msgid "View All Reports"
9937
  msgstr ""
9938
 
9939
+ #: languages/vue.php:3699
9940
  msgid "WP Simple Pay"
9941
  msgstr ""
9942
 
9943
  #. Translators: tag to make text italic starts, tag end.
9944
+ #: languages/vue.php:3706
9945
  msgid "See What Your Website Visitors Are %1$sReally%2$s Thinking!"
9946
  msgstr ""
9947
 
9948
+ #: languages/vue.php:3709
9949
  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."
9950
  msgstr ""
9951
 
9952
+ #: languages/vue.php:3712
9953
  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"
9954
  msgstr ""
9955
 
9956
+ #: languages/vue.php:3715
9957
  msgid "Ask open ended questions, run polls or surveys, gather ratings, and more with an easy survey builder"
9958
  msgstr ""
9959
 
9960
+ #: languages/vue.php:3718
9961
  msgid "Customize targeting rules to get specific feedback on certain pages or products"
9962
  msgstr ""
9963
 
9964
+ #: languages/vue.php:3721
9965
  msgid "Easily analyze your responses and export data"
9966
  msgstr ""
9967
 
9968
+ #: languages/vue.php:3724
9969
  msgid "Install & Activate UserFeedback"
9970
  msgstr ""
9971
 
9972
+ #: languages/vue.php:3727
9973
  msgid "Install UserFeedback by clicking the button below."
9974
  msgstr ""
9975
 
9976
+ #: languages/vue.php:3730
9977
  msgid "Install UserFeedback"
9978
  msgstr ""
9979
 
9980
+ #: languages/vue.php:3733
9981
  msgid "Set Up UserFeedback"
9982
  msgstr ""
9983
 
9984
+ #: languages/vue.php:3736
9985
  msgid "Run the UserFeedback setup wizard to launch your first UserFeedback survey."
9986
  msgstr ""
9987
 
9988
+ #: languages/vue.php:3739
9989
  msgid "Start Setup"
9990
  msgstr ""
9991
 
9992
+ #: languages/vue.php:3742
9993
  msgid "Installing UserFeedback..."
9994
  msgstr ""
9995
 
9996
+ #: languages/vue.php:3745
9997
  msgid "Activating UserFeedback..."
9998
  msgstr ""
9999
 
10000
+ #: languages/vue.php:3748
10001
  msgid "Installed & Active"
10002
  msgstr ""
10003
 
10004
+ #: languages/vue.php:3751
10005
  msgid "Oops! There was an error processing request. Please try again later."
10006
  msgstr ""
10007
 
10008
+ #: languages/vue.php:3754
10009
  msgid "Oops! We could not save your changes. Please try again. If the problem persists, please %1$scontact our support%2$s team."
10010
  msgstr ""
10011
 
10012
+ #: languages/vue.php:3757
10013
  msgid "Installing UserFeedback"
10014
  msgstr ""
10015
 
10016
+ #: languages/vue.php:3760
10017
  msgid "Activating UserFeedback"
10018
  msgstr ""
10019
 
10020
+ #: languages/vue.php:3763
10021
  msgid "Oops! Something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
10022
  msgstr ""
10023
 
10024
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10025
+ #: languages/vue.php:3767
10026
  msgid "Can't load settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance. "
10027
  msgstr ""
10028
 
10029
+ #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10030
+ #: languages/vue.php:3771
10031
  msgid "Can't save settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance."
10032
  msgstr ""
10033
 
10034
  #. Translators: Support link tag starts with url and support link tag ends.
10035
+ #: languages/vue.php:3775
10036
  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."
10037
  msgstr ""
10038
 
10039
  #. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
10040
+ #: languages/vue.php:3779
10041
  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"
10042
  msgstr ""
10043
 
10044
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10045
+ #: languages/vue.php:3783
10046
  msgid "Oops! There was an issue deactivating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10047
  msgstr ""
10048
 
10049
  #. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
10050
+ #: languages/vue.php:3787
10051
  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"
10052
  msgstr ""
10053
 
10054
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10055
+ #: languages/vue.php:3791
10056
  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."
10057
  msgstr ""
10058
 
10059
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10060
+ #: languages/vue.php:3795
10061
  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"
10062
  msgstr ""
10063
 
10064
+ #: languages/vue.php:3798
10065
  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."
10066
  msgstr ""
10067
 
10068
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10069
+ #: languages/vue.php:3802
10070
  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"
10071
  msgstr ""
10072
 
10073
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10074
+ #: languages/vue.php:3806
10075
  msgid "Oops! There was an issue verifying your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10076
  msgstr ""
10077
 
10078
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10079
+ #: languages/vue.php:3810
10080
  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"
10081
  msgstr ""
10082
 
10083
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10084
+ #: languages/vue.php:3814
10085
  msgid "Oops! There was an issue validating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10086
  msgstr ""
10087
 
10088
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10089
+ #: languages/vue.php:3818
10090
  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."
10091
  msgstr ""
10092
 
10093
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10094
+ #: languages/vue.php:3822
10095
  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. "
10096
  msgstr ""
10097
 
10098
  #. Translators: Support page link tag starts and support page link tag ends.
10099
+ #: languages/vue.php:3826
10100
  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."
10101
  msgstr ""
10102
 
10103
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10104
+ #: languages/vue.php:3830
10105
  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."
10106
  msgstr ""
10107
 
10108
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10109
+ #: languages/vue.php:3834
10110
  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. "
10111
  msgstr ""
10112
 
10113
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10114
+ #: languages/vue.php:3838
10115
  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"
10116
  msgstr ""
10117
 
10118
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10119
+ #: languages/vue.php:3842
10120
  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."
10121
  msgstr ""
10122
 
10123
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10124
+ #: languages/vue.php:3846
10125
  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."
10126
  msgstr ""
10127
 
10128
  #. Translators: Error status and error text.
10129
+ #: languages/vue.php:3850
10130
  msgid "Oops! Can't install WPForms. Error: %1$s, %2$s"
10131
  msgstr ""
10132
 
10133
  #. Translators: Error status and error text.
10134
+ #: languages/vue.php:3854
10135
  msgid "Oops! Can't activate addon. Error: %1$s, %2$s"
10136
  msgstr ""
10137
 
10138
+ #: languages/vue.php:3857
10139
  msgid "Oops! There was an error activating the addon. Please try again. If the issue persists, please %1$scontact our support%2$s team."
10140
  msgstr ""
10141
 
10142
  #. Translators: Error status and error text.
10143
+ #: languages/vue.php:3861
10144
  msgid "Oops! Can't deactivate addon. Error: %1$s, %2$s"
10145
  msgstr ""
10146
 
10147
  #. Translators: Error status and error text.
10148
+ #: languages/vue.php:3865
10149
  msgid "Oops! Can't install plugin. Error: %1$s, %2$s"
10150
  msgstr ""
10151
 
10152
  #. Translators: Error status and error text.
10153
+ #: languages/vue.php:3869
10154
  msgid "Oops! Can't install addon. Error: %1$s, %2$s"
10155
  msgstr ""
10156
 
10157
  #. Translators: Support link tag starts with url and support link tag ends.
10158
+ #: languages/vue.php:3873
10159
  msgid "Oops! An error occurred while importing your settings. Please ensure you selected the correct file. If the issue continues please %1$scontact our support%2$s team."
10160
  msgstr ""
10161
 
10162
  #. Translators: Support link tag starts with url and support link tag ends.
10163
+ #: languages/vue.php:3877
10164
  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."
10165
  msgstr ""
10166
 
languages/vue.php CHANGED
@@ -10,7 +10,7 @@ $generated_i18n_strings = array(
10
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:118
11
  __( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
12
 
13
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:59
14
  __( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
15
 
16
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:20
@@ -29,15 +29,17 @@ $generated_i18n_strings = array(
29
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
30
  __( 'Loading new report data', 'google-analytics-dashboard-for-wp' ),
31
 
 
32
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:143
33
  /* Translators: Adds an arrow icon. */
34
  __( 'Continue %s', 'google-analytics-dashboard-for-wp' ),
35
 
36
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:75
37
- // Reference: src/plugins/exactmetrics-frontend-helper-plugin.js:14
 
38
  __( 'Error', 'google-analytics-dashboard-for-wp' ),
39
 
40
- // Reference: src/plugins/exactmetrics-frontend-helper-plugin.js:15
41
  __( 'Please try again.', 'google-analytics-dashboard-for-wp' ),
42
 
43
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:181
@@ -76,7 +78,7 @@ $generated_i18n_strings = array(
76
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:202
77
  __( 'See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more.', 'google-analytics-dashboard-for-wp' ),
78
 
79
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:36
80
  __( 'Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time', 'google-analytics-dashboard-for-wp' ),
81
 
82
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:206
@@ -88,22 +90,22 @@ $generated_i18n_strings = array(
88
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:210
89
  __( 'See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking', 'google-analytics-dashboard-for-wp' ),
90
 
91
- // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:42
92
  __( 'Today', 'google-analytics-dashboard-for-wp' ),
93
 
94
- // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:48
95
  __( 'Yesterday', 'google-analytics-dashboard-for-wp' ),
96
 
97
- // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:54
98
  __( 'Last Week', 'google-analytics-dashboard-for-wp' ),
99
 
100
- // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:60
101
  __( 'Last Month', 'google-analytics-dashboard-for-wp' ),
102
 
103
- // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:66
104
  __( 'Last 7 days', 'google-analytics-dashboard-for-wp' ),
105
 
106
- // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:72
107
  __( 'Last 30 days', 'google-analytics-dashboard-for-wp' ),
108
 
109
  // Reference: src/plugins/exactmetrics-wizard-helper-plugin.js:22
@@ -120,7 +122,6 @@ $generated_i18n_strings = array(
120
  // Reference: src/modules/widget/components/WidgetReminder.vue:36
121
  __( 'See the full analytics report!', 'google-analytics-dashboard-for-wp' ),
122
 
123
- // Reference: src/modules/widget/store/index.js:14
124
  // Reference: src/modules/widget/widget.vue:26
125
  __( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
126
 
@@ -214,73 +215,79 @@ $generated_i18n_strings = array(
214
  /* Translators: Adds a link and an arrow icon. */
215
  __( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
216
 
217
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:207
218
  __( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
219
 
220
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:208
221
  __( 'per year', 'google-analytics-dashboard-for-wp' ),
222
 
223
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:209
224
  __( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
225
 
226
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:158
227
  __( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
228
 
229
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:214
230
  __( 'This is absolutely, positively, one of the TOP plugins to install on your WP site. There is no better way to quickly gauge traffic for spikes, surges, and consistency. I installed this on over a dozen WordPress installations and counting, thank you for an outstanding app!', 'google-analytics-dashboard-for-wp' ),
231
 
232
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:215
233
  __( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
234
 
235
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:219
236
  __( 'Very simple to configure and the results are very clearly displayed. So much easier for clients to view than in their own analytics account! Delighted with it.', 'google-analytics-dashboard-for-wp' ),
237
 
238
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:220
239
  __( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
240
 
241
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:224
242
  __( 'Love this plugin! It’s got powerful customization options, it’s easy to use, there’s good documentation, and if all that’s not enough, ExactMetrics is quick to provide support. Thanks for this wonderful plugin!', 'google-analytics-dashboard-for-wp' ),
243
 
244
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:225
245
  __( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
246
 
247
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:228
248
  __( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
249
 
250
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:41
251
- // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAds-Lite.vue:24
252
  __( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
253
 
254
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:102
255
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:151
256
  __( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
257
 
258
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:103
259
  __( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
260
 
261
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:104
 
262
  __( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
263
 
264
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:105
 
265
  __( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
266
 
267
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:106
 
268
  __( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
269
 
270
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:109
 
271
  __( 'EU Compliance Addon', 'google-analytics-dashboard-for-wp' ),
272
 
273
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:110
 
274
  __( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
275
 
276
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:111
277
  __( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
278
 
279
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:112
280
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:49
281
  __( 'Search Console', 'google-analytics-dashboard-for-wp' ),
282
 
283
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:113
 
284
  __( 'Custom Date Ranges', 'google-analytics-dashboard-for-wp' ),
285
 
286
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:94
@@ -298,7 +305,7 @@ $generated_i18n_strings = array(
298
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:99
299
  __( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
300
 
301
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:152
302
  __( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
303
 
304
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:154
@@ -319,13 +326,14 @@ $generated_i18n_strings = array(
319
  /* Translators: Placeholder is replaced with WPForms. */
320
  __( 'Recommended Plugin: %s', 'google-analytics-dashboard-for-wp' ),
321
 
322
- // Reference: src/modules/addons/store/actions.js:49
323
  __( 'Install', 'google-analytics-dashboard-for-wp' ),
324
 
325
- // Reference: src/modules/addons/store/actions.js:49
326
  __( 'Activate', 'google-analytics-dashboard-for-wp' ),
327
 
328
  // Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
 
329
  __( 'Learn More', 'google-analytics-dashboard-for-wp' ),
330
 
331
  // Reference: src/modules/reports/components/ReportReAuth.vue:19
@@ -334,14 +342,14 @@ $generated_i18n_strings = array(
334
  // Reference: src/modules/reports/components/ReportReAuth.vue:20
335
  __( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-dashboard-for-wp' ),
336
 
337
- // Reference: src/modules/reports/components/ReportReAuth.vue:21
338
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:80
339
  __( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
340
 
341
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:195
 
342
  __( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
343
 
344
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:82
345
  __( 'Ok', 'google-analytics-dashboard-for-wp' ),
346
 
347
  // Reference: src/modules/addons/components/AddonsNavigation.vue:18
@@ -380,22 +388,22 @@ $generated_i18n_strings = array(
380
  // Reference: src/modules/widget/store/index.js:128
381
  __( 'This list shows the percentage of carts that never went through the checkout process.', 'google-analytics-dashboard-for-wp' ),
382
 
383
- // Reference: src/modules/widget/store/index.js:20
384
  __( 'Top Posts/Pages', 'google-analytics-dashboard-for-wp' ),
385
 
386
- // Reference: src/modules/widget/store/index.js:21
387
  __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-dashboard-for-wp' ),
388
 
389
- // Reference: src/modules/widget/store/index.js:27
390
  __( 'New vs. Returning Visitors', 'google-analytics-dashboard-for-wp' ),
391
 
392
- // Reference: src/modules/widget/store/index.js:28
393
  __( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-dashboard-for-wp' ),
394
 
395
- // Reference: src/modules/widget/store/index.js:34
396
  __( 'Device Breakdown', 'google-analytics-dashboard-for-wp' ),
397
 
398
- // Reference: src/modules/widget/store/index.js:35
399
  __( 'This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site.', 'google-analytics-dashboard-for-wp' ),
400
 
401
  // Reference: src/modules/widget/store/index.js:41
@@ -428,7 +436,7 @@ $generated_i18n_strings = array(
428
  // Reference: src/modules/widget/store/index.js:71
429
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-dashboard-for-wp' ),
430
 
431
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:25
432
  __( 'Overview', 'google-analytics-dashboard-for-wp' ),
433
 
434
  // Reference: src/modules/widget/store/index.js:83
@@ -449,7 +457,7 @@ $generated_i18n_strings = array(
449
  // Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:224
450
  __( 'Analytics', 'google-analytics-dashboard-for-wp' ),
451
 
452
- // Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:71
453
  /* Translators: Adds an arrow icon. */
454
  __( 'View All Reports %s', 'google-analytics-dashboard-for-wp' ),
455
 
@@ -490,21 +498,23 @@ $generated_i18n_strings = array(
490
  // Reference: src/components/TheQuickLinks.vue:78
491
  __( 'Upgrade to Pro &#187;', 'google-analytics-dashboard-for-wp' ),
492
 
493
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:33
494
  __( 'Publishers', 'google-analytics-dashboard-for-wp' ),
495
 
496
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:41
 
497
  __( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
498
 
499
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:57
500
  __( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
501
 
502
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:65
503
  __( 'Forms', 'google-analytics-dashboard-for-wp' ),
504
 
505
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:73
506
  __( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
507
 
 
508
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:81
509
  __( 'Site Speed Report', 'google-analytics-dashboard-for-wp' ),
510
 
@@ -513,20 +523,18 @@ $generated_i18n_strings = array(
513
  __( '2020 Year in Review', 'google-analytics-dashboard-for-wp' ),
514
 
515
  // Reference: src/modules/settings/routes/site.js:103
 
516
  __( 'Import Export', 'google-analytics-dashboard-for-wp' ),
517
 
518
  // Reference: src/modules/settings/routes/site.js:111
519
  __( 'PrettyLinks Integration', 'google-analytics-dashboard-for-wp' ),
520
 
521
- // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:26
522
  // Reference: src/modules/settings/routes/site.js:163
523
  __( 'Inline Popular Posts', 'google-analytics-dashboard-for-wp' ),
524
 
525
- // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:27
526
  // Reference: src/modules/settings/routes/site.js:171
527
  __( 'Popular Posts Widget', 'google-analytics-dashboard-for-wp' ),
528
 
529
- // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:28
530
  // Reference: src/modules/settings/routes/site.js:180
531
  __( 'Popular Products', 'google-analytics-dashboard-for-wp' ),
532
 
@@ -536,22 +544,29 @@ $generated_i18n_strings = array(
536
  // Reference: src/modules/settings/routes/site.js:200
537
  __( 'Sub menu item for WooCommerce Analytics', 'google-analytics-dashboard-for-wp' ),
538
 
 
539
  // Reference: src/modules/settings/routes/site.js:38
540
  __( 'General', 'google-analytics-dashboard-for-wp' ),
541
 
 
542
  // Reference: src/modules/settings/routes/site.js:46
543
  __( 'Engagement', 'google-analytics-dashboard-for-wp' ),
544
 
 
545
  // Reference: src/modules/settings/routes/site.js:62
546
  __( 'Publisher', 'google-analytics-dashboard-for-wp' ),
547
 
 
 
548
  // Reference: src/modules/settings/routes/site.js:70
549
  __( 'Conversions', 'google-analytics-dashboard-for-wp' ),
550
 
 
551
  // Reference: src/modules/settings/routes/site.js:78
552
  __( 'Advanced', 'google-analytics-dashboard-for-wp' ),
553
 
554
  // Reference: src/modules/settings/routes/site.js:95
 
555
  __( 'URL Builder', 'google-analytics-dashboard-for-wp' ),
556
 
557
  // Reference: src/modules/addons/store/actions.js:33
@@ -595,7 +610,7 @@ $generated_i18n_strings = array(
595
  // Reference: src/modules/reports/store/actions.js:220
596
  __( 'View Addons', 'google-analytics-dashboard-for-wp' ),
597
 
598
- // Reference: src/modules/seo/components/yoast.vue:266
599
  __( 'Dismiss', 'google-analytics-dashboard-for-wp' ),
600
 
601
  // Reference: src/modules/reports/store/actions.js:228
@@ -639,7 +654,7 @@ $generated_i18n_strings = array(
639
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:40
640
  __( 'Let\'s get you set up.', 'google-analytics-dashboard-for-wp' ),
641
 
642
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:41
643
  __( 'Save and Continue', 'google-analytics-dashboard-for-wp' ),
644
 
645
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:42
@@ -664,9 +679,13 @@ $generated_i18n_strings = array(
664
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:82
665
  __( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
666
 
 
 
667
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:83
668
  __( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
669
 
 
 
670
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:84
671
  __( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
672
 
@@ -703,9 +722,7 @@ $generated_i18n_strings = array(
703
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:51
704
  __( 'Continue & Install WPForms', 'google-analytics-dashboard-for-wp' ),
705
 
706
- // Reference: src/modules/addons/components/AddonButton.vue:42
707
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:30
708
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:52
709
  __( 'Installing...', 'google-analytics-dashboard-for-wp' ),
710
 
711
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:78
@@ -723,7 +740,7 @@ $generated_i18n_strings = array(
723
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:82
724
  __( 'ExactMetrics uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don\'t have to write any code.', 'google-analytics-dashboard-for-wp' ),
725
 
726
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:93
727
  __( 'Enhanced Link Attribution', 'google-analytics-dashboard-for-wp' ),
728
 
729
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:84
@@ -750,21 +767,17 @@ $generated_i18n_strings = array(
750
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:91
751
  __( 'ExactMetrics will automatically track downloads of common file types from links you have inserted onto your website. For example: want to know how many of your site\'s visitors have downloaded a PDF or other file you offer your visitors to download on your site? ExactMetrics makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel.', 'google-analytics-dashboard-for-wp' ),
752
 
753
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:62
754
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:96
755
  /* Translators: Example path (/go/). */
756
  __( 'Path (example: %s)', 'google-analytics-dashboard-for-wp' ),
757
 
758
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:64
759
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:98
760
  __( 'Path has to start with a / and have no spaces', 'google-analytics-dashboard-for-wp' ),
761
 
762
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:69
763
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:103
764
  /* Translators: Example label (aff). */
765
  __( 'Label (example: %s)', 'google-analytics-dashboard-for-wp' ),
766
 
767
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:71
768
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:105
769
  __( 'Label can\'t contain any spaces', 'google-analytics-dashboard-for-wp' ),
770
 
@@ -808,44 +821,54 @@ $generated_i18n_strings = array(
808
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:51
809
  __( 'Site Speed', 'google-analytics-dashboard-for-wp' ),
810
 
 
811
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:123
 
812
  __( 'License Key', 'google-analytics-dashboard-for-wp' ),
813
 
814
  // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:82
815
  /* Translators: Add link to retrieve license key from account. */
816
  __( 'Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
817
 
 
818
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:127
819
  __( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
820
 
821
- // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:32
822
  __( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
823
 
824
- // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:34
825
  __( 'Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes.', 'google-analytics-dashboard-for-wp' ),
826
 
827
- // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:35
828
  __( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
829
 
 
830
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:142
831
  __( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
832
 
833
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:36
834
- /* Translators: Add link to upgrade. */
 
835
  __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
836
 
 
837
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:145
838
  __( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
839
 
 
840
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:147
841
  __( 'See all features', 'google-analytics-dashboard-for-wp' ),
842
 
 
843
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:134
844
  __( 'Setup Wizard', 'google-analytics-dashboard-for-wp' ),
845
 
 
846
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:135
847
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-dashboard-for-wp' ),
848
 
 
849
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:136
850
  __( 'Relaunch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
851
 
@@ -982,7 +1005,7 @@ $generated_i18n_strings = array(
982
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:79
983
  __( 'Headline Analyzer', 'google-analytics-dashboard-for-wp' ),
984
 
985
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:156
986
  __( 'Email Summaries', 'google-analytics-dashboard-for-wp' ),
987
 
988
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:158
@@ -1006,7 +1029,7 @@ $generated_i18n_strings = array(
1006
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:171
1007
  __( '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-dashboard-for-wp' ),
1008
 
1009
- // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:131
1010
  __( 'Not Available', 'google-analytics-dashboard-for-wp' ),
1011
 
1012
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:179
@@ -1100,7 +1123,7 @@ $generated_i18n_strings = array(
1100
  /* Translators: Error status and error text. */
1101
  __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1102
 
1103
- // Reference: src/modules/license/api/index.js:156
1104
  __( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
1105
 
1106
  // Reference: src/modules/auth/api/index.js:232
@@ -1232,7 +1255,7 @@ $generated_i18n_strings = array(
1232
  // Reference: src/modules/widget/components/WidgetNoticeCompact.vue:15
1233
  __( 'Check out the newly added classic mode', 'google-analytics-dashboard-for-wp' ),
1234
 
1235
- // Reference: src/modules/widget/components/settings/WidgetSettingsIntervalUpsell.vue:28
1236
  /* Translators: Placeholder adds a line break. */
1237
  __( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-dashboard-for-wp' ),
1238
 
@@ -1265,42 +1288,42 @@ $generated_i18n_strings = array(
1265
  // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:70
1266
  __( 'Remove row', 'google-analytics-dashboard-for-wp' ),
1267
 
1268
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:103
1269
  __( 'Sessions', 'google-analytics-dashboard-for-wp' ),
1270
 
1271
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:105
1272
  /* Translators: Line break. */
1273
  __( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
1274
 
1275
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:106
1276
  __( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
1277
 
1278
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:108
1279
  /* Translators: Line break. */
1280
  __( 'Unique %s Pageviews', 'google-analytics-dashboard-for-wp' ),
1281
 
1282
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:109
1283
  __( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
1284
 
1285
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:110
1286
  __( 'A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview.', 'google-analytics-dashboard-for-wp' ),
1287
 
1288
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:111
1289
  __( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
1290
 
1291
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:112
1292
  __( 'Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further.', 'google-analytics-dashboard-for-wp' ),
1293
 
1294
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:113
1295
  __( 'The number of distinct tracked users', 'google-analytics-dashboard-for-wp' ),
1296
 
1297
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:114
1298
  __( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
1299
 
1300
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:115
1301
  __( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
1302
 
1303
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:116
1304
  __( 'Total Users', 'google-analytics-dashboard-for-wp' ),
1305
 
1306
  // Reference: src/modules/settings/components/input/SettingsInputSelect.vue:68
@@ -1339,7 +1362,7 @@ $generated_i18n_strings = array(
1339
  /* Translators: add link to blog. */
1340
  __( 'To comply with Google\'s API policies we\'ve had to remove the real time report from the lite version. You can read about this decision and why it was made in %1$sthis blog post%2$s. To access the real time report in the WordPress backend, you will need to upgrade to Pro.', 'google-analytics-dashboard-for-wp' ),
1341
 
1342
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:42
1343
  __( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
1344
 
1345
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:46
@@ -1726,7 +1749,7 @@ $generated_i18n_strings = array(
1726
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:373
1727
  __( 'Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights', 'google-analytics-dashboard-for-wp' ),
1728
 
1729
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:160
1730
  __( 'Upgrade to ExactMetrics Pro', 'google-analytics-dashboard-for-wp' ),
1731
 
1732
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:377
@@ -1822,6 +1845,7 @@ $generated_i18n_strings = array(
1822
  __( 'Disconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
1823
 
1824
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:164
 
1825
  __( 'Authenticating', 'google-analytics-dashboard-for-wp' ),
1826
 
1827
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:226
@@ -1852,30 +1876,38 @@ $generated_i18n_strings = array(
1852
  __( 'Active Profile', 'google-analytics-dashboard-for-wp' ),
1853
 
1854
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:93
 
1855
  __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-dashboard-for-wp' ),
1856
 
1857
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:94
 
1858
  __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-dashboard-for-wp' ),
1859
 
1860
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:97
 
1861
  __( 'Dual Tracking Profile', 'google-analytics-dashboard-for-wp' ),
1862
 
1863
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:99
 
1864
  __( '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-dashboard-for-wp' ),
1865
 
1866
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:103
 
1867
  __( 'Your Universal Analytics code should look like UA-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-dashboard-for-wp' ),
1868
 
1869
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:105
 
1870
  __( '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-dashboard-for-wp' ),
1871
 
1872
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:96
1873
  __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-dashboard-for-wp' ),
1874
 
1875
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:110
 
1876
  __( 'Measurement Protocol API Secret', 'google-analytics-dashboard-for-wp' ),
1877
 
1878
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:112
 
1879
  __( '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-dashboard-for-wp' ),
1880
 
1881
  // Reference: src/modules/widget/components/settings/exactmetrics-WidgetSettingsCompact.vue:19
@@ -1920,11 +1952,11 @@ $generated_i18n_strings = array(
1920
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:85
1921
  __( 'Skip and Keep Connection', 'google-analytics-dashboard-for-wp' ),
1922
 
1923
- // Reference: src/modules/frontend/components/FrontendInfoboxChange.vue:29
1924
- /* Translators: Replaced with the number of days */
1925
  __( 'vs. Previous Day', 'google-analytics-dashboard-for-wp' ),
1926
 
1927
- // Reference: src/modules/frontend/components/FrontendInfoboxChange.vue:46
1928
  __( 'No change', 'google-analytics-dashboard-for-wp' ),
1929
 
1930
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:119
@@ -2001,7 +2033,6 @@ $generated_i18n_strings = array(
2001
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-dashboard-for-wp' ),
2002
 
2003
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:135
2004
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:137
2005
  __( 'Customize Design', 'google-analytics-dashboard-for-wp' ),
2006
 
2007
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:137
@@ -2139,17 +2170,17 @@ $generated_i18n_strings = array(
2139
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:39
2140
  __( 'Unlock PRO Features Now', 'google-analytics-dashboard-for-wp' ),
2141
 
2142
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:40
2143
  __( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
2144
 
2145
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:41
2146
  __( 'Verify', 'google-analytics-dashboard-for-wp' ),
2147
 
2148
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:43
2149
  /* Translators: Add link to retrieve license from account area. */
2150
  __( 'Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
2151
 
2152
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:73
2153
  __( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
2154
 
2155
  // Reference: src/modules/seo/components/yoast.vue:166
@@ -2230,7 +2261,7 @@ $generated_i18n_strings = array(
2230
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:63
2231
  __( 'Add Custom Dimensions and track who\'s the most popular author on your site, which post types get the most traffic, and more', 'google-analytics-dashboard-for-wp' ),
2232
 
2233
- // Reference: src/modules/reports/components/reports-year-in-review/ReportYearInReviewListBox.vue:42
2234
  __( 'Show', 'google-analytics-dashboard-for-wp' ),
2235
 
2236
  // Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:103
@@ -2294,6 +2325,7 @@ $generated_i18n_strings = array(
2294
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:96
2295
  __( 'Reports', 'google-analytics-dashboard-for-wp' ),
2296
 
 
2297
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:133
2298
  __( 'Automatic Updates', 'google-analytics-dashboard-for-wp' ),
2299
 
@@ -2377,7 +2409,6 @@ $generated_i18n_strings = array(
2377
  __( 'Pretty Links Installed & Activated', 'google-analytics-dashboard-for-wp' ),
2378
 
2379
  // Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:122
2380
- // Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:205
2381
  __( 'Download Pretty Links', 'google-analytics-dashboard-for-wp' ),
2382
 
2383
  // Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:123
@@ -2553,25 +2584,25 @@ $generated_i18n_strings = array(
2553
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:64
2554
  __( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-dashboard-for-wp' ),
2555
 
2556
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:68
2557
  __( 'See The Number of Transactions and Make Data-Driven Decisions', 'google-analytics-dashboard-for-wp' ),
2558
 
2559
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:72
2560
  __( 'See The Total Revenue to Track Growth', 'google-analytics-dashboard-for-wp' ),
2561
 
2562
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:76
2563
  __( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-dashboard-for-wp' ),
2564
 
2565
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:80
2566
  __( 'See Your Top Products to See Individual Performance', 'google-analytics-dashboard-for-wp' ),
2567
 
2568
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:84
2569
  __( 'See your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
2570
 
2571
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:88
2572
  __( 'See The Time it Takes for Customers to Purchase', 'google-analytics-dashboard-for-wp' ),
2573
 
2574
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:92
2575
  __( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
2576
 
2577
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:96
@@ -2786,7 +2817,7 @@ $generated_i18n_strings = array(
2786
  // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:45
2787
  __( 'Better Support', 'google-analytics-dashboard-for-wp' ),
2788
 
2789
- // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:50
2790
  __( 'Continue', 'google-analytics-dashboard-for-wp' ),
2791
 
2792
  // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:48
@@ -2880,7 +2911,6 @@ $generated_i18n_strings = array(
2880
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetCategory-Lite.vue:26
2881
  __( 'Choose from which categories posts will be displayed in the widget. All categories will be used if left empty.', 'google-analytics-dashboard-for-wp' ),
2882
 
2883
- // Reference: src/modules/addons/components/AddonButton.vue:34
2884
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:26
2885
  __( 'Activating...', 'google-analytics-dashboard-for-wp' ),
2886
 
@@ -2929,7 +2959,7 @@ $generated_i18n_strings = array(
2929
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119
2930
  __( 'Close', 'google-analytics-dashboard-for-wp' ),
2931
 
2932
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:31
2933
  __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-dashboard-for-wp' ),
2934
 
2935
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:56
@@ -2942,7 +2972,7 @@ $generated_i18n_strings = array(
2942
  /* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
2943
  __( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-dashboard-for-wp' ),
2944
 
2945
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:33
2946
  __( 'Automated + Curated', 'google-analytics-dashboard-for-wp' ),
2947
 
2948
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:62
@@ -2996,34 +3026,34 @@ $generated_i18n_strings = array(
2996
  // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:92
2997
  __( 'Can\'t load posts.', 'google-analytics-dashboard-for-wp' ),
2998
 
2999
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:128
3000
  __( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-dashboard-for-wp' ),
3001
 
3002
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:129
3003
  __( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-dashboard-for-wp' ),
3004
 
3005
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:130
3006
  __( 'Color', 'google-analytics-dashboard-for-wp' ),
3007
 
3008
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:131
3009
  __( 'Size', 'google-analytics-dashboard-for-wp' ),
3010
 
3011
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:132
3012
  __( 'Title', 'google-analytics-dashboard-for-wp' ),
3013
 
3014
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:133
3015
  __( 'Label', 'google-analytics-dashboard-for-wp' ),
3016
 
3017
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:134
3018
  __( 'Background', 'google-analytics-dashboard-for-wp' ),
3019
 
3020
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:135
3021
  __( 'Border', 'google-analytics-dashboard-for-wp' ),
3022
 
3023
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:136
3024
  __( 'Icon', 'google-analytics-dashboard-for-wp' ),
3025
 
3026
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:127
3027
  __( 'Theme Preview', 'google-analytics-dashboard-for-wp' ),
3028
 
3029
  // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:34
@@ -3106,6 +3136,7 @@ $generated_i18n_strings = array(
3106
  /* Translators: Make text green. */
3107
  __( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-dashboard-for-wp' ),
3108
 
 
3109
  // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPdfReports-Lite.vue:16
3110
  __( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
3111
 
@@ -3199,7 +3230,7 @@ $generated_i18n_strings = array(
3199
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:82
3200
  __( 'There are two ways to manual include the widget in your posts.', 'google-analytics-dashboard-for-wp' ),
3201
 
3202
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:83
3203
  __( 'Using the Gutenberg Block', 'google-analytics-dashboard-for-wp' ),
3204
 
3205
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:84
@@ -3214,22 +3245,22 @@ $generated_i18n_strings = array(
3214
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87
3215
  __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg', 'google-analytics-dashboard-for-wp' ),
3216
 
3217
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:89
3218
  __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-dashboard-for-wp' ),
3219
 
3220
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
3221
  __( '%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”.', 'google-analytics-dashboard-for-wp' ),
3222
 
3223
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:91
3224
  __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-dashboard-for-wp' ),
3225
 
3226
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:93
3227
  __( 'Shortcode', 'google-analytics-dashboard-for-wp' ),
3228
 
3229
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:94
3230
  __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-dashboard-for-wp' ),
3231
 
3232
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:95
3233
  __( 'Copy Shortcode', 'google-analytics-dashboard-for-wp' ),
3234
 
3235
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:96
@@ -3302,7 +3333,7 @@ $generated_i18n_strings = array(
3302
  // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputMedia-Lite.vue:26
3303
  __( 'Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro.', 'google-analytics-dashboard-for-wp' ),
3304
 
3305
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:95
3306
  __( '2021 Year in Review', 'google-analytics-dashboard-for-wp' ),
3307
 
3308
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:100
@@ -3624,13 +3655,13 @@ $generated_i18n_strings = array(
3624
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:52
3625
  __( 'The following plugins will be installed: ', 'google-analytics-dashboard-for-wp' ),
3626
 
3627
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:109
3628
  __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-dashboard-for-wp' ),
3629
 
3630
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:95
3631
  __( 'Manually enter your GA4 Measurement ID', 'google-analytics-dashboard-for-wp' ),
3632
 
3633
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:96
3634
  __( '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-dashboard-for-wp' ),
3635
 
3636
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:107
@@ -3735,11 +3766,11 @@ $generated_i18n_strings = array(
3735
  /* Translators: Error status, error text, Support link tag starts with url and support link tag ends. */
3736
  __( 'Can\'t load settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance. ', 'google-analytics-dashboard-for-wp' ),
3737
 
3738
- // Reference: src/modules/settings/api/index.js:81
3739
- /* Translators: Error status and error text, Support link tag starts with url and support link tag ends. */
3740
  __( 'Can\'t save settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance.', 'google-analytics-dashboard-for-wp' ),
3741
 
3742
- // Reference: src/modules/settings/api/index.js:86
3743
  /* Translators: Support link tag starts with url and support link tag ends. */
3744
  __( '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-dashboard-for-wp' ),
3745
 
10
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:118
11
  __( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
12
 
13
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:130
14
  __( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
15
 
16
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:20
29
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
30
  __( 'Loading new report data', 'google-analytics-dashboard-for-wp' ),
31
 
32
+ // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:296
33
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:143
34
  /* Translators: Adds an arrow icon. */
35
  __( 'Continue %s', 'google-analytics-dashboard-for-wp' ),
36
 
37
+ // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:293
38
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:194
39
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:150
40
  __( 'Error', 'google-analytics-dashboard-for-wp' ),
41
 
42
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:151
43
  __( 'Please try again.', 'google-analytics-dashboard-for-wp' ),
44
 
45
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:181
78
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:202
79
  __( 'See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more.', 'google-analytics-dashboard-for-wp' ),
80
 
81
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:205
82
  __( 'Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time', 'google-analytics-dashboard-for-wp' ),
83
 
84
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:206
90
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:210
91
  __( 'See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking', 'google-analytics-dashboard-for-wp' ),
92
 
93
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:223
94
  __( 'Today', 'google-analytics-dashboard-for-wp' ),
95
 
96
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:229
97
  __( 'Yesterday', 'google-analytics-dashboard-for-wp' ),
98
 
99
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:235
100
  __( 'Last Week', 'google-analytics-dashboard-for-wp' ),
101
 
102
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:241
103
  __( 'Last Month', 'google-analytics-dashboard-for-wp' ),
104
 
105
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:247
106
  __( 'Last 7 days', 'google-analytics-dashboard-for-wp' ),
107
 
108
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:253
109
  __( 'Last 30 days', 'google-analytics-dashboard-for-wp' ),
110
 
111
  // Reference: src/plugins/exactmetrics-wizard-helper-plugin.js:22
122
  // Reference: src/modules/widget/components/WidgetReminder.vue:36
123
  __( 'See the full analytics report!', 'google-analytics-dashboard-for-wp' ),
124
 
 
125
  // Reference: src/modules/widget/widget.vue:26
126
  __( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
127
 
215
  /* Translators: Adds a link and an arrow icon. */
216
  __( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
217
 
218
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:11
219
  __( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
220
 
221
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:12
222
  __( 'per year', 'google-analytics-dashboard-for-wp' ),
223
 
224
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:13
225
  __( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
226
 
227
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:158
228
  __( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
229
 
230
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:33
231
  __( 'This is absolutely, positively, one of the TOP plugins to install on your WP site. There is no better way to quickly gauge traffic for spikes, surges, and consistency. I installed this on over a dozen WordPress installations and counting, thank you for an outstanding app!', 'google-analytics-dashboard-for-wp' ),
232
 
233
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:34
234
  __( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
235
 
236
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:38
237
  __( 'Very simple to configure and the results are very clearly displayed. So much easier for clients to view than in their own analytics account! Delighted with it.', 'google-analytics-dashboard-for-wp' ),
238
 
239
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:39
240
  __( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
241
 
242
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:43
243
  __( 'Love this plugin! It’s got powerful customization options, it’s easy to use, there’s good documentation, and if all that’s not enough, ExactMetrics is quick to provide support. Thanks for this wonderful plugin!', 'google-analytics-dashboard-for-wp' ),
244
 
245
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:44
246
  __( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
247
 
248
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:228
249
  __( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
250
 
251
+ // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputScroll-Lite.vue:22
252
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:67
253
  __( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
254
 
255
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:17
256
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:44
257
  __( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
258
 
259
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:62
260
  __( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
261
 
262
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:19
263
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:48
264
  __( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
265
 
266
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:20
267
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:50
268
  __( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
269
 
270
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:21
271
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:52
272
  __( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
273
 
274
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:24
275
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:45
276
  __( 'EU Compliance Addon', 'google-analytics-dashboard-for-wp' ),
277
 
278
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:25
279
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:47
280
  __( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
281
 
282
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:60
283
  __( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
284
 
285
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:27
286
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:51
287
  __( 'Search Console', 'google-analytics-dashboard-for-wp' ),
288
 
289
+ // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:28
290
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:53
291
  __( 'Custom Date Ranges', 'google-analytics-dashboard-for-wp' ),
292
 
293
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:94
305
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:99
306
  __( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
307
 
308
+ // Reference: src/components/ContentIntroFullWidth.vue:46
309
  __( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
310
 
311
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:154
326
  /* Translators: Placeholder is replaced with WPForms. */
327
  __( 'Recommended Plugin: %s', 'google-analytics-dashboard-for-wp' ),
328
 
329
+ // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:42
330
  __( 'Install', 'google-analytics-dashboard-for-wp' ),
331
 
332
+ // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:38
333
  __( 'Activate', 'google-analytics-dashboard-for-wp' ),
334
 
335
  // Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
336
+ // Reference: src/modules/widget/components/WidgetFooter.vue:22
337
  __( 'Learn More', 'google-analytics-dashboard-for-wp' ),
338
 
339
  // Reference: src/modules/reports/components/ReportReAuth.vue:19
342
  // Reference: src/modules/reports/components/ReportReAuth.vue:20
343
  __( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-dashboard-for-wp' ),
344
 
 
345
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:80
346
  __( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
347
 
348
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:195
349
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:178
350
  __( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
351
 
352
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:196
353
  __( 'Ok', 'google-analytics-dashboard-for-wp' ),
354
 
355
  // Reference: src/modules/addons/components/AddonsNavigation.vue:18
388
  // Reference: src/modules/widget/store/index.js:128
389
  __( 'This list shows the percentage of carts that never went through the checkout process.', 'google-analytics-dashboard-for-wp' ),
390
 
391
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:300
392
  __( 'Top Posts/Pages', 'google-analytics-dashboard-for-wp' ),
393
 
394
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:312
395
  __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-dashboard-for-wp' ),
396
 
397
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:294
398
  __( 'New vs. Returning Visitors', 'google-analytics-dashboard-for-wp' ),
399
 
400
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:308
401
  __( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-dashboard-for-wp' ),
402
 
403
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:295
404
  __( 'Device Breakdown', 'google-analytics-dashboard-for-wp' ),
405
 
406
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:309
407
  __( 'This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site.', 'google-analytics-dashboard-for-wp' ),
408
 
409
  // Reference: src/modules/widget/store/index.js:41
436
  // Reference: src/modules/widget/store/index.js:71
437
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-dashboard-for-wp' ),
438
 
439
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:43
440
  __( 'Overview', 'google-analytics-dashboard-for-wp' ),
441
 
442
  // Reference: src/modules/widget/store/index.js:83
457
  // Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:224
458
  __( 'Analytics', 'google-analytics-dashboard-for-wp' ),
459
 
460
+ // Reference: src/modules/widget/components/settings/exactmetrics-WidgetFullReportButton.vue:18
461
  /* Translators: Adds an arrow icon. */
462
  __( 'View All Reports %s', 'google-analytics-dashboard-for-wp' ),
463
 
498
  // Reference: src/components/TheQuickLinks.vue:78
499
  __( 'Upgrade to Pro &#187;', 'google-analytics-dashboard-for-wp' ),
500
 
501
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:44
502
  __( 'Publishers', 'google-analytics-dashboard-for-wp' ),
503
 
504
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:69
505
+ // Reference: src/modules/settings/routes/site.js:54
506
  __( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
507
 
508
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:57
509
  __( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
510
 
511
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:48
512
  __( 'Forms', 'google-analytics-dashboard-for-wp' ),
513
 
514
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:49
515
  __( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
516
 
517
+ // Reference: src/modules/reports/components/reports/exactmetrics-SiteSpeed-Lite.vue:35
518
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:81
519
  __( 'Site Speed Report', 'google-analytics-dashboard-for-wp' ),
520
 
523
  __( '2020 Year in Review', 'google-analytics-dashboard-for-wp' ),
524
 
525
  // Reference: src/modules/settings/routes/site.js:103
526
+ // Reference: src/modules/tools/components/ToolsNavigation.vue:16
527
  __( 'Import Export', 'google-analytics-dashboard-for-wp' ),
528
 
529
  // Reference: src/modules/settings/routes/site.js:111
530
  __( 'PrettyLinks Integration', 'google-analytics-dashboard-for-wp' ),
531
 
 
532
  // Reference: src/modules/settings/routes/site.js:163
533
  __( 'Inline Popular Posts', 'google-analytics-dashboard-for-wp' ),
534
 
 
535
  // Reference: src/modules/settings/routes/site.js:171
536
  __( 'Popular Posts Widget', 'google-analytics-dashboard-for-wp' ),
537
 
 
538
  // Reference: src/modules/settings/routes/site.js:180
539
  __( 'Popular Products', 'google-analytics-dashboard-for-wp' ),
540
 
544
  // Reference: src/modules/settings/routes/site.js:200
545
  __( 'Sub menu item for WooCommerce Analytics', 'google-analytics-dashboard-for-wp' ),
546
 
547
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:67
548
  // Reference: src/modules/settings/routes/site.js:38
549
  __( 'General', 'google-analytics-dashboard-for-wp' ),
550
 
551
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:68
552
  // Reference: src/modules/settings/routes/site.js:46
553
  __( 'Engagement', 'google-analytics-dashboard-for-wp' ),
554
 
555
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:70
556
  // Reference: src/modules/settings/routes/site.js:62
557
  __( 'Publisher', 'google-analytics-dashboard-for-wp' ),
558
 
559
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:57
560
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:71
561
  // Reference: src/modules/settings/routes/site.js:70
562
  __( 'Conversions', 'google-analytics-dashboard-for-wp' ),
563
 
564
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:72
565
  // Reference: src/modules/settings/routes/site.js:78
566
  __( 'Advanced', 'google-analytics-dashboard-for-wp' ),
567
 
568
  // Reference: src/modules/settings/routes/site.js:95
569
+ // Reference: src/modules/tools/components/ToolsNavigation.vue:17
570
  __( 'URL Builder', 'google-analytics-dashboard-for-wp' ),
571
 
572
  // Reference: src/modules/addons/store/actions.js:33
610
  // Reference: src/modules/reports/store/actions.js:220
611
  __( 'View Addons', 'google-analytics-dashboard-for-wp' ),
612
 
613
+ // Reference: src/modules/notifications/components/Notification.vue:37
614
  __( 'Dismiss', 'google-analytics-dashboard-for-wp' ),
615
 
616
  // Reference: src/modules/reports/store/actions.js:228
654
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:40
655
  __( 'Let\'s get you set up.', 'google-analytics-dashboard-for-wp' ),
656
 
657
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:88
658
  __( 'Save and Continue', 'google-analytics-dashboard-for-wp' ),
659
 
660
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:42
679
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:82
680
  __( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
681
 
682
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:84
683
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:131
684
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:83
685
  __( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
686
 
687
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:85
688
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:132
689
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:84
690
  __( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
691
 
722
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:51
723
  __( 'Continue & Install WPForms', 'google-analytics-dashboard-for-wp' ),
724
 
 
725
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:30
 
726
  __( 'Installing...', 'google-analytics-dashboard-for-wp' ),
727
 
728
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:78
740
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:82
741
  __( 'ExactMetrics uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don\'t have to write any code.', 'google-analytics-dashboard-for-wp' ),
742
 
743
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:83
744
  __( 'Enhanced Link Attribution', 'google-analytics-dashboard-for-wp' ),
745
 
746
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:84
767
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:91
768
  __( 'ExactMetrics will automatically track downloads of common file types from links you have inserted onto your website. For example: want to know how many of your site\'s visitors have downloaded a PDF or other file you offer your visitors to download on your site? ExactMetrics makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel.', 'google-analytics-dashboard-for-wp' ),
769
 
 
770
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:96
771
  /* Translators: Example path (/go/). */
772
  __( 'Path (example: %s)', 'google-analytics-dashboard-for-wp' ),
773
 
 
774
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:98
775
  __( 'Path has to start with a / and have no spaces', 'google-analytics-dashboard-for-wp' ),
776
 
 
777
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:103
778
  /* Translators: Example label (aff). */
779
  __( 'Label (example: %s)', 'google-analytics-dashboard-for-wp' ),
780
 
 
781
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:105
782
  __( 'Label can\'t contain any spaces', 'google-analytics-dashboard-for-wp' ),
783
 
821
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:51
822
  __( 'Site Speed', 'google-analytics-dashboard-for-wp' ),
823
 
824
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:80
825
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:123
826
+ // Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:30
827
  __( 'License Key', 'google-analytics-dashboard-for-wp' ),
828
 
829
  // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:82
830
  /* Translators: Add link to retrieve license key from account. */
831
  __( 'Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
832
 
833
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:83
834
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:127
835
  __( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
836
 
837
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:86
838
  __( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
839
 
840
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:88
841
  __( 'Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes.', 'google-analytics-dashboard-for-wp' ),
842
 
843
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:89
844
  __( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
845
 
846
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:90
847
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:142
848
  __( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
849
 
850
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:92
851
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:144
852
+ /* Translators: Adds link to upgrade. */
853
  __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
854
 
855
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:93
856
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:145
857
  __( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
858
 
859
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:95
860
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:147
861
  __( 'See all features', 'google-analytics-dashboard-for-wp' ),
862
 
863
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:96
864
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:134
865
  __( 'Setup Wizard', 'google-analytics-dashboard-for-wp' ),
866
 
867
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:97
868
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:135
869
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-dashboard-for-wp' ),
870
 
871
+ // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:98
872
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:136
873
  __( 'Relaunch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
874
 
1005
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:79
1006
  __( 'Headline Analyzer', 'google-analytics-dashboard-for-wp' ),
1007
 
1008
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:85
1009
  __( 'Email Summaries', 'google-analytics-dashboard-for-wp' ),
1010
 
1011
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:158
1029
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:171
1030
  __( '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-dashboard-for-wp' ),
1031
 
1032
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:178
1033
  __( 'Not Available', 'google-analytics-dashboard-for-wp' ),
1034
 
1035
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:179
1123
  /* Translators: Error status and error text. */
1124
  __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1125
 
1126
+ // Reference: src/modules/auth/api/index.js:129
1127
  __( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
1128
 
1129
  // Reference: src/modules/auth/api/index.js:232
1255
  // Reference: src/modules/widget/components/WidgetNoticeCompact.vue:15
1256
  __( 'Check out the newly added classic mode', 'google-analytics-dashboard-for-wp' ),
1257
 
1258
+ // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewDatePicker-Lite.vue:52
1259
  /* Translators: Placeholder adds a line break. */
1260
  __( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-dashboard-for-wp' ),
1261
 
1288
  // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:70
1289
  __( 'Remove row', 'google-analytics-dashboard-for-wp' ),
1290
 
1291
+ // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:61
1292
  __( 'Sessions', 'google-analytics-dashboard-for-wp' ),
1293
 
1294
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:105
1295
  /* Translators: Line break. */
1296
  __( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
1297
 
1298
+ // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:62
1299
  __( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
1300
 
1301
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:108
1302
  /* Translators: Line break. */
1303
  __( 'Unique %s Pageviews', 'google-analytics-dashboard-for-wp' ),
1304
 
1305
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:303
1306
  __( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
1307
 
1308
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:304
1309
  __( 'A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview.', 'google-analytics-dashboard-for-wp' ),
1310
 
1311
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:305
1312
  __( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
1313
 
1314
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:112
1315
  __( 'Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further.', 'google-analytics-dashboard-for-wp' ),
1316
 
1317
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:307
1318
  __( 'The number of distinct tracked users', 'google-analytics-dashboard-for-wp' ),
1319
 
1320
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:291
1321
  __( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
1322
 
1323
+ // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:64
1324
  __( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
1325
 
1326
+ // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:65
1327
  __( 'Total Users', 'google-analytics-dashboard-for-wp' ),
1328
 
1329
  // Reference: src/modules/settings/components/input/SettingsInputSelect.vue:68
1362
  /* Translators: add link to blog. */
1363
  __( 'To comply with Google\'s API policies we\'ve had to remove the real time report from the lite version. You can read about this decision and why it was made in %1$sthis blog post%2$s. To access the real time report in the WordPress backend, you will need to upgrade to Pro.', 'google-analytics-dashboard-for-wp' ),
1364
 
1365
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:40
1366
  __( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
1367
 
1368
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:46
1749
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:373
1750
  __( 'Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights', 'google-analytics-dashboard-for-wp' ),
1751
 
1752
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:374
1753
  __( 'Upgrade to ExactMetrics Pro', 'google-analytics-dashboard-for-wp' ),
1754
 
1755
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:377
1845
  __( 'Disconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
1846
 
1847
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:164
1848
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:149
1849
  __( 'Authenticating', 'google-analytics-dashboard-for-wp' ),
1850
 
1851
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:226
1876
  __( 'Active Profile', 'google-analytics-dashboard-for-wp' ),
1877
 
1878
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:93
1879
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:83
1880
  __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-dashboard-for-wp' ),
1881
 
1882
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:94
1883
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:84
1884
  __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-dashboard-for-wp' ),
1885
 
1886
+ // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:95
1887
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:88
1888
  __( 'Dual Tracking Profile', 'google-analytics-dashboard-for-wp' ),
1889
 
1890
+ // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:97
1891
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:90
1892
  __( '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-dashboard-for-wp' ),
1893
 
1894
+ // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:101
1895
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:94
1896
  __( 'Your Universal Analytics code should look like UA-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-dashboard-for-wp' ),
1897
 
1898
+ // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:103
1899
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:96
1900
  __( '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-dashboard-for-wp' ),
1901
 
1902
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:96
1903
  __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-dashboard-for-wp' ),
1904
 
1905
+ // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:108
1906
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:101
1907
  __( 'Measurement Protocol API Secret', 'google-analytics-dashboard-for-wp' ),
1908
 
1909
+ // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:110
1910
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:103
1911
  __( '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-dashboard-for-wp' ),
1912
 
1913
  // Reference: src/modules/widget/components/settings/exactmetrics-WidgetSettingsCompact.vue:19
1952
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:85
1953
  __( 'Skip and Keep Connection', 'google-analytics-dashboard-for-wp' ),
1954
 
1955
+ // Reference: src/modules/reports/components/ReportInfobox.vue:41
1956
+ /* Translators: Number of days. */
1957
  __( 'vs. Previous Day', 'google-analytics-dashboard-for-wp' ),
1958
 
1959
+ // Reference: src/modules/reports/components/ReportInfobox.vue:58
1960
  __( 'No change', 'google-analytics-dashboard-for-wp' ),
1961
 
1962
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:119
2033
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-dashboard-for-wp' ),
2034
 
2035
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:135
 
2036
  __( 'Customize Design', 'google-analytics-dashboard-for-wp' ),
2037
 
2038
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:137
2170
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:39
2171
  __( 'Unlock PRO Features Now', 'google-analytics-dashboard-for-wp' ),
2172
 
2173
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:126
2174
  __( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
2175
 
2176
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:128
2177
  __( 'Verify', 'google-analytics-dashboard-for-wp' ),
2178
 
2179
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:43
2180
  /* Translators: Add link to retrieve license from account area. */
2181
  __( 'Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
2182
 
2183
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:185
2184
  __( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
2185
 
2186
  // Reference: src/modules/seo/components/yoast.vue:166
2261
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:63
2262
  __( 'Add Custom Dimensions and track who\'s the most popular author on your site, which post types get the most traffic, and more', 'google-analytics-dashboard-for-wp' ),
2263
 
2264
+ // Reference: src/modules/reports/components/exactmetrics-ReportsPagination.vue:33
2265
  __( 'Show', 'google-analytics-dashboard-for-wp' ),
2266
 
2267
  // Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:103
2325
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:96
2326
  __( 'Reports', 'google-analytics-dashboard-for-wp' ),
2327
 
2328
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:97
2329
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:133
2330
  __( 'Automatic Updates', 'google-analytics-dashboard-for-wp' ),
2331
 
2409
  __( 'Pretty Links Installed & Activated', 'google-analytics-dashboard-for-wp' ),
2410
 
2411
  // Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:122
 
2412
  __( 'Download Pretty Links', 'google-analytics-dashboard-for-wp' ),
2413
 
2414
  // Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:123
2584
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:64
2585
  __( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-dashboard-for-wp' ),
2586
 
2587
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:48
2588
  __( 'See The Number of Transactions and Make Data-Driven Decisions', 'google-analytics-dashboard-for-wp' ),
2589
 
2590
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:52
2591
  __( 'See The Total Revenue to Track Growth', 'google-analytics-dashboard-for-wp' ),
2592
 
2593
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:56
2594
  __( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-dashboard-for-wp' ),
2595
 
2596
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:60
2597
  __( 'See Your Top Products to See Individual Performance', 'google-analytics-dashboard-for-wp' ),
2598
 
2599
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:84
2600
  __( 'See your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
2601
 
2602
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:68
2603
  __( 'See The Time it Takes for Customers to Purchase', 'google-analytics-dashboard-for-wp' ),
2604
 
2605
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:72
2606
  __( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
2607
 
2608
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:96
2817
  // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:45
2818
  __( 'Better Support', 'google-analytics-dashboard-for-wp' ),
2819
 
2820
+ // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:47
2821
  __( 'Continue', 'google-analytics-dashboard-for-wp' ),
2822
 
2823
  // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:48
2911
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetCategory-Lite.vue:26
2912
  __( 'Choose from which categories posts will be displayed in the widget. All categories will be used if left empty.', 'google-analytics-dashboard-for-wp' ),
2913
 
 
2914
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:26
2915
  __( 'Activating...', 'google-analytics-dashboard-for-wp' ),
2916
 
2959
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119
2960
  __( 'Close', 'google-analytics-dashboard-for-wp' ),
2961
 
2962
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
2963
  __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-dashboard-for-wp' ),
2964
 
2965
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:56
2972
  /* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
2973
  __( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-dashboard-for-wp' ),
2974
 
2975
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:60
2976
  __( 'Automated + Curated', 'google-analytics-dashboard-for-wp' ),
2977
 
2978
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:62
3026
  // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:92
3027
  __( 'Can\'t load posts.', 'google-analytics-dashboard-for-wp' ),
3028
 
3029
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:68
3030
  __( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-dashboard-for-wp' ),
3031
 
3032
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:69
3033
  __( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-dashboard-for-wp' ),
3034
 
3035
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:70
3036
  __( 'Color', 'google-analytics-dashboard-for-wp' ),
3037
 
3038
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:71
3039
  __( 'Size', 'google-analytics-dashboard-for-wp' ),
3040
 
3041
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:72
3042
  __( 'Title', 'google-analytics-dashboard-for-wp' ),
3043
 
3044
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:73
3045
  __( 'Label', 'google-analytics-dashboard-for-wp' ),
3046
 
3047
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:74
3048
  __( 'Background', 'google-analytics-dashboard-for-wp' ),
3049
 
3050
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:75
3051
  __( 'Border', 'google-analytics-dashboard-for-wp' ),
3052
 
3053
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:76
3054
  __( 'Icon', 'google-analytics-dashboard-for-wp' ),
3055
 
3056
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:67
3057
  __( 'Theme Preview', 'google-analytics-dashboard-for-wp' ),
3058
 
3059
  // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:34
3136
  /* Translators: Make text green. */
3137
  __( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-dashboard-for-wp' ),
3138
 
3139
+ // Reference: src/modules/settings/components/SettingsAddonUpgrade.vue:39
3140
  // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPdfReports-Lite.vue:16
3141
  __( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
3142
 
3230
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:82
3231
  __( 'There are two ways to manual include the widget in your posts.', 'google-analytics-dashboard-for-wp' ),
3232
 
3233
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:129
3234
  __( 'Using the Gutenberg Block', 'google-analytics-dashboard-for-wp' ),
3235
 
3236
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:84
3245
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87
3246
  __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg', 'google-analytics-dashboard-for-wp' ),
3247
 
3248
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:137
3249
  __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-dashboard-for-wp' ),
3250
 
3251
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
3252
  __( '%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”.', 'google-analytics-dashboard-for-wp' ),
3253
 
3254
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:139
3255
  __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-dashboard-for-wp' ),
3256
 
3257
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:93
3258
  __( 'Shortcode', 'google-analytics-dashboard-for-wp' ),
3259
 
3260
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:147
3261
  __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-dashboard-for-wp' ),
3262
 
3263
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:148
3264
  __( 'Copy Shortcode', 'google-analytics-dashboard-for-wp' ),
3265
 
3266
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:96
3333
  // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputMedia-Lite.vue:26
3334
  __( 'Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro.', 'google-analytics-dashboard-for-wp' ),
3335
 
3336
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:50
3337
  __( '2021 Year in Review', 'google-analytics-dashboard-for-wp' ),
3338
 
3339
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:100
3655
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:52
3656
  __( 'The following plugins will be installed: ', 'google-analytics-dashboard-for-wp' ),
3657
 
3658
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:100
3659
  __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-dashboard-for-wp' ),
3660
 
3661
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:86
3662
  __( 'Manually enter your GA4 Measurement ID', 'google-analytics-dashboard-for-wp' ),
3663
 
3664
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:87
3665
  __( '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-dashboard-for-wp' ),
3666
 
3667
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:107
3766
  /* Translators: Error status, error text, Support link tag starts with url and support link tag ends. */
3767
  __( 'Can\'t load settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance. ', 'google-analytics-dashboard-for-wp' ),
3768
 
3769
+ // Reference: src/modules/popular-posts/api/index.js:44
3770
+ /* Translators: Error status, error text, Support link tag starts with url and support link tag ends. */
3771
  __( 'Can\'t save settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance.', 'google-analytics-dashboard-for-wp' ),
3772
 
3773
+ // Reference: src/modules/popular-posts/api/index.js:49
3774
  /* Translators: Support link tag starts with url and support link tag ends. */
3775
  __( '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-dashboard-for-wp' ),
3776
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.wpbeginner.com/wpbeginner-needs-your-help/
4
  Tags: analytics,google analytics,google analytics dashboard,google analytics plugin,google analytics widget,gtag
5
  Requires at least: 4.8.0
6
  Tested up to: 6.0
7
- Stable tag: 7.8.0
8
  Requires PHP: 5.6
9
  License: GPL v3
10
 
@@ -178,6 +178,9 @@ You can translate Google Analytics Dashboard for WP by ExactMetrics on [translat
178
  4. Want more features? <a href="https://www.exactmetrics.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Purchase ExactMetrics Pro</a>!
179
 
180
  == Changelog ==
 
 
 
181
  = 7.8.0: Aug 22, 2022 =
182
  - New: We added UserJourney for Easy Digital Downloads, MemberPress, LifterLMS, Restrict Content Pro, and GiveWP.
183
  - Enhancement: We enhanced the PageInsights addon to better support query strings
@@ -188,9 +191,9 @@ You can translate Google Analytics Dashboard for WP by ExactMetrics on [translat
188
  - Enhancement: We updated some of our error messages to provide better direction.
189
  - Enhancement: We optimized the code for PHP 8.1.
190
  - Enhancement: We optimized our onboarding wizard to include all GA properties.
191
- - Fixed: We fixed non zero data in eCommerce reports.
192
- - Fixed: We fixed the purchase events for LifterLMS.
193
- - Fixed: We updated the report URL for all downloads button inside the WordPress dashboard.
194
 
195
  = 7.7.0: Jul 11, 2022 =
196
  - Fix: We fixed the logged-in sessions data in our dimensions report.
@@ -216,54 +219,54 @@ Fix: We fixed an error reported by users using older versions of PHP.
216
  - New: We launched a new User Journey addon to easily see which pages and for how long each customer visited before making a purchase from your WooCommerce store.
217
  - Enhancement: We enhanced Page Insights to show stats right in the WordPress sidebar while editing public post types.
218
  - Enhancement: We enhanced our Headline Analyzer tool.
219
- - Fixed: We fixed the URL query string parameters in reports.
220
- - Fixed: We fixed anchor tag targets to enhance user experience.
221
- - Fixed: We restricted excluding page tracking only for public post_types.
222
- - Fixed: We fixed console errors reported by a few customers on the admin homepage.
223
 
224
  = 7.5.0: March 31, 2022 =
225
  - Tweak: We enhanced and optimized the backend styles.
226
- - Fixed: We fixed a few PHP warnings when no add-ons are installed.
227
- - Fixed: We optimized the filters to add dynamic attributes in all frontend script tags.
228
 
229
  = 7.4.0: February 28, 2022 =
230
- - Fixed: We fixed the plugin requirements for Forms Addons version 2.2.1+
231
- - Fixed: We optimized the popular posts widgets display in edit screens
232
- - Fixed: We fixed console errors for users who have CookieYes enabled
233
- - Fixed: We fixed custom dimensions for all single post types.
234
 
235
 
236
  = 7.3.4: February 10, 2022 =
237
- - Fixed: Resolved a PHP Notice message some users received after upgrading to 7.3.3
238
 
239
  = 7.3.3: February 09, 2022 =
240
- - Fixed: We fixed the PDF reports format.
241
  - Tweak: We optimized the Ajax requests for notifications.
242
 
243
  = 7.3.2: January 25, 2022 =
244
- - Fixed: We fixed the fatal error that occurred due to a generic class name conflict.
245
- - Fixed: Fixed errors some users were having with our Exclude from Tracking feature.
246
 
247
  = 7.3.1: January 24, 2022 =
248
  - New: With our new Exclude from Tracking Feature admins can now exclude any page or post from tracking.
249
- - Fixed: We fixed the local gtag.js where it didn’t work with only the GAv4 connection.
250
- - Fixed: We fixed the messages in the plugin settings based on the Media Addon activation status.
251
  - Tweak: We categorized and enhanced the plugin notifications.
252
- - Fixed: We fixed Javascript errors when the CookieBot plugin is active and the Forms addon is not.
253
- - Fixed: We fixed UTM parameters in tracking links.
254
- - Fixed: We remove the type attribute from the script tag if the current theme supports html5.
255
- - Fixed: We fixed GA4 eCommerce missing events.
256
- - Fixed: We fixed the incorrect numbers for Year In Review average page views.
257
- - Fixed: We fixed the integration with Enfold theme Ajax forms where conversions were not being tracked.
258
- - Fixed: We fixed the backward compatibility for AffiliateWP versions below 2.7.
259
 
260
  = 7.3.0: December 14, 2021 =
261
  - New: From January 1 to 14, 2022, a limited time only Year In Review report will appear in the Reports section to reflect on your site's analytics in 2021 and offer insights and suggestions for improvement.
262
  - New In Pro: We've released a new integration with AffiliateWP to make it super simple to see how your affiliates are impacting your eCommerce stores.
263
  - New In Pro: We've released our ExactMetrics Media addon which makes it easy to track YouTube, Vimeo and media-library-uploaded videos.
264
  - Tweak: We've ensured all links to our documentation will open in a new tab to make them easier to use.
265
- - Fixed: An issue with the headline analyzer has been fixed that could have caused it to unpin in Gutenberg when another plugin's item was unpinned.
266
- - Fixed: A bug that caused the bounce rate box to sometimes show twice on the GAv3 dashboard widget has been fixed.
267
 
268
  = 7.2.0: November 3, 2021 =
269
  - New In Pro: 7 day traffic Email Summaries
4
  Tags: analytics,google analytics,google analytics dashboard,google analytics plugin,google analytics widget,gtag
5
  Requires at least: 4.8.0
6
  Tested up to: 6.0
7
+ Stable tag: 7.8.1
8
  Requires PHP: 5.6
9
  License: GPL v3
10
 
178
  4. Want more features? <a href="https://www.exactmetrics.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Purchase ExactMetrics Pro</a>!
179
 
180
  == Changelog ==
181
+ = 7.8.1: Aug 24, 2022 =
182
+ - Fix: Updated eCommerce session tracking for GA4 properties.
183
+
184
  = 7.8.0: Aug 22, 2022 =
185
  - New: We added UserJourney for Easy Digital Downloads, MemberPress, LifterLMS, Restrict Content Pro, and GiveWP.
186
  - Enhancement: We enhanced the PageInsights addon to better support query strings
191
  - Enhancement: We updated some of our error messages to provide better direction.
192
  - Enhancement: We optimized the code for PHP 8.1.
193
  - Enhancement: We optimized our onboarding wizard to include all GA properties.
194
+ - Fix: We fixed non zero data in eCommerce reports.
195
+ - Fix: We fixed the purchase events for LifterLMS.
196
+ - Fix: We updated the report URL for all downloads button inside the WordPress dashboard.
197
 
198
  = 7.7.0: Jul 11, 2022 =
199
  - Fix: We fixed the logged-in sessions data in our dimensions report.
219
  - New: We launched a new User Journey addon to easily see which pages and for how long each customer visited before making a purchase from your WooCommerce store.
220
  - Enhancement: We enhanced Page Insights to show stats right in the WordPress sidebar while editing public post types.
221
  - Enhancement: We enhanced our Headline Analyzer tool.
222
+ - Fix: We fixed the URL query string parameters in reports.
223
+ - Fix: We fixed anchor tag targets to enhance user experience.
224
+ - Fix: We restricted excluding page tracking only for public post_types.
225
+ - Fix: We fixed console errors reported by a few customers on the admin homepage.
226
 
227
  = 7.5.0: March 31, 2022 =
228
  - Tweak: We enhanced and optimized the backend styles.
229
+ - Fix: We fixed a few PHP warnings when no add-ons are installed.
230
+ - Fix: We optimized the filters to add dynamic attributes in all frontend script tags.
231
 
232
  = 7.4.0: February 28, 2022 =
233
+ - Fix: We fixed the plugin requirements for Forms Addons version 2.2.1+
234
+ - Fix: We optimized the popular posts widgets display in edit screens
235
+ - Fix: We fixed console errors for users who have CookieYes enabled
236
+ - Fix: We fixed custom dimensions for all single post types.
237
 
238
 
239
  = 7.3.4: February 10, 2022 =
240
+ - Fix: Resolved a PHP Notice message some users received after upgrading to 7.3.3
241
 
242
  = 7.3.3: February 09, 2022 =
243
+ - Fix: We fixed the PDF reports format.
244
  - Tweak: We optimized the Ajax requests for notifications.
245
 
246
  = 7.3.2: January 25, 2022 =
247
+ - Fix: We fixed the fatal error that occurred due to a generic class name conflict.
248
+ - Fix: Fixed errors some users were having with our Exclude from Tracking feature.
249
 
250
  = 7.3.1: January 24, 2022 =
251
  - New: With our new Exclude from Tracking Feature admins can now exclude any page or post from tracking.
252
+ - Fix: We fixed the local gtag.js where it didn’t work with only the GAv4 connection.
253
+ - Fix: We fixed the messages in the plugin settings based on the Media Addon activation status.
254
  - Tweak: We categorized and enhanced the plugin notifications.
255
+ - Fix: We fixed Javascript errors when the CookieBot plugin is active and the Forms addon is not.
256
+ - Fix: We fixed UTM parameters in tracking links.
257
+ - Fix: We remove the type attribute from the script tag if the current theme supports html5.
258
+ - Fix: We fixed GA4 eCommerce missing events.
259
+ - Fix: We fixed the incorrect numbers for Year In Review average page views.
260
+ - Fix: We fixed the integration with Enfold theme Ajax forms where conversions were not being tracked.
261
+ - Fix: We fixed the backward compatibility for AffiliateWP versions below 2.7.
262
 
263
  = 7.3.0: December 14, 2021 =
264
  - New: From January 1 to 14, 2022, a limited time only Year In Review report will appear in the Reports section to reflect on your site's analytics in 2021 and offer insights and suggestions for improvement.
265
  - New In Pro: We've released a new integration with AffiliateWP to make it super simple to see how your affiliates are impacting your eCommerce stores.
266
  - New In Pro: We've released our ExactMetrics Media addon which makes it easy to track YouTube, Vimeo and media-library-uploaded videos.
267
  - Tweak: We've ensured all links to our documentation will open in a new tab to make them easier to use.
268
+ - Fix: An issue with the headline analyzer has been fixed that could have caused it to unpin in Gutenberg when another plugin's item was unpinned.
269
+ - Fix: A bug that caused the bounce rate box to sometimes show twice on the GAv3 dashboard widget has been fixed.
270
 
271
  = 7.2.0: November 3, 2021 =
272
  - New In Pro: 7 day traffic Email Summaries