[go: up one dir, main page]

File: linkchecker.pot

package info (click to toggle)
linkchecker 4.9-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 3,308 kB
  • ctags: 3,736
  • sloc: python: 21,328; lex: 1,114; yacc: 781; ansic: 551; makefile: 244; sh: 100; sql: 19; awk: 4
file content (1370 lines) | stat: -rw-r--r-- 34,550 bytes parent folder | download
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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2000-2008 Bastian Kleineidam <calvin@users.sourceforge.net>
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: calvin@users.sourceforge.net\n"
"POT-Creation-Date: 2008-04-21 02:37+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\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=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"

#: ../linkcheck/checker/const.py:94
msgid "The effective URL is different from the original."
msgstr ""

#: ../linkcheck/checker/const.py:96
msgid "Could not get the content of the URL."
msgstr ""

#: ../linkcheck/checker/const.py:97
msgid "URL uses a unicode domain."
msgstr ""

#: ../linkcheck/checker/const.py:98
msgid "URL is not normed."
msgstr ""

#: ../linkcheck/checker/const.py:99
msgid "URL anchor was not found."
msgstr ""

#: ../linkcheck/checker/const.py:101
msgid "The warning regular expression was found in the URL contents."
msgstr ""

#: ../linkcheck/checker/const.py:102
msgid "The URL content is too large."
msgstr ""

#: ../linkcheck/checker/const.py:103
msgid "The file: URL is missing a trailing slash."
msgstr ""

#: ../linkcheck/checker/const.py:105
msgid "The file: path is not the same as the system specific path."
msgstr ""

#: ../linkcheck/checker/const.py:106
msgid "The ftp: URL is missing a trailing slash."
msgstr ""

#: ../linkcheck/checker/const.py:107
msgid "The http: URL checking has been denied."
msgstr ""

#: ../linkcheck/checker/const.py:108
msgid "The HTTP server had no anchor support."
msgstr ""

#: ../linkcheck/checker/const.py:109
msgid "The URL has moved permanently."
msgstr ""

#: ../linkcheck/checker/const.py:111
msgid "The URL has been redirected to an URL of a different type."
msgstr ""

#: ../linkcheck/checker/const.py:112
msgid "The URL had no content."
msgstr ""

#: ../linkcheck/checker/const.py:114
msgid "An error occurred while storing a cookie."
msgstr ""

#: ../linkcheck/checker/const.py:116
msgid "An error occurred while decompressing the URL content."
msgstr ""

#: ../linkcheck/checker/const.py:118
msgid "The URL content is encoded with an unknown encoding."
msgstr ""

#: ../linkcheck/checker/const.py:119
msgid "The URL has been ignored."
msgstr ""

#: ../linkcheck/checker/const.py:120
msgid "The mailto: URL contained no addresses."
msgstr ""

#: ../linkcheck/checker/const.py:121
msgid "The mail MX host could not be found."
msgstr ""

#: ../linkcheck/checker/const.py:123
msgid "The mailto: address could not be verified."
msgstr ""

#: ../linkcheck/checker/const.py:125
msgid "No connection to a MX host could be established."
msgstr ""

#: ../linkcheck/checker/const.py:126
msgid "No NNTP server was found."
msgstr ""

#: ../linkcheck/checker/const.py:127
msgid "The NNTP newsgroup could not be found."
msgstr ""

#: ../linkcheck/checker/const.py:128
msgid "The NNTP server was busy."
msgstr ""

#: ../linkcheck/checker/proxysupport.py:42
#, python-format
msgid "Proxy value %r must start with 'http://'."
msgstr ""

#: ../linkcheck/checker/proxysupport.py:49
#, python-format
msgid "Ignoring proxy setting %r"
msgstr ""

#: ../linkcheck/checker/proxysupport.py:53
#, python-format
msgid "Using proxy %r."
msgstr ""

#: ../linkcheck/checker/fileurl.py:115
msgid "Added trailing slash to directory."
msgstr ""

#: ../linkcheck/checker/fileurl.py:126
msgid "directory"
msgstr ""

#: ../linkcheck/checker/fileurl.py:143
#, python-format
msgid ""
"The URL path %(path)r is not the same as the system path %(realpath)r. You "
"should always use the system path in URLs."
msgstr ""

#: ../linkcheck/checker/ftpurl.py:112
#, python-format
msgid "Remote host has closed connection: %r"
msgstr ""

#: ../linkcheck/checker/ftpurl.py:115
msgid "Got no answer from FTP server"
msgstr ""

#: ../linkcheck/checker/ftpurl.py:148
msgid "Missing trailing directory slash in ftp url."
msgstr ""

#: ../linkcheck/checker/httpsurl.py:35 ../linkcheck/checker/unknownurl.py:80
#, python-format
msgid "%s URL ignored."
msgstr ""

#: ../linkcheck/checker/httpurl.py:171
msgid "Access denied by robots.txt, checked only syntax."
msgstr ""

#: ../linkcheck/checker/httpurl.py:177
msgid "Amazon servers block HTTP HEAD requests, using GET instead."
msgstr ""

