summaryrefslogtreecommitdiff
blob: 2a4702a0b19f554e2cdb20374ba5cef3e2d235fd (plain)
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
# THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY.

msgid ""
msgstr ""
"Project-Id-Version: _s Jetpack\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-05-14T15:32:11.054Z\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

#: _inc/client/admin.js:74
msgctxt "Navigation item."
msgid "At A Glance"
msgstr ""

#: _inc/client/admin.js:77
msgid "At A Glance"
msgstr ""

#: _inc/client/admin.js:80
#: _inc/client/components/navigation/index.jsx:61
msgctxt "Navigation item."
msgid "My Plan"
msgstr ""

#: _inc/client/admin.js:85
#: _inc/client/components/navigation/index.jsx:70
msgctxt "Navigation item."
msgid "Plans"
msgstr ""

#: _inc/client/admin.js:90
msgctxt "Navigation item."
msgid "Settings"
msgstr ""

#: _inc/client/admin.js:95
#: _inc/client/components/navigation-settings/index.jsx:169
msgctxt "Navigation item."
msgid "Discussion"
msgstr ""

#: _inc/client/admin.js:100
#: _inc/client/components/navigation-settings/index.jsx:120
msgctxt "Navigation item."
msgid "Security"
msgstr ""

#: _inc/client/admin.js:105
#: _inc/client/components/navigation-settings/index.jsx:129
msgctxt "Navigation item."
msgid "Performance"
msgstr ""

#: _inc/client/admin.js:110
#: _inc/client/components/navigation-settings/index.jsx:186
msgctxt "Navigation item."
msgid "Traffic"
msgstr ""

#: _inc/client/admin.js:115
#: _inc/client/components/navigation-settings/index.jsx:146
#: _inc/client/components/navigation-settings/index.jsx:217
msgctxt "Navigation item."
msgid "Writing"
msgstr ""

#: _inc/client/admin.js:120
#: _inc/client/components/navigation-settings/index.jsx:155
#: _inc/client/components/navigation-settings/index.jsx:203
msgctxt "Navigation item."
msgid "Sharing"
msgstr ""

#: _inc/client/state/connection/actions.js:42
msgid "Testing Jetpack Connection"
msgstr ""

#: _inc/client/state/connection/actions.js:67
msgid "There was an error testing Jetpack. Error: %(error)s"
msgstr ""

#: _inc/client/state/connection/actions.js:129
msgid "Disconnecting Jetpack"
msgstr ""

#: _inc/client/state/connection/actions.js:155
msgid "There was an error disconnecting Jetpack. Error: %(error)s"
msgstr ""

#: _inc/client/state/connection/actions.js:173
msgid "Unlinking from WordPress.com"
msgstr ""

#: _inc/client/state/connection/actions.js:184
msgid "Unlinked from WordPress.com."
msgstr ""

#: _inc/client/state/connection/actions.js:199
msgid "Error unlinking from WordPress.com. %(error)s"
msgstr ""

#: _inc/client/state/dev-version/actions.js:29
msgid "Resetting Jetpack options…"
msgstr ""

#: _inc/client/state/dev-version/actions.js:39
msgid "Options reset."
msgstr ""

#: _inc/client/state/dev-version/actions.js:52
msgid "Options failed to reset."
msgstr ""

#: _inc/client/state/jumpstart/actions.js:30
#: _inc/client/components/jumpstart/index.jsx:33
msgid "Activating recommended features…"
msgstr ""

#: _inc/client/state/jumpstart/actions.js:44
msgid "Recommended features active."
msgstr ""

#: _inc/client/state/jumpstart/actions.js:61
msgid "Recommended features failed to activate. %(error)s"
msgstr ""

#: _inc/client/state/modules/actions.js:87
msgid "Activating %(slug)s…"
msgstr ""

#: _inc/client/state/modules/actions.js:107
msgid "%(slug)s has been activated."
msgstr ""

#: _inc/client/state/modules/actions.js:130
msgid "%(slug)s failed to activate. %(error)s"
msgstr ""

#: _inc/client/state/modules/actions.js:153
msgid "Deactivating %(slug)s…"
msgstr ""

#: _inc/client/state/modules/actions.js:173
msgid "%(slug)s has been deactivated."
msgstr ""

#: _inc/client/state/modules/actions.js:196
msgid "%(slug)s failed to deactivate. %(error)s"
msgstr ""

#: _inc/client/state/modules/actions.js:222
msgid "Updating %(slug)s settings…"
msgstr ""

#: _inc/client/state/modules/actions.js:244
msgid "Updated %(slug)s settings."
msgstr ""

#: _inc/client/state/modules/actions.js:265
msgid "Error updating %(slug)s settings. %(error)s"
msgstr ""

#: _inc/client/state/modules/actions.js:294
msgid "Updating %(slug)s address…"
msgstr ""

#: _inc/client/state/modules/actions.js:318
msgid "Regenerated %(slug)s address ."
msgstr ""

#: _inc/client/state/modules/actions.js:339
msgid "Error regenerating %(slug)s address. %(error)s"
msgstr ""

#: _inc/client/state/settings/actions.js:91
msgid "Updating settings…"
msgstr ""

#: _inc/client/state/settings/actions.js:92
msgid "Updated settings."
msgstr ""

#: _inc/client/state/settings/actions.js:97
msgid "Error updating settings. %(error)s"
msgstr ""

#: _inc/client/state/settings/actions.js:112
msgid "Updated settings. Refreshing page…"
msgstr ""

#: _inc/client/state/site-verify/actions.js:89
msgid "Site is verified"
msgstr ""

#: _inc/client/state/tracking/actions.js:46
msgid "Updating privacy settings…"
msgstr ""

#: _inc/client/state/tracking/actions.js:47
msgid "Updated privacy settings."
msgstr ""

#: _inc/client/state/tracking/actions.js:52
msgid "Error updating privacy settings. %(error)s"
msgstr ""

#: _inc/client/main.jsx:85
#: _inc/client/main.jsx:104
msgid ""
"There are unsaved settings in this tab that will be lost if you leave it. "
"Proceed?"
msgstr ""

#: _inc/client/at-a-glance/activity.jsx:51
msgid ""
"Jetpack keeps a complete record of everything that happens on your site, "
"taking the guesswork out of site management, debugging, and repair."
msgstr ""

#: _inc/client/at-a-glance/activity.jsx:58
#: _inc/client/my-plan/my-plan-body.jsx:307
msgid "Activity"
msgstr ""

#: _inc/client/at-a-glance/activity.jsx:66
#: _inc/client/at-a-glance/backups.jsx:207
#: _inc/client/at-a-glance/monitor.jsx:63
#: _inc/client/at-a-glance/scan.jsx:236
#: _inc/client/security/backups-scan.jsx:98
#: _inc/client/security/backups-scan.jsx:151
msgid "Unavailable in Dev Mode."
msgstr ""

#: _inc/client/at-a-glance/activity.jsx:75
msgid "View site activity"
msgstr ""

#: _inc/client/at-a-glance/akismet.jsx:38
msgid "Spam Protection"
msgstr ""

#: _inc/client/at-a-glance/akismet.jsx:41
msgid ""
"Akismet checks your comments and contact form submissions against our global "
"database of spam."
msgstr ""

#: _inc/client/at-a-glance/akismet.jsx:51
#: _inc/client/at-a-glance/backups.jsx:143
#: _inc/client/at-a-glance/plugins.jsx:44
#: _inc/client/at-a-glance/scan.jsx:87
#: _inc/client/at-a-glance/scan.jsx:129
msgid "Loading…"
msgstr ""

#: _inc/client/at-a-glance/akismet.jsx:69
msgid "For state-of-the-art spam defense, please {{a}}install Akismet{{/a}}."
msgstr ""

#: _inc/client/at-a-glance/akismet.jsx:96
msgid "For state-of-the-art spam defense, please {{a}}activate Akismet{{/a}}."
msgstr ""

#: _inc/client/at-a-glance/akismet.jsx:120
msgid "Invalid key"
msgstr ""

#: _inc/client/at-a-glance/akismet.jsx:124
msgid ""
"Whoops! Your Akismet key is missing or invalid. {{akismetSettings}}Go to "
"Akismet settings to fix{{/akismetSettings}}."
msgstr ""

#: _inc/client/at-a-glance/akismet.jsx:150
msgctxt "Example: \"412 Spam comments blocked\""
msgid "Spam comments blocked."
msgstr ""

#: _inc/client/at-a-glance/akismet.jsx:162
msgid "Moderate comments"
msgstr ""

#: _inc/client/at-a-glance/backups.jsx:31
msgid "Backups"
msgstr ""

#: _inc/client/at-a-glance/backups.jsx:34
msgid ""
"Jetpack Backups allow you to easily restore or download a backup from a "
"specific moment."
msgstr ""

#: _inc/client/at-a-glance/backups.jsx:87
msgid "{{a}}View backup details{{/a}}."
msgstr ""

#: _inc/client/at-a-glance/backups.jsx:109
msgid ""
"To automatically back up your entire site, please {{a}}install and "
"activate{{/a}} VaultPress."
msgstr ""

#: _inc/client/at-a-glance/backups.jsx:129
msgid ""
"To automatically back up your entire site, please {{a}}upgrade your "
"account{{/a}}."
msgstr ""

#: _inc/client/at-a-glance/backups.jsx:166
msgid "We are configuring your site's backups."
msgstr ""

#: _inc/client/at-a-glance/backups.jsx:173
#: _inc/client/at-a-glance/scan.jsx:199
msgid "You need to enter your server's credentials to finish the setup."
msgstr ""

#: _inc/client/at-a-glance/backups.jsx:177
#: _inc/client/at-a-glance/scan.jsx:203
msgid "Enter credentials"
msgstr ""

#: _inc/client/at-a-glance/backups.jsx:184
msgid "We are backing up your site in real-time."
msgstr ""

#: _inc/client/at-a-glance/backups.jsx:187
msgid "View your site's backups"
msgstr ""

#: _inc/client/at-a-glance/connections.jsx:52
msgid ""
"Your site is in Development Mode, so it can not be connected to "
"WordPress.com."
msgstr ""

#: _inc/client/at-a-glance/connections.jsx:74
msgid "Your site is connected to WordPress.com."
msgstr ""

#: _inc/client/at-a-glance/connections.jsx:78
msgid "You are the Jetpack owner."
msgstr ""

#: _inc/client/at-a-glance/connections.jsx:120
msgid ""
"The site is in Development Mode, so you can not connect to WordPress.com."
msgstr ""

#: _inc/client/at-a-glance/connections.jsx:136
#. %(username) is the WordPress user login name.
msgid "Connected as {{span}}%(username)s{{/span}}"
msgstr ""

#: _inc/client/at-a-glance/connections.jsx:153
msgid "Link your account to WordPress.com to get the most out of Jetpack."
msgstr ""

