broken-link-checker.pot
57.8 KB
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
# Copyright (C) 2023 WPMU DEV
# This file is distributed under the GPLv2 or later.
msgid ""
msgstr ""
"Project-Id-Version: Broken Link Checker 2.2.0\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/broken-link-checker\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2023-06-19T05:57:29+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.7.1\n"
#. Plugin Name of the plugin
#: app/admin-pages/cloud-page/class-controller.php:85
#: app/admin-pages/cloud-submenu/class-controller.php:67
#: app/emails/recipient-activation/class-controller.php:88
#: app/emails/scan-report/class-controller.php:101
#: legacy/core/core.php:3910
msgid "Broken Link Checker"
msgstr ""
#. Plugin URI of the plugin
msgid "https://wordpress.org/plugins/broken-link-checker/"
msgstr ""
#. Description of the plugin
msgid "Checks your blog for broken links and missing images and notifies you on the dashboard if any are found."
msgstr ""
#. Author of the plugin
msgid "WPMU DEV"
msgstr ""
#. Author URI of the plugin
msgid "https://wpmudev.com/"
msgstr ""
#: app/action-links/plugin/class-controller.php:75
msgid "Cloud"
msgstr ""
#: app/action-links/plugin/class-controller.php:77
msgid "Local"
msgstr ""
#: app/action-links/plugin/class-controller.php:79
#: core/views/class-admin-page.php:121
#: core/views/class-admin-page.php:135
msgid "Docs"
msgstr ""
#: app/action-links/plugin/class-controller.php:99
#: app/emails/scan-report/class-controller.php:80
#: app/emails/scan-report/class-view.php:164
#: legacy/core/core.php:419
#: legacy/core/core.php:420
#: legacy/includes/link-query.php:37
msgid "Broken Links"
msgstr ""
#: app/admin-modals/legacy/class-controller.php:196
#: app/admin-modals/local/class-controller.php:180
#: app/admin-notices/local/class-controller.php:122
#: app/admin-pages/cloud-page/class-controller.php:246
msgid "Something went wrong here."
msgstr ""
#: app/admin-notices/features/class-view.php:40
#: assets/js/welcome-modal/main.js:1
msgid "Introducing Edit Link and Unlink features in Broken Link Checker!"
msgstr ""
#: app/admin-notices/features/class-view.php:41
msgid "Now you can edit links and unlink broken links directly from the new Cloud version with ease."
msgstr ""
#: app/admin-notices/legacy/class-view.php:42
msgid "We have completely rebuilt BLC with a new cloud-based engine. It’s now 20x faster, more accurate, and works perfectly with any site. Plus, no page limits, no ads, and it’s still 100%% free! Check out Broken Link Checker's <a href=\"%1$s\">new dashboard</a>."
msgstr ""
#: app/admin-notices/local/class-view.php:51
msgid "Cloud-based Broken Link Checker is currently active on your site. <a href=\"%1$s\">Activate the old version</a> to go back to using Local BLC."
msgstr ""
#: app/admin-notices/multisite/class-view.php:51
#: app/admin-notices/multisite/class-view.php:63
msgid "Cloud Engine supports Multisite’s main site only and doesn’t support subsites. Subsites will continue using Local BLC"
msgstr ""
#: app/admin-notices/multisite/class-view.php:64
#: legacy/core/core.php:541
#: legacy/includes/admin/table-printer.php:296
#: legacy/includes/admin/table-printer.php:727
msgid "Dismiss"
msgstr ""
#: app/admin-pages/cloud-page/class-controller.php:86
msgid "Link Checker"
msgstr ""
#: app/admin-pages/cloud-submenu/class-controller.php:68
msgid "Cloud [new]"
msgstr ""
#: app/admin-pages/local-submenu/class-controller.php:76
#: app/admin-pages/local-submenu/class-view.php:77
msgid "Local Broken Link Checker"
msgstr ""
#: app/admin-pages/local-submenu/class-controller.php:77
msgid "Local [old]"
msgstr ""
#: app/admin-pages/local-submenu/class-view.php:83
#: app/admin-pages/local-submenu/class-view.php:84
msgid "Activate Cloud-based Link Checker"
msgstr ""
#: app/broken-links-actions/class-link.php:269
msgid "Missing origins"
msgstr ""
#: app/broken-links-actions/class-router.php:47
msgid "BLC is set to local. Can not perform Cloud actions"
msgstr ""
#: app/broken-links-actions/class-router.php:87
msgid "Something went wrong"
msgstr ""
#: app/broken-links-actions/class-router.php:134
msgid "Empty link"
msgstr ""
#: app/broken-links-actions/class-router.php:176
msgid "Aborting as there are no links"
msgstr ""
#: app/broken-links-actions/class-router.php:226
msgid "Missing input conversion params"
msgstr ""
#: app/broken-links-actions/class-router.php:241
msgid "Invalid input json string"
msgstr ""
#: app/broken-links-actions/class-router.php:261
msgid "Links params do not follow schema. Key `%1$s` missing"
msgstr ""
#: app/broken-links-actions/class-router.php:280
msgid "Links param `%1$s` potentially malicious"
msgstr ""
#: app/broken-links-actions/class-router.php:299
msgid "Invalid sub-site id"
msgstr ""
#: app/broken-links-actions/handlers/class-full-site-handler.php:268
msgid "Missing Full Site Target Table"
msgstr ""
#: app/broken-links-actions/processors/class-main.php:330
msgid "Unmapped action"
msgstr ""
#: app/emails/recipient-activation/class-controller.php:55
msgid "Broken links reports activation"
msgstr ""
#: app/emails/recipient-activation/class-controller.php:81
#: app/emails/scan-report/class-controller.php:70
msgid "Hi {{USERNAME}}"
msgstr ""
#: app/emails/recipient-activation/class-controller.php:85
msgid "Confirm Subscription"
msgstr ""
#: app/emails/recipient-activation/class-controller.php:92
#: app/emails/scan-report/class-controller.php:106
msgid "Link to WPMU DEV Home page"
msgstr ""
#: app/emails/recipient-activation/class-controller.php:93
#: app/emails/scan-report/class-controller.php:107
msgid "Build A Better WordPress Business"
msgstr ""
#: app/emails/recipient-activation/class-controller.php:94
#: app/emails/scan-report/class-controller.php:108
msgid "INCSUB PO BOX 163, ALBERT PARK, VICTORIA.3206 AUSTRALIA"
msgstr ""
#: app/emails/recipient-activation/class-controller.php:96
#: app/emails/scan-report/class-controller.php:110
msgid "Unsubscribe"
msgstr ""
#: app/emails/recipient-activation/class-model.php:47
msgid "Broken Link Notification"
msgstr ""
#: app/emails/recipient-activation/class-model.php:106
#: app/emails/scan-report/class-view.php:229
msgid "Follow us"
msgstr ""
#: app/emails/scan-report/class-controller.php:69
msgid "Broken Link Report for"
msgstr ""
#: app/emails/scan-report/class-controller.php:72
msgid "Here's your latest broken link summary generated on {{SCANDATE}}."
msgstr ""
#: app/emails/scan-report/class-controller.php:76
msgid "Summary"
msgstr ""
#: app/emails/scan-report/class-controller.php:77
msgid "Here are your latest broken link test results."
msgstr ""
#: app/emails/scan-report/class-controller.php:86
msgid "Total Links"
msgstr ""
#: app/emails/scan-report/class-controller.php:89
msgid "Unique URLs"
msgstr ""
#: app/emails/scan-report/class-controller.php:95
msgid "Broken link report"
msgstr ""
#: app/emails/scan-report/class-controller.php:96
msgid "The list below shows a maximum of 20 broken links. Click the View Full Report button to see the full list."
msgstr ""
#: app/emails/scan-report/class-controller.php:98
msgid "View Full Report"
msgstr ""
#: app/emails/scan-report/class-controller.php:98
msgid "View Report"
msgstr ""
#. translators: 1: opening <a> tag 2: closing </a> tag
#: app/emails/scan-report/class-controller.php:133
msgid "Are you enjoying the new Broken Link Checker? Share your valuable feedback on wordpress.org to help us further enhance and support our plugin. Give us feedback %shere%s."
msgstr ""
#: app/emails/scan-report/class-controller.php:180
#: app/virtual-posts/recipient-activation/class-controller.php:29
msgid "Broken links reports"
msgstr ""
#: app/emails/scan-report/class-model.php:61
msgid "BLC Report"
msgstr ""
#: app/emails/scan-report/class-view.php:103
msgid "Unknown"
msgstr ""
#: app/emails/scan-report/class-view.php:167
#: legacy/core/core.php:923
#: legacy/includes/admin/table-printer.php:215
msgid "Status"
msgstr ""
#: app/emails/scan-report/class-view.php:170
msgid "Source URL"
msgstr ""
#: app/http-requests/scan/class-controller.php:156
msgid "Scan for Broken Links is in progress. Please wait a few minutes until scan completes."
msgstr ""
#: app/http-requests/scan/class-controller.php:174
#: app/http-requests/sync-scan-results/class-controller.php:276
msgid "Scan could not be started because it seems you are on localhost. Broken Links Checker API can not reach sites on local hosts"
msgstr ""
#: app/http-requests/scan/class-controller.php:188
#: app/http-requests/sync-scan-results/class-controller.php:290
msgid "Can not make request."
msgstr ""
#: app/http-requests/scan/class-controller.php:243
#: app/http-requests/sync-scan-results/class-controller.php:345
msgid "Something went wrong with request."
msgstr ""
#: app/http-requests/scan/class-controller.php:244
msgid "Scan is currently in progress. Please try again in 15 minutes."
msgstr ""
#: app/http-requests/sync-scan-results/class-controller.php:250
msgid "Scan completed successfully."
msgstr ""
#: app/http-requests/sync-scan-results/class-controller.php:257
msgid "Data successfully updated."
msgstr ""
#: app/http-requests/sync-scan-results/class-controller.php:346
msgid "Scan is currently in progress. Please try again in a few minutes."
msgstr ""
#: app/http-requests/sync-scan-results/class-controller.php:347
msgid "Something went wrong while storing new data to DB. More likely there is nothing to update"
msgstr ""
#: app/http-requests/sync-scan-results/class-controller.php:348
msgid "The start time is missing. Aborting importing data."
msgstr ""
#: app/http-requests/sync-scan-results/class-controller.php:349
msgid "Results are missing. Aborting importing data."
msgstr ""
#: app/rest-endpoints/avatars/class-controller.php:87
msgid "Avatar url"
msgstr ""
#: app/rest-endpoints/avatars/class-controller.php:92
msgid "Invalid email address"
msgstr ""
#: app/rest-endpoints/avatars/class-controller.php:118
msgid "You can not fetch avatars."
msgstr ""
#: app/rest-endpoints/avatars/class-controller.php:147
msgid "Avatar by email."
msgstr ""
#: app/rest-endpoints/avatars/class-controller.php:152
msgid "Auto-confirmed when email belongs to user."
msgstr ""
#: app/rest-endpoints/avatars/class-controller.php:157
#: app/rest-endpoints/scan/class-controller.php:198
#: app/rest-endpoints/settings/includes/class-schema.php:99
msgid "Response message."
msgstr ""
#: app/rest-endpoints/avatars/class-controller.php:162
#: app/rest-endpoints/scan/class-controller.php:208
#: app/rest-endpoints/settings/includes/class-schema.php:104
msgid "Response status code."
msgstr ""
#: app/rest-endpoints/scan/class-controller.php:154
msgid "You are not allowed to start a new scan."
msgstr ""
#: app/rest-endpoints/scan/class-controller.php:183
msgid "If true scan has started successfully, else it has not."
msgstr ""
#: app/rest-endpoints/scan/class-controller.php:188
msgid "The scan status."
msgstr ""
#: app/rest-endpoints/scan/class-controller.php:203
msgid "Scan response data/results."
msgstr ""
#: app/rest-endpoints/settings/class-controller.php:127
msgid "Schedule event not created. Please refresh page and try once more"
msgstr ""
#: app/rest-endpoints/settings/class-controller.php:168
msgid "Dashboard plugin is already active. Please wait while refreshing page."
msgstr ""
#: app/rest-endpoints/settings/class-controller.php:187
msgid "Dashboard plugin has been activated."
msgstr ""
#: app/rest-endpoints/settings/class-controller.php:210
msgid "Dashboard plugin has been activated. You should be redirected to sign-in page shortly"
msgstr ""
#: app/rest-endpoints/settings/class-controller.php:230
msgid "Dashboard plugin could not be activated. You can reload page and try again or contact support."
msgstr ""
#: app/rest-endpoints/settings/class-controller.php:247
msgid "Dashboard plugin is not installed. You can connect your site for free directly from <a href=\"%s\">Hub<a>."
msgstr ""
#: app/rest-endpoints/settings/class-controller.php:261
msgid "Settings saved"
msgstr ""
#: app/rest-endpoints/settings/class-controller.php:454
msgid "Schedule frequency was not set"
msgstr ""
#: app/rest-endpoints/settings/class-controller.php:462
msgid "Schedule days were not set"
msgstr ""
#: app/rest-endpoints/settings/class-controller.php:551
msgid "You cannot view settings."
msgstr ""
#: app/rest-endpoints/settings/class-controller.php:589
msgid "Action forbidden."
msgstr ""
#: app/rest-endpoints/settings/includes/class-schema.php:69
msgid "All BLC settings."
msgstr ""
#: app/rest-endpoints/settings/includes/class-schema.php:73
msgid "Activation modal shown or not."
msgstr ""
#: app/rest-endpoints/settings/includes/class-schema.php:78
msgid "Use legacy BLC"
msgstr ""
#: app/rest-endpoints/settings/includes/class-schema.php:86
msgid "User role name"
msgstr ""
#: app/rest-endpoints/settings/includes/class-schema.php:90
msgid "User role label"
msgstr ""
#: app/rest-endpoints/settings/includes/class-schema.php:117
msgid "Response instructions."
msgstr ""
#: app/virtual-posts/recipient-activation/class-view.php:43
msgid "You have been added in broken links reports recipients."
msgstr ""
#. translators: 1: Recipient name 2: Opening link tag 3; Closing link tag
#: app/virtual-posts/recipient-activation/class-view.php:49
msgid "Hi %1$s. You have become a recipient of site's broken links reports. You can continue to site from %2$shere%3$s."
msgstr ""
#. translators: 1: Opening link tag 2; Closing link tag
#: app/virtual-posts/recipient-activation/class-view.php:73
msgid "If you do not wish to receive these reports in your email, you can contact site admins or click %1$shere to cancel email reports instantly%2$s."
msgstr ""
#: app/virtual-posts/recipient-activation/class-view.php:81
msgid "If you do not wish to receive these reports in your email, you can contact site admins."
msgstr ""
#: app/virtual-posts/recipient-activation/class-view.php:95
msgid "Your email has been successfully removed from broken links recipients list."
msgstr ""
#. translators: 1: Recipient name 2: Opening link tag 3; Closing link tag
#: app/virtual-posts/recipient-activation/class-view.php:102
msgid "Hi %1$s. You should stop receiving broken links reports for this site. You can visit site from %2$shere%3$s."
msgstr ""
#: app/webhooks/recipient-activation/class-controller.php:56
msgid "Activate broken links recipient"
msgstr ""
#: app/webhooks/scan-complete/class-controller.php:66
msgid "Scan results"
msgstr ""
#: app/webhooks/user-review/class-controller.php:59
msgid "Review Broken Link Checker plugin"
msgstr ""
#: app/webhooks/user-review/class-controller.php:75
msgid "It seems there is some missing input"
msgstr ""
#: app/webhooks/user-review/class-controller.php:76
#: app/webhooks/user-review/class-controller.php:85
msgid "Invalid action"
msgstr ""
#: app/webhooks/user-review/class-controller.php:84
msgid "No user found for given input data."
msgstr ""
#: core/models/class-http-request.php:93
msgid "Missing url."
msgstr ""
#: core/utils/class-utilities.php:805
msgid "%d h "
msgid_plural "%d h "
msgstr[0] ""
msgstr[1] ""
#: core/utils/class-utilities.php:816
msgid "%d min "
msgid_plural "%d min "
msgstr[0] ""
msgstr[1] ""
#: core/utils/class-utilities.php:826
msgid "%d s "
msgid_plural "%d s "
msgstr[0] ""
msgstr[1] ""
#: core/utils/class-utilities.php:889
msgctxt "date time sep"
msgid " "
msgstr ""
#: core/views/class-admin-page.php:67
msgid "View Documentation"
msgstr ""
#. translators: %s - icon
#: core/views/class-admin-page.php:96
msgid "Made with %s by WPMU DEV"
msgstr ""
#: core/views/class-admin-page.php:117
#: core/views/class-admin-page.php:136
msgid "The Hub"
msgstr ""
#: core/views/class-admin-page.php:118
msgid "Plugins"
msgstr ""
#: core/views/class-admin-page.php:119
#: core/views/class-admin-page.php:133
msgid "Roadmap"
msgstr ""
#: core/views/class-admin-page.php:120
#: core/views/class-admin-page.php:134
msgid "Support"
msgstr ""
#: core/views/class-admin-page.php:122
msgid "Community"
msgstr ""
#: core/views/class-admin-page.php:123
#: core/views/class-admin-page.php:137
msgid "Terms of Service"
msgstr ""
#: core/views/class-admin-page.php:124
#: core/views/class-admin-page.php:138
msgid "Privacy Policy"
msgstr ""
#: core/views/class-admin-page.php:131
msgid "Free Plugins"
msgstr ""
#: core/views/class-admin-page.php:132
msgid "Membership"
msgstr ""
#: legacy/core/core.php:233
#: legacy/includes/admin/links-page-js.php:45
msgid "Loading..."
msgstr ""
#: legacy/core/core.php:257
#: legacy/includes/admin/options-page-js.php:18
msgid "[ Network error ]"
msgstr ""
#: legacy/core/core.php:301
msgid "Automatically expand the widget if broken links have been detected"
msgstr ""
#: legacy/core/core.php:396
msgid "Broken Links (Old)"
msgstr ""
#: legacy/core/core.php:502
msgid "Settings"
msgstr ""
#: legacy/core/core.php:538
#: legacy/includes/admin/table-printer.php:292
#: legacy/includes/admin/table-printer.php:710
msgid "Edit URL"
msgstr ""
#: legacy/core/core.php:539
#: legacy/includes/admin/links-page-js.php:716
#: legacy/includes/admin/table-printer.php:297
#: legacy/includes/admin/table-printer.php:713
msgid "Unlink"
msgstr ""
#: legacy/core/core.php:540
#: legacy/includes/admin/links-page-js.php:111
#: legacy/includes/admin/table-printer.php:719
msgid "Not broken"
msgstr ""
#: legacy/core/core.php:542
#: legacy/includes/admin/table-printer.php:293
#: legacy/includes/admin/table-printer.php:739
msgid "Recheck"
msgstr ""
#: legacy/core/core.php:543
#: legacy/includes/admin/table-printer.php:747
msgctxt "link action; replace one redirect with a direct link"
msgid "Fix redirect"
msgstr ""
#: legacy/core/core.php:834
msgid "Settings saved."
msgstr ""
#: legacy/core/core.php:841
msgid "Complete site recheck started."
msgstr ""
#: legacy/core/core.php:864
msgid "General"
msgstr ""
#: legacy/core/core.php:865
msgid "Look For Links In"
msgstr ""
#: legacy/core/core.php:866
msgid "Which Links To Check"
msgstr ""
#: legacy/core/core.php:867
msgid "Protocols & APIs"
msgstr ""
#: legacy/core/core.php:868
msgid "Advanced"
msgstr ""
#: legacy/core/core.php:926
#: legacy/includes/admin/options-page-js.php:56
msgid "Show debug info"
msgstr ""
#: legacy/core/core.php:954
msgid "Check each link"
msgstr ""
#: legacy/core/core.php:959
msgid "Every %s hours"
msgstr ""
#: legacy/core/core.php:968
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
msgstr ""
#: legacy/core/core.php:975
msgid "E-mail notifications"
msgstr ""
#: legacy/core/core.php:987
msgid "Send me e-mail notifications about newly detected broken links"
msgstr ""
#: legacy/core/core.php:1001
msgid "Send authors e-mail notifications about broken links in their posts"
msgstr ""
#: legacy/core/core.php:1008
msgid "Notification e-mail address"
msgstr ""
#: legacy/core/core.php:1020
msgid "Leave empty to use the e-mail address specified in Settings → General."
msgstr ""
#: legacy/core/core.php:1028
msgctxt "settings page"
msgid "Control external links"
msgstr ""
#: legacy/core/core.php:1035
msgid "Configure <a target=\"_blank\" href=\"%s\">External Links</a> settings."
msgstr ""
#: legacy/core/core.php:1040
msgid "Install the free <a href=\"%s\" class=\"thickbox open-plugin-details-modal\">External Links plugin</a> to control if external links open in a new tab, and their nofollow, noopener and UGC options."
msgstr ""
#: legacy/core/core.php:1044
msgid "It's used on over 80,000 sites just like yours."
msgstr ""
#: legacy/core/core.php:1052
msgid "Link tweaks"
msgstr ""
#: legacy/core/core.php:1064
msgid "Apply custom formatting to broken links"
msgstr ""
#: legacy/core/core.php:1069
#: legacy/core/core.php:1114
msgid "Edit CSS"
msgstr ""
#: legacy/core/core.php:1091
msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
msgstr ""
#: legacy/core/core.php:1094
#: legacy/core/core.php:1140
msgid "Click \"Save Changes\" to update example output."
msgstr ""
#: legacy/core/core.php:1109
msgid "Apply custom formatting to removed links"
msgstr ""
#: legacy/core/core.php:1137
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
msgstr ""
#: legacy/core/core.php:1156
msgid "Stop search engines from following broken links"
msgstr ""
#: legacy/core/core.php:1162
msgctxt "\"Link tweaks\" settings"
msgid "These settings only apply to the content of posts, not comments or custom fields."
msgstr ""
#: legacy/core/core.php:1173
msgctxt "settings page"
msgid "Suggestions"
msgstr ""
#: legacy/core/core.php:1179
msgid "Suggest alternatives to broken links"
msgstr ""
#: legacy/core/core.php:1185
msgctxt "settings page"
msgid "Warnings"
msgstr ""
#: legacy/core/core.php:1190
msgid "Show uncertain or minor problems as \"warnings\" instead of \"broken\""
msgstr ""
#: legacy/core/core.php:1194
msgid "Turning off this option will make the plugin report all problems as broken links."
msgstr ""
#: legacy/core/core.php:1201
msgid "YouTube API Key"
msgstr ""
#: legacy/core/core.php:1213
msgid "Use your own %1$sapi key%2$s for checking youtube links."
msgstr ""
#: legacy/core/core.php:1220
msgid "Post Modified Date"
msgstr ""
#: legacy/core/core.php:1225
msgid "Disable post modified date change when link is edited"
msgstr ""
#: legacy/core/core.php:1240
msgid "Look for links in"
msgstr ""
#: legacy/core/core.php:1257
msgid "Post statuses"
msgstr ""
#: legacy/core/core.php:1291
msgid "Link types"
msgstr ""
#: legacy/core/core.php:1297
msgid "Error : All link parsers missing!"
msgstr ""
#: legacy/core/core.php:1304
msgid "Exclusion list"
msgstr ""
#: legacy/core/core.php:1305
msgid "Don't check links where the URL contains any of these words (one per line) :"
msgstr ""
#: legacy/core/core.php:1327
msgid "Check links using"
msgstr ""
#: legacy/core/core.php:1347
#: legacy/includes/links.php:1033
msgid "Timeout"
msgstr ""
#: legacy/core/core.php:1353
#: legacy/core/core.php:1450
#: legacy/core/core.php:4019
msgid "%s seconds"
msgstr ""
#: legacy/core/core.php:1362
msgid "Links that take longer than this to load will be marked as broken."
msgstr ""
#: legacy/core/core.php:1369
msgid "Link monitor"
msgstr ""
#: legacy/core/core.php:1382
msgid "Run continuously while the Dashboard is open"
msgstr ""
#: legacy/core/core.php:1395
msgid "Run hourly in the background"
msgstr ""
#: legacy/core/core.php:1403
msgid "Show the dashboard widget for"
msgstr ""
#: legacy/core/core.php:1408
msgctxt "dashboard widget visibility"
msgid "Administrator"
msgstr ""
#: legacy/core/core.php:1409
msgctxt "dashboard widget visibility"
msgid "Editor and above"
msgstr ""
#: legacy/core/core.php:1410
msgctxt "dashboard widget visibility"
msgid "Nobody (disables the widget)"
msgstr ""
#: legacy/core/core.php:1426
msgctxt "settings page"
msgid "Show link actions"
msgstr ""
#: legacy/core/core.php:1444
msgid "Max. execution time"
msgstr ""
#: legacy/core/core.php:1462
msgid "The plugin works by periodically launching a background job that parses your posts for links, checks the discovered URLs, and performs other time-consuming tasks. Here you can set for how long, at most, the link monitor may run each time before stopping."
msgstr ""
#: legacy/core/core.php:1471
msgid "Server load limit"
msgstr ""
#: legacy/core/core.php:1486
msgid "Current load : %s"
msgstr ""
#: legacy/core/core.php:1491
msgid "Link checking will be suspended if the average <a href=\"%s\">server load</a> rises above this number. Leave this field blank to disable load limiting."
msgstr ""
#: legacy/core/core.php:1500
msgid "Not available"
msgstr ""
#: legacy/core/core.php:1502
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
msgstr ""
#: legacy/core/core.php:1510
msgid "Target resource usage"
msgstr ""
#: legacy/core/core.php:1530
msgid "Logging"
msgstr ""
#: legacy/core/core.php:1536
msgid "Enable logging"
msgstr ""
#: legacy/core/core.php:1543
msgid "Log file location"
msgstr ""
#: legacy/core/core.php:1552
msgctxt "log file location"
msgid "Default"
msgstr ""
#: legacy/core/core.php:1568
msgctxt "log file location"
msgid "Custom"
msgstr ""
#: legacy/core/core.php:1578
msgid "Log file clear schedule"
msgstr ""
#: legacy/core/core.php:1584
#: legacy/includes/admin/table-printer.php:548
msgid "Never"
msgstr ""
#: legacy/core/core.php:1606
msgid "Forced recheck"
msgstr ""
#: legacy/core/core.php:1609
msgid "Re-check all pages"
msgstr ""
#: legacy/core/core.php:1614
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
msgstr ""
#: legacy/core/core.php:1627
msgid "Save Changes"
msgstr ""
#: legacy/core/core.php:1678
msgid "Configure"
msgstr ""
#: legacy/core/core.php:1786
msgid "Enter the names of custom fields you want to check (one per line). If a field contains HTML code, prefix its name with <code>html:</code>. For example, <code>html:field_name</code>."
msgstr ""
#: legacy/core/core.php:1801
msgid "Enter the keys of acf fields you want to check (one per line). If a field contains HTML code, prefix its name with <code>html:</code>. For example, <code>html:field_586a3eaa4091b</code>."
msgstr ""
#: legacy/core/core.php:1940
#: legacy/core/core.php:2030
#: legacy/core/core.php:2062
msgid "Database error : %s"
msgstr ""
#: legacy/core/core.php:2011
msgid "You must enter a filter name!"
msgstr ""
#: legacy/core/core.php:2015
msgid "Invalid search query."
msgstr ""
#: legacy/core/core.php:2025
msgid "Filter \"%s\" created"
msgstr ""
#: legacy/core/core.php:2052
msgid "Filter ID not specified."
msgstr ""
#: legacy/core/core.php:2059
msgid "Filter deleted"
msgstr ""
#: legacy/core/core.php:2109
msgid "Replaced %d redirect with a direct link"
msgid_plural "Replaced %d redirects with direct links"
msgstr[0] ""
msgstr[1] ""
#: legacy/core/core.php:2120
msgid "Failed to fix %d redirect"
msgid_plural "Failed to fix %d redirects"
msgstr[0] ""
msgstr[1] ""
#: legacy/core/core.php:2131
msgid "None of the selected links are redirects!"
msgstr ""
#: legacy/core/core.php:2218
msgid "%d link updated."
msgid_plural "%d links updated."
msgstr[0] ""
msgstr[1] ""
#: legacy/core/core.php:2229
msgid "Failed to update %d link."
msgid_plural "Failed to update %d links."
msgstr[0] ""
msgstr[1] ""
#: legacy/core/core.php:2322
msgid "%d link removed"
msgid_plural "%d links removed"
msgstr[0] ""
msgstr[1] ""
#: legacy/core/core.php:2333
msgid "Failed to remove %d link"
msgid_plural "Failed to remove %d links"
msgstr[0] ""
msgstr[1] ""
#: legacy/core/core.php:2448
msgid "%d item was skipped because it can't be moved to the Trash. You need to delete it manually."
msgid_plural "%d items were skipped because they can't be moved to the Trash. You need to delete them manually."
msgstr[0] ""
msgstr[1] ""
#: legacy/core/core.php:2470
msgid "Didn't find anything to delete!"
msgstr ""
#: legacy/core/core.php:2509
msgid "%d link scheduled for rechecking"
msgid_plural "%d links scheduled for rechecking"
msgstr[0] ""
msgstr[1] ""
#: legacy/core/core.php:2559
#: legacy/core/core.php:3434
msgid "This link was manually marked as working by the user."
msgstr ""
#: legacy/core/core.php:2567
#: legacy/core/core.php:2631
msgid "Couldn't modify link %d"
msgstr ""
#: legacy/core/core.php:2578
msgid "%d link marked as not broken"
msgid_plural "%d links marked as not broken"
msgstr[0] ""
msgstr[1] ""
#: legacy/core/core.php:2642
msgid "%d link dismissed"
msgid_plural "%d links dismissed"
msgstr[0] ""
msgstr[1] ""
#: legacy/core/core.php:2712
msgid "The \"Warnings\" page lists problems that are probably temporary or suspected to be false positives.<br> Warnings that persist for a long time will usually be reclassified as broken links."
msgstr ""
#: legacy/core/core.php:2717
msgctxt "admin notice under Tools - Broken links - Warnings"
msgid "Hide notice"
msgstr ""
#: legacy/core/core.php:2723
msgctxt "a link from the admin notice under Tools - Broken links - Warnings"
msgid "Change warning settings"
msgstr ""
#: legacy/core/core.php:2748
msgid "Table columns"
msgstr ""
#: legacy/core/core.php:2767
msgid "Show on screen"
msgstr ""
#: legacy/core/core.php:2774
msgid "links"
msgstr ""
#: legacy/core/core.php:2775
#: legacy/includes/admin/table-printer.php:175
msgid "Apply"
msgstr ""
#: legacy/core/core.php:2779
msgid "Misc"
msgstr ""
#: legacy/core/core.php:2794
msgid "Highlight links broken for at least %s days"
msgstr ""
#: legacy/core/core.php:2803
msgid "Color-code status codes"
msgstr ""
#: legacy/core/core.php:2823
#: legacy/core/core.php:3418
#: legacy/core/core.php:3465
#: legacy/core/core.php:3504
#: legacy/core/core.php:3630
#: legacy/core/core.php:3690
#: legacy/core/core.php:3770
msgid "You're not allowed to do that!"
msgstr ""
#: legacy/core/core.php:3286
msgid "View broken links"
msgstr ""
#: legacy/core/core.php:3287
msgid "Found %d broken link"
msgid_plural "Found %d broken links"
msgstr[0] ""
msgstr[1] ""
#: legacy/core/core.php:3293
msgid "No broken links found."
msgstr ""
#: legacy/core/core.php:3300
msgid "%d URL in the work queue"
msgid_plural "%d URLs in the work queue"
msgstr[0] ""
msgstr[1] ""
#: legacy/core/core.php:3304
msgid "No URLs in the work queue."
msgstr ""
#: legacy/core/core.php:3310
msgctxt "for the \"Detected X unique URLs in Y links\" message"
msgid "%d unique URL"
msgid_plural "%d unique URLs"
msgstr[0] ""
msgstr[1] ""
#: legacy/core/core.php:3314
msgctxt "for the \"Detected X unique URLs in Y links\" message"
msgid "%d link"
msgid_plural "%d links"
msgstr[0] ""
msgstr[1] ""
#: legacy/core/core.php:3320
msgid "Detected %1$s in %2$s and still searching..."
msgstr ""
#: legacy/core/core.php:3326
msgid "Detected %1$s in %2$s."
msgstr ""
#: legacy/core/core.php:3333
msgid "Searching your blog for links..."
msgstr ""
#: legacy/core/core.php:3335
msgid "No links detected."
msgstr ""
#: legacy/core/core.php:3361
msgctxt "current load"
msgid "Unknown"
msgstr ""
#: legacy/core/core.php:3426
#: legacy/core/core.php:3473
#: legacy/core/core.php:3527
#: legacy/core/core.php:3644
#: legacy/core/core.php:3713
#: legacy/core/core.php:3793
msgid "Oops, I can't find the link %d"
msgstr ""
#: legacy/core/core.php:3446
#: legacy/core/core.php:3487
msgid "Oops, couldn't modify the link!"
msgstr ""
#: legacy/core/core.php:3449
#: legacy/core/core.php:3490
#: legacy/core/core.php:3678
#: legacy/core/core.php:3700
#: legacy/core/core.php:3780
msgid "Error : link_id not specified"
msgstr ""
#: legacy/core/core.php:3514
msgid "Error : link_id or new_url not specified"
msgstr ""
#: legacy/core/core.php:3540
#: legacy/core/core.php:3554
msgid "Oops, the new URL is invalid!"
msgstr ""
#: legacy/core/core.php:3574
msgid "An unexpected error occurred!"
msgstr ""
#: legacy/core/core.php:3657
msgid "An unexpected error occured!"
msgstr ""
#: legacy/core/core.php:3829
msgid "You don't have sufficient privileges to access this information!"
msgstr ""
#: legacy/core/core.php:3842
msgid "Error : link ID not specified"
msgstr ""
#: legacy/core/core.php:3856
msgid "Failed to load link details (%s)"
msgstr ""
#: legacy/core/core.php:3930
msgid "PHP version"
msgstr ""
#: legacy/core/core.php:3936
msgid "MySQL version"
msgstr ""
#: legacy/core/core.php:3949
msgid "You have an old version of CURL. Redirect detection may not work properly."
msgstr ""
#: legacy/core/core.php:3960
#: legacy/core/core.php:3976
#: legacy/core/core.php:3981
msgid "Not installed"
msgstr ""
#: legacy/core/core.php:3963
msgid "CURL version"
msgstr ""
#: legacy/core/core.php:3969
msgid "Installed"
msgstr ""
#: legacy/core/core.php:3982
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
msgstr ""
#: legacy/core/core.php:3992
msgid "On"
msgstr ""
#: legacy/core/core.php:3993
msgid "Redirects may be detected as broken links when safe_mode is on."
msgstr ""
#: legacy/core/core.php:3998
#: legacy/core/core.php:4012
msgid "Off"
msgstr ""
#: legacy/core/core.php:4006
msgid "On ( %s )"
msgstr ""
#: legacy/core/core.php:4007
msgid "Redirects may be detected as broken links when open_basedir is on."
msgstr ""
#: legacy/core/core.php:4025
msgid "Database character set"
msgstr ""
#: legacy/core/core.php:4044
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
msgstr ""
#: legacy/core/core.php:4179
#: legacy/core/core.php:4304
msgid "[%s] Broken links detected"
msgstr ""
#: legacy/core/core.php:4184
msgid "Broken Link Checker has detected %d new broken link on your site."
msgid_plural "Broken Link Checker has detected %d new broken links on your site."
msgstr[0] ""
msgstr[1] ""
#: legacy/core/core.php:4216
msgid "Here's a list of the first %d broken links:"
msgid_plural "Here's a list of the first %d broken links:"
msgstr[0] ""
msgstr[1] ""
#: legacy/core/core.php:4225
msgid "Here's a list of the new broken links: "
msgstr ""
#: legacy/core/core.php:4235
msgid "Link text : %s"
msgstr ""
#: legacy/core/core.php:4236
msgid "Link URL : <a href=\"%1$s\">%2$s</a>"
msgstr ""
#: legacy/core/core.php:4237
msgid "Source : %s"
msgstr ""
#: legacy/core/core.php:4251
msgid "You can see all broken links here:"
msgstr ""
#: legacy/core/core.php:4309
msgid "Broken Link Checker has detected %d new broken link in your posts."
msgid_plural "Broken Link Checker has detected %d new broken links in your posts."
msgstr[0] ""
msgstr[1] ""
#: legacy/core/init.php:235
#: legacy/init.php:252
msgid "Every 10 minutes"
msgstr ""
#: legacy/core/init.php:242
#: legacy/init.php:259
msgid "Once Weekly"
msgstr ""
#: legacy/core/init.php:248
#: legacy/init.php:265
msgid "Twice a Month"
msgstr ""
#: legacy/core/init.php:321
#: legacy/init.php:340
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
msgstr ""
#: legacy/includes/admin/db-upgrade.php:96
msgid "Failed to delete old DB tables. Database error : %s"
msgstr ""
#: legacy/includes/admin/links-page-js.php:64
#: legacy/includes/admin/links-page-js.php:659
msgid "Wait..."
msgstr ""
#: legacy/includes/admin/links-page-js.php:370
msgctxt "link text"
msgid "(None)"
msgstr ""
#: legacy/includes/admin/links-page-js.php:371
msgctxt "link text"
msgid "(Multiple links)"
msgstr ""
#: legacy/includes/admin/links-page-js.php:429
msgctxt "link suggestions"
msgid "Searching..."
msgstr ""
#: legacy/includes/admin/links-page-js.php:430
msgctxt "link suggestions"
msgid "No suggestions available."
msgstr ""
#: legacy/includes/admin/links-page-js.php:431
msgctxt "link suggestions"
msgid "Archived page from %s (via the Wayback Machine)"
msgstr ""
#: legacy/includes/admin/links-page-js.php:528
msgid "%d instances of the link were successfully modified."
msgstr ""
#: legacy/includes/admin/links-page-js.php:534
msgid "However, %d instances couldn't be edited and still point to the old URL."
msgstr ""
#: legacy/includes/admin/links-page-js.php:540
msgid "The link could not be modified."
msgstr ""
#: legacy/includes/admin/links-page-js.php:543
msgid "The following error(s) occurred :"
msgstr ""
#: legacy/includes/admin/links-page-js.php:615
msgid "Error: Link URL must not be empty."
msgstr ""
#: legacy/includes/admin/links-page-js.php:654
msgid "Are you sure you want to unlink and remove this link from all posts?"
msgstr ""
#: legacy/includes/admin/links-page-js.php:694
msgid "%d instances of the link were successfully unlinked."
msgstr ""
#: legacy/includes/admin/links-page-js.php:700
msgid "However, %d instances couldn't be removed."
msgstr ""
#: legacy/includes/admin/links-page-js.php:705
msgid "The plugin failed to remove the link."
msgstr ""
#: legacy/includes/admin/links-page-js.php:708
msgid "The following error(s) occured :"
msgstr ""
#: legacy/includes/admin/links-page-js.php:756
msgid "Enter a name for the new custom filter"
msgstr ""
#: legacy/includes/admin/links-page-js.php:768
msgid ""
"You are about to delete the current filter.\n"
"'Cancel' to stop, 'OK' to delete"
msgstr ""
#: legacy/includes/admin/links-page-js.php:792
msgid ""
"Are you sure you want to delete all posts, bookmarks or other items that contain any of the selected links? This action can't be undone.\n"
"'Cancel' to stop, 'OK' to delete"
msgstr ""
#: legacy/includes/admin/links-page-js.php:806
msgid ""
"Are you sure you want to remove the selected links? This action can't be undone.\n"
"'Cancel' to stop, 'OK' to remove"
msgstr ""
#: legacy/includes/admin/links-page-js.php:936
msgid "Enter a search string first."
msgstr ""
#: legacy/includes/admin/links-page-js.php:943
msgid "Select one or more links to edit."
msgstr ""
#: legacy/includes/admin/options-page-js.php:54
msgid "Hide debug info"
msgstr ""
#: legacy/includes/admin/search-form.php:16
msgid "Save This Search As a Filter"
msgstr ""
#: legacy/includes/admin/search-form.php:26
msgid "Delete This Filter"
msgstr ""
#: legacy/includes/admin/search-form.php:32
#: legacy/includes/link-query.php:81
msgid "Search"
msgstr ""
#: legacy/includes/admin/search-form.php:42
msgid "Link text"
msgstr ""
#: legacy/includes/admin/search-form.php:45
#: legacy/includes/admin/table-printer.php:220
msgid "URL"
msgstr ""
#: legacy/includes/admin/search-form.php:48
#: legacy/includes/admin/table-printer.php:559
msgid "HTTP code"
msgstr ""
#: legacy/includes/admin/search-form.php:51
msgid "Link status"
msgstr ""
#: legacy/includes/admin/search-form.php:68
#: legacy/includes/admin/search-form.php:85
msgid "Link type"
msgstr ""
#: legacy/includes/admin/search-form.php:70
msgid "Any"
msgstr ""
#: legacy/includes/admin/search-form.php:74
msgid "Links used in"
msgstr ""
#: legacy/includes/admin/search-form.php:112
msgid "Search Links"
msgstr ""
#: legacy/includes/admin/search-form.php:113
#: legacy/includes/admin/table-printer.php:375
#: legacy/includes/admin/table-printer.php:779
#: legacy/includes/admin/table-printer.php:904
msgid "Cancel"
msgstr ""
#: legacy/includes/admin/table-printer.php:192
msgid "Compact View"
msgstr ""
#: legacy/includes/admin/table-printer.php:197
msgid "Detailed View"
msgstr ""
#: legacy/includes/admin/table-printer.php:227
msgid "Source"
msgstr ""
#: legacy/includes/admin/table-printer.php:233
msgid "Link Text"
msgstr ""
#: legacy/includes/admin/table-printer.php:240
msgid "Redirect URL"
msgstr ""
#: legacy/includes/admin/table-printer.php:291
msgid "Bulk Actions"
msgstr ""
#: legacy/includes/admin/table-printer.php:294
msgid "Fix redirects"
msgstr ""
#: legacy/includes/admin/table-printer.php:295
msgid "Mark as not broken"
msgstr ""
#: legacy/includes/admin/table-printer.php:300
msgid "Move sources to Trash"
msgstr ""
#: legacy/includes/admin/table-printer.php:302
msgid "Delete sources"
msgstr ""
#: legacy/includes/admin/table-printer.php:318
msgid "«"
msgstr ""
#: legacy/includes/admin/table-printer.php:319
msgid "»"
msgstr ""
#: legacy/includes/admin/table-printer.php:328
msgid "Displaying %1$s–%2$s of <span class=\"current-link-count\">%3$s</span>"
msgstr ""
#: legacy/includes/admin/table-printer.php:351
msgid "Bulk Edit URLs"
msgstr ""
#: legacy/includes/admin/table-printer.php:353
msgid "Find"
msgstr ""
#: legacy/includes/admin/table-printer.php:357
msgid "Replace with"
msgstr ""
#: legacy/includes/admin/table-printer.php:365
msgid "Case sensitive"
msgstr ""
#: legacy/includes/admin/table-printer.php:369
msgid "Regular expression"
msgstr ""
#: legacy/includes/admin/table-printer.php:378
#: legacy/includes/admin/table-printer.php:905
msgid "Update"
msgstr ""
#: legacy/includes/admin/table-printer.php:536
msgid "Post published on"
msgstr ""
#: legacy/includes/admin/table-printer.php:543
msgid "Link last checked"
msgstr ""
#: legacy/includes/admin/table-printer.php:566
msgid "Response time"
msgstr ""
#: legacy/includes/admin/table-printer.php:569
msgid "%2.3f seconds"
msgstr ""
#: legacy/includes/admin/table-printer.php:573
msgid "Final URL"
msgstr ""
#: legacy/includes/admin/table-printer.php:580
msgid "Redirect count"
msgstr ""
#: legacy/includes/admin/table-printer.php:587
msgid "Instance count"
msgstr ""
#: legacy/includes/admin/table-printer.php:598
msgid "This link has failed %d time."
msgid_plural "This link has failed %d times."
msgstr[0] ""
msgstr[1] ""
#: legacy/includes/admin/table-printer.php:606
msgid "This link has been broken for %s."
msgstr ""
#: legacy/includes/admin/table-printer.php:617
msgid "Log"
msgstr ""
#: legacy/includes/admin/table-printer.php:644
#: legacy/includes/admin/table-printer.php:688
msgid "Show more info about this link"
msgstr ""
#: legacy/includes/admin/table-printer.php:662
msgctxt "checked how long ago"
msgid "Checked"
msgstr ""
#: legacy/includes/admin/table-printer.php:677
msgid "Broken for"
msgstr ""
#: legacy/includes/admin/table-printer.php:689
msgctxt "link in the \"Status\" column"
msgid "Details"
msgstr ""
#: legacy/includes/admin/table-printer.php:710
msgid "Edit this link"
msgstr ""
#: legacy/includes/admin/table-printer.php:712
msgid "Remove this link from all posts"
msgstr ""
#: legacy/includes/admin/table-printer.php:718
msgid "Remove this link from the list of broken links and mark it as valid"
msgstr ""
#: legacy/includes/admin/table-printer.php:726
msgid "Hide this link and do not report it again unless its status changes"
msgstr ""
#: legacy/includes/admin/table-printer.php:732
msgid "Undismiss this link"
msgstr ""
#: legacy/includes/admin/table-printer.php:733
msgid "Undismiss"
msgstr ""
#: legacy/includes/admin/table-printer.php:746
msgid "Replace this redirect with a direct link"
msgstr ""
#: legacy/includes/admin/table-printer.php:780
msgid "Update URL"
msgstr ""
#: legacy/includes/admin/table-printer.php:807
msgid "[An orphaned link! This is a bug.]"
msgstr ""
#: legacy/includes/admin/table-printer.php:884
msgctxt "inline editor title"
msgid "Edit Link"
msgstr ""
#: legacy/includes/admin/table-printer.php:887
msgctxt "inline link editor"
msgid "Text"
msgstr ""
#: legacy/includes/admin/table-printer.php:892
msgctxt "inline link editor"
msgid "URL"
msgstr ""
#: legacy/includes/admin/table-printer.php:897
msgctxt "inline link editor"
msgid "Suggestions"
msgstr ""
#: legacy/includes/admin/table-printer.php:917
msgid "Use this URL"
msgstr ""
#: legacy/includes/any-post.php:486
#: legacy/modules/containers/acf_field.php:248
#: legacy/modules/containers/blogroll.php:46
#: legacy/modules/containers/comment.php:159
#: legacy/modules/containers/custom_field.php:252
msgid "Edit"
msgstr ""
#: legacy/includes/any-post.php:494
#: legacy/modules/containers/acf_field.php:252
#: legacy/modules/containers/custom_field.php:258
msgid "Move this item to the Trash"
msgstr ""
#: legacy/includes/any-post.php:496
#: legacy/modules/containers/acf_field.php:252
#: legacy/modules/containers/custom_field.php:260
msgid "Trash"
msgstr ""
#: legacy/includes/any-post.php:501
#: legacy/modules/containers/acf_field.php:254
#: legacy/modules/containers/custom_field.php:265
msgid "Delete this item permanently"
msgstr ""
#: legacy/includes/any-post.php:503
#: legacy/modules/containers/acf_field.php:254
#: legacy/modules/containers/blogroll.php:47
#: legacy/modules/containers/custom_field.php:267
msgid "Delete"
msgstr ""
#: legacy/includes/any-post.php:516
msgid "Preview “%s”"
msgstr ""
#: legacy/includes/any-post.php:517
msgid "Preview"
msgstr ""
#: legacy/includes/any-post.php:524
msgid "View “%s”"
msgstr ""
#: legacy/includes/any-post.php:525
#: legacy/modules/containers/acf_field.php:258
#: legacy/modules/containers/comment.php:172
#: legacy/modules/containers/custom_field.php:272
msgid "View"
msgstr ""
#: legacy/includes/any-post.php:544
#: legacy/modules/containers/acf_field.php:248
#: legacy/modules/containers/custom_field.php:252
msgid "Edit this item"
msgstr ""
#: legacy/includes/any-post.php:608
#: legacy/modules/containers/blogroll.php:83
#: legacy/modules/containers/comment.php:43
msgid "Nothing to update"
msgstr ""
#: legacy/includes/any-post.php:622
msgid "Updating post %d failed"
msgstr ""
#: legacy/includes/any-post.php:683
#: legacy/modules/containers/acf_field.php:327
#: legacy/modules/containers/custom_field.php:341
msgid "Failed to delete post \"%1$s\" (%2$d)"
msgstr ""
#: legacy/includes/any-post.php:702
#: legacy/modules/containers/acf_field.php:341
#: legacy/modules/containers/custom_field.php:360
msgid "Can't move post \"%1$s\" (%2$d) to the trash because the trash feature is disabled"
msgstr ""
#: legacy/includes/any-post.php:722
#: legacy/modules/containers/acf_field.php:353
#: legacy/modules/containers/custom_field.php:379
msgid "Failed to move post \"%1$s\" (%2$d) to the trash"
msgstr ""
#: legacy/includes/any-post.php:829
msgid "%d post deleted."
msgid_plural "%d posts deleted."
msgstr[0] ""
msgstr[1] ""
#: legacy/includes/any-post.php:831
msgid "%d page deleted."
msgid_plural "%d pages deleted."
msgstr[0] ""
msgstr[1] ""
#: legacy/includes/any-post.php:833
msgid "%1$d \"%2$s\" deleted."
msgid_plural "%1$d \"%2$s\" deleted."
msgstr[0] ""
msgstr[1] ""
#: legacy/includes/any-post.php:852
msgid "%d post moved to the Trash."
msgid_plural "%d posts moved to the Trash."
msgstr[0] ""
msgstr[1] ""
#: legacy/includes/any-post.php:854
msgid "%d page moved to the Trash."
msgid_plural "%d pages moved to the Trash."
msgstr[0] ""
msgstr[1] ""
#: legacy/includes/any-post.php:856
msgid "%1$d \"%2$s\" moved to the Trash."
msgid_plural "%1$d \"%2$s\" moved to the Trash."
msgstr[0] ""
msgstr[1] ""
#: legacy/includes/containers.php:123
msgid "%1$d '%2$s' has been deleted"
msgid_plural "%1$d '%2$s' have been deleted"
msgstr[0] ""
msgstr[1] ""
#: legacy/includes/containers.php:930
#: legacy/includes/containers.php:948
msgid "Container type '%s' not recognized"
msgstr ""
#: legacy/includes/extra-strings.php:2
msgctxt "module name"
msgid "Basic HTTP"
msgstr ""
#: legacy/includes/extra-strings.php:3
msgctxt "module name"
msgid "Blogroll items"
msgstr ""
#: legacy/includes/extra-strings.php:4
msgctxt "module name"
msgid "Comments"
msgstr ""
#: legacy/includes/extra-strings.php:5
msgctxt "module name"
msgid "Custom fields"
msgstr ""
#: legacy/includes/extra-strings.php:6
msgctxt "module name"
msgid "Embedded DailyMotion videos"
msgstr ""
#: legacy/includes/extra-strings.php:7
msgctxt "module name"
msgid "Embedded GoogleVideo videos"
msgstr ""
#: legacy/includes/extra-strings.php:8
msgctxt "module name"
msgid "Embedded Vimeo videos"
msgstr ""
#: legacy/includes/extra-strings.php:9
msgctxt "module name"
msgid "Embedded YouTube playlists (old embed code)"
msgstr ""
#: legacy/includes/extra-strings.php:10
msgctxt "module name"
msgid "Embedded YouTube videos"
msgstr ""
#: legacy/includes/extra-strings.php:11
msgctxt "module name"
msgid "Embedded YouTube videos (old embed code)"
msgstr ""
#: legacy/includes/extra-strings.php:12
msgctxt "module name"
msgid "HTML images"
msgstr ""
#: legacy/includes/extra-strings.php:13
msgctxt "module name"
msgid "HTML links"
msgstr ""
#: legacy/includes/extra-strings.php:14
msgctxt "module name"
msgid "MediaFire API"
msgstr ""
#: legacy/includes/extra-strings.php:15
msgctxt "module name"
msgid "Plaintext URLs"
msgstr ""
#: legacy/includes/extra-strings.php:16
msgctxt "module name"
msgid "RapidShare API"
msgstr ""
#: legacy/includes/extra-strings.php:17
msgctxt "module name"
msgid "Smart YouTube httpv:// URLs"
msgstr ""
#: legacy/includes/extra-strings.php:18
msgctxt "module name"
msgid "YouTube API"
msgstr ""
#: legacy/includes/extra-strings.php:19
msgctxt "module name"
msgid "Posts"
msgstr ""
#: legacy/includes/extra-strings.php:20
msgctxt "module name"
msgid "Pages"
msgstr ""
#: legacy/includes/instances.php:109
#: legacy/includes/instances.php:165
msgid "Container %1$s[%2$d] not found"
msgstr ""
#: legacy/includes/instances.php:118
#: legacy/includes/instances.php:174
msgid "Parser '%s' not found."
msgstr ""
#: legacy/includes/link-query.php:25
msgid "All"
msgstr ""
#: legacy/includes/link-query.php:26
msgid "Detected Links"
msgstr ""
#: legacy/includes/link-query.php:27
msgid "No links found (yet)"
msgstr ""
#: legacy/includes/link-query.php:36
msgid "Broken"
msgstr ""
#: legacy/includes/link-query.php:38
msgid "No broken links found"
msgstr ""
#: legacy/includes/link-query.php:46
msgctxt "filter name"
msgid "Warnings"
msgstr ""
#: legacy/includes/link-query.php:47
msgctxt "filter heading"
msgid "Warnings"
msgstr ""
#: legacy/includes/link-query.php:48
msgid "No warnings found"
msgstr ""
#: legacy/includes/link-query.php:56
msgid "Redirects"
msgstr ""
#: legacy/includes/link-query.php:57
msgid "Redirected Links"
msgstr ""
#: legacy/includes/link-query.php:58
msgid "No redirects found"
msgstr ""
#: legacy/includes/link-query.php:66
msgid "Dismissed"
msgstr ""
#: legacy/includes/link-query.php:67
msgid "Dismissed Links"
msgstr ""
#: legacy/includes/link-query.php:68
msgid "No dismissed links found"
msgstr ""
#: legacy/includes/link-query.php:82
msgid "Search Results"
msgstr ""
#: legacy/includes/link-query.php:83
#: legacy/includes/link-query.php:131
msgid "No links found for your query"
msgstr ""
#: legacy/includes/links.php:225
msgid "The plugin script was terminated while trying to check the link."
msgstr ""
#: legacy/includes/links.php:271
msgid "The plugin doesn't know how to check this type of link."
msgstr ""
#: legacy/includes/links.php:503
msgid "Link is broken."
msgstr ""
#: legacy/includes/links.php:505
msgid "Link is valid."
msgstr ""
#: legacy/includes/links.php:738
#: legacy/includes/links.php:841
#: legacy/includes/links.php:875
msgid "Link is not valid"
msgstr ""
#: legacy/includes/links.php:755
msgid "This link can not be edited because it is not used anywhere on this site."
msgstr ""
#: legacy/includes/links.php:781
msgid "Failed to create a DB entry for the new URL."
msgstr ""
#: legacy/includes/links.php:848
msgid "This link is not a redirect"
msgstr ""
#: legacy/includes/links.php:902
#: legacy/includes/links.php:939
msgid "Couldn't delete the link's database record"
msgstr ""
#: legacy/includes/links.php:1016
msgctxt "link status"
msgid "Unknown"
msgstr ""
#: legacy/includes/links.php:1029
#: legacy/modules/checkers/http.php:313
#: legacy/modules/checkers/http.php:317
#: legacy/modules/extras/mediafire.php:115
#: legacy/modules/extras/youtube.php:135
#: legacy/modules/extras/youtube.php:230
msgid "Unknown Error"
msgstr ""
#: legacy/includes/links.php:1052
msgid "Not checked"
msgstr ""
#: legacy/includes/links.php:1055
msgid "False positive"
msgstr ""
#: legacy/includes/links.php:1058
#: legacy/modules/extras/rapidshare.php:145
#: legacy/modules/extras/rapidshare.php:151
#: legacy/modules/extras/rapidshare.php:178
#: legacy/modules/extras/youtube.php:141
#: legacy/modules/extras/youtube.php:217
msgctxt "link status"
msgid "OK"
msgstr ""
#: legacy/includes/parsers.php:117
msgid "Editing is not implemented in the '%s' parser"
msgstr ""
#: legacy/includes/parsers.php:132
msgid "Unlinking is not implemented in the '%s' parser"
msgstr ""
#: legacy/includes/utility-class.php:259
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] ""
msgstr[1] ""
#: legacy/includes/utility-class.php:260
msgid "%d second ago"
msgid_plural "%d seconds ago"
msgstr[0] ""
msgstr[1] ""
#: legacy/includes/utility-class.php:263
msgid "%d minute"
msgid_plural "%d minutes"
msgstr[0] ""
msgstr[1] ""
#: legacy/includes/utility-class.php:264
msgid "%d minute ago"
msgid_plural "%d minutes ago"
msgstr[0] ""
msgstr[1] ""
#: legacy/includes/utility-class.php:267
msgid "%d hour"
msgid_plural "%d hours"
msgstr[0] ""
msgstr[1] ""
#: legacy/includes/utility-class.php:268
msgid "%d hour ago"
msgid_plural "%d hours ago"
msgstr[0] ""
msgstr[1] ""
#: legacy/includes/utility-class.php:271
msgid "%d day"
msgid_plural "%d days"
msgstr[0] ""
msgstr[1] ""
#: legacy/includes/utility-class.php:272
msgid "%d day ago"
msgid_plural "%d days ago"
msgstr[0] ""
msgstr[1] ""
#: legacy/includes/utility-class.php:275
msgid "%d month"
msgid_plural "%d months"
msgstr[0] ""
msgstr[1] ""
#: legacy/includes/utility-class.php:276
msgid "%d month ago"
msgid_plural "%d months ago"
msgstr[0] ""
msgstr[1] ""
#: legacy/modules/checkers/http.php:290
msgid "Server Not Found"
msgstr ""
#: legacy/modules/checkers/http.php:306
msgid "Connection Failed"
msgstr ""
#: legacy/modules/checkers/http.php:360
#: legacy/modules/checkers/http.php:449
msgid "HTTP code : %d"
msgstr ""
#: legacy/modules/checkers/http.php:362
#: legacy/modules/checkers/http.php:451
msgid "(No response)"
msgstr ""
#: legacy/modules/checkers/http.php:380
msgid "Most likely the connection timed out or the domain doesn't exist."
msgstr ""
#: legacy/modules/checkers/http.php:460
msgid "Request timed out."
msgstr ""
#: legacy/modules/checkers/http.php:467
msgid "Using WP HTTP"
msgstr ""
#: legacy/modules/containers/acf_field.php:102
#: legacy/modules/containers/custom_field.php:107
msgid "Failed to update the meta field '%1$s' on %2$s [%3$d]"
msgstr ""
#: legacy/modules/containers/acf_field.php:132
#: legacy/modules/containers/custom_field.php:137
msgid "Failed to delete the meta field '%1$s' on %2$s [%3$d]"
msgstr ""
#: legacy/modules/containers/acf_field.php:234
#: legacy/modules/containers/custom_field.php:238
msgid "Edit this post"
msgstr ""
#: legacy/modules/containers/acf_field.php:258
#: legacy/modules/containers/custom_field.php:272
msgid "View \"%s\""
msgstr ""
#: legacy/modules/containers/blogroll.php:21
msgid "Bookmark"
msgstr ""
#: legacy/modules/containers/blogroll.php:27
#: legacy/modules/containers/blogroll.php:46
msgid "Edit this bookmark"
msgstr ""
#: legacy/modules/containers/blogroll.php:47
msgid ""
"You are about to delete this link '%s'\n"
" 'Cancel' to stop, 'OK' to delete."
msgstr ""
#: legacy/modules/containers/blogroll.php:97
msgid "Updating bookmark %d failed"
msgstr ""
#: legacy/modules/containers/blogroll.php:128
msgid "Failed to delete blogroll link \"%1$s\" (%2$d)"
msgstr ""
#: legacy/modules/containers/blogroll.php:298
msgid "%d blogroll link deleted."
msgid_plural "%d blogroll links deleted."
msgstr[0] ""
msgstr[1] ""
#: legacy/modules/containers/comment.php:53
msgid "Updating comment %d failed"
msgstr ""
#: legacy/modules/containers/comment.php:74
msgid "Failed to delete comment %d"
msgstr ""
#: legacy/modules/containers/comment.php:95
msgid "Can't move comment %d to the trash"
msgstr ""
#: legacy/modules/containers/comment.php:159
#: legacy/modules/containers/comment.php:201
msgid "Edit comment"
msgstr ""
#: legacy/modules/containers/comment.php:166
msgid "Delete Permanently"
msgstr ""
#: legacy/modules/containers/comment.php:168
msgid "Move this comment to the trash"
msgstr ""
#: legacy/modules/containers/comment.php:168
msgctxt "verb"
msgid "Trash"
msgstr ""
#: legacy/modules/containers/comment.php:172
msgid "View comment"
msgstr ""
#: legacy/modules/containers/comment.php:189
msgid "Comment"
msgstr ""
#: legacy/modules/containers/comment.php:366
msgid "%d comment has been deleted."
msgid_plural "%d comments have been deleted."
msgstr[0] ""
msgstr[1] ""
#: legacy/modules/containers/comment.php:385
msgid "%d comment moved to the Trash."
msgid_plural "%d comments moved to the Trash."
msgstr[0] ""
msgstr[1] ""
#: legacy/modules/containers/dummy.php:34
#: legacy/modules/containers/dummy.php:45
msgid "I don't know how to edit a '%1$s' [%2$d]."
msgstr ""
#: legacy/modules/extras/dailymotion-embed.php:23
msgid "DailyMotion Video"
msgstr ""
#: legacy/modules/extras/dailymotion-embed.php:24
msgid "Embedded DailyMotion video"
msgstr ""
#: legacy/modules/extras/embed-parser-base.php:199
msgid "Embedded videos can't be edited using Broken Link Checker. Please edit or replace the video in question manually."
msgstr ""
#: legacy/modules/extras/googlevideo-embed.php:24
msgid "GoogleVideo Video"
msgstr ""
#: legacy/modules/extras/googlevideo-embed.php:25
msgid "Embedded GoogleVideo video"
msgstr ""
#: legacy/modules/extras/mediafire.php:97
#: legacy/modules/extras/mediafire.php:103
#: legacy/modules/extras/rapidshare.php:139
msgid "Not Found"
msgstr ""
#: legacy/modules/extras/mediafire.php:109
msgid "Permission Denied"
msgstr ""
#: legacy/modules/extras/rapidshare.php:51
msgid "Using RapidShare API"
msgstr ""
#: legacy/modules/extras/rapidshare.php:158
msgid "RS Server Down"
msgstr ""
#: legacy/modules/extras/rapidshare.php:165
msgid "File Blocked"
msgstr ""
#: legacy/modules/extras/rapidshare.php:172
msgid "File Locked"
msgstr ""
#: legacy/modules/extras/rapidshare.php:183
msgid "RapidShare : %s"
msgstr ""
#: legacy/modules/extras/rapidshare.php:189
msgid "RapidShare API error: %s"
msgstr ""
#: legacy/modules/extras/vimeo-embed.php:24
msgid "Vimeo Video"
msgstr ""
#: legacy/modules/extras/vimeo-embed.php:25
msgid "Embedded Vimeo video"
msgstr ""
#: legacy/modules/extras/youtube-embed.php:24
#: legacy/modules/extras/youtube-iframe.php:25
msgid "YouTube Video"
msgstr ""
#: legacy/modules/extras/youtube-embed.php:25
#: legacy/modules/extras/youtube-iframe.php:26
msgid "Embedded YouTube video"
msgstr ""
#: legacy/modules/extras/youtube-playlist-embed.php:24
msgid "YouTube Playlist"
msgstr ""
#: legacy/modules/extras/youtube-playlist-embed.php:25
msgid "Embedded YouTube playlist"
msgstr ""
#: legacy/modules/extras/youtube.php:140
msgid "Video OK"
msgstr ""
#: legacy/modules/extras/youtube.php:151
#: legacy/modules/extras/youtube.php:154
msgid "Video Not Found"
msgstr ""
#: legacy/modules/extras/youtube.php:173
#: legacy/modules/extras/youtube.php:176
msgid "Playlist Not Found"
msgstr ""
#: legacy/modules/extras/youtube.php:183
msgid "Playlist Restricted"
msgstr ""
#: legacy/modules/extras/youtube.php:190
msgid "This playlist has no entries or all entries have been deleted."
msgstr ""
#: legacy/modules/extras/youtube.php:191
msgctxt "link status"
msgid "Empty Playlist"
msgstr ""
#: legacy/modules/extras/youtube.php:201
msgid "Video status : %1$s%2$s"
msgstr ""
#: legacy/modules/extras/youtube.php:207
msgid "Video Restricted"
msgstr ""
#: legacy/modules/extras/youtube.php:216
msgid "Playlist OK"
msgstr ""
#: legacy/modules/extras/youtube.php:264
msgid "Unknown YouTube API response received."
msgstr ""
#: legacy/modules/parsers/acf_field.php:120
#: legacy/modules/parsers/metadata.php:141
msgid "Custom field"
msgstr ""
#: legacy/modules/parsers/image.php:193
msgid "Image"
msgstr ""
#: assets/common/js/react/components/modal.js:55
#: assets/js/dashboard/main.js:1
#: assets/js/local-modal/main.js:1
msgid "Close this modal"
msgstr ""
#. translators: %d: Minimum letter number in order to start remote search
#: assets/js/dashboard/main.js:3
msgid "You need to type at least %d characters."
msgstr ""
#. translators: %s: The search term
#: assets/js/dashboard/main.js:4
msgid "No user found for <strong>%s</strong> term."
msgstr ""
#: assets/js/legacy-modal/main.js:1
msgid "Local Link Checker is inactive"
msgstr ""