#: ../linkcheck/checker/httpurl.py:188
msgid "unknown"
msgstr ""

#: ../linkcheck/checker/httpurl.py:190
#, python-format
msgid "Server %r did not support HEAD request; a GET request was used instead."
msgstr ""

#: ../linkcheck/checker/httpurl.py:193
#, python-format
msgid "Server %r had no anchor support, removed anchor from request."
msgstr ""

#: ../linkcheck/checker/httpurl.py:237
#, python-format
msgid "Enforced proxy %r."
msgstr ""

#: ../linkcheck/checker/httpurl.py:241
#, python-format
msgid "Enforced proxy %r ignored, aborting."
msgstr ""

#: ../linkcheck/checker/httpurl.py:270
#, python-format
msgid "more than %d redirections, aborting"
msgstr ""

#: ../linkcheck/checker/httpurl.py:324
#, python-format
msgid "Redirected to %(url)s."
msgstr ""

#: ../linkcheck/checker/httpurl.py:335
msgid "The redirected URL is outside of the domain filter, checked only syntax."
msgstr ""

#: ../linkcheck/checker/httpurl.py:343
msgid "Access to redirected URL denied by robots.txt, checked only syntax."
msgstr ""

#: ../linkcheck/checker/httpurl.py:358
#, python-format
msgid ""
"recursive redirection encountered:\n"
" %s"
msgstr ""

#: ../linkcheck/checker/httpurl.py:370
msgid "HTTP 301 (moved permanent) encountered: you should update this link."
msgstr ""

#: ../linkcheck/checker/httpurl.py:381
#, python-format
msgid "Redirection to different URL type encountered; the original URL was %r."
msgstr ""

#: ../linkcheck/checker/httpurl.py:425
#, python-format
msgid "Store cookie: %s."
msgstr ""

#: ../linkcheck/checker/httpurl.py:434
#, python-format
msgid "Could not store cookies: %(msg)s."
msgstr ""

#: ../linkcheck/checker/httpurl.py:443
#, python-format
msgid "Last modified %s."
msgstr ""

#: ../linkcheck/checker/httpurl.py:544
#, python-format
msgid "Unsupported HTTP url scheme %r"
msgstr ""

#: ../linkcheck/checker/httpurl.py:581
#, python-format
msgid "Decompress error %(err)s"
msgstr ""

#: ../linkcheck/checker/httpurl.py:606 ../linkcheck/checker/httpurl.py:634
#, python-format
msgid "Unsupported content encoding %r."
msgstr ""

#: ../linkcheck/checker/mailtourl.py:52
msgid "Could not split the mail address"
msgstr ""

#: ../linkcheck/checker/mailtourl.py:77
msgid "Invalid mail syntax"
msgstr ""

#: ../linkcheck/checker/mailtourl.py:117
#, python-format
msgid "Error parsing CGI values: %s"
msgstr ""

#: ../linkcheck/checker/mailtourl.py:140
msgid "No addresses found."
msgstr ""

#: ../linkcheck/checker/mailtourl.py:164
#, python-format
msgid "No MX mail host for %(domain)s found."
msgstr ""

#: ../linkcheck/checker/mailtourl.py:169
#, python-format
msgid "No host for %(domain)s found."
msgstr ""

#: ../linkcheck/checker/mailtourl.py:218
#, python-format
msgid "Verified address: %(info)s."
msgstr ""

#: ../linkcheck/checker/mailtourl.py:222
#, python-format
msgid "Unverified address: %(info)s. But mail will be sent anyway."
msgstr ""

#: ../linkcheck/checker/mailtourl.py:225
#, python-format
msgid "Unverified address: %(info)s."
msgstr ""

#: ../linkcheck/checker/mailtourl.py:229
#, python-format
msgid "MX mail host %(host)s did not accept connections: %(error)s."
msgstr ""

#: ../linkcheck/checker/mailtourl.py:235
msgid "Could not connect, but syntax is correct"
msgstr ""

#: ../linkcheck/checker/mailtourl.py:237
#, python-format
msgid "Found MX mail host %(host)s"
msgstr ""

#: ../linkcheck/checker/nntpurl.py:48
msgid "No NNTP server was specified, skipping this URL."
msgstr ""

#: ../linkcheck/checker/nntpurl.py:58
#, python-format
msgid "Articel number %s found."
msgstr ""

#: ../linkcheck/checker/nntpurl.py:65
#, python-format
msgid "News group %s found."
msgstr ""

#: ../linkcheck/checker/nntpurl.py:68
msgid "No newsgroup specified in NNTP URL."
msgstr ""

#: ../linkcheck/checker/nntpurl.py:91
#, python-format
msgid "NNTP server too busy; tried more than %d times."
msgstr ""

#: ../linkcheck/checker/nntpurl.py:93
#, python-format
msgid "NNTP busy: %s."
msgstr ""

#: ../linkcheck/checker/telneturl.py:53
msgid "Host is empty"
msgstr ""

#: ../linkcheck/checker/unknownurl.py:78 ../linkcheck/checker/urlbase.py:396
msgid "Outside of domain filter, checked only syntax."
msgstr ""