#: _inc/client/at-a-glance/connections.jsx:172
msgctxt "Dashboard widget header"
msgid "Site connection"
msgstr ""

#: _inc/client/at-a-glance/connections.jsx:182
msgctxt "Dashboard widget header"
msgid "Account connection"
msgstr ""

#: _inc/client/at-a-glance/index.jsx:59
#: _inc/client/security/index.jsx:91
msgid "Security"
msgstr ""

#: _inc/client/at-a-glance/index.jsx:64
msgid "Manage security settings"
msgstr ""

#: _inc/client/at-a-glance/index.jsx:72
msgid "Connections"
msgstr ""

#: _inc/client/at-a-glance/index.jsx:124
#: _inc/client/performance/index.jsx:50
msgid "Performance"
msgstr ""

#: _inc/client/at-a-glance/monitor.jsx:33
msgid "Downtime monitoring"
msgstr ""

#: _inc/client/at-a-glance/monitor.jsx:36
msgid ""
"Jetpack’s downtime monitor will continuously monitor your site, and alert "
"you the moment that downtime is detected."
msgstr ""

#: _inc/client/at-a-glance/monitor.jsx:46
msgid ""
"Jetpack is monitoring your site. If we think your site is down, you will "
"receive an email."
msgstr ""

#: _inc/client/at-a-glance/monitor.jsx:64
msgid ""
"{{a}}Activate Monitor{{/a}} to receive email notifications if your site goes "
"down."
msgstr ""

#: _inc/client/at-a-glance/photon.jsx:25
msgid "Image Performance"
msgstr ""

#: _inc/client/at-a-glance/photon.jsx:28
msgid ""
"Jetpack will optimize your images and serve them from the server location "
"nearest to your visitors. Using our global content delivery network will "
"boost the loading speed of your site."
msgstr ""

#: _inc/client/at-a-glance/photon.jsx:38
msgid "Jetpack is improving and optimizing your image speed."
msgstr ""

#: _inc/client/at-a-glance/photon.jsx:53
#: _inc/client/at-a-glance/protect.jsx:75
#: _inc/client/at-a-glance/search.jsx:68
#: _inc/client/traffic/site-stats.jsx:140
#: _inc/client/at-a-glance/stats/index.jsx:217
msgid "Unavailable in Dev Mode"
msgstr ""

#: _inc/client/at-a-glance/photon.jsx:54
msgid ""
"{{a}}Activate{{/a}} to enhance the performance and speed of your images."
msgstr ""

#: _inc/client/at-a-glance/plugins.jsx:30
msgid "Plugin Updates"
msgstr ""

#: _inc/client/at-a-glance/plugins.jsx:34
msgid ""
"Jetpack’s Plugin Updates allows you to choose which plugins update "
"automatically."
msgstr ""

#: _inc/client/at-a-glance/plugins.jsx:63
msgid "%(number)s"
msgid_plural "%(number)s"
msgstr[0] ""
msgstr[1] ""

#: _inc/client/at-a-glance/plugins.jsx:72
msgid "Plugin needs updating."
msgid_plural "Plugins need updating."
msgstr[0] ""
msgstr[1] ""

#: _inc/client/at-a-glance/plugins.jsx:76
msgid "{{a}}Turn on plugin autoupdates{{/a}}"
msgstr ""

#: _inc/client/at-a-glance/plugins.jsx:80
msgid "All plugins are up-to-date. Awesome work!"
msgstr ""

#: _inc/client/at-a-glance/plugins.jsx:91
#: _inc/client/security/manage-plugins.jsx:45
msgid "Manage your plugins"
msgstr ""

#: _inc/client/at-a-glance/protect.jsx:29
#: _inc/client/security/protect.jsx:109
msgid ""
"Protects your site from traditional and distributed brute force login "
"attacks."
msgstr ""

#: _inc/client/at-a-glance/protect.jsx:48
msgid ""
"Jetpack is actively blocking malicious login attempts. Data will display "
"here soon!"
msgstr ""

#: _inc/client/at-a-glance/protect.jsx:60
msgid "Total malicious attacks blocked on your site."
msgstr ""

#: _inc/client/at-a-glance/protect.jsx:76
msgid ""
"{{a}}Activate Protect{{/a}} to keep your site protected from malicious sign "
"in attempts."
msgstr ""

#: _inc/client/at-a-glance/scan.jsx:32
msgid "Security Scanning"
msgstr ""

#: _inc/client/at-a-glance/scan.jsx:35
msgid ""
"Your site’s files are regularly scanned for unauthorized or suspicious "
"modifications that could compromise your security and data."
msgstr ""

#: _inc/client/at-a-glance/scan.jsx:98
#: _inc/client/security/backups-scan.jsx:162
msgid "Uh oh, %(number)s threat found."
msgid_plural "Uh oh, %(number)s threats found."
msgstr[0] ""
msgstr[1] ""

#: _inc/client/at-a-glance/scan.jsx:104
msgid "{{a}}View details at VaultPress.com{{/a}}"
msgstr ""

#: _inc/client/at-a-glance/scan.jsx:108
#: _inc/client/security/backups-scan.jsx:175
msgid "{{a}}Contact Support{{/a}}"
msgstr ""

#: _inc/client/at-a-glance/scan.jsx:120
msgid "No threats found, you're good to go!"
msgstr ""

#: _inc/client/at-a-glance/scan.jsx:146
msgid ""
"For automated, comprehensive scanning of security threats, please "
"{{a}}install and activate{{/a}} VaultPress."
msgstr ""

#: _inc/client/at-a-glance/scan.jsx:160
msgid ""
"For automated, comprehensive scanning of security threats, please "
"{{a}}upgrade your account{{/a}}."
msgstr ""

#: _inc/client/at-a-glance/scan.jsx:192
msgid "We are configuring your site protection."
msgstr ""

#: _inc/client/at-a-glance/scan.jsx:211
msgid ""
"We are making sure your site stays free of security threats. You will be "
"notified if we find one."
msgstr ""

#: _inc/client/at-a-glance/scan.jsx:219
msgid "View security scan details"
msgstr ""

#: _inc/client/at-a-glance/search.jsx:28
#: _inc/client/my-plan/my-plan-body.jsx:373
msgid "Jetpack Search"
msgstr ""

#: _inc/client/at-a-glance/search.jsx:31
#: _inc/client/at-a-glance/search.jsx:101
msgid ""
"Jetpack Search is a powerful replacement for the search capability built "
"into WordPress."
msgstr ""

#: _inc/client/at-a-glance/search.jsx:77
msgid ""
"Replace the built-in search with a fast, scalable, customizable, and "
"highly-relevant search {{a}}hosted in the WordPress.com cloud{{/a}}."
msgstr ""

#: _inc/client/at-a-glance/search.jsx:98
msgid "Search"
msgstr ""

#: _inc/client/at-a-glance/search.jsx:111
msgid "Jetpack Search is powering search on your site."
msgstr ""

#: _inc/client/at-a-glance/search.jsx:119
msgid "Add Search (Jetpack) Widget"
msgstr ""

#: _inc/client/at-a-glance/search.jsx:128
msgid ""
"{{a}}Activate{{/a}} to replace the WordPress built-in search with Jetpack "
"Search, an advanced search experience."
msgstr ""

#: _inc/client/discussion/comments.jsx:67
msgid "Comments"
msgstr ""

#: _inc/client/discussion/comments.jsx:80
msgid ""
"Replaces the standard WordPress comment form with a new comment system that "
"includes social media login options."
msgstr ""

#: _inc/client/discussion/comments.jsx:99
msgid "Comments headline"
msgstr ""

#: _inc/client/discussion/comments.jsx:112
msgid "A few catchy words to motivate your readers to comment."
msgstr ""

#: _inc/client/discussion/comments.jsx:115
msgid "Color scheme"
msgstr ""

#: _inc/client/discussion/comments.jsx:153
#: _inc/client/discussion/comments.jsx:196
#: _inc/client/discussion/comments.jsx:228
#: _inc/client/writing/theme-enhancements.jsx:197
#: _inc/client/components/support-info/index.jsx:79
#: _inc/client/components/support-info/index.jsx:89
msgid "Learn more"
msgstr ""

#: _inc/client/discussion/comments.jsx:161
#: _inc/client/discussion/comments.jsx:204
#: _inc/client/discussion/comments.jsx:236
msgid "Privacy Information"
msgstr ""

#: _inc/client/discussion/comments.jsx:190
msgid "Enable Markdown use for comments."
msgstr ""

#: _inc/client/discussion/index.jsx:62
msgid "Discussion"
msgstr ""

#: _inc/client/discussion/index.jsx:63
msgid ""
"Open your site to comments and invite subscribers to get alerts about your "
"latest work."
msgstr ""

#: _inc/client/discussion/subscriptions.jsx:73
msgid "View your Email Followers"
msgstr ""

#: _inc/client/discussion/subscriptions.jsx:81
msgid "Create a Jetpack account to view your email followers"
msgstr ""

#: _inc/client/discussion/subscriptions.jsx:93
msgid ""
"Allows readers to subscribe to your posts or comments, and receive "
"notifications of new content by email."
msgstr ""

#: _inc/client/discussion/subscriptions.jsx:121
msgid "Show a \"follow blog\" option in the comment form"
msgstr ""

