broken-link-checker.pot
37.9 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
# Copyright (C) 2020 Broken Link Checker 1.11.14
# This file is distributed under the same license as the Broken Link Checker 1.11.14 package.
msgid ""
msgstr ""
"Project-Id-Version: Broken Link Checker 1.11.14\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Basepath: ..\n"
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPathExcluded-0: *.js\n"
"X-Poedit-SourceCharset: UTF-8\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: core/core.php:211, includes/admin/links-page-js.php:45
msgid "Loading..."
msgstr ""
#: core/core.php:235, includes/admin/options-page-js.php:18
msgid "[ Network error ]"
msgstr ""
#: core/core.php:278
msgid "Automatically expand the widget if broken links have been detected"
msgstr ""
#: core/core.php:374
msgid "Link Checker Settings"
msgstr ""
#: core/core.php:375
msgid "Link Checker"
msgstr ""
#: core/core.php:381, includes/link-query.php:37
msgid "Broken Links"
msgstr ""
#: core/core.php:397
msgid "View Broken Links"
msgstr ""
#: core/core.php:413
msgid "Go to Broken Links"
msgstr ""
#: core/core.php:431
msgid "Settings"
msgstr ""
#: core/core.php:469, includes/admin/table-printer.php:292, includes/admin/table-printer.php:710
msgid "Edit URL"
msgstr ""
#: core/core.php:470, includes/admin/links-page-js.php:716, includes/admin/table-printer.php:297, includes/admin/table-printer.php:713
msgid "Unlink"
msgstr ""
#: core/core.php:471, includes/admin/links-page-js.php:111, includes/admin/table-printer.php:719
msgid "Not broken"
msgstr ""
#: core/core.php:472, includes/admin/table-printer.php:296, includes/admin/table-printer.php:727
msgid "Dismiss"
msgstr ""
#: core/core.php:473, includes/admin/table-printer.php:293, includes/admin/table-printer.php:739
msgid "Recheck"
msgstr ""
#: core/core.php:474, includes/admin/table-printer.php:747
msgctxt "link action; replace one redirect with a direct link"
msgid "Fix redirect"
msgstr ""
#: core/core.php:750
msgid "Settings saved."
msgstr ""
#: core/core.php:756
msgid "Thank you for your donation!"
msgstr ""
#: core/core.php:764
msgid "Complete site recheck started."
msgstr ""
#: core/core.php:787
msgid "General"
msgstr ""
#: core/core.php:788
msgid "Look For Links In"
msgstr ""
#: core/core.php:789
msgid "Which Links To Check"
msgstr ""
#: core/core.php:790
msgid "Protocols & APIs"
msgstr ""
#: core/core.php:791
msgid "Advanced"
msgstr ""
#: core/core.php:806
msgid "Broken Link Checker Options"
msgstr ""
#: core/core.php:850, includes/admin/table-printer.php:215
msgid "Status"
msgstr ""
#: core/core.php:852, includes/admin/options-page-js.php:56
msgid "Show debug info"
msgstr ""
#: core/core.php:880
msgid "Check each link"
msgstr ""
#: core/core.php:885
msgid "Every %s hours"
msgstr ""
#: core/core.php:894
msgid "Existing links will be checked this often. New links will usually be checked ASAP."
msgstr ""
#: core/core.php:901
msgid "E-mail notifications"
msgstr ""
#: core/core.php:911
msgid "Send me e-mail notifications about newly detected broken links"
msgstr ""
#: core/core.php:923
msgid "Send authors e-mail notifications about broken links in their posts"
msgstr ""
#: core/core.php:930
msgid "Notification e-mail address"
msgstr ""
#: core/core.php:942
msgid "Leave empty to use the e-mail address specified in Settings → General."
msgstr ""
#: core/core.php:949
msgid "Link tweaks"
msgstr ""
#: core/core.php:959
msgid "Apply custom formatting to broken links"
msgstr ""
#: core/core.php:964, core/core.php:1007
msgid "Edit CSS"
msgstr ""
#: core/core.php:986
msgid "Example : Lorem ipsum <a %s>broken link</a>, dolor sit amet."
msgstr ""
#: core/core.php:989, core/core.php:1033
msgid "Click \"Save Changes\" to update example output."
msgstr ""
#: core/core.php:1002
msgid "Apply custom formatting to removed links"
msgstr ""
#: core/core.php:1030
msgid "Example : Lorem ipsum <span %s>removed link</span>, dolor sit amet."
msgstr ""
#: core/core.php:1047
msgid "Stop search engines from following broken links"
msgstr ""
#: core/core.php:1053
msgctxt "\"Link tweaks\" settings"
msgid "These settings only apply to the content of posts, not comments or custom fields."
msgstr ""
#: core/core.php:1064
msgctxt "settings page"
msgid "Suggestions"
msgstr ""
#: core/core.php:1069
msgid "Suggest alternatives to broken links"
msgstr ""
#: core/core.php:1075
msgctxt "settings page"
msgid "Warnings"
msgstr ""
#: core/core.php:1080
msgid "Show uncertain or minor problems as \"warnings\" instead of \"broken\""
msgstr ""
#: core/core.php:1084
msgid "Turning off this option will make the plugin report all problems as broken links."
msgstr ""
#: core/core.php:1091
msgid "YouTube API Key"
msgstr ""
#: core/core.php:1103
msgid "Use your own %1$sapi key%2$s for checking youtube links."
msgstr ""
#: core/core.php:1110
msgid "Post Modified Date"
msgstr ""
#: core/core.php:1115
msgid "Disable post modified date change when link is edited"
msgstr ""
#: core/core.php:1130
msgid "Look for links in"
msgstr ""
#: core/core.php:1146
msgid "Post statuses"
msgstr ""
#: core/core.php:1179
msgid "Link types"
msgstr ""
#: core/core.php:1185
msgid "Error : All link parsers missing!"
msgstr ""
#: core/core.php:1192
msgid "Exclusion list"
msgstr ""
#: core/core.php:1193
msgid "Don't check links where the URL contains any of these words (one per line) :"
msgstr ""
#: core/core.php:1214
msgid "Check links using"
msgstr ""
#: core/core.php:1233, includes/links.php:1033
msgid "Timeout"
msgstr ""
#: core/core.php:1239, core/core.php:1334, core/core.php:3800
msgid "%s seconds"
msgstr ""
#: core/core.php:1248
msgid "Links that take longer than this to load will be marked as broken."
msgstr ""
#: core/core.php:1255
msgid "Link monitor"
msgstr ""
#: core/core.php:1267
msgid "Run continuously while the Dashboard is open"
msgstr ""
#: core/core.php:1279
msgid "Run hourly in the background"
msgstr ""
#: core/core.php:1287
msgid "Show the dashboard widget for"
msgstr ""
#: core/core.php:1292
msgctxt "dashboard widget visibility"
msgid "Administrator"
msgstr ""
#: core/core.php:1293
msgctxt "dashboard widget visibility"
msgid "Editor and above"
msgstr ""
#: core/core.php:1294
msgctxt "dashboard widget visibility"
msgid "Nobody (disables the widget)"
msgstr ""
#: core/core.php:1310
msgctxt "settings page"
msgid "Show link actions"
msgstr ""
#: core/core.php:1328
msgid "Max. execution time"
msgstr ""
#: core/core.php:1345
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 ""
#: core/core.php:1354
msgid "Server load limit"
msgstr ""
#: core/core.php:1369
msgid "Current load : %s"
msgstr ""
#: core/core.php:1374
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 ""
#: core/core.php:1383
msgid "Not available"
msgstr ""
#: core/core.php:1385
msgid "Load limiting only works on Linux-like systems where <code>/proc/loadavg</code> is present and accessible."
msgstr ""
#: core/core.php:1393
msgid "Target resource usage"
msgstr ""
#: core/core.php:1413
msgid "Logging"
msgstr ""
#: core/core.php:1419
msgid "Enable logging"
msgstr ""
#: core/core.php:1426
msgid "Log file location"
msgstr ""
#: core/core.php:1435
msgctxt "log file location"
msgid "Default"
msgstr ""
#: core/core.php:1451
msgctxt "log file location"
msgid "Custom"
msgstr ""
#: core/core.php:1461
msgid "Log file clear schedule"
msgstr ""
#: core/core.php:1467, includes/admin/table-printer.php:548
msgid "Never"
msgstr ""
#: core/core.php:1488
msgid "Forced recheck"
msgstr ""
#: core/core.php:1491
msgid "Re-check all pages"
msgstr ""
#: core/core.php:1496
msgid "The \"Nuclear Option\". Click this button to make the plugin empty its link database and recheck the entire site from scratch."
msgstr ""
#: core/core.php:1508
msgid "Save Changes"
msgstr ""
#: core/core.php:1559
msgid "Configure"
msgstr ""
#: core/core.php:1641
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 ""
#: core/core.php:1655
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 ""
#: core/core.php:1786, core/core.php:1872, core/core.php:1904
msgid "Database error : %s"
msgstr ""
#: core/core.php:1853
msgid "You must enter a filter name!"
msgstr ""
#: core/core.php:1857
msgid "Invalid search query."
msgstr ""
#: core/core.php:1867
msgid "Filter \"%s\" created"
msgstr ""
#: core/core.php:1894
msgid "Filter ID not specified."
msgstr ""
#: core/core.php:1901
msgid "Filter deleted"
msgstr ""
#: core/core.php:1950
msgid "Replaced %d redirect with a direct link"
msgid_plural "Replaced %d redirects with direct links"
msgstr[0] ""
msgstr[1] ""
#: core/core.php:1961
msgid "Failed to fix %d redirect"
msgid_plural "Failed to fix %d redirects"
msgstr[0] ""
msgstr[1] ""
#: core/core.php:1972
msgid "None of the selected links are redirects!"
msgstr ""
#: core/core.php:2052
msgid "%d link updated."
msgid_plural "%d links updated."
msgstr[0] ""
msgstr[1] ""
#: core/core.php:2063
msgid "Failed to update %d link."
msgid_plural "Failed to update %d links."
msgstr[0] ""
msgstr[1] ""
#: core/core.php:2154
msgid "%d link removed"
msgid_plural "%d links removed"
msgstr[0] ""
msgstr[1] ""
#: core/core.php:2165
msgid "Failed to remove %d link"
msgid_plural "Failed to remove %d links"
msgstr[0] ""
msgstr[1] ""
#: core/core.php:2275
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] ""
#: core/core.php:2297
msgid "Didn't find anything to delete!"
msgstr ""
#: core/core.php:2335
msgid "%d link scheduled for rechecking"
msgid_plural "%d links scheduled for rechecking"
msgstr[0] ""
msgstr[1] ""
#: core/core.php:2384, core/core.php:3221
msgid "This link was manually marked as working by the user."
msgstr ""
#: core/core.php:2392, core/core.php:2455
msgid "Couldn't modify link %d"
msgstr ""
#: core/core.php:2403
msgid "%d link marked as not broken"
msgid_plural "%d links marked as not broken"
msgstr[0] ""
msgstr[1] ""
#: core/core.php:2466
msgid "%d link dismissed"
msgid_plural "%d links dismissed"
msgstr[0] ""
msgstr[1] ""
#: core/core.php:2523
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 ""
#: core/core.php:2528
msgctxt "admin notice under Tools - Broken links - Warnings"
msgid "Hide notice"
msgstr ""
#: core/core.php:2534
msgctxt "a link from the admin notice under Tools - Broken links - Warnings"
msgid "Change warning settings"
msgstr ""
#: core/core.php:2559
msgid "Table columns"
msgstr ""
#: core/core.php:2578
msgid "Show on screen"
msgstr ""
#: core/core.php:2585
msgid "links"
msgstr ""
#: core/core.php:2586, includes/admin/table-printer.php:175
msgid "Apply"
msgstr ""
#: core/core.php:2590
msgid "Misc"
msgstr ""
#: core/core.php:2605
msgid "Highlight links broken for at least %s days"
msgstr ""
#: core/core.php:2614
msgid "Color-code status codes"
msgstr ""
#: core/core.php:2633, core/core.php:3205, core/core.php:3252, core/core.php:3291, core/core.php:3415, core/core.php:3474, core/core.php:3552
msgid "You're not allowed to do that!"
msgstr ""
#: core/core.php:3073
msgid "View broken links"
msgstr ""
#: core/core.php:3074
msgid "Found %d broken link"
msgid_plural "Found %d broken links"
msgstr[0] ""
msgstr[1] ""
#: core/core.php:3080
msgid "No broken links found."
msgstr ""
#: core/core.php:3087
msgid "%d URL in the work queue"
msgid_plural "%d URLs in the work queue"
msgstr[0] ""
msgstr[1] ""
#: core/core.php:3091
msgid "No URLs in the work queue."
msgstr ""
#: core/core.php:3097
msgctxt "for the \"Detected X unique URLs in Y links\" message"
msgid "%d unique URL"
msgid_plural "%d unique URLs"
msgstr[0] ""
msgstr[1] ""
#: core/core.php:3101
msgctxt "for the \"Detected X unique URLs in Y links\" message"
msgid "%d link"
msgid_plural "%d links"
msgstr[0] ""
msgstr[1] ""
#: core/core.php:3107
msgid "Detected %1$s in %2$s and still searching..."
msgstr ""
#: core/core.php:3113
msgid "Detected %1$s in %2$s."
msgstr ""
#: core/core.php:3120
msgid "Searching your blog for links..."
msgstr ""
#: core/core.php:3122
msgid "No links detected."
msgstr ""
#: core/core.php:3148
msgctxt "current load"
msgid "Unknown"
msgstr ""
#: core/core.php:3213, core/core.php:3260, core/core.php:3314, core/core.php:3429, core/core.php:3497, core/core.php:3575
msgid "Oops, I can't find the link %d"
msgstr ""
#: core/core.php:3233, core/core.php:3274
msgid "Oops, couldn't modify the link!"
msgstr ""
#: core/core.php:3236, core/core.php:3277, core/core.php:3462, core/core.php:3484, core/core.php:3562
msgid "Error : link_id not specified"
msgstr ""
#: core/core.php:3301
msgid "Error : link_id or new_url not specified"
msgstr ""
#: core/core.php:3327, core/core.php:3341
msgid "Oops, the new URL is invalid!"
msgstr ""
#: core/core.php:3361
msgid "An unexpected error occurred!"
msgstr ""
#: core/core.php:3442
msgid "An unexpected error occured!"
msgstr ""
#: core/core.php:3610
msgid "You don't have sufficient privileges to access this information!"
msgstr ""
#: core/core.php:3623
msgid "Error : link ID not specified"
msgstr ""
#: core/core.php:3637
msgid "Failed to load link details (%s)"
msgstr ""
#: core/core.php:3691
msgid "Broken Link Checker"
msgstr ""
#: core/core.php:3730
msgid "You have an old version of CURL. Redirect detection may not work properly."
msgstr ""
#: core/core.php:3741, core/core.php:3757, core/core.php:3762
msgid "Not installed"
msgstr ""
#: core/core.php:3750
msgid "Installed"
msgstr ""
#: core/core.php:3763
msgid "You must have either CURL or Snoopy installed for the plugin to work!"
msgstr ""
#: core/core.php:3773
msgid "On"
msgstr ""
#: core/core.php:3774
msgid "Redirects may be detected as broken links when safe_mode is on."
msgstr ""
#: core/core.php:3779, core/core.php:3793
msgid "Off"
msgstr ""
#: core/core.php:3787
msgid "On ( %s )"
msgstr ""
#: core/core.php:3788
msgid "Redirects may be detected as broken links when open_basedir is on."
msgstr ""
#: core/core.php:3825
msgid "If this value is zero even after several page reloads you have probably encountered a bug."
msgstr ""
#: core/core.php:3954, core/core.php:4073
msgid "[%s] Broken links detected"
msgstr ""
#: core/core.php:3959
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] ""
#: core/core.php:3990
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] ""
#: core/core.php:3999
msgid "Here's a list of the new broken links: "
msgstr ""
#: core/core.php:4008
msgid "Link text : %s"
msgstr ""
#: core/core.php:4009
msgid "Link URL : <a href=\"%1$s\">%2$s</a>"
msgstr ""
#: core/core.php:4010
msgid "Source : %s"
msgstr ""
#: core/core.php:4024
msgid "You can see all broken links here:"
msgstr ""
#: core/core.php:4078
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] ""
#: core/init.php:237
msgid "Every 10 minutes"
msgstr ""
#: core/init.php:244
msgid "Once Weekly"
msgstr ""
#: core/init.php:250
msgid "Twice a Month"
msgstr ""
#: core/init.php:323
msgid "Broken Link Checker installation failed. Try deactivating and then reactivating the plugin."
msgstr ""
#: includes/any-post.php:477, modules/containers/acf_field.php:248, modules/containers/blogroll.php:46, modules/containers/comment.php:159, modules/containers/custom_field.php:252
msgid "Edit"
msgstr ""
#: includes/any-post.php:485, modules/containers/acf_field.php:252, modules/containers/custom_field.php:258
msgid "Move this item to the Trash"
msgstr ""
#: includes/any-post.php:487, modules/containers/acf_field.php:252, modules/containers/custom_field.php:260
msgid "Trash"
msgstr ""
#: includes/any-post.php:492, modules/containers/acf_field.php:254, modules/containers/custom_field.php:265
msgid "Delete this item permanently"
msgstr ""
#: includes/any-post.php:494, modules/containers/acf_field.php:254, modules/containers/blogroll.php:47, modules/containers/custom_field.php:267
msgid "Delete"
msgstr ""
#: includes/any-post.php:507
msgid "Preview “%s”"
msgstr ""
#: includes/any-post.php:508
msgid "Preview"
msgstr ""
#: includes/any-post.php:515
msgid "View “%s”"
msgstr ""
#: includes/any-post.php:516, modules/containers/acf_field.php:258, modules/containers/comment.php:172, modules/containers/custom_field.php:272
msgid "View"
msgstr ""
#: includes/any-post.php:535, modules/containers/acf_field.php:248, modules/containers/custom_field.php:252
msgid "Edit this item"
msgstr ""
#: includes/any-post.php:599, modules/containers/blogroll.php:83, modules/containers/comment.php:43
msgid "Nothing to update"
msgstr ""
#: includes/any-post.php:613
msgid "Updating post %d failed"
msgstr ""
#: includes/any-post.php:674, modules/containers/acf_field.php:327, modules/containers/custom_field.php:341
msgid "Failed to delete post \"%1$s\" (%2$d)"
msgstr ""
#: includes/any-post.php:693, modules/containers/acf_field.php:341, 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 ""
#: includes/any-post.php:713, modules/containers/acf_field.php:353, modules/containers/custom_field.php:379
msgid "Failed to move post \"%1$s\" (%2$d) to the trash"
msgstr ""
#: includes/any-post.php:820
msgid "%d post deleted."
msgid_plural "%d posts deleted."
msgstr[0] ""
msgstr[1] ""
#: includes/any-post.php:822
msgid "%d page deleted."
msgid_plural "%d pages deleted."
msgstr[0] ""
msgstr[1] ""
#: includes/any-post.php:824
msgid "%1$d \"%2$s\" deleted."
msgid_plural "%1$d \"%2$s\" deleted."
msgstr[0] ""
msgstr[1] ""
#: includes/any-post.php:843
msgid "%d post moved to the Trash."
msgid_plural "%d posts moved to the Trash."
msgstr[0] ""
msgstr[1] ""
#: includes/any-post.php:845
msgid "%d page moved to the Trash."
msgid_plural "%d pages moved to the Trash."
msgstr[0] ""
msgstr[1] ""
#: includes/any-post.php:847
msgid "%1$d \"%2$s\" moved to the Trash."
msgid_plural "%1$d \"%2$s\" moved to the Trash."
msgstr[0] ""
msgstr[1] ""
#: 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] ""
#: includes/containers.php:930, includes/containers.php:948
msgid "Container type '%s' not recognized"
msgstr ""
#: includes/extra-strings.php:2
msgctxt "module name"
msgid "Basic HTTP"
msgstr ""
#: includes/extra-strings.php:3
msgctxt "module name"
msgid "Blogroll items"
msgstr ""
#: includes/extra-strings.php:4
msgctxt "module name"
msgid "Comments"
msgstr ""
#: includes/extra-strings.php:5
msgctxt "module name"
msgid "Custom fields"
msgstr ""
#: includes/extra-strings.php:6
msgctxt "module name"
msgid "Embedded DailyMotion videos"
msgstr ""
#: includes/extra-strings.php:7
msgctxt "module name"
msgid "Embedded GoogleVideo videos"
msgstr ""
#: includes/extra-strings.php:8
msgctxt "module name"
msgid "Embedded Vimeo videos"
msgstr ""
#: includes/extra-strings.php:9
msgctxt "module name"
msgid "Embedded YouTube playlists (old embed code)"
msgstr ""
#: includes/extra-strings.php:10
msgctxt "module name"
msgid "Embedded YouTube videos"
msgstr ""
#: includes/extra-strings.php:11
msgctxt "module name"
msgid "Embedded YouTube videos (old embed code)"
msgstr ""
#: includes/extra-strings.php:12
msgctxt "module name"
msgid "HTML images"
msgstr ""
#: includes/extra-strings.php:13
msgctxt "module name"
msgid "HTML links"
msgstr ""
#: includes/extra-strings.php:14
msgctxt "module name"
msgid "MediaFire API"
msgstr ""
#: includes/extra-strings.php:15
msgctxt "module name"
msgid "Plaintext URLs"
msgstr ""
#: includes/extra-strings.php:16
msgctxt "module name"
msgid "RapidShare API"
msgstr ""
#: includes/extra-strings.php:17
msgctxt "module name"
msgid "Smart YouTube httpv:// URLs"
msgstr ""
#: includes/extra-strings.php:18
msgctxt "module name"
msgid "YouTube API"
msgstr ""
#: includes/extra-strings.php:19
msgctxt "module name"
msgid "Posts"
msgstr ""
#: includes/extra-strings.php:20
msgctxt "module name"
msgid "Pages"
msgstr ""
#: includes/instances.php:109, includes/instances.php:165
msgid "Container %1$s[%2$d] not found"
msgstr ""
#: includes/instances.php:118, includes/instances.php:174
msgid "Parser '%s' not found."
msgstr ""
#: includes/link-query.php:25
msgid "All"
msgstr ""
#: includes/link-query.php:26
msgid "Detected Links"
msgstr ""
#: includes/link-query.php:27
msgid "No links found (yet)"
msgstr ""
#: includes/link-query.php:36
msgid "Broken"
msgstr ""
#: includes/link-query.php:38
msgid "No broken links found"
msgstr ""
#: includes/link-query.php:46
msgctxt "filter name"
msgid "Warnings"
msgstr ""
#: includes/link-query.php:47
msgctxt "filter heading"
msgid "Warnings"
msgstr ""
#: includes/link-query.php:48
msgid "No warnings found"
msgstr ""
#: includes/link-query.php:56
msgid "Redirects"
msgstr ""
#: includes/link-query.php:57
msgid "Redirected Links"
msgstr ""
#: includes/link-query.php:58
msgid "No redirects found"
msgstr ""
#: includes/link-query.php:66
msgid "Dismissed"
msgstr ""
#: includes/link-query.php:67
msgid "Dismissed Links"
msgstr ""
#: includes/link-query.php:68
msgid "No dismissed links found"
msgstr ""
#: includes/link-query.php:81, includes/admin/search-form.php:32
msgid "Search"
msgstr ""
#: includes/link-query.php:82
msgid "Search Results"
msgstr ""
#: includes/link-query.php:83, includes/link-query.php:131
msgid "No links found for your query"
msgstr ""
#: includes/links.php:225
msgid "The plugin script was terminated while trying to check the link."
msgstr ""
#: includes/links.php:271
msgid "The plugin doesn't know how to check this type of link."
msgstr ""
#: includes/links.php:503
msgid "Link is broken."
msgstr ""
#: includes/links.php:505
msgid "Link is valid."
msgstr ""
#: includes/links.php:738, includes/links.php:841, includes/links.php:875
msgid "Link is not valid"
msgstr ""
#: includes/links.php:755
msgid "This link can not be edited because it is not used anywhere on this site."
msgstr ""
#: includes/links.php:781
msgid "Failed to create a DB entry for the new URL."
msgstr ""
#: includes/links.php:848
msgid "This link is not a redirect"
msgstr ""
#: includes/links.php:902, includes/links.php:939
msgid "Couldn't delete the link's database record"
msgstr ""
#: includes/links.php:1016
msgctxt "link status"
msgid "Unknown"
msgstr ""
#: includes/links.php:1029, modules/checkers/http.php:312, modules/checkers/http.php:316, modules/extras/mediafire.php:115, modules/extras/youtube.php:135, modules/extras/youtube.php:230
msgid "Unknown Error"
msgstr ""
#: includes/links.php:1052
msgid "Not checked"
msgstr ""
#: includes/links.php:1055
msgid "False positive"
msgstr ""
#: includes/links.php:1058, modules/extras/rapidshare.php:145, modules/extras/rapidshare.php:151, modules/extras/rapidshare.php:178, modules/extras/youtube.php:141, modules/extras/youtube.php:217
msgctxt "link status"
msgid "OK"
msgstr ""
#: includes/parsers.php:117
msgid "Editing is not implemented in the '%s' parser"
msgstr ""
#: includes/parsers.php:132
msgid "Unlinking is not implemented in the '%s' parser"
msgstr ""
#: includes/utility-class.php:248
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] ""
msgstr[1] ""
#: includes/utility-class.php:249
msgid "%d second ago"
msgid_plural "%d seconds ago"
msgstr[0] ""
msgstr[1] ""
#: includes/utility-class.php:252
msgid "%d minute"
msgid_plural "%d minutes"
msgstr[0] ""
msgstr[1] ""
#: includes/utility-class.php:253
msgid "%d minute ago"
msgid_plural "%d minutes ago"
msgstr[0] ""
msgstr[1] ""
#: includes/utility-class.php:256
msgid "%d hour"
msgid_plural "%d hours"
msgstr[0] ""
msgstr[1] ""
#: includes/utility-class.php:257
msgid "%d hour ago"
msgid_plural "%d hours ago"
msgstr[0] ""
msgstr[1] ""
#: includes/utility-class.php:260
msgid "%d day"
msgid_plural "%d days"
msgstr[0] ""
msgstr[1] ""
#: includes/utility-class.php:261
msgid "%d day ago"
msgid_plural "%d days ago"
msgstr[0] ""
msgstr[1] ""
#: includes/utility-class.php:264
msgid "%d month"
msgid_plural "%d months"
msgstr[0] ""
msgstr[1] ""
#: includes/utility-class.php:265
msgid "%d month ago"
msgid_plural "%d months ago"
msgstr[0] ""
msgstr[1] ""
#: includes/admin/db-upgrade.php:96
msgid "Failed to delete old DB tables. Database error : %s"
msgstr ""
#: includes/admin/links-page-js.php:64, includes/admin/links-page-js.php:659
msgid "Wait..."
msgstr ""
#: includes/admin/links-page-js.php:370
msgctxt "link text"
msgid "(None)"
msgstr ""
#: includes/admin/links-page-js.php:371
msgctxt "link text"
msgid "(Multiple links)"
msgstr ""
#: includes/admin/links-page-js.php:429
msgctxt "link suggestions"
msgid "Searching..."
msgstr ""
#: includes/admin/links-page-js.php:430
msgctxt "link suggestions"
msgid "No suggestions available."
msgstr ""
#: includes/admin/links-page-js.php:431
msgctxt "link suggestions"
msgid "Archived page from %s (via the Wayback Machine)"
msgstr ""
#: includes/admin/links-page-js.php:528
msgid "%d instances of the link were successfully modified."
msgstr ""
#: includes/admin/links-page-js.php:534
msgid "However, %d instances couldn't be edited and still point to the old URL."
msgstr ""
#: includes/admin/links-page-js.php:540
msgid "The link could not be modified."
msgstr ""
#: includes/admin/links-page-js.php:543
msgid "The following error(s) occurred :"
msgstr ""
#: includes/admin/links-page-js.php:615
msgid "Error: Link URL must not be empty."
msgstr ""
#: includes/admin/links-page-js.php:654
msgid "Are you sure you want to unlink and remove this link from all posts?"
msgstr ""
#: includes/admin/links-page-js.php:694
msgid "%d instances of the link were successfully unlinked."
msgstr ""
#: includes/admin/links-page-js.php:700
msgid "However, %d instances couldn't be removed."
msgstr ""
#: includes/admin/links-page-js.php:705
msgid "The plugin failed to remove the link."
msgstr ""
#: includes/admin/links-page-js.php:708
msgid "The following error(s) occured :"
msgstr ""
#: includes/admin/links-page-js.php:756
msgid "Enter a name for the new custom filter"
msgstr ""
#: includes/admin/links-page-js.php:768
msgid ""
"You are about to delete the current filter.\n"
"'Cancel' to stop, 'OK' to delete"
msgstr ""
#: 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 ""
#: 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 ""
#: includes/admin/links-page-js.php:936
msgid "Enter a search string first."
msgstr ""
#: includes/admin/links-page-js.php:943
msgid "Select one or more links to edit."
msgstr ""
#: includes/admin/options-page-js.php:54
msgid "Hide debug info"
msgstr ""
#: includes/admin/search-form.php:16
msgid "Save This Search As a Filter"
msgstr ""
#: includes/admin/search-form.php:26
msgid "Delete This Filter"
msgstr ""
#: includes/admin/search-form.php:42
msgid "Link text"
msgstr ""
#: includes/admin/search-form.php:45, includes/admin/table-printer.php:220
msgid "URL"
msgstr ""
#: includes/admin/search-form.php:48, includes/admin/table-printer.php:559
msgid "HTTP code"
msgstr ""
#: includes/admin/search-form.php:51
msgid "Link status"
msgstr ""
#: includes/admin/search-form.php:68, includes/admin/search-form.php:85
msgid "Link type"
msgstr ""
#: includes/admin/search-form.php:70
msgid "Any"
msgstr ""
#: includes/admin/search-form.php:74
msgid "Links used in"
msgstr ""
#: includes/admin/search-form.php:112
msgid "Search Links"
msgstr ""
#: includes/admin/search-form.php:113, includes/admin/table-printer.php:375, includes/admin/table-printer.php:375, includes/admin/table-printer.php:779, includes/admin/table-printer.php:904
msgid "Cancel"
msgstr ""
#: includes/admin/table-printer.php:192
msgid "Compact View"
msgstr ""
#: includes/admin/table-printer.php:197
msgid "Detailed View"
msgstr ""
#: includes/admin/table-printer.php:227
msgid "Source"
msgstr ""
#: includes/admin/table-printer.php:233
msgid "Link Text"
msgstr ""
#: includes/admin/table-printer.php:240
msgid "Redirect URL"
msgstr ""
#: includes/admin/table-printer.php:291
msgid "Bulk Actions"
msgstr ""
#: includes/admin/table-printer.php:294
msgid "Fix redirects"
msgstr ""
#: includes/admin/table-printer.php:295
msgid "Mark as not broken"
msgstr ""
#: includes/admin/table-printer.php:300
msgid "Move sources to Trash"
msgstr ""
#: includes/admin/table-printer.php:302
msgid "Delete sources"
msgstr ""
#: includes/admin/table-printer.php:318
msgid "«"
msgstr ""
#: includes/admin/table-printer.php:319
msgid "»"
msgstr ""
#: includes/admin/table-printer.php:328
msgid "Displaying %1$s–%2$s of <span class=\"current-link-count\">%3$s</span>"
msgstr ""
#: includes/admin/table-printer.php:351
msgid "Bulk Edit URLs"
msgstr ""
#: includes/admin/table-printer.php:353
msgid "Find"
msgstr ""
#: includes/admin/table-printer.php:357
msgid "Replace with"
msgstr ""
#: includes/admin/table-printer.php:365
msgid "Case sensitive"
msgstr ""
#: includes/admin/table-printer.php:369
msgid "Regular expression"
msgstr ""
#: includes/admin/table-printer.php:378, includes/admin/table-printer.php:905
msgid "Update"
msgstr ""
#: includes/admin/table-printer.php:536
msgid "Post published on"
msgstr ""
#: includes/admin/table-printer.php:543
msgid "Link last checked"
msgstr ""
#: includes/admin/table-printer.php:566
msgid "Response time"
msgstr ""
#: includes/admin/table-printer.php:569
msgid "%2.3f seconds"
msgstr ""
#: includes/admin/table-printer.php:573
msgid "Final URL"
msgstr ""
#: includes/admin/table-printer.php:580
msgid "Redirect count"
msgstr ""
#: includes/admin/table-printer.php:587
msgid "Instance count"
msgstr ""
#: 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] ""
#: includes/admin/table-printer.php:606
msgid "This link has been broken for %s."
msgstr ""
#: includes/admin/table-printer.php:617
msgid "Log"
msgstr ""
#: includes/admin/table-printer.php:644, includes/admin/table-printer.php:688
msgid "Show more info about this link"
msgstr ""
#: includes/admin/table-printer.php:662
msgctxt "checked how long ago"
msgid "Checked"
msgstr ""
#: includes/admin/table-printer.php:677
msgid "Broken for"
msgstr ""
#: includes/admin/table-printer.php:689
msgctxt "link in the \"Status\" column"
msgid "Details"
msgstr ""
#: includes/admin/table-printer.php:710
msgid "Edit this link"
msgstr ""
#: includes/admin/table-printer.php:712
msgid "Remove this link from all posts"
msgstr ""
#: includes/admin/table-printer.php:718
msgid "Remove this link from the list of broken links and mark it as valid"
msgstr ""
#: includes/admin/table-printer.php:726
msgid "Hide this link and do not report it again unless its status changes"
msgstr ""
#: includes/admin/table-printer.php:732
msgid "Undismiss this link"
msgstr ""
#: includes/admin/table-printer.php:733
msgid "Undismiss"
msgstr ""
#: includes/admin/table-printer.php:746
msgid "Replace this redirect with a direct link"
msgstr ""
#: includes/admin/table-printer.php:780
msgid "Update URL"
msgstr ""
#: includes/admin/table-printer.php:807
msgid "[An orphaned link! This is a bug.]"
msgstr ""
#: includes/admin/table-printer.php:884
msgctxt "inline editor title"
msgid "Edit Link"
msgstr ""
#: includes/admin/table-printer.php:887
msgctxt "inline link editor"
msgid "Text"
msgstr ""
#: includes/admin/table-printer.php:892
msgctxt "inline link editor"
msgid "URL"
msgstr ""
#: includes/admin/table-printer.php:897
msgctxt "inline link editor"
msgid "Suggestions"
msgstr ""
#: includes/admin/table-printer.php:917
msgid "Use this URL"
msgstr ""
#: modules/checkers/http.php:289
msgid "Server Not Found"
msgstr ""
#: modules/checkers/http.php:305
msgid "Connection Failed"
msgstr ""
#: modules/checkers/http.php:359, modules/checkers/http.php:448
msgid "HTTP code : %d"
msgstr ""
#: modules/checkers/http.php:361, modules/checkers/http.php:450
msgid "(No response)"
msgstr ""
#: modules/checkers/http.php:379
msgid "Most likely the connection timed out or the domain doesn't exist."
msgstr ""
#: modules/checkers/http.php:459
msgid "Request timed out."
msgstr ""
#: modules/checkers/http.php:466
msgid "Using WP HTTP"
msgstr ""
#: modules/containers/acf_field.php:102, modules/containers/custom_field.php:107
msgid "Failed to update the meta field '%1$s' on %2$s [%3$d]"
msgstr ""
#: modules/containers/acf_field.php:132, modules/containers/custom_field.php:137
msgid "Failed to delete the meta field '%1$s' on %2$s [%3$d]"
msgstr ""
#: modules/containers/acf_field.php:234, modules/containers/custom_field.php:238
msgid "Edit this post"
msgstr ""
#: modules/containers/acf_field.php:258, modules/containers/custom_field.php:272
msgid "View \"%s\""
msgstr ""
#: modules/containers/blogroll.php:21
msgid "Bookmark"
msgstr ""
#: modules/containers/blogroll.php:27, modules/containers/blogroll.php:46
msgid "Edit this bookmark"
msgstr ""
#: modules/containers/blogroll.php:47
msgid ""
"You are about to delete this link '%s'\n"
" 'Cancel' to stop, 'OK' to delete."
msgstr ""
#: modules/containers/blogroll.php:97
msgid "Updating bookmark %d failed"
msgstr ""
#: modules/containers/blogroll.php:128
msgid "Failed to delete blogroll link \"%1$s\" (%2$d)"
msgstr ""
#: modules/containers/blogroll.php:298
msgid "%d blogroll link deleted."
msgid_plural "%d blogroll links deleted."
msgstr[0] ""
msgstr[1] ""
#: modules/containers/comment.php:53
msgid "Updating comment %d failed"
msgstr ""
#: modules/containers/comment.php:74
msgid "Failed to delete comment %d"
msgstr ""
#: modules/containers/comment.php:95
msgid "Can't move comment %d to the trash"
msgstr ""
#: modules/containers/comment.php:159, modules/containers/comment.php:201
msgid "Edit comment"
msgstr ""
#: modules/containers/comment.php:166
msgid "Delete Permanently"
msgstr ""
#: modules/containers/comment.php:168
msgid "Move this comment to the trash"
msgstr ""
#: modules/containers/comment.php:168
msgctxt "verb"
msgid "Trash"
msgstr ""
#: modules/containers/comment.php:172
msgid "View comment"
msgstr ""
#: modules/containers/comment.php:189
msgid "Comment"
msgstr ""
#: modules/containers/comment.php:366
msgid "%d comment has been deleted."
msgid_plural "%d comments have been deleted."
msgstr[0] ""
msgstr[1] ""
#: modules/containers/comment.php:385
msgid "%d comment moved to the Trash."
msgid_plural "%d comments moved to the Trash."
msgstr[0] ""
msgstr[1] ""
#: modules/containers/dummy.php:34, modules/containers/dummy.php:45
msgid "I don't know how to edit a '%1$s' [%2$d]."
msgstr ""
#: modules/extras/dailymotion-embed.php:23
msgid "DailyMotion Video"
msgstr ""
#: modules/extras/dailymotion-embed.php:24
msgid "Embedded DailyMotion video"
msgstr ""
#: 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 ""
#: modules/extras/googlevideo-embed.php:24
msgid "GoogleVideo Video"
msgstr ""
#: modules/extras/googlevideo-embed.php:25
msgid "Embedded GoogleVideo video"
msgstr ""
#: modules/extras/mediafire.php:97, modules/extras/mediafire.php:103, modules/extras/rapidshare.php:139
msgid "Not Found"
msgstr ""
#: modules/extras/mediafire.php:109
msgid "Permission Denied"
msgstr ""
#: modules/extras/rapidshare.php:51
msgid "Using RapidShare API"
msgstr ""
#: modules/extras/rapidshare.php:158
msgid "RS Server Down"
msgstr ""
#: modules/extras/rapidshare.php:165
msgid "File Blocked"
msgstr ""
#: modules/extras/rapidshare.php:172
msgid "File Locked"
msgstr ""
#: modules/extras/rapidshare.php:183
msgid "RapidShare : %s"
msgstr ""
#: modules/extras/rapidshare.php:189
msgid "RapidShare API error: %s"
msgstr ""
#: modules/extras/vimeo-embed.php:24
msgid "Vimeo Video"
msgstr ""
#: modules/extras/vimeo-embed.php:25
msgid "Embedded Vimeo video"
msgstr ""
#: modules/extras/youtube-embed.php:24, modules/extras/youtube-iframe.php:25
msgid "YouTube Video"
msgstr ""
#: modules/extras/youtube-embed.php:25, modules/extras/youtube-iframe.php:26
msgid "Embedded YouTube video"
msgstr ""
#: modules/extras/youtube-playlist-embed.php:24
msgid "YouTube Playlist"
msgstr ""
#: modules/extras/youtube-playlist-embed.php:25
msgid "Embedded YouTube playlist"
msgstr ""
#: modules/extras/youtube.php:140
msgid "Video OK"
msgstr ""
#: modules/extras/youtube.php:151, modules/extras/youtube.php:154
msgid "Video Not Found"
msgstr ""
#: modules/extras/youtube.php:173, modules/extras/youtube.php:176
msgid "Playlist Not Found"
msgstr ""
#: modules/extras/youtube.php:183
msgid "Playlist Restricted"
msgstr ""
#: modules/extras/youtube.php:190
msgid "This playlist has no entries or all entries have been deleted."
msgstr ""
#: modules/extras/youtube.php:191
msgctxt "link status"
msgid "Empty Playlist"
msgstr ""
#: modules/extras/youtube.php:201
msgid "Video status : %1$s%2$s"
msgstr ""
#: modules/extras/youtube.php:207
msgid "Video Restricted"
msgstr ""
#: modules/extras/youtube.php:216
msgid "Playlist OK"
msgstr ""
#: modules/extras/youtube.php:264
msgid "Unknown YouTube API response received."
msgstr ""
#: modules/parsers/acf_field.php:120, modules/parsers/metadata.php:141
msgid "Custom field"
msgstr ""
#: modules/parsers/image.php:193
msgid "Image"
msgstr ""