#: ../linkcheck/checker/unknownurl.py:83
msgid "URL is unrecognized or has invalid syntax"
msgstr ""

#: ../linkcheck/checker/urlbase.py:68 ../linkchecker:725
#, python-format
msgid "URL has unparsable domain name: %s"
msgstr ""

#: ../linkcheck/checker/urlbase.py:285
msgid "URL is missing"
msgstr ""

#: ../linkcheck/checker/urlbase.py:288
msgid "URL is empty"
msgstr ""

#: ../linkcheck/checker/urlbase.py:295
#, python-format
msgid "Effective URL %r."
msgstr ""

#: ../linkcheck/checker/urlbase.py:311
#, python-format
msgid ""
"URL %(url)r has a unicode domain name which\n"
"                          is not yet widely supported. You should use\n"
"                          the URL %(idna_url)r instead."
msgstr ""

#: ../linkcheck/checker/urlbase.py:318
#, python-format
msgid "Base URL is not properly normed. Normed URL is %(url)s."
msgstr ""

#: ../linkcheck/checker/urlbase.py:358
#, python-format
msgid "URL has invalid port %r"
msgstr ""

#: ../linkcheck/checker/urlbase.py:386
#, python-format
msgid "URL is located in %s."
msgstr ""

#: ../linkcheck/checker/urlbase.py:411
msgid "Hostname not found"
msgstr ""

#: ../linkcheck/checker/urlbase.py:414
#, python-format
msgid "Bad HTTP response %r"
msgstr ""

#: ../linkcheck/checker/urlbase.py:437
#, python-format
msgid "could not get content: %r"
msgstr ""

#: ../linkcheck/checker/urlbase.py:561
#, python-format
msgid "Anchor #%s not found."
msgstr ""

#: ../linkcheck/checker/urlbase.py:619
#, python-format
msgid "Found %r in link contents."
msgstr ""

#: ../linkcheck/checker/urlbase.py:630
#, python-format
msgid "Content size %(dlsize)s is larger than %(maxbytes)s."
msgstr ""

#: ../linkcheck/configuration/confparse.py:110
#, python-format
msgid "invalid negative value for timeout: %d\n"
msgstr ""

#: ../linkcheck/configuration/confparse.py:138
#: ../linkcheck/configuration/confparse.py:157
#, python-format
msgid "missing auth part in entry %(val)r"
msgstr ""

#: ../linkcheck/configuration/confparse.py:153
#, python-format
msgid ""
"the entry%(num)d syntax is deprecated; use the new multiline configuration "
"syntax"
msgstr ""

#: ../linkcheck/configuration/confparse.py:182
#, python-format
msgid ""
"the nofollow%(num)d syntax is deprecated; use the new multiline configuration "
"syntax"
msgstr ""

#: ../linkcheck/configuration/confparse.py:197
#, python-format
msgid ""
"the noproxyfor%(num)d syntax is deprecated; use the new multiline "
"configuration syntax"
msgstr ""

#: ../linkcheck/configuration/confparse.py:218
#, python-format
msgid ""
"the ignore%(num)d syntax is deprecated; use the new multiline configuration "
"syntax"
msgstr ""

#: ../linkcheck/director/__init__.py:47
msgid ""
"Could not start a new thread. Check that the current user is allowed to start "
"new threads."
msgstr ""

#: ../linkcheck/director/__init__.py:76
msgid "keyboard interrupt; waiting for active threads to finish"
msgstr ""

#: ../linkcheck/director/__init__.py:78
msgid "another keyboard interrupt will exit immediately"
msgstr ""

#: ../linkcheck/director/__init__.py:89
msgid "These URLs are still active:"
msgstr ""

#: ../linkcheck/director/__init__.py:105
msgid "keyboard interrupt; force shutdown"
msgstr ""

#: ../linkcheck/director/console.py:37
#, python-format
msgid ""
"********** Oops, I did it again. *************\n"
"\n"
"You have found an internal error in LinkChecker. Please write a bug report\n"
"at http://sourceforge.net/tracker/?func=add&group_id=1913&atid=101913\n"
"or send mail to %s and include the following information:\n"
"- the URL or file you are testing\n"
"- your commandline arguments and/or configuration.\n"
"- the output of a debug run with option \"-Dall\" of the executed command\n"
"- the system information below.\n"
"\n"
"Not disclosing some of the information above due to privacy reasons is ok.\n"
"I will try to help you nonetheless, but you have to give me something\n"
"I can work with ;) .\n"
msgstr ""

#: ../linkcheck/director/console.py:56
msgid "******** LinkChecker internal error, over and out ********"
msgstr ""

#: ../linkcheck/director/console.py:63
msgid "System info:"
msgstr ""

#: ../linkcheck/director/console.py:65 ../linkchecker:524
#, python-format
msgid "Python %(version)s on %(platform)s"
msgstr ""

#: ../linkcheck/director/status.py:49
#, python-format
msgid "%2d URL active,"
msgid_plural "%2d URLs active,"
msgstr[0] ""
msgstr[1] ""

#: ../linkcheck/director/status.py:52
#, python-format
msgid "%5d URL queued,"
msgid_plural "%5d URLs queued,"
msgstr[0] ""
msgstr[1] ""