#: _inc/client/discussion/subscriptions.jsx:134
msgid "Show a \"follow comments\" option in the comment form"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:104
msgid ""
"Daily backup of all your site data with unlimited space and one-click "
"restores"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:109
msgid ""
"Daily backup of all your site data with unlimited space, one-click restores, "
"automated security scanning, and priority support"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:114
msgid ""
"Real-time backup of all your site data with unlimited space, one-click "
"restores, automated security scanning, and priority support"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:129
#: _inc/client/my-plan/my-plan-body.jsx:156
#: _inc/client/my-plan/my-plan-body.jsx:481
#: _inc/client/my-plan/my-plan-body.jsx:510
#: _inc/client/my-plan/my-plan-body.jsx:554
msgid "A secure site, locked and protected by Jetpack"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:133
msgid "Site Backups"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:135
msgid ""
"Real-time backup of all your site data with unlimited space, one-click "
"restores, and automated security scanning."
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:143
msgid "View your security activity"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:160
msgid "Site Security"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:161
msgid " (powered by VaultPress)."
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:168
msgid "View your security dashboard"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:180
#: _inc/client/my-plan/my-plan-body.jsx:255
msgid "View settings"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:205
#: _inc/client/my-plan/my-plan-body.jsx:578
msgid "A fast and performant website"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:210
#: _inc/client/my-plan/my-plan-body.jsx:583
msgid "Built-in Performance"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:213
#: _inc/client/my-plan/my-plan-body.jsx:586
msgid ""
"Load pages faster by serving your images from our global network of servers."
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:221
#: _inc/client/my-plan/my-plan-body.jsx:594
msgid "Make your site faster"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:231
msgid "A folder holding real comments"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:235
msgid "Spam Filtering"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:236
msgid "Spam is automatically blocked from your comments."
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:243
msgid "View your spam stats"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:268
msgid "A cloud with multiple types of content floating around it"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:272
msgid "Video Hosting"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:274
msgid "High-speed, high-definition video hosting with no third-party ads."
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:281
msgid "Upload videos"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:289
msgid "Activate video hosting"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:301
#: _inc/client/my-plan/my-plan-body.jsx:656
msgid "Interface showing a chronological list of changes and updates in a site"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:309
#: _inc/client/my-plan/my-plan-body.jsx:664
msgid ""
"View a chronological list of all the changes and updates to your site in an "
"organized, readable way."
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:317
#: _inc/client/my-plan/my-plan-body.jsx:672
msgid "View your site activity"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:329
msgid "A chart showing an healthy increase in earnings"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:334
msgid "Monetize your site with ads"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:337
msgid ""
"WordAds lets you earn money by displaying promotional content. Start earning "
"today."
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:346
#: _inc/client/traffic/ads.jsx:243
msgid "View your earnings"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:354
msgid "Start earning"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:369
msgid "A hand holding a loupe"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:375
msgid ""
"Replace the default WordPress search with better results and filtering "
"powered by Elasticsearch."
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:384
msgid "Customize Search Widget"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:392
msgid "Activate Jetpack Search"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:406
#: _inc/client/my-plan/my-plan-body.jsx:443
#: _inc/client/my-plan/my-plan-body.jsx:630
msgid "Site stats showing an evolution in traffic and engagement"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:410
msgid "SEO Tools"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:412
msgid ""
"Advanced SEO tools to help your site get found when people search for "
"relevant content."
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:421
msgid "Configure site SEO"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:429
msgid "Activate SEO tools"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:448
msgid "Google Analytics"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:451
msgid ""
"Complement WordPress.com’s stats with Google’s in-depth look at your "
"visitors and traffic patterns."
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:460
msgid "Configure Google Analytics"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:468
msgid "Activate Google Analytics"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:486
msgid "Try a premium theme"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:489
msgid ""
"Access hundreds of beautifully designed premium themes at no extra cost."
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:497
msgid "Browse premium themes"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:515
msgid "Marketing Automation"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:518
msgid ""
"Schedule unlimited tweets, Facebook posts, and other social posts in advance."
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:527
msgid "Schedule posts"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:535
msgid "Activate Publicize"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:558
msgid "Always-on Security"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:560
msgid ""
"Prevent login attacks, and get instant notifications when there’s an issue "
"with your site."
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:568
msgid "Set up your site security"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:604
msgid "A wide variety of themes and tools to customize a site"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:609
msgid "Design the perfect website"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:612
msgid ""
"Get unlimited access to hundreds of professional themes, and customize your "
"site exactly how you like it."
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:620
msgid "Explore free themes"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:635
msgid "Increase traffic to your site"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:638
msgid ""
"Reach a wider audience by automatically sharing your posts on social media."
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:646
msgid "Start publicizing now"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:662
msgid "Site Activity"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:682
msgid "Chat bubbles representing getting in touch with support"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:687
#: _inc/client/my-plan/my-plan-body.jsx:698
msgid "Support documentation"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:690
msgid ""
"Need help? Search our support site to find out about your site, your account,"
" and how to make the most of WordPress."
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:706
msgid "Jetpack offers so much more"
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:709
msgid ""
"Get peace of mind of automated backups and priority support, reach a wider "
"audience by using advanced SEO tools, monetize your site by running ads, and "
"customize your site with any of our 200+ premium themes."
msgstr ""

#: _inc/client/my-plan/my-plan-body.jsx:718
msgid "Explore Jetpack plans"
msgstr ""

#: _inc/client/my-plan/my-plan-header.jsx:35
msgid "Jetpack Free Plan"
msgstr ""

#: _inc/client/my-plan/my-plan-header.jsx:40
msgid "Welcome to Jetpack Free"
msgstr ""

#: _inc/client/my-plan/my-plan-header.jsx:43
msgid "Get started with hassle-free design, stats, and performance tools."
msgstr ""

#: _inc/client/my-plan/my-plan-header.jsx:57
msgid "Jetpack Personal Plan"
msgstr ""

#: _inc/client/my-plan/my-plan-header.jsx:62
msgid "Welcome to Jetpack Personal"
msgstr ""

#: _inc/client/my-plan/my-plan-header.jsx:66
msgid "Daily backups, spam filtering, and priority support."
msgstr ""

#: _inc/client/my-plan/my-plan-header.jsx:70
msgid "Spam filtering and priority support."
msgstr ""

#: _inc/client/my-plan/my-plan-header.jsx:85
msgid "Jetpack Premium Plan"
msgstr ""

#: _inc/client/my-plan/my-plan-header.jsx:90
msgid "Welcome to Jetpack Premium"
msgstr ""

#: _inc/client/my-plan/my-plan-header.jsx:93
msgid ""
"Full security suite, marketing and revenue automation tools, unlimited video "
"hosting, and priority support."
msgstr ""

#: _inc/client/my-plan/my-plan-header.jsx:109
msgid "Jetpack Business Plan"
msgstr ""

#: _inc/client/my-plan/my-plan-header.jsx:114
msgid "Welcome to Jetpack Professional"
msgstr ""

#: _inc/client/my-plan/my-plan-header.jsx:117
msgid ""
"Full security suite, marketing and revenue automation tools, unlimited video "
"hosting, unlimited themes, enhanced search, and priority support."
msgstr ""

#: _inc/client/notices/validation-error-list.jsx:21
msgid "Please correct the issue below and try again."
msgid_plural "Please correct the issues listed below and try again."
msgstr[0] ""
msgstr[1] ""

#: _inc/client/performance/index.jsx:51
msgid ""
"Load pages faster, optimize images, and speed up your visitors’ experience."
msgstr ""

#: _inc/client/performance/media.jsx:42
msgid "Video"
msgstr ""

#: _inc/client/performance/media.jsx:45
msgid ""
"Make the content you publish more engaging with high-resolution video. With "
"Jetpack Video you can customize your media player and deliver high-speed, "
"ad-free, and unbranded videos to your visitors. Videos are hosted on our "
"WordPress.com servers and do not subtract space from your hosting plan!"
msgstr ""

#: _inc/client/performance/media.jsx:59
msgid "Enable high-speed, ad-free video player"
msgstr ""

#: _inc/client/performance/media.jsx:70
#: _inc/client/writing/writing-media.jsx:61
msgid "Media"
msgstr ""

#: _inc/client/performance/search.jsx:32
msgid "Jetpack Search supports many customizations."
msgstr ""

#: _inc/client/performance/search.jsx:37
msgid ""
"The built-in WordPress search is great for sites without much content. But "
"as your site grows, searches slow down and return less relevant results."
msgstr ""

#: _inc/client/performance/search.jsx:42
msgid ""
"Jetpack Search replaces the built-in search with a fast, scalable, "
"customizable, and highly-relevant search hosted in the WordPress.com cloud. "
"The result: Your users find the content they want, faster."
msgstr ""

#: _inc/client/performance/search.jsx:54
msgid ""
"Replace WordPress built-in search with Jetpack Search, an advanced search "
"experience"
msgstr ""

#: _inc/client/performance/search.jsx:62
msgid ""
"Add the Jetpack Search widget to your sidebar to configure sorting and "
"filters."
msgstr ""

#: _inc/client/performance/search.jsx:75
msgid "Add Jetpack Search Widget"
msgstr ""

#: _inc/client/performance/speed-up-site.jsx:59
msgid "Disabling site accelerator…"
msgstr ""

#: _inc/client/performance/speed-up-site.jsx:60
msgid "Site accelerator is no longer speeding up your site!"
msgstr ""

#: _inc/client/performance/speed-up-site.jsx:62
msgid "Error disabling site accelerator. %(error)s"
msgstr ""

#: _inc/client/performance/speed-up-site.jsx:84
msgid "Enabling Site accelerator…"
msgstr ""

#: _inc/client/performance/speed-up-site.jsx:85
msgid "Site accelerator is now speeding up your site!"
msgstr ""

#: _inc/client/performance/speed-up-site.jsx:87
msgid "Error enabling Site accelerator. %(error)s"
msgstr ""

#: _inc/client/performance/speed-up-site.jsx:221
msgid "Performance & speed"
msgstr ""

#: _inc/client/performance/speed-up-site.jsx:230
msgid ""
"Load pages faster by allowing Jetpack to optimize your images and serve your "
"images and static files (like CSS and JavaScript) from our global network of "
"servers."
msgstr ""

#: _inc/client/performance/speed-up-site.jsx:243
msgid "Enable site accelerator"
msgstr ""

#: _inc/client/performance/speed-up-site.jsx:257
msgid "Speed up image load times"
msgstr ""

#: _inc/client/performance/speed-up-site.jsx:269
msgid "Speed up static file load times"
msgstr ""

#: _inc/client/performance/speed-up-site.jsx:286
msgid ""
"Lazy-loading images will improve your site’s speed and create a smoother "
"viewing experience. Images will load as visitors scroll down the screen, "
"instead of all at once."
msgstr ""

#: _inc/client/performance/speed-up-site.jsx:300
msgid "Enable Lazy Loading for images"
msgstr ""

#: _inc/client/plans/plan-grid.jsx:57
msgid "You’re currently on Jetpack %(plan)s."
msgstr ""

#: _inc/client/plans/plan-grid.jsx:65
msgid "Your Plan"
msgstr ""

#: _inc/client/plans/plan-grid.jsx:67
msgid "Manage your plan"
msgstr ""

#: _inc/client/plans/plan-grid.jsx:69
msgid "View all Jetpack plans"
msgstr ""

#: _inc/client/privacy/index.jsx:68
msgctxt "Search term."
msgid "privacy"
msgstr ""

#: _inc/client/privacy/index.jsx:69
msgctxt "Search term."
msgid "tracks"
msgstr ""

#: _inc/client/privacy/index.jsx:70
msgctxt "Search term."
msgid "data"
msgstr ""

#: _inc/client/privacy/index.jsx:71
msgctxt "Search term."
msgid "gdpr"
msgstr ""

#: _inc/client/privacy/index.jsx:72
msgctxt "Search term."
msgid "tos"
msgstr ""

#: _inc/client/privacy/index.jsx:73
msgctxt "Search term."
msgid "terms of service"
msgstr ""

#: _inc/client/privacy/index.jsx:105
msgctxt "Settings header"
msgid "Privacy Settings"
msgstr ""

#: _inc/client/privacy/index.jsx:109
msgid "We are committed to your privacy and security. "
msgstr ""

#: _inc/client/privacy/index.jsx:120
msgid ""
"Share information with our analytics tool about your use of services while "
"logged in to your WordPress.com account. {{cookiePolicyLink}}Learn more{{/"
"cookiePolicyLink}}."
msgstr ""

