1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
|
<?php /* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */ $generated_i18n_strings = array( // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:96 __( '1', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:97 __( '2', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:13 __( 'Loading settings', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:71 // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:227 // Reference: src/modules/widget/components/WidgetReportError.vue:25 // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:124 __( 'Error', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-frontend-helper-plugin.js:14 __( 'Please try again.', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129 __( 'Loading new report data', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:55 __( 'Please wait...', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:143 /* Translators: Adds an arrow icon. */ __( 'Continue %s', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:181 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:236 __( 'Unlock the Publishers Report and Focus on the Content that Matters', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:182 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:237 __( 'Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:185 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:248 __( 'Unlock the Publishers Report and Focus on the Content That Matters', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:186 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:249 __( 'Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions.', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:189 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:260 __( 'Unlock the eCommerce Report and See Your Important Store Metrics', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:190 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:261 __( 'Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more.', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:193 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:274 __( 'Unlock the Dimensions Report and Track Your Own Custom Data', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:194 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:275 __( 'Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what\'s working right inside your WordPress dashboard.', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:197 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:285 __( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:198 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:286 __( 'Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data.', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:201 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:294 __( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:202 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:295 __( 'See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more.', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:205 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:304 __( 'Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:206 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:305 __( 'Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it.', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:188 __( 'Refreshing Report', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:189 __( 'Loading new report data...', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:251 __( 'See Your Top Landing Pages to Improve Enagement', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:252 __( 'See Your Top Exit Pages to Reduce Abandonment', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:253 __( 'See Your Top Outbound Links to Find New Revenue Opportunities', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:254 __( 'See Your Top Affiliate Links and Focus on what\'s working', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:255 __( 'See Your Top Downloads and Improve Conversions', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:256 __( 'See Audience Demographic Report ( Age / Gender / Interests )', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:263 __( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:264 __( 'See The Number of Transactions and Make Data-Driven Decisions', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:265 __( 'See The Total Revenue to Track Growth', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:266 __( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:267 __( 'See Your Top Products to See Individual Performance', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:268 __( 'See Your Top Conversion Sources and Focus on what\'s working', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:269 __( 'See The Time it takes for Customers to Purchase', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:270 __( 'See How Many Sessions are needed for a Purchase', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:277 __( 'See Which Authors Generate the Most Traffic', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:278 __( 'See Which Post Types Perform Better', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:279 __( 'See Which Categories are the Most Popular', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:280 __( 'See Your Blog\'s most popular SEO Scores', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:281 __( 'See Which Focus Keyword is Performing Better in Search Engines', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:288 __( 'See Reports for Any Contact Form Plugin or Sign-up Form', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:289 __( 'See Your Top Converting Forms and Optimize', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:290 __( 'See Your Forms Impressions Count to Find the Best Placement', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:297 __( 'See Your Top Google Search Terms and Optimize Content', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:298 __( 'See The Number of Clicks and Track Interests', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:299 __( 'See The Click-Through-Ratio and Improve SEO', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:300 __( 'See The Average Results Position and Focus on what works', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:307 __( 'See Your Active Visitors and Track Their Behaviour to Optimize', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:308 __( 'See Your Top Pages Immediately After Making Changes', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:309 __( 'See Your Top Referral Sources and Adapt Faster', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:310 __( 'See Your Traffic Demographics and ', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:311 __( 'Get Fresh Reports Data Every 60 Seconds', 'google-analytics-for-wordpress' ),
// Reference: src/modules/frontend/monsterinsights-frontend.vue:36 __( 'Insights', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/routes/index.js:25 // Reference: src/modules/widget/store/index.js:14 __( 'Overview Report', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:125 __( 'Welcome to MonsterInsights', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:126 __( 'Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:127 __( 'MonsterInsights makes it “effortless” to setup Google Analytics in WordPress, the RIGHT Way. You can watch the video tutorial or use our 3 minute setup wizard.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:128 __( 'Launch the Wizard!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:129 __( 'Read the Full Guide', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:130 __( 'MonsterInsights Features & Addons', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:131 __( 'Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:132 __( 'See All Features', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/monsterinsights-ReportsPdfExport-Lite.vue:48 // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:133 __( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:134 __( 'per year', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:135 __( 'Upgrade Now', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:136 __( 'Testimonials', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:140 __( 'Universal Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:141 __( 'Setup universal website tracking across devices and campaigns with just a few clicks (without any code).', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:145 __( 'Google Analytics Dashboard', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:146 __( 'See your website analytics report right inside your WordPress dashboard with actionable insights.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:150 __( 'Real-time Stats', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:151 __( 'Get real-time stats right inside WordPress to see who is online, what are they doing, and more.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:155 __( 'Enhanced Ecommerce Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:156 __( '1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:160 __( 'Page Level Analytics', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:161 __( 'Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:165 __( 'Affiliate Link & Ads Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:166 __( 'Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:170 __( 'EU Compliance (GDPR Friendly)', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:171 __( 'Make Google Analytics compliant with GDPR and other privacy regulations automatically.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:176 __( 'Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:181 __( 'Ecommerce Report', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:182 __( 'Form Conversions', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:183 __( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:184 __( 'Author Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:185 __( 'Google Optimize', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:186 __( 'Category / Tags Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:187 __( 'WooCommerce', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:188 __( 'Easy Digital Downloads', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:189 __( 'MemberPress', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:190 __( 'LifterLMS', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-compatibility-plugin.js:27 /* Translators: Current WordPress version. */ __( 'MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-compatibility-plugin.js:39 __( 'Yikes! PHP Update Required', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-compatibility-plugin.js:13 /* Translators: Current PHP version and recommended PHP version. */ __( 'MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure.', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-compatibility-plugin.js:45 __( 'Learn more about updating PHP', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-compatibility-plugin.js:53 __( 'Yikes! WordPress Update Required', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-compatibility-plugin.js:55 /* Translators: Current WordPress version. */ __( 'MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.9 in October, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-compatibility-plugin.js:59 __( 'Learn more about updating WordPress', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/WidgetReminder.vue:33 /* Translators: Number of visitors. */ __( 'See how %s visitors found your site!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/WidgetReminder.vue:35 /* Translators: Number of visitors. */ __( 'Your website was visited by %s users in the last 30 days.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/WidgetReminder.vue:36 __( 'See the full analytics report!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/monsterinsights-site.vue:80 __( 'Congratulations! ', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/monsterinsights-site.vue:81 __( 'You Successfully Unlocked the most powerful Analytics plugin', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/api/index.js:21 /* Translators: Error status and error text. */ __( 'Can\'t load report data. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/api/index.js:28 __( 'Error loading report data', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/WidgetFooter.vue:19 /* Translators: Placeholder is replaced with WPForms. */ __( 'Recommended Plugin: %s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/components/AddonButton.vue:51 // Reference: src/modules/widget/components/WidgetFooter.vue:20 __( 'Install', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/components/AddonButton.vue:47 // Reference: src/modules/widget/components/WidgetFooter.vue:21 __( 'Activate', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/WidgetFooter.vue:22 __( 'Learn More', 'google-analytics-for-wordpress' ),
// Reference: src/components/TheQuickLinks.vue:31 __( 'See Quick Links', 'google-analytics-for-wordpress' ),
// Reference: src/components/TheQuickLinks.vue:58 __( 'Suggest a Feature', 'google-analytics-for-wordpress' ),
// Reference: src/components/TheQuickLinks.vue:64 __( 'Join Our Community', 'google-analytics-for-wordpress' ),
// Reference: src/components/TheQuickLinks.vue:70 __( 'Support & Docs', 'google-analytics-for-wordpress' ),
// Reference: src/components/TheQuickLinks.vue:78 __( 'Upgrade to Pro »', 'google-analytics-for-wordpress' ),
// Reference: src/modules/frontend/components/FrontendNoAuth.vue:24 __( 'Please Setup Website Analytics to See Audience Insights', 'google-analytics-for-wordpress' ),
// Reference: src/modules/frontend/components/FrontendNoAuth.vue:25 __( 'MonsterInsights, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 2 million website owners use MonsterInsights to see the stats that matter and grow their business.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/frontend/components/FrontendNoAuth.vue:26 __( 'Connect MonsterInsights and Setup Website Analytics', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/ReportReAuth.vue:19 __( 'MonsterInsights encountered an error loading your report data', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/ReportReAuth.vue:20 __( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:69 // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:47 __( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:143 // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:108 __( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:229 // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:126 __( 'Ok', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/monsterinsights-WidgetSettings-Lite.vue:19 /* Translators: Number of days in interval. */ __( 'Last %s days', 'google-analytics-for-wordpress' ),
// Reference: src/modules/frontend/components/FrontendPoweredBy.vue:12 __( 'Powered by MonsterInsights', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/routes/index.js:33 __( 'Publishers Report', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportEcommerce-Lite.vue:23 // Reference: src/modules/reports/routes/index.js:41 __( 'eCommerce Report', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportSearchConsole-Lite.vue:26 // Reference: src/modules/reports/routes/index.js:49 __( 'Search Console Report', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/routes/index.js:57 __( 'Dimensions Report', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/routes/index.js:65 __( 'Forms Report', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/routes/index.js:73 __( 'Real-Time Report', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:48 // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:263 // Reference: src/modules/reports/routes/index.js:85 __( '2019 Year in Review', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/routes/site.js:122 __( 'About Us', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/routes/site.js:130 __( 'Getting Started', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:52 // Reference: src/modules/settings/routes/site.js:139 __( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/routes/site.js:35 __( 'General', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/routes/site.js:43 __( 'Engagement', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportEcommerce-Lite.vue:22 __( 'eCommerce', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/routes/site.js:59 __( 'Publisher', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/routes/site.js:67 __( 'Conversions', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/routes/site.js:75 __( 'Advanced', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/ToolsNavigation.vue:15 __( 'URL Builder', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/ToolsNavigation.vue:14 __( 'Import Export', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24 __( 'Exit Setup', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:102 __( 'Time to Purchase', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:103 __( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:109 __( 'Sessions to Purchase', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:110 __( 'This list shows the number of sessions it took users before they purchased a product from your website.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:20 __( 'Top Posts/Pages', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:21 __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:27 __( 'New vs. Returning Visitors', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:28 __( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:34 __( 'Device Breakdown', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:35 __( 'This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:41 __( 'Top Landing Pages', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:42 __( 'This list shows the top pages users first land on when visiting your website.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:48 __( 'Top Exit Pages', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:49 __( 'This list shows the top pages users exit your website from.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:55 __( 'Top Outbound Links', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:56 __( 'This list shows the top links clicked on your website that go to another website.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:62 __( 'Top Affiliate Links', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:63 __( 'This list shows the top affiliate links your visitors clicked on.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:69 __( 'Top Download Links', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:70 __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:76 __( 'Overview', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:82 __( 'Top Products', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:83 __( 'This list shows the top selling products on your website.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:89 __( 'Top Conversion Sources', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:90 __( 'This list shows the top referral websites in terms of product revenue.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/store/index.js:96 __( 'Total Add/Remove', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/ReportNoAuth.vue:25 __( 'You must connect with MonsterInsights before you can view reports.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/ReportNoAuth.vue:26 __( 'MonsterInsights makes it "effortless" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:98 __( 'Launch Setup Wizard', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/ReportNoAuth.vue:28 __( 'Please ask your webmaster to connect MonsterInsights to Google Analytics.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportPublishers-Lite.vue:25 __( 'Publishers', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:46 __( 'Search Console', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportDimensions-Lite.vue:22 __( 'Dimensions', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:48 __( 'Forms', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:49 __( 'Real-Time', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/store/actions.js:33 /* Translators: Adds a link to documentation. */ __( 'In order for the MonsterInsights Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/store/actions.js:36 /* Translators: Adds link to activate/install plugin and documentation. */ __( 'In order for the MonsterInsights Google AMP addon to work properly, you need to install the WordPress AMP plugin by Automattic. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/store/actions.js:51 /* Translators: Adds a link to documentation. */ __( 'In order for the MonsterInsights Instant Articles addon to work properly, please ask your webmaster to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$sLearn More%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/store/actions.js:54 /* Translators: Adds link to activate/install plugin and documentation. */ __( 'In order for the MonsterInsights Instant Articles addon to work properly, you need to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/license/store/actions.js:61 /* Translators: Adds a link to the license renewal. */ __( 'Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/license/store/actions.js:71 __( 'Your license key for MonsterInsights has been disabled. Please use a different key.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/license/store/actions.js:81 __( 'Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/components/AddonsNavigation.vue:18 __( 'MonsterInsights Addons', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/components/AddonsNavigation.vue:19 __( 'Search Addons', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/SettingsButtonSave.vue:46 __( 'Save Changes', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:40 __( 'View Reports', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:42 __( 'Congratulations!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:44 /* Translators: Add link to YouTube video and Onboarding Wizard. */ __( 'MonsterInsights makes it easy to connect your website with Google Analytics and see all important website stats right inside your WordPress dashboard. In order to setup website analytics, please take a look at our %1$sGetting started video%2$s or use our %3$s to get you quickly set up.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:44 /* Translators: Add link to YouTube video and Onboarding Wizard. */ __( 'Onboarding Wizard', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:45 __( 'You are now connected with MonsterInsights. We make it effortless for you to implement Google Analytics tracking and see the stats that matter, right inside the WordPress dashboard.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/store/actions.js:132 __( 'Installing Addon', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/store/actions.js:155 __( 'Activating Addon', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/store/actions.js:170 __( 'Addon Activated', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/store/actions.js:171 __( 'Loading report data', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/store/actions.js:188 __( 'Please activate manually', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/store/actions.js:191 /* Translators: Adds the error status and status text. */ __( 'Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/store/actions.js:197 __( 'Error Activating Addon', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/store/actions.js:203 __( 'View Addons', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/store/actions.js:204 __( 'Dismiss', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/store/actions.js:211 __( 'Redirecting', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/store/actions.js:212 __( 'Please wait', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119 __( 'activate', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119 __( 'install', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:127 __( 'Visit addons page', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/store/actions.js:64 __( 'Report Unavailable', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/store/actions.js:71 /* Translators: Install/Activate the addon. */ __( '%s Addon', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40 __( 'Show in widget mode', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40 __( 'Show in full-width mode', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:68 __( 'Show Overview Reports', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:69 __( 'Show Publishers Reports', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:70 __( 'Show eCommerce Reports', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:72 __( 'Available in PRO version', 'google-analytics-for-wordpress' ),
// Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:28 __( 'Last 30 Days Insights for:', 'google-analytics-for-wordpress' ),
// Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:29 __( 'Your Website', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:62 __( 'Sessions', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:65 __( 'Pageviews', 'google-analytics-for-wordpress' ),
// Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:32 __( 'Avg. Duration', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:73 __( 'Bounce Rate', 'google-analytics-for-wordpress' ),
// Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:42 __( 'More data is available', 'google-analytics-for-wordpress' ),
// Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:44 __( 'Want to see page-specific stats?', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/WidgetReportsLink.vue:17 __( 'See All Reports', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/WidgetReportsLink.vue:18 __( 'Go to the Analytics Dashboard', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:91 __( 'License Key', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:47 /* Translators: Add link to retrieve license key from account. */ __( 'Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:92 __( 'Google Authentication', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:93 __( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:94 __( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:51 __( 'Miscellaneous', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:53 __( 'Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:54 __( 'Hide Announcements', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/monsterinsights-addons-Lite.vue:40 __( 'There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/monsterinsights-addons-Lite.vue:41 __( 'No addons found.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/monsterinsights-addons-Lite.vue:42 __( 'Refresh Addons', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/monsterinsights-addons-Lite.vue:65 __( 'Refreshing Addons', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/monsterinsights-addons-Lite.vue:76 /* Translators: Make text green. */ __( 'Upgrade to Pro to unlock addons and other great features. As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:31 __( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:78 /* Translators: placeholders make text small. */ __( 'Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:83 /* Translators: placeholders make text small. */ __( 'Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:88 /* Translators: placeholders make text small. */ __( 'None %1$s- Manually update everything.%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:95 __( 'Automatic Updates', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:96 __( 'Setup Wizard', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:97 __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:64 /* Translators: Line break. */ __( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:67 /* Translators: Line break. */ __( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:68 __( 'A session is the browsing session of a single user to your site.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:69 __( 'A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:70 __( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:71 __( 'Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/reports/monsterinsights-WidgetReportOverview-Lite.vue:72 __( 'Avg. Session Duration', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:276 __( 'Demographics', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:60 __( 'Enable Demographics and Interests Reports for Remarketing and Advertising', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:61 __( 'Anonymize IP Addresses', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:62 __( 'Link Attribution', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:63 __( 'Enable Enhanced Link Attribution', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:64 __( 'Enable Anchor Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:65 __( 'Enable allowAnchor', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:66 __( 'Enable allowLinker', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:67 __( 'Enable Tag Links in RSS', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:68 __( 'File Downloads', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:69 __( 'Extensions of Files to Track as Downloads', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:70 __( 'MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:72 /* Translators: Add links to the documentation. */ __( 'Enable this setting to add the Demographics and Remarketing features to your Google Analytics tracking code. Make sure to enable Demographics and Remarketing in your Google Analytics account. We have a guide for how to do that in our %1$sknowledge base%2$s. For more information about Remarketing, we refer you to %3$sGoogle\'s documentation%4$s. Note that usage of this function is affected by privacy and cookie laws around the world. Be sure to follow the laws that affect your target audience.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:74 /* Translators: Adds a link to the documentation. */ __( 'This adds %1$sanonymizeIp%2$s, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:76 /* Translators: Adds a link to the documentation. */ __( 'Add %1$sEnhanced Link Attribution%2$s to your tracking code.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:77 __( 'Many WordPress "1-page" style themes rely on anchor tags for navigation to show virtual pages. The problem is that to Google Analytics, these are all just a single page, and it makes it hard to get meaningful statistics about pages viewed. This feature allows proper tracking in those themes.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:79 /* Translators: Adds a link to the documentation. */ __( 'This adds %1$sallowAnchor%2$s to the create command of the pageview hit tracking code, and makes RSS link tagging use a # as well.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:81 /* Translators: Adds a link to the documentation. */ __( 'Enabling %1$scross-domain tracking (additional setup required)%2$s allows you to track users across multiple properties you own (such as example-1.com and example-2.com as a single session. It also allows you fix an issue so that when a user has to go to an off-site hosted payment gateway to finish a purchase it doesn\'t count it as referral traffic from that gateway but maintains the visit as part of the same session.) It is required that the other site includes a Google Analytics tracker with the same UA Code.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:83 /* Translators: Adds a link to the documentation. */ __( 'Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check this %1$shelp page%2$s for info on how to enable this feature in FeedBurner.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:84 __( 'Add domain', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:89 /* Translators: Example domain. */ __( 'Domain (example: %s)', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:92 /* Translators: Current site domain to be avoided. */ __( 'Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s ).', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:96 __( 'Cross Domain Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:98 /* Translators: Adds a link to the documentation. */ __( 'Cross domain tracking makes it possible for Analytics to see sessions on two related sites as a single session. More info on specific setup steps can be found in our %1$sknowledge base%2$s.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:52 __( 'Right Now', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:53 __( 'Active users on site', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:54 __( 'The real-time graph of visitors over time is not currently available for this site. Please try again later.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:55 __( 'Important: this only includes users who are tracked in real-time. Not all users are tracked in real-time including (but not limited to) logged-in site administrators, certain mobile users, and users who match a Google Analytics filter.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:56 __( 'The real-time report automatically updates approximately every 60 seconds.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:58 /* Translators: Number of seconds that have passed since the report was refreshed. */ __( 'The real-time report was last updated %s seconds ago.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:59 __( 'The latest data will be automatically shown on this page when it becomes available.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:60 __( 'There is no need to refresh the browser (doing so won\'t have any effect).', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:61 __( 'Pageviews Per Minute', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:64 __( 'Top Pages', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:65 __( 'No pageviews currently.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:67 __( 'Page', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:68 __( 'Pageview Count', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:69 __( 'Percent of Total', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:72 __( 'This is the number of active users currently on your site.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:73 __( 'This graph shows the number of pageviews for each of the last 30 minutes.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:74 __( 'This list shows the top pages users are currently viewing on your site.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:75 __( 'View All Real-Time Pageviews', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:76 __( 'View All Real-Time Traffic Sources', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:77 __( 'View All Real-Time Traffic by Country', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:78 __( 'View All Real-Time Traffic by City', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:30 __( 'See All Your Important Store Metrics in One Place', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:31 __( 'Get an Answer to All Your Top Ecommerce Questions From a Single Report', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:32 __( 'ONE-CLICK INTEGRATIONS', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:34 __( 'Enable Ecommerce Tracking and Grow Your Business with Confidence', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:35 __( 'MonsterInsights Ecommerce Addon makes it easy to setup enhanced eCommerce tracking, so you can see all your important eCommerce metrics like total revenue, conversion rate, average order value, top products, top referral sources, and more in a single report right inside your WordPress dashboard.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:104 __( 'GDPR Guide', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:105 __( 'Compliance with European data laws including GDPR can be confusing and time-consuming. In order to help MonsterInsights users comply with these laws, we’ve created an addon that automates a lot of the necessary configuration changes for you. ', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:110 __( 'How to Install and Activate MonsterInsights Addons', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:111 __( 'The process for installing and activating addons is quick and easy after you install the MonsterInsights plugin. In this guide we’ll walk you through the process, step by step.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:116 __( 'Enabling eCommerce Tracking and Reports', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:117 __( 'Want to track your eCommerce sales data for your WooCommerce, MemberPress, or Easy Digital Downloads store with MonsterInsights? In this guide, we’ll show you how to enable eCommerce tracking in Google Analytics in just a few clicks.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:121 __( 'Read Documentation', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:64 __( 'Getting Started with MonsterInsights', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:65 __( 'MonsterInsights is the easiest analytics solution on the market to get started with, as we walk you through exactly what you need to do, in plain english, using our 3 minute setup wizard.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:66 __( 'To begin with, we’ll get your site authorized with Google Analytics, so we can start tracking and generating reports for you right away.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:67 __( 'In no time at all, and after just a few clicks, you\'ll have setup the most powerful Google Analytics tracking available for WordPress. It\'s easy to double your traffic and sales when you know exactly how people find and use your website. Let\'s get started!.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:68 __( 'Launch the wizard!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:69 __( 'Get MonsterInsights Pro and Unlock all the Powerful Features', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:71 /* Translators: Makes text bold. */ __( 'Thanks for being a loyal MonsterInsights Lite user. %1$sUpgrade to MonsterInsights Pro%2$s to unlock all the awesome features and experience why MonsterInsights is consistently rated the best Google Analytics solution for WordPress.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:73 __( 'Universal Tracking across devices and campaigns with just a few clicks.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:74 __( 'See your website analytics reports inside the WordPress dashboard', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:75 __( 'Get real-time stats right inside WordPress', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:76 __( '1-click Google Analytics Enhanced eCommerce tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:77 __( 'Get detailed stats for each post and page.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:80 __( 'Automatically track clicks on your affiliate links and ads.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:81 __( 'Make Google Analytics GDPR compliant automatically', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:82 __( 'Setup tracking for authors, categories, tags, custom post types, users and more', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:83 __( 'Enable Google Optimize for A/B testing, adjust sample speed & sample rate.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:84 __( 'More advanced features', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:86 __( 'Get MonsterInsights Pro Today and Unlock all the Powerful Features', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:88 /* Translators: Makes text green. */ __( 'Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:92 __( 'How to Connect to Google Analytics', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:93 __( 'After you install MonsterInsights, you’ll need to connect your WordPress site with your Google Analytics account. MonsterInsights makes the process easy, with no coding required.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:98 __( 'Guide and Checklist for Advanced Insights', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabGettingStarted.vue:99 __( 'Our goal is to make it as easy as possible for you to measure and track your stats so you can grow your business. This easy-to-follow guide and checklist will get you set up with MonsterInsights’ advanced tracking.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:162 /* Translators: Adds a link to the general settings tab. */ __( 'It looks like you added a Google Analytics tracking code in the custom code area, this can potentially prevent proper tracking. If you want to use a manual UA please use the setting in the %1$sGeneral%2$s tab.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:66 __( 'Permissions', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:67 __( 'Allow These User Roles to See Reports', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:68 __( 'Users that have at least one of these roles will be able to view the reports.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:88 __( 'Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:70 __( 'Allow These User Roles to Save Settings', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:71 __( 'Users that have at least one of these roles will be able to view and save the settings panel.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:72 __( 'Users that have at least one of these roles will be able to view and save the settings panel, along with any user with the manage_options capability.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:73 __( 'Exclude These User Roles From Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:75 __( 'Users that have at least one of these roles will not be tracked into Google Analytics.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:76 __( 'Performance', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:77 __( 'Custom code', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:79 /* Translators: Adds a link to the Google reference. */ __( 'Not for the average user: this allows you to add a line of code, to be added before the %1$spageview is sent%2$s.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:80 __( 'Reports', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:82 __( 'You must have the "unfiltered_html" capability to view/edit this setting.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:83 __( 'Hide Admin Bar Reports', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:88 /* Translators: placeholders make text small. */ __( 'Enabled %1$s- Show reports and dashboard widget.%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:93 /* Translators: placeholders make text small. */ __( 'Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:98 /* Translators: placeholders make text small. */ __( 'Disabled %1$s- Hide reports and dashboard widget.%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:149 __( 'New', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:150 __( 'Returning', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:510 __( 'Desktop', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:511 __( 'Tablet', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:512 __( 'Mobile', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:249 __( 'Top 10 Countries', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:250 __( 'View Countries Report', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:251 __( 'Top 10 Referrals', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:252 __( 'View All Referral Sources', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:254 __( 'View Full Posts/Pages Report', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:259 __( 'Percentage of single-page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:262 __( 'This list shows the top countries your website visitors are from.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:263 __( 'This list shows the top websites that send your website traffic, known as referral traffic.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:71 /* Translators: Example path (/go/). */ __( 'Path (example: %s)', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:73 __( 'Path has to start with a / and have no spaces', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:78 /* Translators: Example label (aff). */ __( 'Label (example: %s)', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:80 __( 'Label can\'t contain any spaces', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:25 // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:62 __( 'Affiliate Links', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:64 /* Translators: Add links to documentation. */ __( 'This allows you to track custom affiliate links. A path of /go/ would match urls that start with that. The label is appended onto the end of the string "outbound-link-", to provide unique labels for these links in Google Analytics. Complete documentation on affiliate links is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:65 __( 'Our affiliate link tracking works by setting path for internal links to track as outbound links.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:259 __( 'Still Calculating...', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:260 __( 'Your 2019 Year in Review is still calculating. Please check back later to see how your website performed last year.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:261 __( 'Back to Overview Report', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:262 __( 'Your 2019 Analytics Report', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:264 __( 'See how your website performed this year and find tips along the way to help grow even more in 2020!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:265 __( 'Audience', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:266 __( 'Congrats', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:267 __( 'Your website was quite popular this year! ', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:268 __( 'You had ', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:269 __( ' visitors!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:270 __( ' visitors', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:271 __( 'Total Visitors', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:272 __( 'Total Sessions', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:273 __( 'Visitors by Month', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:274 __( 'January 1, 2019 - December 31, 2019', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:275 __( 'A Tip for 2020', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:276 __( 'See the top Traffic Sources and Top Pages for the Month of May in the Overview Report to replicate your success.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:277 __( '#1', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:278 __( 'You Top 5 Countries', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:279 __( 'Let’s get to know your visitors a little better, shall we?', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:280 __( 'Gender', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:281 __( 'Female', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:282 __( 'Women', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:283 __( 'Male', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:284 __( 'Average Age', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:285 __( 'Behavior', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:286 __( 'Your Top 5 Pages', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:288 __( 'Time Spent on Site', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:289 __( 'minutes', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:290 __( 'Device Type', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:292 __( 'A Tip For 2020', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:292 __( 'Take advantage of what you’ve already built. See how to get more traffic from existing content in our 32 Marketing Hacks to Grow Your Traffic.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:293 __( 'Read - 32 Marketing Hacks to Grow Your Traffic', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:295 __( 'So, where did all of these visitors come from?', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:296 __( 'Clicks', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:297 __( 'Your Top 5 Keywords', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:298 __( 'What keywords visitors searched for to find your site', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:299 __( 'Your Top 5 Referrals', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:301 __( 'The websites that link back to your website', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:302 __( 'Opportunity', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:303 __( 'Use referral sources to create new partnerships or expand existing ones. See our guide on how to spy on your competitors and ethically steal their traffic.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:304 __( 'Read - How to Ethically Steal Your Competitor’s Traffic', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:306 __( 'Thank you for using MonsterInsights!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:307 __( '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.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:307 __( 'Here\'s to an amazing 2020!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:309 __( 'Enjoying MonsterInsights', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:310 __( 'Leave a five star review!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:311 __( 'Syed Balkhi', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:312 __( 'Chris Christoff', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:313 __( 'Write Review', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:314 __( 'Did you know over 10 million websites use our plugins?', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:314 __( 'Try our other popular WordPress plugins to grow your website in 2020.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:316 __( 'Join our Communities!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:316 __( 'Become a WordPress expert in 2020. Join our amazing communities and take your website to the next level.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:318 __( 'Facebook Group', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:319 __( 'Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:320 __( 'Join Now...It’s Free!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:321 __( 'WordPress Tutorials by WPBeginner', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:322 __( 'WPBeginner is the largest free WordPress resource site for beginners and non-techy users.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:323 __( 'Visit WPBeginner', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:324 __( 'Follow Us!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:325 __( 'Follow MonsterInsights on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:325 __( 'Copyright MonsterInsights, 2020', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:327 __( 'Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:331 __( 'January', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:332 __( 'February', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:333 __( 'March', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:334 __( 'April', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:335 __( 'May', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:336 __( 'June', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:337 __( 'July', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:338 __( 'August', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:339 __( 'September', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:340 __( 'October', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:341 __( 'November', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:342 __( 'December', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:370 /* Translators: Number of visitors. */ __( 'Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:392 /* Translators: Number of visitors. */ __( 'Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:399 /* Translators: Number of visitors. */ __( '%s Visitors', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:414 /* Translators: Percent and Number of visitors. */ __( '%1$s% of your visitors were %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:421 /* Translators: Number of visitors and their age. */ __( '%1$s% of your visitors were between the ages of %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:434 /* Translators: Number of visitors and number of pages. */ __( '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>', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:454 /* Translators: Number of minutes spent on site. */ __( 'Each visitor spent an average of %s minutes on your website in 2019.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:481 /* Translators: Name of device type. */ __( 'Most of your visitors viewed your website from their <strong>%s</strong> device.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:485 /* Translators: Number of visitors and device percentage. */ __( '%1$s% of your visitors were on a %2$s device.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:42 __( 'Import/Export', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:43 __( 'Import', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/ToolsTabImportExport.vue:49 __( 'Import settings from another ExactMetrics website.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:45 __( 'Export', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/ToolsTabImportExport.vue:51 __( 'Export settings to import into another ExactMetrics install.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:47 __( 'Import Settings', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:48 __( 'Export Settings', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:49 __( 'Please choose a file to import', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:50 __( 'Use the filepicker below to select the settings export file from another site.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:51 __( 'Use the button below to export a file with your MonsterInsights settings.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:64 __( 'Uploading file...', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:79 __( 'File imported', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:80 __( 'Settings successfully updated!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:86 __( 'Error importing settings', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:87 __( 'Please choose a .json file generated by a MonsterInsights settings export.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:100 __( 'WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:103 __( 'WordPress Admin Area Reports', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:106 __( 'Standard Reports', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:107 __( 'Overview Reports for the last 30 days.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:108 __( 'Advanced Reports', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:109 __( 'Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:112 __( 'Dashboard Widget', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:115 __( 'Basic Widget', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:116 __( 'Overview Report Synopsis', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:117 __( 'Advanced Dashboard Widget', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:118 __( 'Includes the complete Overview report, Publisher reports and 6 different eCommerce reports', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:136 __( 'Publisher Reports', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:140 __( 'Advanced Publisher Reports & Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:141 __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:156 __( 'Not Available', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:157 __( 'Complete Custom Dimensions Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:134 __( 'Track and measure by the Author, Post Type, Category, Tags, SEO Score, Focus Keyword, Logged-in User, User ID and Published Time of each post and page', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:161 __( 'Support', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:164 __( 'Limited Support', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:165 __( 'Priority Support', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:53 __( 'Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:54 __( 'Feature', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:55 __( 'Lite', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:56 __( 'Pro', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:130 __( 'Included', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:69 __( 'Custom Google Analytics Link Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:72 __( 'Standard Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:73 __( 'Advanced Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:74 __( 'Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:75 __( 'Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:78 __( 'No-Code-Needed Tracking Features', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:81 __( 'Basic Tracking Options', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:82 __( 'Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:83 __( 'Advanced Tracking Options', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:84 __( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:87 __( 'eCommerce Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:91 __( 'One-click Complete eCommerce tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:92 __( 'Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:95 __( 'Forms Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:99 __( 'One-click Form Events Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:162 __( 'Custom Campaign Parameters', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:163 __( 'The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:164 __( 'A custom campaign is any ad campaign not using the AdWords auto-tagging feature. When users click one of the custom links, the unique parameters are sent to your Analytics account, so you can identify the URLs that are the most effective in attracting users to your content.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:166 /* Translators: Marks the field as required. */ __( 'Website URL %s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:168 /* Translators: Display the current website url in italic. */ __( 'The full website URL (e.g. %1$s %2$s%3$s)', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:170 /* Translators: Marks the field as required. */ __( 'Campaign Source %s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:172 /* Translators: Make the text italic. */ __( 'Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:175 /* Translators: Make the text italic. */ __( 'Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:178 /* Translators: Make the text italic. */ __( 'Enter a name to easily identify (e.g. %1$sspring_sale%2$s)', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:180 __( 'Enter the paid keyword', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:182 __( 'Enter something to differentiate ads', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:183 __( 'Use Fragment', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:185 /* Translators: Make the text bold. */ __( 'Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:186 __( 'URL to use', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:187 __( '(Updates automatically)', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:188 __( 'Copy to Clipboard', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:193 __( 'More Information & Examples', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:194 __( 'The following table gives a detailed explanation and example of each of the campaign parameters.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:202 __( 'Campaign Source', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:203 __( 'Required. Use utm_source to identify a search engine, newsletter name, or other source.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:204 __( 'Campaign Medium', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:205 __( 'Use utm_medium to identify a medium such as email or cost-per-click.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:206 __( 'Campaign Name', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:207 __( 'Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:208 __( 'Campaign Term', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:209 __( 'Used for paid search. Use utm_term to note the keywords for this ad.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:210 __( 'Campaign Content', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:211 __( 'Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:213 /* Translators: Example. */ __( 'Example: %s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:215 /* Translators: Examples. */ __( 'Examples: %s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:218 __( 'About Campaigns', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:222 __( 'About Custom Campaigns', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:226 __( 'Best Practices for Creating Custom Campaigns', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:230 __( 'About the Referral Traffic Report', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:234 __( 'About Traffic Source Dimensions', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:238 __( 'AdWords Auto-Tagging', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:242 __( 'Additional Information', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:31 __( 'Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visit, so you can analyze and optimize it for higher conversions.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:32 __( 'Over the years, we found that in order to get the most out of Google Analytics, you needed a full time developer who could implement custom tracking, so that Google Analytics would integrate with things like WooCommerce, and track things which Google doesn\'t by default, like outbound links.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:33 __( 'Our goal is to take the pain out of analytics, making it simple and easy, by eliminating the need to have to worry about code, putting the best reports directly into the area you already go to (your WordPress dashboard), and adding the most advanced insights and features without complicating our plugin with tons of settings. Quite simply, it should "just work".', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:34 __( 'MonsterInsights is brought to you by the same team that\'s behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, and the best WordPress forms plugin, WPForms.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:35 __( 'Yup, we know a thing or two about building awesome products that customers love.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:36 __( 'The MonsterInsights Team', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:32 __( 'See who\'s viewing and submitting your forms, so you can increase your conversion rate.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:34 __( 'Use Google Optimize to retarget your website visitors and perform A/B split tests with ease.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:36 __( '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-for-wordpress' ),
// Reference: src/plugins/monsterinsights-settings-helper-plugin.js:111 __( 'Loading Settings', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-settings-helper-plugin.js:19 __( 'Saving Changes...', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-settings-helper-plugin.js:48 __( 'Settings Updated', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-settings-helper-plugin.js:6 /* Translators: Adds a link to the settings panel. */ __( 'You need to %1$sconnect MonsterInsights%2$s first', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-settings-helper-plugin.js:82 __( 'Could Not Save Changes', 'google-analytics-for-wordpress' ),
// Reference: src/modules/auth/api/index.js:119 /* Translators: Error status and error text. */ __( 'Can\'t deauthenticate. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/license/api/index.js:149 // Reference: src/modules/settings/api/index.js:23 __( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/api/index.js:73 /* Translators: Error status and error text. */ __( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/auth/api/index.js:150 __( 'You appear to be offline. Settings not saved.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/auth/api/index.js:17 /* Translators: Error status and error text. */ __( 'Can\'t load authentication details. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/auth/api/index.js:42 /* Translators: Error status and error text. */ __( 'Can\'t authenticate. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/auth/api/index.js:67 /* Translators: Error status and error text. */ __( 'Can\'t reauthenticate. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/auth/api/index.js:90 /* Translators: Error status and error text. */ __( 'Can\'t verify credentials. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/api/index.js:103 __( 'You appear to be offline. WPForms not installed.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/api/index.js:132 /* Translators: Error status and error text. */ __( 'Can\'t activate addon. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/api/index.js:136 __( 'You appear to be offline. Addon not activated.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/api/index.js:165 /* Translators: Error status and error text. */ __( 'Can\'t deactivate addon. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/api/index.js:169 __( 'You appear to be offline. Addon not deactivated.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/api/index.js:199 /* Translators: Error status and error text. */ __( 'Can\'t install plugin. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/api/index.js:203 __( 'You appear to be offline. Plugin not installed.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/api/index.js:64 /* Translators: Error status and error text. */ __( 'Can\'t install addon. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/api/index.js:68 __( 'You appear to be offline. Addon not installed.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/api/index.js:99 /* Translators: Error status and error text. */ __( 'Can\'t install WPForms. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/license/api/index.js:118 /* Translators: Error status and error text. */ __( 'Can\'t deactivate the license. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/license/api/index.js:145 /* Translators: Error status and error text. */ __( 'Can\'t upgrade to PRO please try again. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/license/api/index.js:18 /* Translators: Error status and error text. */ __( 'Can\'t load license details. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/license/api/index.js:24 __( 'Error loading license details', 'google-analytics-for-wordpress' ),
// Reference: src/modules/license/api/index.js:57 /* Translators: Error status and error text. */ __( 'Can\'t verify the license. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/license/api/index.js:82 /* Translators: Error status and error text. */ __( 'Can\'t validate the license. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:40 __( 'MonsterInsights Recommends WPForms', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:41 __( 'Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:42 __( 'Used on over 1,000,000 websites!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:43 __( 'WPForms allow you to create beautiful contact forms, subscription forms, payment forms, and other types of forms for your site in minutes, not hours!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:44 __( 'Skip this Step', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45 __( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/components/AddonButton.vue:39 // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:46 __( 'Installing...', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:31 __( 'Awesome, You\'re All Set!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:32 __( 'MonsterInsights is all set up and ready to use. We\'ve verified that the tracking code is deployed properly and collecting data.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:34 /* Translators: Make text bold. */ __( '%1$sPlease Note:%2$s While Google Analytics is properly setup and tracking everything, it does not send the data back to WordPress immediately. Depending on the size of your website, it can take between a few hours to 24 hours for reports to populate.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:36 /* Translators: Link to our blog. */ __( '%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:37 __( 'Finish Setup & Exit Wizard', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:50 __( 'Checking your website...', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:45 __( 'Recommended Addons', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:46 __( 'To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:47 __( 'Other Addons', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:48 __( 'View all MonsterInsights addons', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:89 __( 'Save and continue', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:48 __( 'Connect MonsterInsights to Your Website', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:49 __( 'MonsterInsights connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:52 __( 'Whoops, something went wrong and we weren\'t able to connect to MonsterInsights. Please enter your Google UA code manually.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:74 __( 'Manually enter your UA code', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:75 __( 'Warning: If you use a manual UA code, you won\'t be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:55 __( 'Save and Continue', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:81 __( 'UA code can\'t be empty', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:93 __( 'Saving UA code...', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:14 __( 'Hide dashboard widget', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:31 __( 'Are you sure you want to hide the MonsterInsights Dashboard Widget? ', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:33 __( 'Yes, hide it!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:34 __( 'No, cancel!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:40 __( 'MonsterInsights Widget Hidden', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:41 __( 'You can re-enable the MonsterInsights widget at any time using the "Screen Options" menu on the top right of this page', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:53 __( 'Recommended Settings', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:54 __( 'MonsterInsights recommends the following settings based on your configuration.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:55 __( 'Events Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:56 __( 'Must have for all click tracking on site.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:57 __( 'MonsterInsights uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don\'t have to write any code.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:58 __( 'Enhanced Link Attribution', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:59 __( 'Improves the accuracy of your In-Page Analytics.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:60 __( 'MonsterInsights will automatically help Google determine which links are unique and where they are on your site so that your In-Page Analytics reporting will be more accurate.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:61 __( 'Install Updates Automatically', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:62 __( 'Get the latest features, bug fixes, and security updates as they are released.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:63 __( 'To ensure you get the latest bugfixes and security updates and avoid needing to spend time logging into your WordPress site to update MonsterInsights, we offer the ability to automatically have MonsterInsights update itself.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:64 __( 'File Download Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:65 __( 'Helps you see file downloads data.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:66 __( 'MonsterInsights will automatically track downloads of common file types from links you have inserted onto your website. For example: want to know how many of your site\'s visitors have downloaded a PDF or other file you offer your visitors to download on your site? MonsterInsights makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:83 __( 'Helps you increase affiliate revenue.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:84 __( 'MonsterInsights will automatically help you track affiliate links that use internal looking urls like example.com/go/ or example.com/refer/. You can add custom affiliate patterns on our settings panel when you finish the onboarding wizard.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:85 __( 'Affiliate Link Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:86 __( 'Who Can See Reports', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:87 __( 'These user roles will be able to access MonsterInsights\'s reports in the WordPress admin area.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:91 __( 'Events Tracking is enabled the moment you set up MonsterInsights', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:92 __( 'Enhanced Link Attribution is enabled the moment you set up MonsterInsights', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/components/AddonButton.vue:31 __( 'Activating...', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/components/AddonButton.vue:35 __( 'Deactivating...', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/components/AddonButton.vue:43 __( 'Deactivate', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:43 /* Translators: The status of the addon (installed/active/inactive). */ __( 'Status: %s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:81 __( 'Not Installed', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:87 __( 'Network Active', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:87 __( 'Active', 'google-analytics-for-wordpress' ),
// Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:89 __( 'Inactive', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:19 __( 'Thank you for being a loyal MonsterInsights Lite user.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:20 __( 'Upgrade to MonsterInsights Pro and unlock all the awesome features.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:22 /* Translators: Gets replaced with the coupon code. */ __( 'Use coupon code %s to get 50%% off.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:24 __( 'Dashboard widget', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:27 __( 'Enhanced Ecommerce', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:28 __( 'Banner Ads', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:31 // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAmp-Lite.vue:22 __( 'Google AMP', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:32 __( 'SEO Score Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:32 __( 'Welcome to MonsterInsights!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:33 __( 'Let\'s get you set up.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:35 __( 'Which category best describes your website?', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:36 __( 'We will recommend the optimal settings for MonsterInsights based on your choice.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:40 __( 'Business Website', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:45 /* Translators: Make text bold. */ __( 'Publisher %1$s(Blog)%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:49 __( 'Ecommerce', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/WidgetTips.vue:19 __( 'Forms Tracking help you see who’s viewing your forms, so you can increase conversions.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/WidgetTips.vue:24 __( 'Custom Dimensions show you popular categories, best time to publish, focus keywords, etc.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/WidgetTips.vue:29 __( 'Make Google Analytics GDPR compliant with our EU Compliance addon.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/WidgetTips.vue:34 __( 'Get real-time Google Analytics report right inside your WordPress dashboard.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/WidgetTips.vue:39 __( 'Use Google Optimize to easily perform A/B split tests on your site.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/WidgetTips.vue:44 __( 'See all your important store metrics in one place with Enhanced Ecommerce Tracking.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/WidgetTips.vue:49 __( 'Unlock search console report to see your top performing keywords in Google.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/WidgetTips.vue:54 __( 'Get Page Insights to see important metrics for individual posts / pages in WordPress.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/WidgetTips.vue:59 __( 'Publishers Report shows your top performing pages, audience demographics, and more.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/WidgetTips.vue:64 __( 'Get Scroll-Depth tracking to see how far users scroll on your pages before leaving.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/WidgetTips.vue:69 __( 'Upgrade to Pro »', 'google-analytics-for-wordpress' ),
// Reference: src/modules/widget/components/WidgetTips.vue:70 __( 'Pro Tip:', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/SettingsInputNumber.vue:56 __( 'Reset to default', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/SettingsInputText.vue:47 __( 'The value entered does not match the required format', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/SettingsAddonUpgrade.vue:37 __( 'Upgrade', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:27 __( 'The EU Compliance addon allows you to improve compliance with GDPR and other privacy regulations.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:28 __( 'EU Compliance', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-engagement/SettingsInputScroll-Lite.vue:18 __( 'Scroll Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-engagement/SettingsInputScroll-Lite.vue:19 __( 'Scroll depth tracking allows you to see how far your users scroll before they leave a page. This is great for publishers (bloggers), and eCommerce websites to boost conversions.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/api/index.js:18 /* Translators: Error status and error text. */ __( 'Can\'t load errors. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:26 __( 'Upgrade to MonsterInsights Pro to Unlock More Actionable Insights', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:27 __( 'It\'s easy to double your traffic and sales when you know exactly how people find and use your website. MonsterInsights Pro shows you the stats that matter!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:28 __( 'Upgrade to MonsterInsights Pro and Save 50% OFF!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:30 /* Translators: Makes text bold. */ __( 'Use coupon code %1$sLITEUPGRADE%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAds-Lite.vue:22 __( 'Ads Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAds-Lite.vue:23 __( 'Add Ads tracking to see who\'s clicking on your Google Ads, so you can increase your revenue.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAmp-Lite.vue:23 __( 'Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputFbia-Lite.vue:22 __( 'Facebook Instant Articles', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputFbia-Lite.vue:23 __( 'Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/api/index.js:19 /* Translators: Error status and error text. */ __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/api/index.js:77 __( 'Network error encountered. Settings not saved.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:21 /* Translators: Make text green. */ __( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:27 __( 'Usage Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:28 __( 'Allow Usage Tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:29 __( 'By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:31 /* Translators: Add links to documentation. */ __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:41 __( 'Allow usage tracking', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/network/SettingsInputLicenseNetwork-Lite.vue:21 /* Translators: Make text bold. */ __( 'You\'re using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:32 /* Translators: Add link to upgrade. */ __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:34 /* Translators: Make text green. */ __( 'As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:30 /* Translators: Make text green and add smiley face. */ __( 'You\'re using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:35 __( 'Unlock PRO Features Now', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:36 __( 'Paste your license key here', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:37 __( 'Verify', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:39 /* Translators: Add link to retrieve license from account area. */ __( 'Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:69 __( 'There was an error unlocking MonsterInsights PRO please try again or install manually.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/ReportInfobox.vue:39 /* Translators: Number of days. */ __( 'vs. Previous Day', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/ReportInfobox.vue:56 __( 'No change', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:116 // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:79 __( 'Authenticating', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:170 __( 'Verifying Credentials', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:185 __( 'Your site is connected to MonsterInsights!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:203 __( 'Deauthenticating', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:221 __( 'You\'ve disconnected your site from MonsterInsights. Your site is no longer being tracked by Google Analytics and you won\'t see reports anymore.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:67 // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:46 __( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:68 __( 'Verify Credentials', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:70 __( 'Website Profile', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:71 __( 'Active Profile', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:72 // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:50 __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:73 // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:51 __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:76 __( 'Or manually enter UA code (limited functionality)', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:85 __( 'Force Deauthenticate', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:85 __( 'Disconnect MonsterInsights', 'google-analytics-for-wordpress' ),
// Reference: src/components/TheAppFTPForm.vue:100 __( 'Proceed', 'google-analytics-for-wordpress' ),
// Reference: src/components/TheAppFTPForm.vue:92 __( 'Connection Information', 'google-analytics-for-wordpress' ),
// Reference: src/components/TheAppFTPForm.vue:93 __( 'To perform the requested action, WordPress needs to access your web server. Please enter your FTP credentials to proceed. If you do not remember your credentials, you should contact your web host.', 'google-analytics-for-wordpress' ),
// Reference: src/components/TheAppFTPForm.vue:94 __( 'Hostname', 'google-analytics-for-wordpress' ),
// Reference: src/components/TheAppFTPForm.vue:95 __( 'FTP Username', 'google-analytics-for-wordpress' ),
// Reference: src/components/TheAppFTPForm.vue:96 __( 'FTP Password', 'google-analytics-for-wordpress' ),
// Reference: src/components/TheAppFTPForm.vue:97 __( 'This password will not be stored on the server.', 'google-analytics-for-wordpress' ),
// Reference: src/components/TheAppFTPForm.vue:98 __( 'Connection Type', 'google-analytics-for-wordpress' ),
// Reference: src/components/TheAppFTPForm.vue:99 __( 'Cancel', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/ReportTableBox.vue:65 __( 'Show', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/SettingsInputSelect.vue:62 __( 'No options available', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputPerformance-Lite.vue:18 __( 'Adjust the sample rate so you don\'t exceed Google Analytics\' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:171 /* Translators: The name of the field that is throwing a validation error. */ __( '%s can\'t be empty.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:192 __( 'Duplicate values are not allowed.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:63 __( 'Add Another Link Path', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:64 __( 'Remove row', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/OnboardingAddon-Lite.vue:27 __( 'Upgrade to Pro', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:17 __( 'Help Us Improve', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:18 __( 'Help us better understand our users and their website needs.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:20 /* Translators: Adds a link to the documentation. */ __( 'If enabled MonsterInsights will send some information about your WordPress site like what plugins and themes you use and which MonsterInsights settings you use to us so that we can improve our product. For a complete list of what we send and what we use it for, %1$svisit our website.%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingLicense-Lite.vue:29 /* Translators: Makes text bold. */ __( 'You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingLicense-Lite.vue:31 /* Translators: Makes text green. */ __( 'As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingLicense-Lite.vue:32 __( 'Unlock All Features and Upgrade to Pro', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:48 __( 'Website profile', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:49 __( 'Active profile', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:52 __( 'Skip and Keep Connection', 'google-analytics-for-wordpress' ),
// Reference: src/components/TheFloatingBar-Lite.vue:29 /* Translators: Placeholders are used for making text bold and adding a link. */ __( 'You\'re using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s.', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:223 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:335 __( 'Today', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:67 __( 'Yesterday', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:235 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:347 __( 'Last Week', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:241 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:353 __( 'Last Month', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:247 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:359 __( 'Last 7 days', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:253 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:365 __( 'Last 30 days', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:209 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:315 __( 'Unlock the Site Speed Report and Improve the Performance of Your Site', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:210 // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:316 __( 'See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:318 __( 'See Your Homepage\'s Overall Performance Score', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:319 __( 'Run an Audit on Your Homepage and See Your Server Response Time', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:320 __( 'Learn How Long It Takes for Your Viewers to Interact With Your Site', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:321 __( 'Learn How to Improve the Core Metrics that Google Uses to Rank Your Site', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-compatibility-plugin.js:27 /* Translators: Current WordPress version. */ __( 'MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.9 in 2020. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-compatibility-plugin.js:41 /* Translators: Current PHP version and recommended PHP version. */ __( 'MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure.', 'google-analytics-for-wordpress' ),
// Reference: src/plugins/monsterinsights-compatibility-plugin.js:55 /* Translators: Current WordPress version. */ __( 'MonsterInsights has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/routes/site.js:108 __( 'PrettyLinks Integration', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:22 // Reference: src/modules/settings/routes/site.js:154 __( 'Inline Popular Posts', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:23 // Reference: src/modules/settings/routes/site.js:162 __( 'Popular Posts Widget', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:24 // Reference: src/modules/settings/routes/site.js:171 __( 'Popular Products', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/routes/site.js:180 __( 'Settings', 'google-analytics-for-wordpress' ),
// Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:75 __( 'Inbox', 'google-analytics-for-wordpress' ),
// Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:76 __( 'Back to Inbox', 'google-analytics-for-wordpress' ),
// Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:77 __( 'View Dismissed', 'google-analytics-for-wordpress' ),
// Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:78 __( 'Notifications', 'google-analytics-for-wordpress' ),
// Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:79 __( 'Dismiss All', 'google-analytics-for-wordpress' ),
// Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:80 __( 'Dismissed', 'google-analytics-for-wordpress' ),
// Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:81 __( 'No Notifications', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:121 __( 'Headline Analyzer', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:68 __( 'The MonsterInsights Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:69 __( 'Disable the Headline Analyzer', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:45 __( 'Caching', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:46 __( 'Enable Data Caching', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:47 __( 'Refresh Cache Every', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:48 __( 'Choose how often to refresh the cache.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:49 __( 'Enable Ajaxify', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:50 __( 'Ajaxify Widget', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:51 __( 'Use to bypass page caching.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:52 __( 'Empty Cache', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:54 __( 'Click to manually wipe the cache right now.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:88 __( 'Popular posts cache emptied', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:92 __( 'Error emptying the popular posts cache. Please try again.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:44 __( 'Import settings from another MonsterInsights website.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:46 __( 'Export settings to import into another MonsterInsights install.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:83 __( 'Make your MonsterInsights campaign links prettier with Pretty Links!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:84 __( 'Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:85 __( 'Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:86 __( 'Over 200,000 websites use Pretty Links!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:87 __( 'Install Pretty Links', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:88 __( 'Pretty Links Installed & Activated', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:192 __( 'Download Pretty Links', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:90 __( 'Install Pretty Links from the WordPress.org plugin repository.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:91 __( 'Activate Pretty Links', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:92 __( 'Activating Pretty Links...', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:93 __( 'Create New Pretty Link', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:94 __( 'Create a New Pretty Link', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:95 __( 'Grab your campaign link and paste it into the Target URL field.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:105 __( 'Choose Theme', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:107 __( 'Widget Styling', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:108 __( 'Choose how you want to determine the colors, font sizes and spacing of the widget.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:109 __( 'Sort By', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:110 __( 'Choose how you\'d like the widget to determine your popular posts.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:111 __( 'Placement', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:112 __( 'Choose how you\'d like to place the widget.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:113 __( 'Insert After', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:114 __( 'Choose where in the post body the widget will be placed.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:115 __( 'Include in Post Types', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:116 __( 'Exclude from specific posts', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:118 /* Translators: Placeholders make the text bold. */ __( 'Choose which Post Types the widget %1$sWILL%2$s be placed.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:120 /* Translators: Placeholders make the text bold. */ __( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:121 // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:136 __( 'Customize Design', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:122 __( 'Loading Themes', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123 __( 'words', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:124 __( 'Please select at least one post to display.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:129 /* Translators: placeholders make text small. */ __( 'Default Styles %1$s- As seen above.%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:134 /* Translators: placeholders make text small. */ __( 'No Styles %1$s- Use your own CSS.%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:141 /* Translators: placeholders make text small. */ __( 'Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:146 /* Translators: placeholders make text small. */ __( 'SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:151 /* Translators: placeholders make text small. */ __( 'Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:158 /* Translators: placeholders make text small. */ __( 'Automatic %1$s- The widget is automatically placed inside the post body.%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsInline.vue:163 /* Translators: placeholders make text small. */ __( 'Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:106 __( 'Display Title', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:107 __( 'Widget Title', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:108 __( 'Title your widget and set it’s display preferences.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/store/actions.js:90 __( 'Go Back To Reports', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/store/actions.js:91 __( 'Enable Enhanced eCommerce', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:93 __( '+ Add Role', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:189 __( 'Copy to Pretty Links', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:190 __( 'Make your campaign links prettier!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:191 __( 'Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:14 __( 'Days', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:19 /* Translators: placeholders make text small. */ __( '7 days', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:23 __( '30 days', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:28 __( 'Custom', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:107 __( 'Popular Posts data can be fetched correctly', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:108 __( 'Please note: depending on when you set up the Custom Dimensions settings, it may take up to 7 days to see relevant Popular Posts data loading from Google Analytics.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:112 __( 'Close', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:48 __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49 __( 'In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both MonsterInsights and Google Analytics settings. Please use the button below to confirm your configuration is correct.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:50 __( 'Test Automated Posts', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:52 /* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */ __( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:53 __( 'Automated + Curated', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55 /* Translators: Placeholder adds a link to the Custom Dimensions settings. */ __( 'Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using %1$sCustom Dimensions%2$s. Also requires Sort By - Curated to be selected. Setup steps can be found in our %3$sknowledge base%4$s.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:57 /* Translators: Placeholder gets replaced with current license version. */ __( 'Pro version is required. Your current license level is: %s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:95 __( 'Verifying Popular Posts data', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:45 __( 'Select posts/search', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:55 __( 'Oops! No posts found.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:56 __( 'Search by post title', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:92 __( 'Can\'t load posts.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:128 __( 'Email Summaries', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:65 __( 'Export PDF Reports', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:21 __( 'Multiple Entries', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:22 __( 'Total Number of Widgets to Show', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:23 __( 'Choose how many widgets will be placed in a single Post.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:24 __( 'Minimum Distance Between Widgets', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:25 __( 'Choose the distance between widgets.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:26 __( 'Minimum Word Count to Display Multiple Widgets', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:27 __( 'Choose the minimum word count for a Post to have multiple entries.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:42 __( 'Used on over 4,000,000 websites!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:19 __( 'This feature requires MonsterInsights Pro', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:20 __( 'By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:21 __( 'Upgrade to Pro and Unlock Popular Products', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:22 __( 'View all Pro features', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePicker.vue:70 /* Translators: Page number of total pages. 1 & 2 make the first part of the text bold. */ __( '%1$sPage %3$s%2$s of %4$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:60 __( 'Theme Preview', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:47 __( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:48 __( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:138 __( 'Color', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:139 __( 'Size', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:137 __( 'Title', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:142 __( 'Label', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:143 __( 'Background', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:140 __( 'Border', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:55 __( 'Icon', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:29 __( 'Pro version is required', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:32 /* Translators: Placeholder adds a link to the Custom Dimensions settings. */ __( 'Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using Custom Dimensions (Pro version required. %1$sUpgrade now%2$s).', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:131 __( 'Get weekly traffic reports directly in your inbox.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:144 __( 'Popular Posts', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:147 __( 'Basic Options', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:148 __( 'Order Popular Posts by comments or shares with 3 simple theme choices.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:149 __( 'Dynamic Popular Posts & Popular Products', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:150 __( 'Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:158 __( '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', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:76 /* Translators: Adds a link to the documentation. */ __( 'Adds the Enhanced Link Attribution (retain link) code to improve the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/SettingsInputNumber.vue:58 /* Translators: Minimum and maximum number that can be used. */ __( 'Please enter a value between %1$s and %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/SettingsInputNumber.vue:60 /* Translators: The minimum set value. */ __( 'Please enter a value higher than %s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/SettingsInputNumber.vue:62 /* Translators: The maximum set value. */ __( 'Please enter a value lower than %s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/SettingsInputNumber.vue:63 __( 'Please enter a number', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/SettingsInputNumber.vue:64 __( 'Value has to be a round number', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:31 __( 'SharedCount API Key', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:32 __( 'Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:33 __( 'Start Indexing', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:37 __( '%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:38 __( 'Indexing completed, counts will update automatically every day.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:54 __( 'You can add maximum 5 items.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:58 __( 'At least 0 item required.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/routes/index.js:81 __( 'Site Speed Report', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/routes/index.js:94 __( '2020 Year in Review', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:75 __( 'Display Method', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:76 __( 'There are two ways to manual include the widget in your posts.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:77 // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:105 __( 'Using the Gutenberg Block', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:78 __( 'Using the Shortcode', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:79 __( 'Learn how to insert the widget using Gutenberg blocks.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:80 __( 'Learn how to insert the widget using out Shortcode.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:81 __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:83 // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:113 __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:84 __( '%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:85 // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:115 __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87 __( 'Shortcode', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:88 // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:123 __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:89 // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:124 __( 'Copy Shortcode', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90 __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputEmailSummaries-Lite.vue:17 __( 'Our email summaries feature sends a weekly summary of the most important site analytics information.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputPdfReports-Lite.vue:17 __( 'Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:23 __( 'Unlock with %s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetCategory-Lite.vue:24 __( 'Only Show Posts from These Categories', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetCategory-Lite.vue:25 __( 'Choose from which categories posts will be displayed in the widget. All categories will be used if left empty.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:61 __( 'Wide', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:62 __( 'Narrow', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:101 __( 'Automatic Placement', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:102 __( 'Display using Gutenberg Blocks', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:103 __( 'Embed Options', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:104 __( 'All Embed Options can be used in conjunction with one another.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:106 __( 'Using Automatic Embed', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:108 __( '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.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:109 __( '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.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:110 __( 'Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:111 __( '%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:114 __( '%1$sStep 2%2$s - Search for “Popular Posts”.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:118 __( '%1$sStep 1%2$s - Navigate to your Appearance > Widgets page using the menu on the left side your screen. Must be logged in as Admin.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:119 __( '%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - MonsterInsights widget and drag it into the desired Sidebar on the right.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:120 __( '%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:122 __( 'Display using a Shortcode', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:125 __( '%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:126 __( 'Enable Automatic Placement', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:127 __( 'Display in a Sidebar', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:128 __( 'Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:129 __( 'Watch Video - How to Add the Popular Posts widget using Widgets', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:141 __( 'Author/Date', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:144 __( 'Wide-Layout Options', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:145 __( 'Adjust the number of columns displayed when the widget is placed in a wide container.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:146 __( 'Display Options', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:147 __( 'Choose which content you would like displayed in the widget.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:148 __( 'Display Author', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:149 __( 'Display Date', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:150 __( 'Display Comments', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:151 __( 'Comments', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:152 __( 'Post Count', 'google-analytics-for-wordpress' ),
// Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:153 __( 'Choose how many posts you’d like displayed in the widget.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:29 __( 'Compatibility mode', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:30 __( 'Enable _gtagTracker Compatibility', 'google-analytics-for-wordpress' ),
// Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:32 /* Translators: Placeholder gets replaced with default GA js function. */ __( 'This enables MonsterInsights to work with plugins that use %1$s and don\'t support %2$s', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-SiteSpeed-Lite.vue:23 __( 'Site Speed', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:265 __( 'Export PDF Overview Report', 'google-analytics-for-wordpress' ),
// Reference: src/modules/notifications/components/NotificationsIndicator.vue:19 __( 'View notifications', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:260 __( 'Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:262 __( 'Your 2020 Analytics Report', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:264 __( 'See how your website performed this year and find tips along the way to help grow even more in 2021!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:274 __( 'January 1, 2020 - December 31, 2020', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:275 __( 'A Tip for 2021', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:291 __( 'A Tip For 2021', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:308 __( 'Here\'s to an amazing 2021!', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:315 __( 'Try our other popular WordPress plugins to grow your website in 2021.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:317 __( 'Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:326 __( 'Copyright MonsterInsights, 2021', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:373 __( 'See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:459 /* Translators: Number of minutes spent on site. */ __( 'Each visitor spent an average of %s minutes on your website in 2020.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/monsterinsights-ReportsPdfExport-Lite.vue:42 __( 'Export PDF Report', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/monsterinsights-ReportsPdfExport-Lite.vue:50 __( 'You can export PDF reports only in the PRO version.', 'google-analytics-for-wordpress' ),
// Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewDatePicker-Lite.vue:50 /* Translators: Placeholder adds a line break. */ __( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-for-wordpress' ) ); /* THIS IS THE END OF THE GENERATED FILE */
|