#: ../linkcheck/director/status.py:54
#, python-format
msgid "%4d URL checked,"
msgid_plural "%4d URLs checked,"
msgstr[0] ""
msgstr[1] ""

#: ../linkcheck/director/status.py:56
#, python-format
msgid "runtime %s"
msgstr ""

#: ../linkcheck/logger/gml.py:48 ../linkcheck/logger/csvlog.py:59
#: ../linkcheck/logger/dot.py:48 ../linkcheck/logger/sql.py:79
#: ../linkcheck/logger/xmllog.py:82
#, python-format
msgid "created by %(app)s at %(time)s"
msgstr ""

#: ../linkcheck/logger/gml.py:51 ../linkcheck/logger/text.py:100
#: ../linkcheck/logger/csvlog.py:62 ../linkcheck/logger/dot.py:51
#: ../linkcheck/logger/xmllog.py:85
#, python-format
msgid "Get the newest version at %(url)s"
msgstr ""

#: ../linkcheck/logger/gml.py:53 ../linkcheck/logger/text.py:102
#: ../linkcheck/logger/csvlog.py:64 ../linkcheck/logger/dot.py:53
#: ../linkcheck/logger/xmllog.py:87
#, python-format
msgid "Write comments and bugs to %(email)s"
msgstr ""

#: ../linkcheck/logger/gml.py:118 ../linkcheck/logger/html.py:298
#: ../linkcheck/logger/text.py:259 ../linkcheck/logger/csvlog.py:122
#: ../linkcheck/logger/dot.py:114 ../linkcheck/logger/sql.py:144
#: ../linkcheck/logger/xmllog.py:99
#, python-format
msgid "Stopped checking at %(time)s (%(duration)s)"
msgstr ""

#: ../linkcheck/logger/html.py:102 ../linkcheck/logger/text.py:106
#, python-format
msgid "Start checking at %s"
msgstr ""

#: ../linkcheck/logger/html.py:151
msgid "checked link"
msgstr ""

#: ../linkcheck/logger/html.py:169 ../linkcheck/logger/text.py:146
msgid " (cached)"
msgstr ""

#: ../linkcheck/logger/html.py:187 ../linkcheck/logger/text.py:163
#, python-format
msgid ", line %d"
msgstr ""

#: ../linkcheck/logger/html.py:188 ../linkcheck/logger/text.py:164
#, python-format
msgid ", col %d"
msgstr ""

#: ../linkcheck/logger/html.py:218 ../linkcheck/logger/html.py:234
#: ../linkcheck/logger/text.py:186 ../linkcheck/logger/text.py:202
#, python-format
msgid "%.3f seconds"
msgstr ""

#: ../linkcheck/logger/html.py:264 ../linkcheck/logger/text.py:228
msgid "Valid"
msgstr ""

#: ../linkcheck/logger/html.py:269 ../linkcheck/logger/text.py:231
msgid "Error"
msgstr ""

#: ../linkcheck/logger/html.py:280 ../linkcheck/logger/text.py:242
msgid "That's it."
msgstr ""

#: ../linkcheck/logger/html.py:282 ../linkcheck/logger/text.py:244
#, python-format
msgid "%d link checked."
msgid_plural "%d links checked."
msgstr[0] ""
msgstr[1] ""

#: ../linkcheck/logger/html.py:285 ../linkcheck/logger/text.py:247
#, python-format
msgid "%d warning found"
msgid_plural "%d warnings found"
msgstr[0] ""
msgstr[1] ""

#: ../linkcheck/logger/html.py:288 ../linkcheck/logger/html.py:293
#: ../linkcheck/logger/text.py:250 ../linkcheck/logger/text.py:255
#, python-format
msgid ", %d printed"
msgstr ""

#: ../linkcheck/logger/html.py:290 ../linkcheck/logger/text.py:252
#, python-format
msgid "%d error found"
msgid_plural "%d errors found"
msgstr[0] ""
msgstr[1] ""

#: ../linkcheck/logger/html.py:303 ../linkcheck/logger/sql.py:82
#, python-format
msgid "Get the newest version at %s"
msgstr ""

#: ../linkcheck/logger/html.py:306 ../linkcheck/logger/sql.py:84
#, python-format
msgid "Write comments and bugs to %s"
msgstr ""

#: ../linkcheck/logger/__init__.py:33
msgid "Real URL"
msgstr ""

#: ../linkcheck/logger/__init__.py:34
msgid "Cache key"
msgstr ""

#: ../linkcheck/logger/__init__.py:35
msgid "Result"
msgstr ""

#: ../linkcheck/logger/__init__.py:36
msgid "Base"
msgstr ""

#: ../linkcheck/logger/__init__.py:37
msgid "Name"
msgstr ""

#: ../linkcheck/logger/__init__.py:38
msgid "Parent URL"
msgstr ""

#: ../linkcheck/logger/__init__.py:39
msgid "Extern"
msgstr ""

#: ../linkcheck/logger/__init__.py:40
msgid "Info"
msgstr ""