#: _inc/client/privacy/index.jsx:139
msgid ""
"This information helps us improve our products, make marketing to you more "
"relevant, personalize your WordPress.com experience, and more as detailed in "
"our {{pp}}privacy policy{{/pp}}."
msgstr ""

#: _inc/client/privacy/index.jsx:156
msgid ""
"We use other tracking tools, including some from third parties. "
"{{cookiePolicyLink}}Read about these{{/cookiePolicyLink}} and how to control "
"them."
msgstr ""

#: _inc/client/privacy/index.jsx:174
msgid ""
"For more information on how specific Jetpack features use data and track "
"activity, please refer to our {{privacyCenterLink}}Privacy Center{{/"
"privacyCenterLink}}."
msgstr ""

#: _inc/client/pro-status/index.jsx:77
msgid "Setting up"
msgstr ""

#: _inc/client/pro-status/index.jsx:82
msgid "Action needed"
msgstr ""

#: _inc/client/pro-status/index.jsx:87
msgid "Connected"
msgstr ""

#: _inc/client/pro-status/index.jsx:103
msgctxt "A caption for a small button to fix security issues."
msgid "Threats"
msgstr ""

#: _inc/client/pro-status/index.jsx:107
msgctxt "Short warning message about new threats found."
msgid "Threats found!"
msgstr ""

#: _inc/client/pro-status/index.jsx:110
msgctxt "A caption for a small button to fix security issues."
msgid "FIX"
msgstr ""

#: _inc/client/pro-status/index.jsx:119
msgctxt "Short warning message about site having no security scan."
msgid "No scanning"
msgstr ""

#: _inc/client/pro-status/index.jsx:123
msgctxt "Caption for a button to purchase a paid feature."
msgid "Upgrade"
msgstr ""

#: _inc/client/pro-status/index.jsx:129
msgctxt "Caption for a button to purchase a pro plan."
msgid "Upgrade"
msgstr ""

#: _inc/client/pro-status/index.jsx:134
msgctxt "Short message informing user that the site is secure."
msgid "Secure"
msgstr ""

#: _inc/client/pro-status/index.jsx:140
msgctxt "Short warning message about an invalid key being used for Akismet."
msgid "Invalid key"
msgstr ""

#: _inc/client/pro-status/index.jsx:153
msgid "ACTIVE"
msgstr ""

#: _inc/client/pro-status/index.jsx:186
msgctxt "Caption for a button to set up a feature."
msgid "Set up"
msgstr ""

#: _inc/client/searchable-modules/index.jsx:61
msgid "Activate"
msgstr ""

#: _inc/client/security/antispam.jsx:88
msgid "Checking your spam protection…"
msgstr ""

#: _inc/client/security/antispam.jsx:92
msgid "Fetching key…"
msgstr ""

#: _inc/client/security/antispam.jsx:97
msgid "Your site needs an Antispam key."
msgstr ""

#: _inc/client/security/antispam.jsx:103
msgid "There's a problem with your Antispam API key. {{a}}Learn more{{/a}}."
msgstr ""

#: _inc/client/security/antispam.jsx:111
msgid "Your site is not protected from spam."
msgstr ""

#: _inc/client/security/antispam.jsx:113
msgid "Your Antispam key is valid."
msgstr ""

#: _inc/client/security/antispam.jsx:115
msgid "Your site is protected from spam."
msgstr ""

#: _inc/client/security/antispam.jsx:123
msgid "Checking key…"
msgstr ""

#: _inc/client/security/antispam.jsx:133
msgctxt "Settings header"
msgid "Spam filtering"
msgstr ""

#: _inc/client/security/antispam.jsx:140
msgid "Removes spam from comments and contact forms."
msgstr ""

#: _inc/client/security/antispam.jsx:146
msgid "Your API key"
msgstr ""

#: _inc/client/security/antispam.jsx:152
msgid ""
"If you don't already have an API key, then {{a}}get your API key here{{/a}}, "
"and you'll be guided through the process of getting one."
msgstr ""

#: _inc/client/security/backups-scan.jsx:29
#: _inc/client/security/backups-scan.jsx:120
#: _inc/client/security/backups-scan.jsx:237
msgctxt "Settings header"
msgid "Backups and security scanning"
msgstr ""

#: _inc/client/security/backups-scan.jsx:37
#: _inc/client/security/backups-scan.jsx:245
msgid ""
"Backs up your site to the global WordPress.com servers, allowing you to "
"restore your content in the event of an emergency or error."
msgstr ""

#: _inc/client/security/backups-scan.jsx:44
msgid "Checking site status…"
msgstr ""

#: _inc/client/security/backups-scan.jsx:70
msgid "Provisioning"
msgstr ""

#: _inc/client/security/backups-scan.jsx:72
msgid "Backups and Scan are being configured for your site."
msgstr ""

#: _inc/client/security/backups-scan.jsx:77
msgid "Awaiting credentials"
msgstr ""

#: _inc/client/security/backups-scan.jsx:79
msgid ""
"You need to enter your server credentials to finish configuring Backups and "
"Scan."
msgstr ""

#: _inc/client/security/backups-scan.jsx:86
#: _inc/client/components/dash-item/index.jsx:109
msgid "Active"
msgstr ""

#: _inc/client/security/backups-scan.jsx:88
msgid ""
"Your site is being backed up in real time and regularly scanned for security "
"threats."
msgstr ""

#: _inc/client/security/backups-scan.jsx:171
msgid "{{a}}View details{{/a}}"
msgstr ""

#: _inc/client/security/backups-scan.jsx:181
msgid "Your site is backed up and threat-free."
msgstr ""

#: _inc/client/security/backups-scan.jsx:187
msgid "Your site is backed up."
msgstr ""

#: _inc/client/security/backups-scan.jsx:193
msgid "You have paid for backups but they're not yet active."
msgstr ""

#: _inc/client/security/backups-scan.jsx:194
#: _inc/client/security/backups-scan.jsx:201
msgid "Click \"Set Up\" to finish installation."
msgstr ""

#: _inc/client/security/backups-scan.jsx:198
msgid ""
"You have paid for backups and security scanning but they’re not yet active."
msgstr ""

#: _inc/client/security/backups-scan.jsx:261
msgid "Configure your Security Scans"
msgstr ""

#: _inc/client/security/index.jsx:92
msgid ""
"Keep your site safe with state-of-the-art security and receive notifications "
"of technical problems."
msgstr ""

#: _inc/client/security/manage-plugins.jsx:55
msgctxt "Settings header"
msgid "Plugin autoupdates"
msgstr ""

#: _inc/client/security/manage-plugins.jsx:60
msgid ""
"When a plugin update is released, the best practice is to update that plugin "
"right away. Choose which plugins you'd like to autoupdate so that your site "
"stays secure."
msgstr ""

#: _inc/client/security/monitor.jsx:31
msgctxt "Settings header"
msgid "Downtime monitoring"
msgstr ""

#: _inc/client/security/monitor.jsx:38
msgid ""
"Jetpack will continuously monitor your site, and alert you the moment "
"downtime is detected."
msgstr ""

#: _inc/client/security/monitor.jsx:52
msgid "Monitor your site's downtime"
msgstr ""

#: _inc/client/security/monitor.jsx:63
msgid "Configure your notification settings"
msgstr ""

#: _inc/client/security/protect.jsx:96
msgctxt "Settings header"
msgid "Brute force attack protection"
msgstr ""

#: _inc/client/security/protect.jsx:119
msgid "Your current IP: %(ip)s"
msgstr ""

#: _inc/client/security/protect.jsx:134
msgid "Add to whitelist"
msgstr ""

#: _inc/client/security/protect.jsx:140
msgid "Whitelisted IP addresses"
msgstr ""

#: _inc/client/security/protect.jsx:157
msgid ""
"You may whitelist an IP address or series of addresses preventing them from "
"ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a "
"range, enter the low value and high value separated by a dash. Example: "
"12.12.12.1-12.12.12.100"
msgstr ""

#: _inc/client/security/sso.jsx:62
msgctxt "Settings header"
msgid "WordPress.com log in"
msgstr ""

#: _inc/client/security/sso.jsx:69
msgid ""
"Allows registered users to log in to your site with their WordPress.com "
"accounts."
msgstr ""

#: _inc/client/security/sso.jsx:76
msgid ""
"Add an extra layer of security to your website by enabling WordPress.com log "
"in and secure authentication. If you have multiple sites with this option "
"enabled, you will be able to log into every one of them with the same "
"credentials."
msgstr ""

#: _inc/client/security/sso.jsx:104
msgid "Match accounts using email addresses"
msgstr ""

#: _inc/client/security/sso.jsx:117
msgid "Require accounts to use WordPress.com Two-Step Authentication"
msgstr ""

#: _inc/client/settings/index.jsx:36
msgid "No search results found for %(term)s"
msgstr ""

#: _inc/client/settings/index.jsx:41
msgid "Enter a search term to find settings or close search."
msgstr ""

#: _inc/client/sharing/index.jsx:59
msgid "Sharing"
msgstr ""

#: _inc/client/sharing/index.jsx:60
msgid "Share your content on social media and increase audience engagement."
msgstr ""

#: _inc/client/sharing/likes.jsx:24
msgctxt "Settings header"
msgid "Like buttons"
msgstr ""

#: _inc/client/sharing/likes.jsx:32
msgid ""
"Adds like buttons to your content so that visitors can show their "
"appreciation or enjoyment."
msgstr ""

#: _inc/client/sharing/likes.jsx:38
msgid "When visitors enjoy your content, let them show it with a Like."
msgstr ""

#: _inc/client/sharing/likes.jsx:46
msgid "Add Like buttons to your posts and pages"
msgstr ""

#: _inc/client/sharing/publicize.jsx:48
msgid "Connect your social media accounts"
msgstr ""

#: _inc/client/sharing/publicize.jsx:58
#: _inc/client/sharing/share-buttons.jsx:70
#: _inc/client/writing/masterbar.jsx:62
#: _inc/client/writing/post-by-email.jsx:106
msgid "Create a Jetpack account to use this feature"
msgstr ""

#: _inc/client/sharing/publicize.jsx:70
msgctxt "Settings header"
msgid "Publicize connections"
msgstr ""

#: _inc/client/sharing/publicize.jsx:79
msgid ""
"Allows you to automatically share your newest content on social media sites, "
"including Facebook and Twitter."
msgstr ""

#: _inc/client/sharing/publicize.jsx:87
msgid ""
"Connect your website to the social media networks you use and share your "
"content across all your social accounts with a single click. When you "
"publish a post, it will appear on all connected accounts."
msgstr ""

#: _inc/client/sharing/publicize.jsx:100
msgid "Automatically share your posts to social networks"
msgstr ""

#: _inc/client/sharing/share-buttons.jsx:42
#: _inc/client/sharing/share-buttons.jsx:57
msgid "Configure your sharing buttons"
msgstr ""