#: ../linkcheck/logger/__init__.py:41
msgid "Warning"
msgstr ""

#: ../linkcheck/logger/__init__.py:42
msgid "D/L Time"
msgstr ""

#: ../linkcheck/logger/__init__.py:43
msgid "D/L Size"
msgstr ""

#: ../linkcheck/logger/__init__.py:44
msgid "Check Time"
msgstr ""

#: ../linkcheck/logger/__init__.py:45
msgid "URL"
msgstr ""

#: ../linkcheck/logger/__init__.py:155
#, python-format
msgid "Happy birthday for LinkChecker, I'm %d years old today!"
msgstr ""

#: ../linkcheck/logger/csvlog.py:67
msgid "Format of the entries:"
msgstr ""

#: ../linkcheck/__init__.py:141
msgid "CRITICAL"
msgstr ""

#: ../linkcheck/__init__.py:142
msgid "ERROR"
msgstr ""

#: ../linkcheck/__init__.py:143
msgid "WARN"
msgstr ""

#: ../linkcheck/__init__.py:144
msgid "WARNING"
msgstr ""

#: ../linkcheck/__init__.py:145
msgid "INFO"
msgstr ""

#: ../linkcheck/__init__.py:146
msgid "DEBUG"
msgstr ""

#: ../linkcheck/__init__.py:147
msgid "NOTSET"
msgstr ""

#: ../linkcheck/lc_cgi.py:130
msgid "unsupported language"
msgstr ""

#: ../linkcheck/lc_cgi.py:135
msgid "empty url was given"
msgstr ""

#: ../linkcheck/lc_cgi.py:137
msgid "disallowed url was given"
msgstr ""

#: ../linkcheck/lc_cgi.py:139
msgid "no url was given"
msgstr ""

#: ../linkcheck/lc_cgi.py:144
msgid "invalid recursion level"
msgstr ""

#: ../linkcheck/lc_cgi.py:149
#, python-format
msgid "invalid %s option syntax"
msgstr ""

#: ../linkcheck/lc_cgi.py:174
#, python-format
msgid ""
"<html><head>\n"
"<title>LinkChecker Online Error</title></head>\n"
"<body text=#192c83 bgcolor=#fff7e5 link=#191c83 vlink=#191c83 alink=#191c83>\n"
"<blockquote>\n"
"<b>Error: %s</b><br>\n"
"The LinkChecker Online script has encountered an error. Please ensure\n"
"that your provided URL link begins with <code>http://</code> and\n"
"contains only these characters: <code>A-Za-z0-9./_~-</code><br><br>\n"
"Errors are logged.\n"
"</blockquote>\n"
"</body>\n"
"</html>"
msgstr ""

#: ../linkcheck/strformat.py:254
#, python-format
msgid "%(prefix)s%(duration).02f seconds"
msgstr ""

#: ../linkcheck/strformat.py:257
#, python-format
msgid "%d second"
msgid_plural "%d seconds"
msgstr[0] ""
msgstr[1] ""

#: ../linkcheck/strformat.py:258
#, python-format
msgid "%d minute"
msgid_plural "%d minutes"
msgstr[0] ""
msgstr[1] ""

#: ../linkcheck/strformat.py:259
#, python-format
msgid "%d hour"
msgid_plural "%d hours"
msgstr[0] ""
msgstr[1] ""

#: ../linkcheck/strformat.py:260
#, python-format
msgid "%d day"
msgid_plural "%d days"
msgstr[0] ""
msgstr[1] ""

#: ../linkcheck/strformat.py:261
#, python-format
msgid "%d year"
msgid_plural "%d years"
msgstr[0] ""
msgstr[1] ""

#: ../linkchecker:53
msgid "USAGE\tlinkchecker [options] file-or-url...\n"
msgstr ""

#: ../linkchecker:56
msgid ""
"NOTES\n"
" o URLs on the command line starting with \"ftp.\" are treated like\n"
"   \"ftp://ftp.\", URLs starting with \"www.\" are treated like \"http://www."
"\".\n"
"   You can also give local files as arguments.\n"
" o If you have your system configured to automatically establish a\n"
"   connection to the internet (e.g. with diald), it will connect when\n"
"   checking links not pointing to your local system.\n"
"   See the --ignore-url option on how to prevent this.\n"
" o Javascript links are currently ignored.\n"
" o If your platform does not support threading, LinkChecker disables it\n"
"   automatically.\n"
" o You can supply multiple user/password pairs in a configuration file.\n"
" o When checking 'news:' links the given NNTP host doesn't need to be the\n"
"   same as the host of the user browsing your pages.\n"
msgstr ""

#: ../linkchecker:72
msgid ""
"PROXY SUPPORT\n"
"To use a proxy set $http_proxy, $https_proxy, $ftp_proxy,\n"
"on Unix or Windows to the proxy URL. The URL should be of the form\n"
"\"http://[<user>:<pass>@]<host>[:port]\", for example\n"
"\"http://localhost:8080\", or \"http://joe:test@proxy.domain\".\n"
"On a Mac use the Internet Config to select a proxy.\n"
msgstr ""

#: ../linkchecker:80
msgid ""
"REGULAR EXPRESSIONS\n"
"Only Python regular expressions are accepted by LinkChecker.\n"
"See http://www.amk.ca/python/howto/regex/ for an introduction in\n"
"regular expressions.\n"
"\n"
"The only addition is that a leading exclamation mark negates\n"
"the regular expression.\n"
msgstr ""

#: ../linkchecker:89
msgid ""
"COOKIE FILES\n"
"A cookie file contains standard RFC 805 header data with the following\n"
"possible names:\n"
"Scheme (optional)\n"
" Sets the scheme the cookies are valid for; default scheme is 'http'.\n"
"Host (required)\n"
" Sets the domain the cookies are valid for.\n"
"Path (optional)\n"
" Gives the path the cookies are value for; default path is '/'.\n"
"Set-cookie (optional)\n"
" Set cookie name/value. Can be given more than once.\n"
"\n"
"Multiple entries are separated by a blank line.\n"
"\n"
"The example below will send two cookies to all URLs starting with\n"
"'http://example.org/hello/' and one to all URLs starting\n"
"with 'https://example.com/':\n"
"\n"
"Host: example.org\n"
"Path: /hello\n"
"Set-cookie: ID=\"smee\"\n"
"Set-cookie: spam=\"egg\"\n"
"\n"
"Scheme: https\n"
"Host: example.com\n"
"Set-cookie: baggage=\"elitist\"; comment=\"hologram\"\n"
msgstr ""

#: ../linkchecker:117
msgid ""
"RETURN VALUE\n"
"The return value is non-zero when\n"
" o invalid links were found or\n"
" o warnings were found warnings are enabled\n"
" o a program error occurred\n"
msgstr ""

#: ../linkchecker:124
msgid ""
"EXAMPLES\n"
"The most common use checks the given domain recursively, plus any\n"
"single URL pointing outside of the domain:\n"
"  linkchecker http://treasure.calvinsplayground.de/\n"
"Beware that this checks the whole site which can have several hundred\n"
"thousands URLs. Use the -r option to restrict the recursion depth.\n"
"\n"
"Don't connect to mailto: hosts, only check their URL syntax. All other\n"
"links are checked as usual:\n"
"  linkchecker --ignore-url=^mailto: www.mysite.org\n"
"\n"
"Checking a local HTML file on Unix:\n"
"  linkchecker ../bla.html\n"
"\n"
"Checking a local HTML file on Windows:\n"
"  linkchecker c:\\temp\\test.html\n"
"\n"
"You can skip the \"http://\" url part if the domain starts with \"www.\":\n"
"  linkchecker www.myhomepage.de\n"
"\n"
"You can skip the \"ftp://\" url part if the domain starts with \"ftp.\":\n"
"  linkchecker -r0 ftp.linux.org\n"
msgstr ""

#: ../linkchecker:148
msgid ""
"OUTPUT TYPES\n"
"Note that by default only errors and warnings are logged.\n"
"You should use the --verbose option to get the complete URL list,\n"
"especially when outputting a sitemap graph format.\n"
"\n"
"text    Standard text output, logging URLs in keyword: argument fashion.\n"
"html    Log URLs in keyword: argument fashion, formatted as HTML.\n"
"        Additionally has links to the referenced pages. Invalid URLs have\n"
"        HTML and CSS syntax check links appended.\n"
"csv     Log check result in CSV format with one URL per line.\n"
"gml     Log parent-child relations between linked URLs as a GML sitemap\n"
"        graph.\n"
"dot     Log parent-child relations between linked URLs as a DOT sitemap\n"
"        graph.\n"
"gxml    Log check result as a GraphXML sitemap graph.\n"
"xml     Log check result as machine-readable XML.\n"
"sql     Log check result as SQL script with INSERT commands. An example\n"
"        script to create the initial SQL table is included as create.sql.\n"
"blacklist\n"
"        Suitable for cron jobs. Logs the check result into a file\n"
"        ~/.linkchecker/blacklist which only contains entries with invalid\n"
"        URLs and the number of times they have failed.\n"
"none    Logs nothing. Suitable for debugging or checking the exit code.\n"
msgstr ""

#: ../linkchecker:173
msgid ""
"IGNORE WARNINGS\n"
"The following warnings are recognized in the 'ignorewarnings' config\n"
"file entry:\n"
msgstr ""

#: ../linkchecker:196
#, python-format
msgid "Error: %s"
msgstr ""

#: ../linkchecker:197
msgid "Execute 'linkchecker -h' for help"
msgstr ""

#: ../linkchecker:207
msgid "Running as root, dropping to nobody."
msgstr ""

#: ../linkchecker:216
msgid ""
"The `pstats' Python module is not installed, therefore the --viewprof option "
"is disabled."
msgstr ""

#: ../linkchecker:221
#, python-format
msgid "Could not find profiling file %r."
msgstr ""

#: ../linkchecker:223
msgid "Please run linkchecker with --profile to generate it."
msgstr ""

#: ../linkchecker:238
#, python-format
msgid "Syntax error in %(arg)r: %(msg)s"
msgstr ""