#: _inc/client/sharing/share-buttons.jsx:78
msgctxt "Settings header"
msgid "Sharing buttons"
msgstr ""

#: _inc/client/sharing/share-buttons.jsx:86
msgid ""
"Adds sharing buttons to your content so that visitors can share it on social "
"media sites."
msgstr ""

#: _inc/client/sharing/share-buttons.jsx:98
msgid "Add sharing buttons to your posts"
msgstr ""

#: _inc/client/traffic/ads.jsx:67
msgctxt "Ads header"
msgid "Ads"
msgstr ""

#: _inc/client/traffic/ads.jsx:76
msgid "Displays high-quality ads on your site that allow you to earn income."
msgstr ""

#: _inc/client/traffic/ads.jsx:81
msgid ""
"Show ads on the first article on your home page or at the end of every page "
"and post. Place additional ads at the top of your site and to any widget "
"area to increase your earnings."
msgstr ""

#: _inc/client/traffic/ads.jsx:86
msgid ""
"By activating ads, you agree to the Automattic Ads {{link}}Terms of "
"Service{{/link}}."
msgstr ""

#: _inc/client/traffic/ads.jsx:112
msgid "Enable ads and display an ad below each post"
msgstr ""

#: _inc/client/traffic/ads.jsx:116
msgid "Display ads below posts on"
msgstr ""

#: _inc/client/traffic/ads.jsx:126
msgid "Front page"
msgstr ""

#: _inc/client/traffic/ads.jsx:137
msgid "Posts"
msgstr ""

#: _inc/client/traffic/ads.jsx:148
msgid "Pages"
msgstr ""

#: _inc/client/traffic/ads.jsx:159
msgid "Archives"
msgstr ""

#: _inc/client/traffic/ads.jsx:163
msgid "Additional ad placements"
msgstr ""

#: _inc/client/traffic/ads.jsx:173
msgid "Top of each page"
msgstr ""

#: _inc/client/traffic/ads.jsx:184
msgid "Second ad below post"
msgstr ""

#: _inc/client/traffic/ads.jsx:188
msgid ""
"You can place additional ads using the Ad widget. {{link}}Try it out!{{/"
"link}}"
msgstr ""

#: _inc/client/traffic/ads.jsx:205
msgid "Custom ads.txt entries"
msgstr ""

#: _inc/client/traffic/ads.jsx:208
msgid ""
"Jetpack automatically generates a custom {{link}}ads.txt{{/link}} tailored "
"for your site. If you need to add additional entries for other networks "
"please add them in the space below, one per line."
msgstr ""

#: _inc/client/traffic/ads.jsx:219
msgid ""
"When ads are enabled, Jetpack automatically generates a custom ads.txt "
"tailored for your site."
msgstr ""

#: _inc/client/traffic/google-analytics.jsx:27
msgctxt "Settings header"
msgid "Google Analytics"
msgstr ""

#: _inc/client/traffic/google-analytics.jsx:35
msgid ""
"Integrates your WordPress site with Google Analytics, a platform that offers "
"insights into your traffic, visitors, and conversions."
msgstr ""

#: _inc/client/traffic/google-analytics.jsx:43
msgid ""
"Google Analytics is a free service that complements our {{a}}built-in "
"stats{{/a}} with different insights into your traffic. WordPress.com stats "
"and Google Analytics use different methods to identify and track activity on "
"your site, so they will normally show slightly different totals for your "
"visits, views, etc."
msgstr ""

#: _inc/client/traffic/google-analytics.jsx:62
msgid "Configure your Google Analytics settings"
msgstr ""

#: _inc/client/traffic/index.jsx:73
msgid "Traffic"
msgstr ""

#: _inc/client/traffic/index.jsx:74
msgid ""
"Maximize your site’s visibility in search engines and view traffic stats in "
"real time."
msgstr ""

#: _inc/client/traffic/related-posts.jsx:70
msgid ""
"These settings won't apply to related posts added using the block editor."
msgstr ""

#: _inc/client/traffic/related-posts.jsx:80
msgid "Show related content after posts"
msgstr ""

#: _inc/client/traffic/related-posts.jsx:94
#: _inc/client/components/module-settings/index.jsx:135
msgid "Highlight related content with a heading"
msgstr ""

#: _inc/client/traffic/related-posts.jsx:107
#: _inc/client/components/module-settings/index.jsx:140
msgid "Show a thumbnail image where available"
msgstr ""

#: _inc/client/traffic/related-posts.jsx:113
msgctxt "A header for a preview area in the configuration screen."
msgid "Preview"
msgstr ""

#: _inc/client/traffic/related-posts.jsx:119
msgid "Related"
msgstr ""

#: _inc/client/traffic/related-posts.jsx:124
#: _inc/client/components/module-settings/index.jsx:73
msgid "Big iPhone/iPad Update Now Available"
msgstr ""

#: _inc/client/traffic/related-posts.jsx:125
#: _inc/client/traffic/related-posts.jsx:133
#. It refers to the category where a post was found. Used in an example preview.
msgid "In \"Mobile\""
msgstr ""

#: _inc/client/traffic/related-posts.jsx:132
#: _inc/client/components/module-settings/index.jsx:77
msgid "The WordPress for Android App Gets a Big Facelift"
msgstr ""

#: _inc/client/traffic/related-posts.jsx:140
#: _inc/client/components/module-settings/index.jsx:81
msgid "Upgrade Focus: VideoPress For Weddings"
msgstr ""

#: _inc/client/traffic/related-posts.jsx:141
#. It refers to the category where a post was found. Used in an example preview.
msgid "In \"Upgrade\""
msgstr ""

#: _inc/client/traffic/related-posts.jsx:172
msgid "Configure related posts in the Customizer"
msgstr ""

#: _inc/client/traffic/seo.jsx:26
msgctxt "Settings header"
msgid "Search engine optimization"
msgstr ""

#: _inc/client/traffic/seo.jsx:34
msgid ""
"Allows you to optimize your site and its content for better results in "
"search engines."
msgstr ""

#: _inc/client/traffic/seo.jsx:41
msgid ""
"You can tweak these settings if you'd like more advanced control. Read more "
"about what you can do to {{a}}optimize your site's SEO{{/a}}."
msgstr ""

#: _inc/client/traffic/seo.jsx:58
msgid "Configure your SEO settings"
msgstr ""

#: _inc/client/traffic/shortlinks.jsx:23
msgctxt "Settings header"
msgid "Shortlinks"
msgstr ""

#: _inc/client/traffic/shortlinks.jsx:42
msgid "Create short and simple links for all posts and pages"
msgstr ""

#: _inc/client/traffic/site-stats.jsx:134
#: _inc/client/at-a-glance/stats/index.jsx:211
msgid "Jetpack Stats Icon"
msgstr ""

#: _inc/client/traffic/site-stats.jsx:141
#: _inc/client/at-a-glance/stats/index.jsx:218
msgid ""
"{{a}}Activate Site Stats{{/a}} to see detailed stats, likes, followers, "
"subscribers, and more! {{a1}}Learn More{{/a1}}"
msgstr ""

#: _inc/client/traffic/site-stats.jsx:160
#: _inc/client/at-a-glance/stats/index.jsx:237
msgid "Activate Site Stats"
msgstr ""

#: _inc/client/traffic/site-stats.jsx:172
msgctxt "Settings header"
msgid "Site stats"
msgstr ""

#: _inc/client/traffic/site-stats.jsx:177
msgid "Collecting valuable traffic stats and insights"
msgstr ""

#: _inc/client/traffic/site-stats.jsx:187
msgid ""
"Displays information on your site activity, including visitors and popular "
"posts or pages."
msgstr ""

#: _inc/client/traffic/site-stats.jsx:201
msgid "Put a chart showing 48 hours of views in the admin bar"
msgstr ""

#: _inc/client/traffic/site-stats.jsx:211
msgid "Hide the stats smiley face image"
msgstr ""

#: _inc/client/traffic/site-stats.jsx:214
msgid "The image helps collect stats, but should work when hidden."
msgstr ""

#: _inc/client/traffic/site-stats.jsx:219
msgid "Count logged in page views from"
msgstr ""

#: _inc/client/traffic/site-stats.jsx:236
msgid "Allow stats reports to be viewed by"
msgstr ""

#: _inc/client/traffic/sitemaps.jsx:52
msgid ""
"Sitemaps are files that search engines like Google or Bing use to index your "
"website. They can help improve your ranking in search results. When you "
"enable this feature, Jetpack will create sitemaps for you and update them "
"automatically when the content on your site changes."
msgstr ""

#: _inc/client/traffic/sitemaps.jsx:67
msgid "Generate XML sitemaps"
msgstr ""

#: _inc/client/traffic/sitemaps.jsx:73
msgid ""
"Good news: Jetpack is sending your sitemap automatically to all major search "
"engines for indexing."
msgstr ""

#: _inc/client/traffic/sitemaps.jsx:103
msgid ""
"Search engines can't access your site at the moment. If you'd like to make "
"your site accessible, check your {{a}}Reading settings{{/a}} and switch "
"\"Search Engine Visibility\" on."
msgstr ""

#: _inc/client/traffic/verification-services.jsx:69
msgid "%(moduleName)s has been disabled by a site administrator."
msgstr ""

#: _inc/client/traffic/verification-services.jsx:89
msgid ""
"Provides the necessary hidden tags needed to verify your WordPress site with "
"various services."
msgstr ""

#: _inc/client/traffic/verification-services.jsx:103
msgid "Verify your site with various services"
msgstr ""

#: _inc/client/traffic/verification-services.jsx:107
msgid ""
"Note that {{b}}verifying your site with these services is not necessary{{/"
"b}} in order for your site to be indexed by search engines. To use these "
"advanced search engine tools and verify your site with a service, paste the "
"HTML Tag code below. Read the {{support}}full instructions{{/support}} if "
"you are having trouble. Supported verification services: {{google}}Google "
"Search Console{{/google}}, {{bing}}Bing Webmaster Center{{/bing}}, "
"{{pinterest}}Pinterest Site Verification{{/pinterest}}, and "
"{{yandex}}Yandex.Webmaster{{/yandex}}."
msgstr ""

#: _inc/client/traffic/verification-services.jsx:157
msgid "Bing"
msgstr ""

#: _inc/client/traffic/verification-services.jsx:168
msgid "Pinterest"
msgstr ""

#: _inc/client/traffic/verification-services.jsx:179
msgid "Yandex"
msgstr ""

#: _inc/client/writing/composing.jsx:57
msgid ""
"Duplicate existing posts, pages, Testimonials, and Portfolios. All the "
"content will be copied including text, featured images, sharing settings, "
"and more."
msgstr ""

#: _inc/client/writing/composing.jsx:81
msgid ""
"Allows you to compose content with links, lists, and other styles using the "
"Markdown syntax."
msgstr ""

#: _inc/client/writing/composing.jsx:112
msgid ""
"LaTeX is a powerful markup language for writing complex mathematical "
"equations and formulas."
msgstr ""