#: ../linkchecker:324
msgid "General options"
msgstr ""

#: ../linkchecker:328
msgid ""
"Use FILENAME as configuration file. Per default LinkChecker first\n"
"searches /etc/linkchecker/linkcheckerrc and then ~/.linkchecker/"
"linkcheckerrc\n"
"(under Windows <path-to-program>\\linkcheckerrc)."
msgstr ""

#: ../linkchecker:333
msgid "Ask for URL if none are given on the commandline."
msgstr ""

#: ../linkchecker:337
msgid ""
"Generate no more than the given number of threads. Default number\n"
"of threads is 10. To disable threading specify a non-positive number."
msgstr ""

#: ../linkchecker:341
msgid ""
"Run with normal thread scheduling priority. Per default LinkChecker\n"
"runs with low thread priority to be suitable as a background job."
msgstr ""

#: ../linkchecker:344
msgid "Print version and exit."
msgstr ""

#: ../linkchecker:347
msgid "Do not drop privileges when running as root user on Unix systems."
msgstr ""

#: ../linkchecker:351
msgid "Output options"
msgstr ""

#: ../linkchecker:354
msgid "Log all checked URLs. Default is to log only errors and warnings."
msgstr ""

#: ../linkchecker:356
msgid "Don't log warnings. Default is to log warnings."
msgstr ""

#: ../linkchecker:360
msgid ""
"Define a regular expression which prints a warning if it matches\n"
"any content of the checked link. This applies only to valid pages,\n"
"so we can get their content.\n"
"\n"
"Use this to check for pages that contain some form of error\n"
"message, for example 'This page has moved' or 'Oracle\n"
"Application Server error'."
msgstr ""

#: ../linkchecker:370
msgid ""
"Print a warning if content size info is available and exceeds the\n"
"given number of bytes."
msgstr ""

#: ../linkchecker:374
msgid ""
"Quiet operation, an alias for '-o none'.\n"
"This is only useful with -F."
msgstr ""

#: ../linkchecker:379
#, python-format
msgid ""
"Specify output as %(loggertypes)s. Default output type is text.\n"
"The ENCODING specifies the output encoding, the default is that of your\n"
"locale.\n"
"Valid encodings are listed at http://docs.python.org/lib/standard-encodings."
"html."
msgstr ""

#: ../linkchecker:388
#, python-format
msgid ""
"Output to a file linkchecker-out.TYPE, $HOME/.linkchecker/blacklist for\n"
"'blacklist' output, or FILENAME if specified.\n"
"The ENCODING specifies the output encoding, the default is that of your\n"
"locale.\n"
"Valid encodings are listed at http://docs.python.org/lib/standard-encodings."
"html.\n"
"The FILENAME and ENCODING parts of the 'none' output type will be ignored,\n"
"else if the file already exists, it will be overwritten.\n"
"You can specify this option more than once. Valid file output types\n"
"are %(loggertypes)s. You can specify this option multiple times to output\n"
"to more than one file. Default is no file output. Note that you can\n"
"suppress all console output with the option '-o none'."
msgstr ""

#: ../linkchecker:402
msgid "Do not print check status messages."
msgstr ""

#: ../linkchecker:405
#, python-format
msgid ""
"Print debugging output for the given logger.\n"
"Available loggers are %(lognamelist)s.\n"
"Specifying 'all' is an alias for specifying all available loggers.\n"
"The option can be given multiple times to debug with more\n"
"than one logger.\n"
"\n"
"For accurate results, threading will be disabled during debug runs."
msgstr ""

#: ../linkchecker:414
msgid "Print tracing information."
msgstr ""

#: ../linkchecker:417
#, python-format
msgid ""
"Write profiling data into a file named %s in the\n"
"current working directory. See also --viewprof."
msgstr ""

#: ../linkchecker:421
msgid "Print out previously generated profiling data. See also --profile."
msgstr ""

#: ../linkchecker:426
msgid "Checking options"
msgstr ""

#: ../linkchecker:430
msgid ""
"Check recursively all links up to given depth. A negative depth\n"
"will enable infinite recursion. Default depth is infinite."
msgstr ""

#: ../linkchecker:435
msgid ""
"Check but do not recurse into URLs matching the given regular\n"
"expression. This option can be given multiple times."
msgstr ""

#: ../linkchecker:440
msgid ""
"Only check syntax of URLs matching the given regular expression.\n"
" This option can be given multiple times."
msgstr ""

#: ../linkchecker:444
msgid ""
"Accept and send HTTP cookies according to RFC 2109. Only cookies\n"
"which are sent back to the originating server are accepted.\n"
"Sent and accepted cookies are provided as additional logging\n"
"information."
msgstr ""

#: ../linkchecker:451
msgid ""
"Read a file with initial cookie data. The cookie data format is\n"
"explained below."
msgstr ""

#: ../linkchecker:455
msgid ""
"Check HTTP anchor references. Default is not to check anchors.\n"
"This option enables logging of the warning 'url-anchor-not-found'."
msgstr ""