#: _inc/client/writing/composing.jsx:148
msgid "Compose using shortcodes to embed media from popular sites"
msgstr ""

#: _inc/client/writing/composing.jsx:158
msgctxt "Settings header"
msgid "Composing"
msgstr ""

#: _inc/client/writing/custom-content-types.jsx:67
msgid "This feature has been disabled by a site administrator."
msgstr ""

#: _inc/client/writing/custom-content-types.jsx:78
msgid ""
"Add {{testimonialLink}}testimonials{{/testimonialLink}} to your website to "
"attract new customers. If your theme doesn’t support Jetpack Testimonials, "
"you can still use a simple shortcode to display them on your site."
msgstr ""

#: _inc/client/writing/custom-content-types.jsx:96
msgid "Testimonials"
msgstr ""

#: _inc/client/writing/custom-content-types.jsx:100
msgid "Testimonials shortcode: [testimonials]"
msgstr ""

#: _inc/client/writing/custom-content-types.jsx:109
msgid "Add a testimonial"
msgstr ""

#: _inc/client/writing/custom-content-types.jsx:120
msgid ""
"Use {{portfolioLink}}portfolios{{/portfolioLink}} on your site to showcase "
"your best work. If your theme doesn’t support Jetpack Portfolios, you can "
"still use a simple shortcode to display them on your site."
msgstr ""

#: _inc/client/writing/custom-content-types.jsx:138
msgid "Portfolios"
msgstr ""

#: _inc/client/writing/custom-content-types.jsx:142
msgid "Portfolios shortcode: [portfolio]"
msgstr ""

#: _inc/client/writing/custom-content-types.jsx:151
msgid "Add a portfolio item"
msgstr ""

#: _inc/client/writing/index.jsx:79
msgid "Writing"
msgstr ""

#: _inc/client/writing/index.jsx:80
msgid ""
"Compose content the way you want to and streamline your publishing "
"experience."
msgstr ""

#: _inc/client/writing/index.jsx:108
msgid ""
"Writing tools available to you will be shown here when an administrator "
"enables them."
msgstr ""

#: _inc/client/writing/masterbar.jsx:26
msgctxt "Settings header"
msgid "WordPress.com toolbar"
msgstr ""

#: _inc/client/writing/masterbar.jsx:38
msgid ""
"The WordPress.com toolbar replaces the default WordPress admin toolbar and "
"streamlines your WordPress experience. It offers one-click access to manage "
"all your sites, update your WordPress.com profile, view notifications, and "
"catch up on the sites you follow in the Reader."
msgstr ""

#: _inc/client/writing/masterbar.jsx:53
msgid "Enable the WordPress.com toolbar"
msgstr ""

#: _inc/client/writing/post-by-email.jsx:59
msgid ""
"Allows you to publish new posts by sending an email to a special address."
msgstr ""

#: _inc/client/writing/post-by-email.jsx:83
msgid "Email Address"
msgstr ""

#: _inc/client/writing/post-by-email.jsx:87
msgctxt "verb"
msgid "Copy"
msgstr ""

#: _inc/client/writing/post-by-email.jsx:88
msgid "Copied!"
msgstr ""

#: _inc/client/writing/post-by-email.jsx:89
msgid "Highlight and copy the following text to your clipboard:"
msgstr ""

#: _inc/client/writing/post-by-email.jsx:96
msgid "Regenerate address"
msgstr ""

#: _inc/client/writing/post-by-email.jsx:96
msgid "Create address"
msgstr ""

#: _inc/client/writing/theme-enhancements.jsx:141
msgid "Theme enhancements"
msgstr ""

#: _inc/client/writing/theme-enhancements.jsx:153
msgid ""
"Loads the next posts automatically when the reader approaches the bottom of "
"the page."
msgstr ""

#: _inc/client/writing/theme-enhancements.jsx:164
msgid "Load more posts using the default theme behavior"
msgstr ""

#: _inc/client/writing/theme-enhancements.jsx:168
msgid "Load more posts in page with a button"
msgstr ""

#: _inc/client/writing/theme-enhancements.jsx:172
msgid "Load more posts as the reader scrolls down"
msgstr ""

#: _inc/client/writing/theme-enhancements.jsx:189
msgid "Theme support required."
msgstr ""

#: _inc/client/writing/theme-enhancements.jsx:193
msgid "Learn more about adding support for Infinite Scroll to your theme."
msgstr ""

#: _inc/client/writing/theme-enhancements.jsx:219
msgid "Enhance CSS customization panel"
msgstr ""

#: _inc/client/writing/theme-enhancements.jsx:230
msgid ""
"Enables a lightweight, mobile-friendly theme that will be displayed to "
"visitors on mobile devices."
msgstr ""

#: _inc/client/writing/theme-enhancements.jsx:249
msgid "Use excerpts instead of full posts on front page and archive pages"
msgstr ""

#: _inc/client/writing/theme-enhancements.jsx:253
msgid "Show featured images"
msgstr ""

#: _inc/client/writing/theme-enhancements.jsx:257
msgid ""
"Show an ad for the WordPress mobile apps in the footer of the mobile theme"
msgstr ""

#: _inc/client/writing/widgets.jsx:30
msgctxt "Settings header"
msgid "Widgets"
msgstr ""

#: _inc/client/writing/widgets.jsx:49
msgid ""
"Make extra widgets available for use on your site including subscription "
"forms and Twitter streams"
msgstr ""

#: _inc/client/writing/widgets.jsx:59
msgid ""
"Widget visibility lets you decide which widgets appear on which pages, so "
"you can finely tailor widget content."
msgstr ""

#: _inc/client/writing/widgets.jsx:72
msgid ""
"Enable widget visibility controls to display widgets only on particular "
"posts or pages"
msgstr ""

#: _inc/client/writing/writing-media.jsx:73
msgid ""
"Create full-screen carousel slideshows for the images in your posts and "
"pages. Carousel galleries are mobile-friendly and encourage site visitors to "
"interact with your photos."
msgstr ""

#: _inc/client/writing/writing-media.jsx:86
msgid "Display images in a full-screen carousel gallery"
msgstr ""

#: _inc/client/writing/writing-media.jsx:99
msgid "Show photo Exif metadata in carousel (when available)"
msgstr ""

#: _inc/client/writing/writing-media.jsx:104
msgid ""
"Exif data shows viewers additional technical details of a photo, like its "
"focal length, aperture, and ISO."
msgstr ""

#: _inc/client/writing/writing-media.jsx:111
msgid "Carousel color scheme"
msgstr ""

#: _inc/client/at-a-glance/stats/dash-stats-bottom.jsx:56
#. Referring to a number of page views
msgid "Views today"
msgstr ""

#: _inc/client/at-a-glance/stats/dash-stats-bottom.jsx:62
#. Referring to a number of page views
msgid "Best overall day"
msgstr ""

#: _inc/client/at-a-glance/stats/dash-stats-bottom.jsx:67
msgid "%(number)s View"
msgid_plural "%(number)s Views"
msgstr[0] ""
msgstr[1] ""

#: _inc/client/at-a-glance/stats/dash-stats-bottom.jsx:81
#. Referring to a number of page views
msgid "All-time views"
msgstr ""

#: _inc/client/at-a-glance/stats/dash-stats-bottom.jsx:89
#. Referring to a number of comments
msgid "All-time comments"
msgstr ""

#: _inc/client/at-a-glance/stats/dash-stats-bottom.jsx:100
msgid "{{button}}View detailed stats{{/button}}"
msgstr ""

#: _inc/client/at-a-glance/stats/dash-stats-bottom.jsx:111
msgid "{{button}}View more stats on WordPress.com {{/button}}"
msgstr ""

#: _inc/client/at-a-glance/stats/dash-stats-bottom.jsx:130
msgid "Connect your account to WordPress.com to view more stats"
msgstr ""

#: _inc/client/at-a-glance/stats/index.jsx:77
msgid "Week of %(date)s"
msgstr ""

#: _inc/client/at-a-glance/stats/index.jsx:96
msgid "Views: %(numberOfViews)s"
msgstr ""

#: _inc/client/at-a-glance/stats/index.jsx:101
msgid "Click to view detailed stats."
msgstr ""

#: _inc/client/at-a-glance/stats/index.jsx:150
msgid "Jetpack Stats People"
msgstr ""

#: _inc/client/at-a-glance/stats/index.jsx:154
msgid "Hello there! Your stats have been activated."
msgstr ""

#: _inc/client/at-a-glance/stats/index.jsx:156
msgid ""
"Just give us a little time to collect data so we can display it for you here."
msgstr ""

#: _inc/client/at-a-glance/stats/index.jsx:159
#: _inc/client/components/upgrade-notice-content/index.jsx:79
msgid "Okay, got it!"
msgstr ""

#: _inc/client/at-a-glance/stats/index.jsx:173
msgid ""
"Something happened while loading stats. Please try again later or {{a}}view "
"your stats now on WordPress.com{{/a}}"
msgstr ""

#: _inc/client/at-a-glance/stats/index.jsx:276
msgid "Days"
msgstr ""

#: _inc/client/at-a-glance/stats/index.jsx:286
msgid "Weeks"
msgstr ""

#: _inc/client/at-a-glance/stats/index.jsx:296
msgid "Months"
msgstr ""

#: _inc/client/at-a-glance/stats/index.jsx:314
#: _inc/client/at-a-glance/stats/index.jsx:322
msgid "Site Stats"
msgstr ""

#: _inc/client/components/apps-card/index.jsx:67
msgid "Get WordPress Apps for every device"
msgstr ""

#: _inc/client/components/apps-card/index.jsx:71
msgid ""
"Manage all your sites from a single dashboard: publish content, track stats, "
"moderate comments, and so much more from anywhere in the world."
msgstr ""

#: _inc/client/components/apps-card/index.jsx:81
msgid "Download the free apps"
msgstr ""

#: _inc/client/components/connect-button/index.jsx:77
msgid "Unlink me from WordPress.com"
msgstr ""

#: _inc/client/components/connect-button/index.jsx:94
msgid "Link to WordPress.com"
msgstr ""

#: _inc/client/components/connect-button/index.jsx:117
msgid "Manage site connection"
msgstr ""

#: _inc/client/components/connect-button/index.jsx:132
msgid "Set up Jetpack"
msgstr ""

#: _inc/client/components/connect-button/index.jsx:146
msgid ""
"By clicking the button below, you agree to our {{tosLink}}Terms of Service{{/"
"tosLink}} and to {{shareDetailsLink}}share details{{/shareDetailsLink}} with "
"WordPress.com."
msgstr ""

#: _inc/client/components/dash-item/index.jsx:103
msgctxt "Short warning message"
msgid "Updates needed"
msgstr ""

#: _inc/client/components/dash-item/index.jsx:121
msgctxt "Short label appearing near a paid feature configuration block."
msgid "Paid"
msgstr ""

#: _inc/client/components/footer/index.jsx:36
msgid "This will reset all Jetpack options, are you sure?"
msgstr ""

#: _inc/client/components/footer/index.jsx:92
msgctxt "Navigation item."
msgid "Reset Options (dev only)"
msgstr ""

#: _inc/client/components/footer/index.jsx:107
msgid "Access the full list of Jetpack modules available on your site."
msgstr ""

#: _inc/client/components/footer/index.jsx:110
msgctxt "Navigation item. Noun. Links to a list of modules for Jetpack."
msgid "Modules"
msgstr ""

#: _inc/client/components/footer/index.jsx:126
msgid "Test your site’s compatibility with Jetpack."
msgstr ""

#: _inc/client/components/footer/index.jsx:129
msgctxt "Navigation item. Noun. Links to a debugger tool for Jetpack."
msgid "Debug"
msgstr ""

#: _inc/client/components/footer/index.jsx:149
msgctxt "Navigation item."
msgid "Dev Tools"
msgstr ""

#: _inc/client/components/footer/index.jsx:176
msgid "An Automattic Airline"
msgstr ""

#: _inc/client/components/footer/index.jsx:191
msgid "Jetpack version"
msgstr ""

#: _inc/client/components/footer/index.jsx:193
msgid "Jetpack version %(version)s"
msgstr ""

#: _inc/client/components/footer/index.jsx:202
msgid "WordPress.com Terms of Service"
msgstr ""

#: _inc/client/components/footer/index.jsx:205
msgctxt "Shorthand for Terms of Service."
msgid "Terms"
msgstr ""

#: _inc/client/components/footer/index.jsx:213
msgid "Automattic's Privacy Policy"
msgstr ""

#: _inc/client/components/footer/index.jsx:216
msgctxt "Shorthand for Privacy Policy."
msgid "Privacy"
msgstr ""

#: _inc/client/components/forms/index.jsx:148
msgid "Saving…"
msgstr ""

#: _inc/client/components/forms/index.jsx:148
msgid "Save Settings"
msgstr ""

#: _inc/client/components/jetpack-dialogue/index.jsx:52
msgid "Stars"
msgstr ""

#: _inc/client/components/jetpack-dialogue/index.jsx:59
msgid "Jupiter"
msgstr ""

#: _inc/client/components/jetpack-disconnect-dialog/index.jsx:41
#: _inc/client/components/jetpack-disconnect-dialog/index.jsx:57
msgid "Daily, automated backups (unlimited storage)"
msgstr ""

#: _inc/client/components/jetpack-disconnect-dialog/index.jsx:45
#: _inc/client/components/jetpack-disconnect-dialog/index.jsx:65
#: _inc/client/components/jetpack-disconnect-dialog/index.jsx:85
msgid "Priority support"
msgstr ""

#: _inc/client/components/jetpack-disconnect-dialog/index.jsx:49
msgid "Spam filtering"
msgstr ""

#: _inc/client/components/jetpack-disconnect-dialog/index.jsx:61
msgid "Daily, automated malware scanning"
msgstr ""

#: _inc/client/components/jetpack-disconnect-dialog/index.jsx:69
#: _inc/client/components/jetpack-disconnect-dialog/index.jsx:89
msgid "Unlimited, high-speed video hosting"
msgstr ""

#: _inc/client/components/jetpack-disconnect-dialog/index.jsx:77
msgid "Real-time, automated backups (unlimited storage)"
msgstr ""

#: _inc/client/components/jetpack-disconnect-dialog/index.jsx:81
msgid "Daily, automated malware scanning with automated resolution"
msgstr ""

#: _inc/client/components/jetpack-disconnect-dialog/index.jsx:93
msgid "SEO preview tools"
msgstr ""

#: _inc/client/components/jetpack-disconnect-dialog/index.jsx:100
msgid "Site stats, related content, and sharing tools"
msgstr ""

#: _inc/client/components/jetpack-disconnect-dialog/index.jsx:104
msgid "Brute force attack protection and downtime monitoring"
msgstr ""

#: _inc/client/components/jetpack-disconnect-dialog/index.jsx:108
msgid "Unlimited, high-speed image hosting"
msgstr ""

#: _inc/client/components/jetpack-disconnect-dialog/index.jsx:138
msgid "Disconnect Jetpack"
msgstr ""

#: _inc/client/components/jetpack-disconnect-dialog/index.jsx:140
msgid ""
"By disconnecting %(siteName)s from WordPress.com you will no longer have "
"access to the following:"
msgstr ""

#: _inc/client/components/jetpack-disconnect-dialog/index.jsx:159
msgctxt "A caption for a button to cancel disconnection."
msgid "Stay connected"
msgstr ""

#: _inc/client/components/jetpack-disconnect-dialog/index.jsx:164
msgctxt "A caption for a button to disconnect."
msgid "Disconnect"
msgstr ""

#: _inc/client/components/jetpack-disconnect-dialog/index.jsx:169
msgid "Read more about Jetpack benefits"
msgstr ""

#: _inc/client/components/jetpack-notices/dismissable.jsx:37
msgid "You have successfully disconnected Jetpack"
msgstr ""

#: _inc/client/components/jetpack-notices/dismissable.jsx:39
msgid ""
"Would you tell us why? Just {{a}}answering two simple questions{{/a}} would "
"help us improve Jetpack."
msgstr ""

#: _inc/client/components/jetpack-notices/feedback-dash-request.jsx:33
msgid "What would you like to see on your Jetpack Dashboard?"
msgstr ""

#: _inc/client/components/jetpack-notices/feedback-dash-request.jsx:35
msgid "Let us know!"
msgstr ""

#: _inc/client/components/jetpack-notices/index.jsx:37
msgid "You are currently running a development version of Jetpack."
msgstr ""

#: _inc/client/components/jetpack-notices/index.jsx:40
msgid "Submit Beta feedback"
msgstr ""

#: _inc/client/components/jetpack-notices/index.jsx:62
msgid "You are running Jetpack on a staging server."
msgstr ""

#: _inc/client/components/jetpack-notices/index.jsx:69
msgid "More Info"
msgstr ""

#: _inc/client/components/jetpack-notices/index.jsx:93
msgid "{{li}}The jetpack_development_mode filter is active{{/li}}"
msgstr ""

#: _inc/client/components/jetpack-notices/index.jsx:102
msgid "{{li}}The JETPACK_DEV_DEBUG constant is defined{{/li}}"
msgstr ""

#: _inc/client/components/jetpack-notices/index.jsx:111
msgid "{{li}}Your site URL lacks a dot (e.g. http://localhost){{/li}}"
msgstr ""

#: _inc/client/components/jetpack-notices/index.jsx:119
msgid ""
"Currently in {{a}}Development Mode{{/a}} (some features are disabled) "
"because: {{reasons/}}"
msgstr ""

#: _inc/client/components/jetpack-notices/index.jsx:138
#: _inc/client/components/jetpack-notices/state-notices.jsx:223
msgid "Learn More"
msgstr ""

#: _inc/client/components/jetpack-notices/index.jsx:161
msgid ""
"Jetpack is powering your site, but to access all of its features you’ll need "
"to create an account."
msgstr ""

#: _inc/client/components/jetpack-notices/index.jsx:164
msgid "Create account"
msgstr ""

#: _inc/client/components/jetpack-notices/index.jsx:212
msgid ""
"This site is not connected to WordPress.com. Please ask the site "
"administrator to connect."
msgstr ""

#: _inc/client/components/jetpack-notices/state-notices.jsx:40
msgid "Cheatin' uh?"
msgstr ""

#: _inc/client/components/jetpack-notices/state-notices.jsx:43
msgid ""
"{{p}}Would you mind telling us why you did not complete the Jetpack "
"connection in this {{a}}2 question survey{{/a}}?{{/p}}{{p}}A Jetpack "
"connection is required for our free security and traffic features to work.{{/"
"p}}"
msgstr ""

#: _inc/client/components/jetpack-notices/state-notices.jsx:61
msgid ""
"You need to stay logged in to your WordPress blog while you authorize "
"Jetpack."
msgstr ""

#: _inc/client/components/jetpack-notices/state-notices.jsx:66
msgid ""
"We had an issue connecting Jetpack; deactivate then reactivate the Jetpack "
"plugin, then connect again."
msgstr ""

#: _inc/client/components/jetpack-notices/state-notices.jsx:71
msgid ""
"There was an issue connecting your Jetpack. Please click \"Connect to "
"WordPress.com\" again."
msgstr ""

#: _inc/client/components/jetpack-notices/state-notices.jsx:77
msgid ""
"Your website needs to be publicly accessible to use Jetpack: %(error_key)s"
msgstr ""

#: _inc/client/components/jetpack-notices/state-notices.jsx:87
msgid ""
"This site can't be connected to WordPress.com because it violates our "
"{{a}}Terms of Service{{/a}}."
msgstr ""

#: _inc/client/components/jetpack-notices/state-notices.jsx:97
msgid ""
"{{s}}Your Jetpack has a glitch.{{/s}} Connecting this site with "
"WordPress.com is not possible. This usually means your site is not publicly "
"accessible (localhost)."
msgstr ""

#: _inc/client/components/jetpack-notices/state-notices.jsx:111
msgid ""
"WordPress.com is currently having problems and is unable to fuel up your "
"Jetpack.  Please try again later."
msgstr ""

#: _inc/client/components/jetpack-notices/state-notices.jsx:117
msgid ""
"Jetpack could not contact WordPress.com: %(error_key)s.  This usually means "
"something is incorrectly configured on your web host."
msgstr ""

#: _inc/client/components/jetpack-notices/state-notices.jsx:157
msgid ""
"{{s}}Your Jetpack has a glitch.{{/s}}  We're sorry for the inconvenience. "
"Please try again later, if the issue continues please contact support with "
"this message: %(error_key)s"
msgstr ""

#: _inc/client/components/jetpack-notices/state-notices.jsx:195
msgid "Welcome to {{s}}Jetpack %(jetpack_version)s{{/s}}!"
msgstr ""

#: _inc/client/components/jetpack-notices/state-notices.jsx:205
msgid "Your Jetpack is already connected."
msgstr ""

#: _inc/client/components/jetpack-notices/state-notices.jsx:209
msgid "You're fueled up and ready to go, Jetpack is now active."
msgstr ""

#: _inc/client/components/jetpack-notices/state-notices.jsx:213
msgid "You're fueled up and ready to go."
msgstr ""

#: _inc/client/components/jetpack-notices/state-notices.jsx:217
msgid ""
"Your server is misconfigured, which means that Jetpack Protect is unable to "
"effectively protect your site."
msgstr ""

#: _inc/client/components/jumpstart/index.jsx:34
msgid "Activate recommended features"
msgstr ""

#: _inc/client/components/jumpstart/index.jsx:40
msgid "{{a}}Skip, and explore features individually.{{/a}}"
msgstr ""