#: ../linkchecker:459
msgid ""
"Treat url#anchora and url#anchorb as equal on caching. This\n"
"is the default browser behaviour, but it's not specified in\n"
"the URI specification. Use with care since broken anchors are not\n"
"guaranteed to be detected in this mode."
msgstr ""

#: ../linkchecker:466
msgid ""
"Try the given username for HTTP and FTP authorization.\n"
"For FTP the default username is 'anonymous'. For HTTP there is\n"
"no default username. See also -p."
msgstr ""

#: ../linkchecker:472
msgid ""
"Try the given password for HTTP and FTP authorization.\n"
"For FTP the default password is 'anonymous@'. For HTTP there is\n"
"no default password. See also -u."
msgstr ""

#: ../linkchecker:478
#, python-format
msgid ""
"Set the timeout for connection attempts in seconds. The default\n"
"timeout is %d seconds."
msgstr ""

#: ../linkchecker:483
msgid ""
"Pause the given number of seconds between two subsequent connection\n"
"requests to the same host. Default is no pause between requests."
msgstr ""

#: ../linkchecker:488
msgid ""
"Specify an NNTP server for 'news:...' links. Default is the\n"
"environment variable NNTP_SERVER. If no host is given,\n"
"only the syntax of the link is checked."
msgstr ""

#: ../linkchecker:494
msgid ""
"Contact hosts that match the given regular expression directly instead\n"
"of going through a proxy. This option can be given multiple times."
msgstr ""

#: ../linkchecker:521
#, python-format
msgid "Invalid debug level %(level)r"
msgstr ""

#: ../linkchecker:534
#, python-format
msgid "Unreadable config file: %r"
msgstr ""

#: ../linkchecker:545
msgid "Running with python -O disables debugging."
msgstr ""

#: ../linkchecker:573 ../linkchecker:604
#, python-format
msgid "Unknown logger type %(type)r in %(output)r for option %(option)s"
msgstr ""

#: ../linkchecker:577 ../linkchecker:610
#, python-format
msgid "Unknown encoding %(encoding)r in %(output)r for option %(option)s"
msgstr ""

#: ../linkchecker:628 ../linkchecker:646
#, python-format
msgid "Illegal argument %(arg)r for option %(option)s"
msgstr ""

#: ../linkchecker:682
msgid ""
"Using DOT or GML loggers without verbose output gives an incomplete sitemap "
"graph."
msgstr ""

#: ../linkchecker:689
msgid ""
"enter one or more URLs, separated by white-space\n"
"--> "
msgstr ""

#: ../linkchecker:692
msgid "no files or URLs given"
msgstr ""

#: ../linkchecker:704
#, python-format
msgid "Could not parse cookie file: %s"
msgstr ""

#: ../linkchecker:732
#, python-format
msgid ""
"Overwrite profiling file %r?\n"
"Press Ctrl-C to cancel, RETURN to continue."
msgstr ""

#: ../linkchecker:738
msgid "Canceled."
msgstr ""

#: ../linkchecker:742
msgid ""
"The `profile' Python module is not installed, therefore the --profile option "
"is disabled."
msgstr ""

#: ../linkchecker:755
msgid "Hit RETURN to finish"
msgstr ""

#: /usr/lib/python2.5/optparse.py:134
#, python-format
msgid "no such option: %s"
msgstr ""

#: /usr/lib/python2.5/optparse.py:145
#, python-format
msgid "ambiguous option: %s (%s?)"
msgstr ""

#: /usr/lib/python2.5/optparse.py:368
#, python-format
msgid "Usage: %s\n"
msgstr ""

#: /usr/lib/python2.5/optparse.py:387
msgid "Usage"
msgstr ""

#: /usr/lib/python2.5/optparse.py:412
msgid "integer"
msgstr ""

#: /usr/lib/python2.5/optparse.py:413
msgid "long integer"
msgstr ""

#: /usr/lib/python2.5/optparse.py:414
msgid "floating-point"
msgstr ""

#: /usr/lib/python2.5/optparse.py:415
msgid "complex"
msgstr ""

#: /usr/lib/python2.5/optparse.py:423
#, python-format
msgid "option %s: invalid %s value: %r"
msgstr ""

#: /usr/lib/python2.5/optparse.py:431
#, python-format
msgid "option %s: invalid choice: %r (choose from %s)"
msgstr ""

#: /usr/lib/python2.5/optparse.py:1246
msgid "show this help message and exit"
msgstr ""

#: /usr/lib/python2.5/optparse.py:1251
msgid "show program's version number and exit"
msgstr ""

#: /usr/lib/python2.5/optparse.py:1274
msgid "%prog [options]"
msgstr ""

#: /usr/lib/python2.5/optparse.py:1484 /usr/lib/python2.5/optparse.py:1523
#, python-format
msgid "%s option requires an argument"
msgstr ""

#: /usr/lib/python2.5/optparse.py:1486 /usr/lib/python2.5/optparse.py:1525
#, python-format
msgid "%s option requires %d arguments"
msgstr ""

#: /usr/lib/python2.5/optparse.py:1495
#, python-format
msgid "%s option does not take a value"
msgstr ""

#: /usr/lib/python2.5/optparse.py:1612
msgid "Options"
msgstr ""