#: _inc/client/components/jumpstart/index.jsx:57
msgid "Person with laptop"
msgstr ""

#: _inc/client/components/jumpstart/index.jsx:61
msgid "Your Jetpack site is ready to go!"
msgstr ""

#: _inc/client/components/jumpstart/index.jsx:64
msgid "We’re now collecting stats and securing your site. Welcome aboard."
msgstr ""

#: _inc/client/components/jumpstart/index.jsx:67
msgid ""
"Next, activate Jetpack's recommended features. We've picked the features "
"most useful for maximizing your site's security and performance, like secure "
"authentication, downtime monitoring, image hosting, and lazy loading images. "
"Activate them all with a click, and they'll make sure your site is safe and "
"speedy. {{a}}Learn more about our recommended features.{{/a}}"
msgstr ""

#: _inc/client/components/masthead/index.jsx:113
msgid "Dashboard"
msgstr ""

#: _inc/client/components/masthead/index.jsx:121
msgid "Settings"
msgstr ""

#: _inc/client/components/module-overridden-banner/index.jsx:52
msgid ""
"%(moduleName)s has been disabled by a site administrator. {{link}}Learn "
"more{{/link}}."
msgstr ""

#: _inc/client/components/module-settings/connect-module-options.jsx:63
msgid "Updating Post by Email address…"
msgstr ""

#: _inc/client/components/module-settings/connect-module-options.jsx:64
msgid "Regenerated Post by Email address."
msgstr ""

#: _inc/client/components/module-settings/connect-module-options.jsx:66
msgid "Error regenerating Post by Email address. %(error)s"
msgstr ""

#: _inc/client/components/module-settings/index.jsx:27
msgid ""
"The easiest way to upload ad-free and unbranded videos to your site. You get "
"stats on video playback and shares and the player is lightweight and "
"responsive."
msgstr ""

#: _inc/client/components/module-settings/index.jsx:32
msgid ""
"To get started, click on Add Media in your post editor and upload a video; "
"we’ll take care of the rest!"
msgstr ""

#: _inc/client/components/module-settings/index.jsx:51
msgid "Subscriber"
msgstr ""

#: _inc/client/components/module-settings/index.jsx:89
msgctxt "A heading for a block of related posts."
msgid "Related"
msgstr ""

#: _inc/client/components/module-settings/index.jsx:110
msgid ""
"{{span}}You can now also configure related posts in the Customizer. "
"{{ExternalLink}}Try it out!{{/ExternalLink}}{{/span}}"
msgstr ""

#: _inc/client/components/module-settings/index.jsx:144
msgctxt "Noun, a header for a preview block in a configuration screen."
msgid "Preview"
msgstr ""

#: _inc/client/components/module-settings/index.jsx:168
msgid "WordPress.com Likes are:"
msgstr ""

#: _inc/client/components/module-settings/index.jsx:181
msgid "{{a}}Manage Likes visibility from the Sharing Module Settings{{/a}}"
msgstr ""

#: _inc/client/components/module-settings/index.jsx:199
msgid ""
"{{link}}Configure your Monitor notification settings on WordPress.com{{/"
"link}}"
msgstr ""

#: _inc/client/components/module-settings/index.jsx:224
msgid ""
"By default ads are shown at the end of every page, post, or the first "
"article on your front page. You can also add them to the top of your site "
"and to any widget area to increase your earnings!"
msgstr ""

#: _inc/client/components/module-settings/index.jsx:233
msgid "Display an ad unit at the top of your site."
msgstr ""

#: _inc/client/components/module-toggle/index.jsx:78
msgid ""
"This feature has been enabled by a site administrator. {{link}}Learn more{{/"
"link}}."
msgstr ""

#: _inc/client/components/module-toggle/index.jsx:83
msgid ""
"This feature has been disabled by a site administrator. {{link}}Learn more{{/"
"link}}."
msgstr ""

#: _inc/client/components/module-toggle/index.jsx:88
msgid ""
"This feature is being managed by a site administrator. {{link}}Learn more{{/"
"link}}."
msgstr ""

#: _inc/client/components/navigation/index.jsx:53
#: _inc/client/components/navigation/index.jsx:82
msgctxt "Navigation item."
msgid "At a Glance"
msgstr ""

#: _inc/client/components/navigation-settings/index.jsx:70
msgid "Search for a Jetpack feature."
msgstr ""

#: _inc/client/components/settings-card/index.jsx:75
msgctxt ""
"A caption for a button to upgrade an existing paid feature to a higher tier."
msgid "Upgrade"
msgstr ""

#: _inc/client/components/settings-card/index.jsx:87
msgid "Host fast, high-quality, ad-free video."
msgstr ""

#: _inc/client/components/settings-card/index.jsx:107
msgid "Generate income with high-quality ads."
msgstr ""

#: _inc/client/components/settings-card/index.jsx:124
msgid "Real-time site backups and automatic threat resolution."
msgstr ""

#: _inc/client/components/settings-card/index.jsx:137
msgid "Protect against data loss, malware, and malicious attacks."
msgstr ""

#: _inc/client/components/settings-card/index.jsx:153
msgid "Integrate easily with Google Analytics."
msgstr ""

#: _inc/client/components/settings-card/index.jsx:168
msgid "Help your content get found and shared with SEO tools."
msgstr ""

#: _inc/client/components/settings-card/index.jsx:184
msgid ""
"Add faster, more advanced searching to your site with Jetpack Professional."
msgstr ""

#: _inc/client/components/settings-card/index.jsx:206
msgid "Protect your site from spam."
msgstr ""

#: _inc/client/components/settings-card/index.jsx:322
msgctxt "Button caption"
msgid "Saving…"
msgstr ""

#: _inc/client/components/settings-card/index.jsx:323
msgctxt "Button caption"
msgid "Save settings"
msgstr ""

#: _inc/client/components/support-card/index.jsx:76
msgid "We're here to help"
msgstr ""

#: _inc/client/components/support-card/index.jsx:79
msgid "Jetpack comes with free, basic support for all users."
msgstr ""

#: _inc/client/components/support-card/index.jsx:80
msgid "Your paid plan gives you access to prioritized Jetpack support."
msgstr ""

#: _inc/client/components/support-card/index.jsx:91
msgid "Ask a question"
msgstr ""

#: _inc/client/components/support-card/index.jsx:101
msgid "Search our support site"
msgstr ""

#: _inc/client/components/support-card/index.jsx:108
msgid "Get a faster resolution to your support questions."
msgstr ""

#: _inc/client/components/support-card/index.jsx:110
msgid "Upgrade"
msgstr ""

#: _inc/client/components/support-info/index.jsx:99
msgid "Privacy information"
msgstr ""

#: _inc/client/components/themes-promo-card/index.jsx:47
msgid " Premium Themes"
msgstr ""

#: _inc/client/components/themes-promo-card/index.jsx:51
msgid "Introducing Premium Themes"
msgstr ""

#: _inc/client/components/themes-promo-card/index.jsx:53
msgid ""
"{{p}}To create a beautiful site that looks and works exactly how you want it "
"to, Jetpack Professional gives you unlimited access to over 200 premium "
"WordPress themes.{{/p}}{{p}}Jetpack Professional is about more than just "
"finding the perfect design. It's also about total peace of mind: real-time "
"backups, automatic malware scanning, and priority support from our global "
"team of experts guarantee that your site will always be safe and secure.{{/"
"p}}"
msgstr ""

#: _inc/client/components/themes-promo-card/index.jsx:62
msgid ""
"{{p}}To create a beautiful site that looks and works exactly how you want it "
"to, Jetpack Professional gives you unlimited access to over 200 premium "
"WordPress themes.{{/p}}{{p}}Jetpack Professional is about more than just "
"finding the perfect design. It's also about total peace of mind knowing that "
"you'll have priority support from our global team of experts should the need "
"arise.{{/p}}"
msgstr ""

#: _inc/client/components/themes-promo-card/index.jsx:78
msgid "Explore Professional"
msgstr ""

#: _inc/client/components/themes-promo-card/index.jsx:85
msgid "Compare All Plans"
msgstr ""

#: _inc/client/components/upgrade-notice-content/index.jsx:45
msgid "The features you rely on, adapted for the new WordPress editor."
msgstr ""

#: _inc/client/components/upgrade-notice-content/index.jsx:47
msgid "A new editor? Yes! {{a}}Learn more{{/a}}."
msgstr ""

#: _inc/client/components/upgrade-notice-content/index.jsx:60
msgid "Build your Jetpack site with blocks"
msgstr ""

#: _inc/client/components/upgrade-notice-content/index.jsx:63
msgid ""
"Today, we are introducing the first wave of Jetpack-specific blocks built "
"specifically for the new editor experience: Simple Payment button, Form, Map,"
" and Markdown."
msgstr ""

#: _inc/client/components/upgrade-notice-content/index.jsx:72
#: _inc/client/components/upgrade-notice-content/index.jsx:93
msgid "Jetpack is ready for the new WordPress editor"
msgstr ""

#: _inc/client/components/upgrade-notice-content/index.jsx:77
msgid "Take me to the new editor"
msgstr ""

#: _inc/client/components/upgrade-notice-content/index.jsx:96
msgid "New in Jetpack!"
msgstr ""

#: _inc/client/traffic/verification-services/google.jsx:79
msgid "Verifying..."
msgstr ""

#: _inc/client/traffic/verification-services/google.jsx:101
msgid "Site failed to verify: %(error)s"
msgstr ""

#: _inc/client/traffic/verification-services/google.jsx:187
#: _inc/client/traffic/verification-services/google.jsx:227
#: _inc/client/traffic/verification-services/google.jsx:311
msgid "Google"
msgstr ""

#: _inc/client/traffic/verification-services/google.jsx:206
msgid "Save"
msgstr ""

#: _inc/client/traffic/verification-services/google.jsx:214
msgid "Cancel"
msgstr ""

#: _inc/client/traffic/verification-services/google.jsx:230
msgid "Your site is verified with Google"
msgstr ""

#: _inc/client/traffic/verification-services/google.jsx:237
msgid "Edit"
msgstr ""

#: _inc/client/traffic/verification-services/google.jsx:245
msgid ""
"Monitor your site's traffic and performance from the {{a}}Google Search "
"Console{{/a}}."
msgstr ""

#: _inc/client/traffic/verification-services/google.jsx:261
msgid ""
"Google will email about certain events that occur with your site, including "
"indications that your website has been {{a1}}hacked{{/a1}}, or problems "
"{{a2}}crawling or indexing{{/a2}} your site."
msgstr ""

#: _inc/client/traffic/verification-services/google.jsx:319
msgid "Verify with Google"
msgstr ""

#: _inc/client/traffic/verification-services/google.jsx:321
msgid "or"
msgstr ""

#: _inc/client/traffic/verification-services/google.jsx:323
msgid "Manually Verify "
msgstr ""

# THIS IS THE END OF THE GENERATED FILE.