File: uk.po

package info (click to toggle)
pavuk 0.9.35-2.1
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 4,720 kB
  • ctags: 3,824
  • sloc: ansic: 51,779; sh: 3,468; makefile: 363
file content (5367 lines) | stat: -rw-r--r-- 133,547 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
#   Φ pavuk.
# $Id: uk.po,v 1.2 2005/04/18 08:09:04 stoecker Exp $
#
# Ӧ Ц   Ħ Ukrainian, 2001,
# <linux@linux.org.ua>
#
# Dmytro O. Redchuk <dima@redchuk.org.ua>
#
msgid ""
msgstr ""
"Project-Id-Version: 0.9pl28\n"
"POT-Creation-Date: 2001-09-18 22:21+0200\n"
"PO-Revision-Date: 2001-08-27 11:50EEST\n"
"Last-Translator: Dmytro O. Redchuk <dima@redchuk.org.ua>\n"
"Language-Team: Ukrainian <linux@linux.org.ua>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=KOI8-U\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.9.5\n"

#: abstract.c:42
#, c-format
msgid "Suspending download for %d seconds.\n"
msgstr ""

#: abstract.c:80 doc.c:547
msgid "File redirect\n"
msgstr "\n"

#: abstract.c:116
#, c-format
msgid "Loading copy from local NS cache - %s\n"
msgstr " Ц    NS - %s\n"

#: abstract.c:148
#, c-format
msgid "Loading copy from local Mozilla cache - %s\n"
msgstr " Ц    ڦ - %s\n"

#: abstract.c:181
#, c-format
msgid "Loading copy from local MSIE cache - %s\n"
msgstr " Ц    MSIE - %s\n"

#: abstract.c:217
msgid "Unsupported URL\n"
msgstr "URL  Цդ\n"

#: abstract.c:312
msgid "Warning: broken ftp transfer ...\n"
msgstr "צ: ¦ ftp  ...\n"

#: abstract.c:322
msgid "Error removing FTP document from remote server\n"
msgstr "   FTP  צ \n"

#: abstract.c:384
msgid "Error reading document with \"chunked\" transfer encoding!\n"
msgstr ""

#: ainterface.c:120
#, c-format
msgid "Removing unsupported URL: %s\n"
msgstr "Ѥ URL,   Цդ: %s\n"

#: ainterface.c:209
msgid "Specify at least one starting URL!"
msgstr "֦     URL!"

#: ainterface.c:211
msgid "Specify at least one starting URL!\n"
msgstr "֦     URL!\n"

#: ainterface.c:477
msgid "Can't list available message catalogs\n"
msgstr ""

#: authinfo.c:107
msgid "Bad section - specify protocol\n"
msgstr "צ æ - ֦ \n"

#: authinfo.c:112
msgid "Bad section - specify hostname\n"
msgstr "צ æ - ֦ ' \n"

#: authinfo.c:162
#, c-format
msgid "Unable to parse : \"%s\"\n"
msgstr "  ڦ : \"%s\"\n"

#: authinfo.c:182
#, c-format
msgid "Bad protocol - %s\n"
msgstr "צ  - %s\n"

#: authinfo.c:194
#, c-format
msgid "Bad port number %s\n"
msgstr "צ   %s\n"

#: authinfo.c:215
#, c-format
msgid "Unknown auth type - %s\n"
msgstr "צ  æ - %s\n"

#: cleanup.c:65
msgid "press any key to exit\n"
msgstr "Ӧ -  \n"

#: cmdparse.c:129
#, c-format
msgid "Error parsing commandline at: %s\n"
msgstr "  ϧ Ҧ ¦: %s\n"

#: cmdparse.c:186
#, c-format
msgid "Unable to parse commandline: %s\n"
msgstr "  ڦ  Ҧ: %s\n"

#: config.c:45
msgid "Level order"
msgstr ""

#: config.c:46
msgid "Level order, inline first"
msgstr ""

#: config.c:47
msgid "Pre order"
msgstr ""

#: config.c:48
msgid "Pre order, inline first"
msgstr ""

#: config.c:116
#, c-format
msgid ""
"Usage:  %s  [options]  [any number of URLS]\n"
"pavuk-%s %s\n"
msgstr ""
":  %s  [æ]  [- ˦˦ URL']\n"
"pavuk-%s %s\n"

#: config.c:132
#, c-format
msgid "Type \"%s --help\" for long help\n"
msgstr "Ҧ \"%s --help\"  ¦ ϧ Ц\n"

#: config.c:140
msgid "Optional features available :\n"
msgstr "צ Ԧ :\n"

#: config.c:142
msgid " - Debug mode\n"
msgstr " - Debug mode\n"

#: config.c:146
msgid " - GNU gettext internationalization of messages\n"
msgstr ""

#: config.c:150
msgid " - flock() document locking\n"
msgstr ""

#: config.c:154
msgid " - fcntl() document locking\n"
msgstr ""

#: config.c:159
msgid " - Gtk GUI interface\n"
msgstr " - Gtk GUI \n"

#: config.c:162
msgid " - URL tree preview\n"
msgstr " -   URL\n"

#: config.c:167
#, fuzzy
msgid " - HTTP and FTP over SSL\n"
msgstr " - http  SSL\n"

#: config.c:178
#, c-format
msgid " - SSL layer implemented with %s library\n"
msgstr ""

#: config.c:184
msgid " - Socks v4 proxy support\n"
msgstr " - Ц Ӧ Socks v4\n"

#: config.c:186
msgid " - Socks v5 proxy support\n"
msgstr " - Ц Ӧ Socks v5\n"

#: config.c:190
msgid " - with filesystem free space checking\n"
msgstr " -  צ צ ͦ  צ ͦ\n"

#: config.c:194
msgid " - with optional regex patterns in -fnrules and -*rpattern options\n"
msgstr ""

#: config.c:198
msgid " - with POSIX regexp\n"
msgstr " -  Ц POSIX regexp\n"

#: config.c:202
msgid " - with Bell V8 regexp\n"
msgstr " -  Ц Bell V8 regexp\n"

#: config.c:206
msgid " - with BSD regexp\n"
msgstr " -  Ц BSD regexp\n"

#: config.c:210
msgid " - with GNU regexp\n"
msgstr " -  Ц GNU regexp\n"

#: config.c:214
msgid " - with PCRE regexp\n"
msgstr " -  Ц PCRE regexp\n"

#: config.c:218
msgid " - with support for loading files from Netscape browser cache\n"
msgstr " -  Ц  ̦   Netscape\n"

#: config.c:222
msgid ""
" - with support for detecting whether pavuk is running as background job\n"
msgstr " -  Ц צ    \"ЦЦ\" ͦ\n"

#: config.c:226
msgid " - with multithreading support\n"
msgstr " -  Ц Ԧ\n"

#: config.c:230
msgid " - with NTLM authorization support\n"
msgstr " -  Ц æ NTLM\n"

#: config.c:234
msgid " - with JavaScript bindings\n"
msgstr ""

#: config.c:238
#, fuzzy
msgid " - with IPv6 support\n"
msgstr " -  Ц Ԧ\n"

#: config.c:312
#, c-format
msgid "HTML tag not supported : %s.%s\n"
msgstr "HTML-ŭ  Цդ : %s.%s\n"

#: config.c:691
msgid "Error parsing commandline\n"
msgstr "  ϧ Ҧ\n"

#: config.c:698
#, c-format
msgid "Not enough number of parameters for \"-%s\" option\n"
msgstr " Ҧ  æ \"%s\"\n"

#: config.c:705
#, c-format
msgid "Unknown option %s\n"
msgstr "צ æ %s\n"

#: config.c:712
#, c-format
msgid "Wrong format of option %s\n"
msgstr "צ  æ %s\n"

#: config.c:721
#, c-format
msgid "WARNING: option \"-%s\" not supported in current configuration!\n"
msgstr ": æ \"%s\"    Φ Ʀæ!\n"

#: config.c:734
#, c-format
msgid "Please specify number with parameter \"-%s\"\n"
msgstr "-, ֦    \"%s\"\n"

#: config.c:799 config.c:1164 http_proxy.c:123
#, c-format
msgid "Unknown port \"%s\"\n"
msgstr "צ  \"%s\"\n"

#: config.c:815 config.c:1177
#, c-format
msgid "Bad auth scheme \"%s\"\n"
msgstr "צ  æ \"%s\"\n"

#: config.c:825 config.c:1187
#, c-format
msgid "Unknow operation mode \"%s\"\n"
msgstr "צ   \"%s\"\n"

#: config.c:847
#, c-format
msgid "Please specify floating number with parameter \"-%s\"\n"
msgstr "-, ֦      \"%s\"\n"

#: config.c:866
#, c-format
msgid "Please specify proper condition type for -%s (%s)\n"
msgstr "-, ֦ צ    %s (%s)\n"

#: config.c:889
#, c-format
msgid "Please specify valid RE with parameter \"-%s\"\n"
msgstr "-, ֦ צ RE    \"%s\"\n"

#: config.c:900 config.c:1299
#, c-format
msgid "Unknown URL scheduling strategy - \"%s\"\n"
msgstr "צ Ǧ   URL - \"%s\"\n"

#: config.c:908 config.c:1310
#, c-format
msgid "Unknown SSL version - \"%s\"\n"
msgstr "צ Ӧ SSL - \"%s\"\n"

#: config.c:917 config.c:1321
#, c-format
msgid "Invalid additional HTTP header - \"%s\"\n"
msgstr "צ   HTTP - \"%s\"\n"

#: config.c:940 config.c:1344
#, c-format
msgid "Invalid request specification - \"%s\"\n"
msgstr "צ Ʀæ  - \"%s\"\n"

#: config.c:985
#, c-format
msgid "Invalid parameters for \"-%s\" option\n"
msgstr "צ   æ \"%s\"\n"

#: config.c:1001
#, c-format
msgid "Invalid number list \"%s\" for option \"-%s\"\n"
msgstr ""

#: config.c:1018
#, c-format
msgid "Invalid FTP login handshake string \"%s\" for option \"-%s\"\n"
msgstr ""

#: config.c:1080
#, c-format
msgid "WARNING: option \"%s\" not supported in current configuration!\n"
msgstr ": æ \"%s\"    Φ Ʀæ!\n"

#: config.c:1106
#, c-format
msgid "Please specify number \"%s\"\n"
msgstr "-, ֦  \"%s\"\n"

#: config.c:1124
#, c-format
msgid "Only \"true\" & \"false\" is allowed : \"%s\"\n"
msgstr " \"true\"  \"false\"  : \"%s\"\n"

#: config.c:1198
#, c-format
msgid "Bad time parameter \"%s\"\n"
msgstr "צ   \"%s\"\n"

#: config.c:1229
#, c-format
msgid "Please specify floating number \"%s\"\n"
msgstr "-, ֦    \"%s\"\n"

#: config.c:1246
#, c-format
msgid "Please specify proper arguments for %s\n"
msgstr "-, ֦ צΦ   %s\n"

#: config.c:1258
#, c-format
msgid "Please specify proper condition type for %s (%s)\n"
msgstr "-, ֦ צ    %s (%s)\n"

#: config.c:1286
#, c-format
msgid "Please specify valid RE \"%s\"\n"
msgstr "-, ֦ צ RE  \"%s\"\n"

#: config.c:1378
#, c-format
msgid "Invalid js_transform specification - \"%s\"\n"
msgstr "צ Ʀæ js_transform - \"%s\"\n"

#: config.c:1398
#, c-format
msgid "Invalid number list specification - \"%s\"\n"
msgstr ""

#: config.c:1413
#, c-format
msgid "Invalid FTP login handshake string \"%s\".\n"
msgstr ""

#: config.c:1459
#, c-format
msgid "Unable to parse \"%s\"\n"
msgstr "  ڦ \"%s\"\n"

#: config.c:1501
#, c-format
msgid "ERROR: Scenario loading failed (%s)\n"
msgstr ":    Ҧ (%s)\n"

#: cookie.c:212
#, c-format
msgid "Unable to parse : %s\n"
msgstr "  ڦ : %s\n"

#: cookie.c:385
msgid "Updating cookie file\n"
msgstr "   \n"

#: cookie.c:414
msgid "Cookie file has changed - > synchronizing\n"
msgstr "   ͦ - > Φդ\n"

#: cookie.c:563
#, c-format
msgid "Server %s is trying to set cookie for %s domain\n"
msgstr " %s      %s\n"

#: cookie.c:574
#, c-format
msgid "Removing cookie from disabled domain %s\n"
msgstr "Ѥ     %s\n"

#: debugl.c:16
msgid "HTML parsers"
msgstr "ަ HTML"

#: debugl.c:17
msgid "Server responses"
msgstr " "

#: debugl.c:18
msgid "Client requests"
msgstr " ̦"

#: debugl.c:19
msgid "Procedure calling"
msgstr " "

#: debugl.c:20
msgid "File locking"
msgstr " ̦"

#: debugl.c:21
msgid "Networking code"
msgstr "   "

#: debugl.c:22
msgid "Miscelanous"
msgstr ""

#: debugl.c:23
msgid "Extended user infos"
msgstr ""

#: debugl.c:24
msgid "Multithreading - locking"
msgstr "צ - "

#: debugl.c:25
msgid "Multithreading - threads"
msgstr "צ - "

#: debugl.c:26
msgid "POST request data"
msgstr "Φ  POST"

#: debugl.c:27
msgid "Limiting conditions"
msgstr " "

#: debugl.c:28
msgid "SSL informations"
msgstr ""

#: debugl.c:67
#, c-format
msgid "Bad debug level selection : %s\n"
msgstr "צ ¦  צ : %s\n"

#: decode.c:185
msgid "decode"
msgstr ""

#: digest_auth.c:156
msgid "Trying to do HTTP Digest authorization\n"
msgstr "  HTTP Digest æ\n"

#: digest_auth.c:203
msgid "Trying to do HTTP proxy Digest authorization\n"
msgstr "  HTTP proxy Digest æ\n"

#: dinfo.c:368 dinfo.c:387
#, c-format
msgid "Error parsing .pavuk_info file field: %s\n"
msgstr "   .pavuk_info: %s\n"

#: doc.c:294
msgid "Transfering data"
msgstr " Φ"

#: doc.c:309
msgid "setsockopt: SO_RCVBUF failed"
msgstr "setsockopt: ¦ SO_RCVBUF"

#: doc.c:330
msgid "storing document"
msgstr "Ҧ "

#: doc.c:396
msgid "Document transfer data"
msgstr ""

#: doc.c:417
msgid "Data transfer done"
msgstr "Φ "

#: doc.c:594
#, c-format
msgid "Trying to resume from position %d \n"
msgstr "   æ %d \n"

#: doc.c:659
msgid "Opening connection"
msgstr " '"

#: doc.c:683
msgid "Loading local copy\n"
msgstr "դ  Ц\n"

#: doc.c:909
msgid "File may be truncated\n"
msgstr "   Ӧ\n"

#: doc.c:933
msgid "Decoding document - OK\n"
msgstr "  - \n"

#: doc.c:936
msgid "Decoding document - failed\n"
msgstr "  - ¦\n"

#: doc.c:939
msgid "Unsupported document encoding\n"
msgstr " ,   Цդ\n"

#: doc.c:943
msgid "Received Encoded file but decoding not allowed (untouched)\n"
msgstr " ,     (,  )\n"

#: doc.c:1113
#, c-format
msgid "Removing improper document : %s\n"
msgstr "Ѥ \"¦\"  : %s\n"

#: doc.c:1175 doc.c:1241
msgid "Local file"
msgstr " "

#: doc.c:1181
msgid "Gopher/Text File"
msgstr "Gopher/ "

#: doc.c:1184
msgid "Gopher/Directory"
msgstr "Gopher/Ҧ"

#: doc.c:1187
msgid "Gopher/CSO phone book"
msgstr "  Gopher/CSO"

#: doc.c:1190
msgid "Gopher/Error"
msgstr "Gopher/"

#: doc.c:1193
msgid "Gopher/BINHEX"
msgstr "Gopher/BINHEX"

#: doc.c:1196
msgid "Gopher/DOS bin"
msgstr ""

#: doc.c:1199
msgid "Gopher/UUencoded"
msgstr ""

#: doc.c:1202
msgid "Gopher/Search index"
msgstr ""

#: doc.c:1205
msgid "Gopher/Telnet session"
msgstr ""

#: doc.c:1208
msgid "Gopher/bin"
msgstr ""

#: doc.c:1211
msgid "Gopher/Duplicated server"
msgstr ""

#: doc.c:1214
msgid "Gopher/TN3270"
msgstr ""

#: doc.c:1217
msgid "Gopher/GIF"
msgstr ""

#: doc.c:1220
msgid "Gopher/Image"
msgstr ""

#: doc.c:1226
msgid "FTP/Directory"
msgstr "FTP/Ҧ"

#: doc.c:1228
msgid "FTP/File"
msgstr "FTP/"

#: doc.c:1232
msgid "FTPS/Directory"
msgstr "FTPS/Ҧ"

#: doc.c:1234
msgid "FTPS/File"
msgstr "FTPS/"

#: doc.c:1237
msgid "Unsupported type"
msgstr "  Цդ"

#: doc.c:1438
#, c-format
msgid "S: %s [R: %s] [ET: %s] [RT: %s] \r"
msgstr ""

#: doc.c:1441
#, c-format
msgid "S: %s [R: %s] [ET: %s] \r"
msgstr ""

#: doc.c:1481
#, c-format
msgid "Waiting to releases document lock on: %s\n"
msgstr "  צ : %s\n"

#: doc.c:1721
msgid "Rewriting links inside parent documents"
msgstr "   \"˦\" "

#: errcode.c:21
#, c-format
msgid "%s: user break\n"
msgstr "%s : ¦ \n"

#: errcode.c:28
#, c-format
msgid "%s: OK\n"
msgstr ""

#: errcode.c:31
#, c-format
msgid "%s: ERROR: storing document\n"
msgstr "%s :  Ҧ \n"

#: errcode.c:34
#, c-format
msgid "%s: ERROR: opening file\n"
msgstr "%s :  צ \n"

#: errcode.c:37
#, c-format
msgid "%s: ERROR: URL pointing to local directory is not supported\n"
msgstr ""
"%s : : URL,  դ   Ҧ,  Цդ\n"

#: errcode.c:40
#, c-format
msgid "%s: ERROR: unknown\n"
msgstr "%s : : צ\n"

#: errcode.c:43
#, c-format
msgid "%s: ERROR: document is locked\n"
msgstr "%s : :  \n"

#: errcode.c:46
#, c-format
msgid "%s: ERROR: reading socket\n"
msgstr "%s :    \n"

#: errcode.c:49
#, c-format
msgid "%s: MESSAGE: bigger than maximal allowed size\n"
msgstr "%s : : դ .  ͦ\n"

#: errcode.c:52
#, c-format
msgid "%s: MESSAGE: disabled by user-exit script condition\n"
msgstr ""

#: errcode.c:55
#, c-format
msgid "%s: MESSAGE: smaller than minimal allowed size\n"
msgstr "%s : :   ͦ.  ͦ\n"

#: errcode.c:58
#, c-format
msgid "%s: MESSAGE: this mime type is not allowed (%s)\n"
msgstr "%s : :   MIME  (%s)\n"

#: errcode.c:61
#, c-format
msgid "%s: ERROR: error in proxy connect\n"
msgstr "%s : :  Ц'  Ӧ\n"

#: errcode.c:64
#, c-format
msgid "%s: ERROR: transfer broken by user\n"
msgstr "%s : :  ¦ \n"

#: errcode.c:67
#, c-format
msgid "%s: MESSAGE: file modification time doesn't fit to specified interval\n"
msgstr ""
"%s : :  ͦ      \n"

#: errcode.c:70
#, c-format
msgid "%s: ERROR: file has zero size - possible error\n"
msgstr "%s : :     - , \n"

#: errcode.c:73
#, c-format
msgid "%s: MESSAGE: document was already processed\n"
msgstr "%s : :    \n"

#: errcode.c:76
#, c-format
msgid "%s: MESSAGE: document was disabled by user\n"
msgstr "%s : :    \n"

#: errcode.c:79
#, c-format
msgid "%s: MESSAGE: document was disabled by limiting rules\n"
msgstr "%s : :     \n"

#: errcode.c:82
#, c-format
msgid "%s: WARNING: transfer rate lower than minimal allowed\n"
msgstr "%s : : ˦   ͦΦ \n"

#: errcode.c:85
#, c-format
msgid "%s: WARNING: file size quota exceeded, rest will be truncated\n"
msgstr "%s : : ͦ  դ ֦,   Ӧ\n"

#: errcode.c:88
#, c-format
msgid "%s: WARNING: transfer quota exceeded, breaking download\n"
msgstr "%s : : ˦   ֦,  \n"

#: errcode.c:91
#, c-format
msgid "%s: ERROR: low free space on filesystem, breaking transfer\n"
msgstr "%s : :  צ ͦ  ,  \n"

#: errcode.c:94
#, c-format
msgid ""
"%s: WARNING: maximal allowed running time exceeded, downloading will break\n"
msgstr "%s : : .   ,  \n"

#: errcode.c:97
#, c-format
msgid "%s: ERROR: unnown FTP error\n"
msgstr "%s : : צ  FTP\n"

#: errcode.c:100
#, c-format
msgid "%s: ERROR: FTP server doesn't support REST command\n"
msgstr "%s : : FTP   Цդ  REST\n"

#: errcode.c:104
#, c-format
msgid "%s: ERROR: unable to list directory content\n"
msgstr "%s : :    Ҧ\n"

#: errcode.c:107
#, c-format
msgid "%s: ERROR: unable to connect to FTP server\n"
msgstr "%s : :  Ц'   FTP\n"

#: errcode.c:110
#, c-format
msgid "%s: ERROR: FTP authentification - bad username\n"
msgstr "%s : : Ʀæ FTP - צ ' \n"

#: errcode.c:113
#, c-format
msgid "%s: ERROR: FTP authentification - bad password\n"
msgstr "%s : : Ʀæ FTP - צ \n"

#: errcode.c:116
#, c-format
msgid "%s: ERROR: FTP proxy authentification - bad username\n"
msgstr ""
"%s : : Ʀæ  FTP Ӧ - צ ' \n"

#: errcode.c:119
#, c-format
msgid "%s: ERROR: FTP proxy authentification - bad password\n"
msgstr "%s : : Ʀæ  FTP Ӧ - צ \n"

#: errcode.c:122
#, c-format
msgid "%s: ERROR: unable to open FTP data connection\n"
msgstr "%s : :  צ ' FTP data\n"

#: errcode.c:125
#, c-format
msgid "%s: ERROR: unable to get file from FTP server\n"
msgstr "%s : :      FTP\n"

#: errcode.c:128
#, c-format
msgid "%s: ERROR: FTP server doesn't support MDTM command\n"
msgstr "%s : :  FTP  Цդ  MDTM\n"

#: errcode.c:131
#, c-format
msgid "%s: ERROR: file from FTP server is truncated\n"
msgstr "%s : :    FTP Ӧ\n"

#: errcode.c:135
#, c-format
msgid "%s: MESSAGE: reget unneeded - file is up to date\n"
msgstr "%s : :    -   ͦ\n"

#: errcode.c:138
#, c-format
msgid "%s: MESSAGE: FTP transfer not allowed because of rules\n"
msgstr "%s : :  FTP   \n"

#: errcode.c:141
#, c-format
msgid ""
"%s: WARNING: FTP directory URL, but FTP directory not allowed (-FTPdir)\n"
msgstr ""
"%s : :  URL Ҧ FTP,    Ҧ FTP  "
" (-FTPdir)\n"

#: errcode.c:144
#, c-format
msgid "%s: WARNING: FTP login_handshake failed\n"
msgstr ""

#: errcode.c:147
#, c-format
msgid "%s: ERROR: unknown HTTP error\n"
msgstr "%s : : צ  HTTP\n"

#: errcode.c:150
#, c-format
msgid "%s: ERROR: unable to connect to HTTP server\n"
msgstr "%s : :  Ц'   HTTP\n"

#: errcode.c:153
#, c-format
msgid "%s: ERROR: HTTP server doesn't support partial content retrieving\n"
msgstr "%s : :  HTTP  Цդ   Ԧ\n"

#: errcode.c:156
#, c-format
msgid "%s: ERROR: broken HTTP request send\n"
msgstr ""

#: errcode.c:159
#, c-format
msgid "%s: ERROR: failed to read HTTP response\n"
msgstr "%s : : ¦  צ HTTP\n"

#: errcode.c:162
#, c-format
msgid "%s: ERROR: unexpected HTTP response code after trying to reget\n"
msgstr ""

#: errcode.c:166
#, c-format
msgid "%s: ERROR: unable to send HTTP request data\n"
msgstr "%s : :  Ħ Φ  HTTP\n"

#: errcode.c:169
#, c-format
msgid "%s: MESSAGE: redirecting to another location\n"
msgstr "%s : :    ͦ\n"

#: errcode.c:172
#, c-format
msgid "%s: ERROR: HTTP document is truncated\n"
msgstr "%s : :  HTTP Ӧ\n"

#: errcode.c:175
#, c-format
msgid "%s: ERROR: cyclic redirection!\n"
msgstr "%s : : ̦ !\n"

#: errcode.c:178
#, c-format
msgid "%s: ERROR: redirecting to unsupported URL\n"
msgstr "%s : :   URL,   Цդ\n"

#: errcode.c:181
#, c-format
msgid "%s: ERROR: unable to connect to proxy server\n"
msgstr "%s : :  Ц'  Ӧ \n"

#: errcode.c:184
#, c-format
msgid "%s: ERROR: received bad redirect response from server\n"
msgstr "%s : :  צ צ \n"

#: errcode.c:187
#, c-format
msgid "%s: ERROR: unable to do NTLM authorization\n"
msgstr "%s : :  Ħ æ NTLM\n"

#: errcode.c:190
#, c-format
msgid "%s: ERROR: unable to do HTTP Digest authorization\n"
msgstr "%s : :  Ħ æ HTTP Digest\n"

#: errcode.c:193
#, c-format
msgid "%s: ERROR: unable to do NTLM proxy authorization\n"
msgstr "%s : :  Ħ æ NTLM proxy\n"

#: errcode.c:196
#, c-format
msgid "%s: ERROR: unable to do HTTP proxy Digest authorization\n"
msgstr "%s : :  Ħ æ HTTP proxy Digest\n"

#: errcode.c:199
#, c-format
msgid "%s: ERROR: HTTP client sends bad request\n"
msgstr "%s : : HTTP ̦  צ \n"

#: errcode.c:202
#, c-format
msgid "%s: ERROR: HTTP authentication is required\n"
msgstr "%s : : Ȧ æ HTTP\n"

#: errcode.c:205
#, c-format
msgid "%s: ERROR: HTTP proxy authentication is required\n"
msgstr "%s : : Ȧ æ HTTP proxy\n"

#: errcode.c:208
#, c-format
msgid "%s: ERROR: HTTP payment required\n"
msgstr ""

#: errcode.c:211
#, c-format
msgid "%s: ERROR: forbidden HTTP request\n"
msgstr ""

#: errcode.c:214
#, c-format
msgid "%s: ERROR: HTTP document not found\n"
msgstr "%s : : HTTP   \n"

#: errcode.c:217
#, c-format
msgid "%s: ERROR: HTTP remote server error\n"
msgstr "%s: ERROR: HTTP remote server error\n"

#: errcode.c:220
#, c-format
msgid "%s: ERROR: HTTP server replied with connection timeout response\n"
msgstr "%s : : HTTP   \"connection timeout\"\n"

#: errcode.c:223
#, c-format
msgid "%s: ERROR: HTTP server replied with conflict response\n"
msgstr ""

#: errcode.c:226
#, c-format
msgid "%s: ERROR: document was removed from HTTP server\n"
msgstr "%s : :     HTTP \n"

#: errcode.c:229
#, c-format
msgid "%s: ERROR: you must use proxy to access this URL\n"
msgstr "%s : :      URL  Ӧ\n"

#: errcode.c:232
#, c-format
msgid "%s: ERROR: 306\n"
msgstr "%s : : 306\n"

#: errcode.c:235
#, c-format
msgid ""
"%s: ERROR: used HTTP method is not supported or not allowed for this URL\n"
msgstr ""
"%s : :   HTTP  Цդ      "
"URL\n"

#: errcode.c:238
#, c-format
msgid "%s: ERROR: client doesn't accept MIME type of requested URL\n"
msgstr "%s : : ̦    MIME  URL\n"

#: errcode.c:241
#, c-format
msgid "%s: ERROR: in request header is missing Content-Length: header\n"
msgstr "%s : : צΤ  \"Content-Length:\"  æ \n"

#: errcode.c:244
#, c-format
msgid "%s: ERROR: preconditions in request failed for requested URL\n"
msgstr ""

#: errcode.c:247
#, c-format
msgid "%s: ERROR: request body too large\n"
msgstr "%s : : Ԧ  \n"

#: errcode.c:250
#, c-format
msgid "%s: ERROR: request URL too long\n"
msgstr "%s : : URL  \n"

#: errcode.c:253
#, c-format
msgid "%s: ERROR: resource in format unsupported for this request\n"
msgstr ""

#: errcode.c:256
#, c-format
msgid "%s: ERROR: requested bad range of document\n"
msgstr "%s : :  צ  \n"

#: errcode.c:259
#, c-format
msgid "%s: ERROR: failed to fulfill expectation from request\n"
msgstr ""

#: errcode.c:262
#, c-format
msgid "%s: ERROR: requested HTTP method not implemented on server side\n"
msgstr "%s : :  HTTP   Цդ \n"

#: errcode.c:265
#, c-format
msgid "%s: ERROR: gatewaying failed for this URL\n"
msgstr "%s : : ¦    URL\n"

#: errcode.c:268
#, c-format
msgid "%s: ERROR: HTTP service currently not available, check later\n"
msgstr "%s : : צ HTTP ڦ ,  ЦΦ\n"

#: errcode.c:271
#, c-format
msgid ""
"%s: ERROR: timeout occured in communication between gateway and remote "
"server\n"
msgstr ""

#: errcode.c:274
#, c-format
msgid ""
"%s: ERROR: HTTP version used in request is unsupported by remote server\n"
msgstr ""
"%s : ERROR:   Ԧ Ӧ HTTP  Цդ \n"

#: errcode.c:277
#, c-format
msgid "%s: ERROR: unable to connect to GOPHER server\n"
msgstr "%s : :  Ц'   GOPHER\n"

#: errcode.c:280
#, c-format
msgid "%s: ERROR: unknown GOPHER error\n"
msgstr "%s : : צ  GOPHER\n"

#: errcode.c:283
#, c-format
msgid "%s: ERROR: unable to connect to HTTPS server\n"
msgstr "%s: :  Ц'   HTTPS\n"

#: errcode.c:286
#, c-format
msgid "%s: ERROR: unable to establish SSL control connection to FTPS server\n"
msgstr ""
"%s: :    '  SSL   "
"FTPS\n"

#: errcode.c:289
#, c-format
msgid "%s: ERROR: this FTP server doesn't support SSL connections\n"
msgstr "%s: :   FTP  Цդ ' SSL\n"

#: errcode.c:292
#, c-format
msgid "%s: ERROR: unable to establish SSL data connection to FTPS server\n"
msgstr ""
"%s:    ' ftp data  SSL   "
"FTPS\n"

#: errcode.c:295
#, c-format
msgid "%s: ERROR: unknown errcode : %d\n"
msgstr "%s: : צ   : %d\n"

#: file.c:31
msgid "Can't open directory\n"
msgstr "  צ Ҧ\n"

#: form.c:1082 form.c:1145 form.c:1300
#, c-format
msgid "Unsupported form type in context: %d\n"
msgstr "Ц    Ԧ: %d\n"

#: form.c:1399
msgid "Browse"
msgstr ""

#: form.c:1412
msgid "URLs with forms"
msgstr "URL'  "

#: form.c:1421
msgid "Refresh URL list"
msgstr "  URL"

#: form.c:1455 form.c:1456 url.c:1009
msgid "unknown"
msgstr "צ"

#: form.c:1602
msgid "Pavuk: load form file"
msgstr ":   "

#: form.c:1626
msgid "Fill forms"
msgstr " "

#: form.c:1633
msgid "Form number: "
msgstr " : "

#: form.c:1645
msgid "Action URL: "
msgstr "URL Ħ: "

#: form.c:1654 gui_common.c:701
msgid "Request method: "
msgstr " : "

#: form.c:1663 gui_common.c:720 gui_tree.c:127
msgid "Request encoding: "
msgstr " : "

#: form.c:1672
msgid "HTML form content"
msgstr "ͦ HTML "

#: form.c:1687
msgid "Load HTML file ..."
msgstr " HTML   ..."

#: form.c:1740
msgid "Pavuk: HTML forms editor"
msgstr ":   HTML"

#: form.c:1762 gui_jscons.c:191
msgid "Close"
msgstr ""

#: ftp.c:101
msgid "ftp_get_response: ftp control connection closed before any response\n"
msgstr ""
"ftp_get_response:  ' ftp  Φ   "
"צ\n"

#: ftp.c:172
msgid "ftp: setsockopt TOS - THROUGHPUT failed"
msgstr ""

#: ftp.c:269 ftp.c:290 ftp.c:329
#, fuzzy, c-format
msgid "Error parsing FTP response to %s command - %s\n"
msgstr "  ϧ Ҧ ¦: %s\n"

#: ftp.c:667
msgid "Re-using established FTP control connection\n"
msgstr "դ    ' FTP\n"

#: ftp.c:877 http.c:1401
msgid "Size differs, regeting whole\n"
msgstr "Φ ͦ,   \n"

#: ftp.c:887 http.c:1283 http.c:1411
msgid "Modified from last download - regeting whole\n"
msgstr "ͦ     -   \n"

#: ftp.c:974
msgid ""
"Warning: FTP server undertand REST command, but can't handle it properly.\n"
msgstr ""
":  FTP ͦ  REST,      צ.\n"

#: ftp.c:1221 ftp.c:1549
#, c-format
msgid ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 3.2 Final//EN\">\n"
"<HTML>\n"
"<TITLE>\n"
"Directory of %s://%s:%hu%s\n"
"</TITLE>\n"
"<BODY>\n"
"<H1 ALIGN=CENTER><B>List of FTP directory %s://%s:%hu/%s </H1><BR><UL>"
msgstr ""

#: ftp.c:1620
#, c-format
msgid ""
"ERROR: unable to parse FTP list line :\n"
"\t%s\n"
msgstr ""

#: ftp.c:1813
#, c-format
msgid "Making symlink \"%s\" to \"%s\"\n"
msgstr "   \"%s\"  \"%s\"\n"

#: gauthinfo.c:107
msgid "Pavuk: Save auth. info file"
msgstr ":    æ"

#: gauthinfo.c:159
msgid "Pavuk: Load auth. info file"
msgstr ":    æ"

#: gauthinfo.c:340
msgid "Pavuk: Authorization info editor"
msgstr ":   æ"

#: gauthinfo.c:357
msgid "Protocol"
msgstr ""

#: gauthinfo.c:358 gui_common.c:1842
msgid "Host"
msgstr ""

#: gauthinfo.c:359
msgid "User"
msgstr ""

#: gauthinfo.c:360
msgid "Password"
msgstr ""

#: gauthinfo.c:361
msgid "Base dir."
msgstr ""

#: gauthinfo.c:362
msgid "Realm"
msgstr ""

#: gauthinfo.c:363
msgid "Scheme"
msgstr ""

#: gauthinfo.c:388
msgid "Protocol: "
msgstr ": "

#: gauthinfo.c:413 gui_common.c:1858 gui_common.c:1919 gui_common.c:1942
#: gui_common.c:1971
msgid "Host: "
msgstr ": "

#: gauthinfo.c:422
msgid "User: "
msgstr ": "

#: gauthinfo.c:431 gui_common.c:2141 gui_common.c:2191 gui_common.c:2215
msgid "Password: "
msgstr ": "

#: gauthinfo.c:440
msgid "Base directory: "
msgstr " Ҧ: "

#: gauthinfo.c:449
msgid "Realm: "
msgstr ""

#: gauthinfo.c:467 gui_common.c:2085
msgid "User auth. scheme"
msgstr " æ User"

#: gauthinfo.c:472
msgid "Base auth. scheme"
msgstr " æ Base"

#: gauthinfo.c:477 gui_common.c:2087
msgid "Digest auth. scheme"
msgstr " æ Digest"

#: gauthinfo.c:483 gui_common.c:2089
msgid "NTLM auth. scheme"
msgstr " æ NTLM"

#: gauthinfo.c:494 gui_addurl.c:167 gui_common.c:626 gui_common.c:771
#: gui_common.c:948 gui_common.c:1044 gui_common.c:1868 gui_common.c:2664
#: gui_common.c:2910 gui_limits.c:673 gui_tools.c:733
msgid "Append"
msgstr ""

#: gauthinfo.c:502 gui_common.c:642 gui_common.c:778 gui_common.c:964
#: gui_common.c:1051 gui_common.c:1874 gui_common.c:2670 gui_common.c:2916
#: gui_limits.c:679 gui_tools.c:755
msgid "Modify"
msgstr "ͦ"

#: gauthinfo.c:510 gui_common.c:651 gui_common.c:973 gui_common.c:1880
#: gui_common.c:2676 gui_common.c:2922 gui_limits.c:685 gui_tools.c:768
msgid "Clear"
msgstr ""

#: gauthinfo.c:518 gui_common.c:660 gui_common.c:785 gui_common.c:982
#: gui_common.c:1058 gui_common.c:1886 gui_common.c:2682 gui_common.c:2928
#: gui_limits.c:691 gui_tools.c:781
msgid "Delete"
msgstr ""

#: gauthinfo.c:531 gui_common.c:3010 gui_limits.c:759 gui_sched.c:121
#: gui_tools.c:277
msgid "OK"
msgstr ""

#: gauthinfo.c:542 gui_common.c:3019 gui_limits.c:768
msgid "Apply"
msgstr ""

#: gauthinfo.c:550
msgid "Load"
msgstr ""

#: gauthinfo.c:558
msgid "Save"
msgstr ""

#: gauthinfo.c:569 gui_about.c:76 gui_addurl.c:176 gui_common.c:3035
#: gui_limits.c:784 gui_sched.c:130 gui_tools.c:286 gui_tree.c:608
#: gui_tree.c:723 stats.c:504
msgid "Cancel"
msgstr ""

#: gkeys.c:64 gkeys.c:81 gkeys.c:93
#, c-format
msgid "Unable to parse: %s\n"
msgstr "  ڦ: %s\n"

#: gkeys.c:115
msgid "Unable to create ~/.pavuk_keys file\n"
msgstr "    ~/.pavuk_keys\n"

#: gkeys.c:119
#, c-format
msgid ""
"# This file was generated by %s\n"
"# You may edit it if you're careful!\n"
"\n"
msgstr ""
"#   ڭ %s\n"
"#  ,    Φ!\n"
"\n"

#: gopher.c:66
msgid "********************* Gopher request **************\n"
msgstr "*********************  Gopher **************\n"

#: gopher.c:104
#, c-format
msgid ""
"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 3.2 Final//EN\">\n"
"<HTML>\n"
"<TITLE>\n"
"Directory of gopher://%s:%hu/%s\n"
"</TITLE>\n"
"<BODY>\n"
"<H1 ALIGN=CENTER><B>Directory of gopher://%s:%hu/%s </H1><BR><BR><UL>"
msgstr ""

#: gopher.c:152
#, c-format
msgid ""
"Failed to parse Gopher directory entry:\n"
"%s\n"
msgstr ""

#: gui_about.c:39
msgid "Pavuk: About"
msgstr " "

#: gui_about.c:61
#, c-format
msgid ""
"Pavuk %s %s\n"
" \n"
"an automatic WEB file grabber\n"
" \n"
"By Stefan Ondrejicka\n"
" \n"
"(ondrej@idata.sk)\n"
" \n"
"URL : http://www.idata.sk/~ondrej/pavuk/\n"
" "
msgstr ""
" %s %s\n"
" \n"
"  ̦ WEB\n"
" \n"
" Stefan Ondrejicka\n"
" \n"
"(ondrej@idata.sk)\n"
" \n"
"URL : http://www.idata.sk/~ondrej/pavuk/\n"
" "

#: gui_api.c:168
#, c-format
msgid "Processed: %5d"
msgstr " Ԧ: %5d"

#: gui_api.c:170
#, c-format
msgid "Queued: %5d"
msgstr " ڦ: %5d"

#: gui_api.c:172
#, c-format
msgid "Failed: %4d"
msgstr "¦: %4d"

#: gui_api.c:174
#, c-format
msgid "Rejected: %5d"
msgstr ": %5d"

#: gui_api.c:378
msgid "Start"
msgstr ""

#: gui_api.c:498
msgid "Starting ..."
msgstr "դ ..."

#: gui_api.c:563
msgid "Too high timeout value for GUI interface implementation of timeout\n"
msgstr ""

#: gui_addurl.c:72 gui_main.c:251
#, c-format
msgid "Dropped URL : %s\n"
msgstr " URL : %s\n"

#: gui_addurl.c:126
msgid "Pavuk: Append URL"
msgstr ":  URL"

#: gui_addurl.c:138
msgid "New URL:"
msgstr " URL:"

#: gui_common.c:579 gui_common.c:595 gui_main.c:777
msgid "URL"
msgstr ""

#: gui_common.c:596
msgid "Local filename"
msgstr " ' "

#: gui_common.c:613
msgid "Request URL: "
msgstr "URL : "

#: gui_common.c:616
msgid "Local filename: "
msgstr " ' : "

#: gui_common.c:682
msgid "Extended informations for HTTP POST request"
msgstr " æ   HTTP POST"

#: gui_common.c:739 gui_common.c:1012
msgid "Query fields: "
msgstr " : "

#: gui_common.c:753 gui_common.c:1026 gui_common.c:2609 gui_limits.c:579
msgid "Type"
msgstr ""

#: gui_common.c:754 gui_common.c:1027
msgid "Name"
msgstr "'"

#: gui_common.c:755 gui_common.c:1028
msgid "Value"
msgstr ""

#: gui_common.c:797 gui_common.c:1070
msgid "Type: "
msgstr ": "

#: gui_common.c:826 gui_common.c:1099
msgid "Name: "
msgstr "': "

#: gui_common.c:828 gui_common.c:1101
msgid "Value: "
msgstr ": "

#: gui_common.c:858 gui_common.c:1131
msgid "Pavuk: Choose form field file"
msgstr ": Ҧ  ̦ "

#: gui_common.c:907
msgid "Form data"
msgstr "Φ "

#: gui_common.c:933
msgid "Matching action URL: "
msgstr ""

#: gui_common.c:1193
msgid "Grabber I"
msgstr " "

#: gui_common.c:1201
msgid "Cache Directory: "
msgstr "Ҧ : "

#: gui_common.c:1204
msgid "Default URL prefix: "
msgstr ""

#: gui_common.c:1207
msgid "Separate info directory: "
msgstr ""

#: gui_common.c:1210
msgid "Index file name: "
msgstr "'  : "

#: gui_common.c:1213
msgid "Store file name: "
msgstr "  ̦: "

#: gui_common.c:1216
msgid "Identity string: "
msgstr "Ҧ Ʀæ: "

#: gui_common.c:1220
msgid "Netscape browser cache directory: "
msgstr "Ҧ  Netscape: "

#: gui_common.c:1223
msgid "Mozilla browser cache directory: "
msgstr "Ҧ  ڦ: "

#: gui_common.c:1228
msgid "Browser: "
msgstr ": "

#: gui_common.c:1232
msgid "Reminder command: "
msgstr " : "

#: gui_common.c:1235
msgid "Post command: "
msgstr " : "

#: gui_common.c:1251
msgid "How many times retry on fail: "
msgstr "˦ ڦ   ڦ : "

#: gui_common.c:1254
msgid "How many moved links to follow: "
msgstr " ˦  : "

#: gui_common.c:1257
msgid "How many times to reget file: "
msgstr "˦ ڦ  : "

#: gui_common.c:1260
msgid "Document age before syncing with server: "
msgstr "   Φæ  : "

#: gui_common.c:1262
msgid " days "
msgstr " Φ "

#: gui_common.c:1268
msgid "Read buffer size: "
msgstr "   :"

#: gui_common.c:1273
msgid " kB "
msgstr "  "

#: gui_common.c:1279
msgid "Hash tables size: "
msgstr "ͦ hash-: "

#: gui_common.c:1281
msgid " entries "
msgstr " Ԧ "

#: gui_common.c:1295
msgid "Sleep time between transfers: "
msgstr " ͦ : "

#: gui_common.c:1297
msgid " sec."
msgstr " ."

#: gui_common.c:1302
msgid "randomize"
msgstr ""

#: gui_common.c:1308
msgid "Rollback amount on reget: "
msgstr "   : "

#: gui_common.c:1310
msgid " bytes"
msgstr " Ԧ"

#: gui_common.c:1316
msgid "Transfer quota: "
msgstr " Ԧ: "

#: gui_common.c:1318 gui_common.c:1326 gui_common.c:1335
msgid " kB"
msgstr " "

#: gui_common.c:1324
msgid "File size quota: "
msgstr " ͦ: "

#: gui_common.c:1333
msgid "Filesystem freespace quota: "
msgstr " צ  : "

#: gui_common.c:1351
msgid "Number of downloading threads: "
msgstr "˦  : "

#: gui_common.c:1366
msgid "Grabber II"
msgstr " "

#: gui_common.c:1369
msgid "Misc settings"
msgstr ""

#: gui_common.c:1378
msgid "Always generate unique name for document"
msgstr "  Φ ' "

#: gui_common.c:1383
msgid "Delete FTP document after succesful download"
msgstr "  FTP Ц  "

#: gui_common.c:1388
msgid "Preserve document modification time"
msgstr "Ҧ  Ʀæ "

#: gui_common.c:1393
msgid "Preserve FTP document permissions"
msgstr "Ҧ   ̦ FTP"

#: gui_common.c:1398
msgid "Preserve FTP symbolic links paths"
msgstr "Ҧ     FTP"

#: gui_common.c:1403
msgid "Retrieve FTP symbolic links like files"
msgstr "  FTP  "

#: gui_common.c:1409
msgid "Whole reget when partial not supported"
msgstr " Φ,    "

#: gui_common.c:1415
msgid "Use gzip encoding for transfer"
msgstr "  gzip  Φ"

#: gui_common.c:1420
msgid "Remove improper documents"
msgstr " \"¦Φ\" "

#: gui_common.c:1425
msgid "Check transferred size of document"
msgstr "צ ͦ  "

#: gui_common.c:1430
msgid "Store directory URLs as index files"
msgstr "Ҧ URL Ҧ,  Φ "

#: gui_common.c:1435
msgid "Store info files with each document"
msgstr "Ҧ -  "

#: gui_common.c:1440
msgid "Send self URL as Referer for starting URLs"
msgstr "  URL  Referer   "

#: gui_common.c:1445
msgid "Send If-Range header field when regeting"
msgstr "  If-Range  Φ"

#: gui_common.c:1450
msgid "Show time of start and end of downloading"
msgstr "    ˦ "

#: gui_common.c:1458
msgid "URL scheduling strategy: "
msgstr "Ǧ  : "

#: gui_common.c:1504 gui_limits.c:447
msgid "HTML"
msgstr ""

#: gui_common.c:1507
#, fuzzy
msgid "HTML document URL rewriting rules"
msgstr " URL  HTML "

#: gui_common.c:1517
msgid "Rewrite URLs inside HTML doc."
msgstr " URL  HTML "

#: gui_common.c:1525
msgid "Rewrite URLs to local when stored locally"
msgstr " URL  Φ  Φ"

#: gui_common.c:1531
msgid "Rewrite all suitable URLs to local"
msgstr " Ӧ Φ URL  Φ"

#: gui_common.c:1537
msgid "Rewrite all URLs to local immediately"
msgstr " Ӧ URL  Φ "

#: gui_common.c:1543
msgid "Rewrite all URLs to remote immediately"
msgstr " Ӧ URL  צΦ "

#: gui_common.c:1549
msgid "Rewrite only one currently download URL"
msgstr ""

#: gui_common.c:1554
msgid "Tuning of HTML rewriting engine"
msgstr ""

#: gui_common.c:1564
#, fuzzy
msgid "Don't touch URL wildcard pattern: "
msgstr "-"

#: gui_common.c:1569
msgid "Don't touch URL RE pattern: "
msgstr ""

#: gui_common.c:1573
msgid "Don't touch HTML tag RE pattern: "
msgstr ""

#: gui_common.c:1651
msgid "Net"
msgstr ""

#: gui_common.c:1658
msgid "Allowed protocols"
msgstr "Φ "

#: gui_common.c:1667
msgid "HTTP"
msgstr ""

#: gui_common.c:1672
msgid "FTP"
msgstr ""

#: gui_common.c:1677
msgid "Gopher"
msgstr ""

#: gui_common.c:1683
msgid "HTTPS"
msgstr ""

#: gui_common.c:1688
msgid "FTPS"
msgstr ""

#: gui_common.c:1694
msgid "FTP data connection type "
msgstr " ' \"FTP data\" "

#: gui_common.c:1703
msgid "Active"
msgstr ""

#: gui_common.c:1710
msgid "Passive"
msgstr ""

#: gui_common.c:1717
msgid "Communication timeout: "
msgstr ""

#: gui_common.c:1730
msgid " min."
msgstr " ."

#: gui_common.c:1736
msgid "Maximal transfer rate: "
msgstr " ˦: "

#: gui_common.c:1749 gui_common.c:1768
msgid " kB/s"
msgstr " /"

#: gui_common.c:1755
msgid "Minimal transfer rate: "
msgstr "Φ ˦: "

#: gui_common.c:1774
msgid "Local interface address: "
msgstr "  : "

#: gui_common.c:1785
msgid "Additional HTTP headers: "
msgstr "צ  HTTP: "

#: gui_common.c:1796
msgid "Additional FTP list options: "
msgstr ""

#: gui_common.c:1809
msgid "Use wide listing of FTP directories"
msgstr "   FTP Ҧ"

#: gui_common.c:1815
msgid "Fix detection of nonexisting FTP directories on WuFTPD FTP servers"
msgstr ""

#: gui_common.c:1821
msgid "Use HTTP/1.1 protocol for HTTP communication"
msgstr " HTTP/1.1  ' HTTP"

#: gui_common.c:1827
msgid "FTP login handshake rules"
msgstr ""

#: gui_common.c:1843
msgid "Login handshake"
msgstr ""

#: gui_common.c:1861
msgid "Handshake: "
msgstr ""

#: gui_common.c:1903
msgid "Proxy"
msgstr "Ӧ"

#: gui_common.c:1909
msgid "Gopher proxy"
msgstr "Gopher Ӧ"

#: gui_common.c:1922 gui_common.c:1945 gui_common.c:1974
msgid "Port: "
msgstr ": "

#: gui_common.c:1926
msgid "Gopher via HTTP proxy"
msgstr "Gopher  HTTP Ӧ"

#: gui_common.c:1931
msgid "FTP proxy"
msgstr "FTP Ӧ"

#: gui_common.c:1948
msgid "FTP via HTTP proxy"
msgstr "FTP  HTTP Ӧ"

#: gui_common.c:1954
msgid "FTP via HTTP tunneling proxy"
msgstr "Ӧ  FTP  HTTP"

#: gui_common.c:1961
msgid "SSL proxy"
msgstr "SSL Ӧ"

#: gui_common.c:1978
msgid "HTTP proxy"
msgstr "HTTP Ӧ"

#: gui_common.c:1984
msgid "Proxy: "
msgstr "Ӧ: "

#: gui_common.c:1989
msgid "Allow caching of documents"
msgstr "  Ԧ"

#: gui_common.c:2044
msgid "Languages"
msgstr ""

#: gui_common.c:2047
msgid "Preffered languages"
msgstr "Φ "

#: gui_common.c:2052
msgid "Language code: "
msgstr " : "

#: gui_common.c:2064
msgid "Preffered character sets"
msgstr "Φ  ̦"

#: gui_common.c:2069
msgid "Character set code: "
msgstr " : "

#: gui_common.c:2086
msgid "Basic auth. scheme"
msgstr " æ Basic"

#: gui_common.c:2096
msgid "Auth"
msgstr ""

#: gui_common.c:2103
msgid "User authentification"
msgstr "æ "

#: gui_common.c:2112 gui_common.c:2161
msgid "Scheme: "
msgstr ": "

#: gui_common.c:2138 gui_common.c:2188 gui_common.c:2212
msgid "User name: "
msgstr ": "

#: gui_common.c:2144 gui_common.c:2194
msgid "NTLM domain: "
msgstr " NTLM: "

#: gui_common.c:2147 gui_common.c:2197
msgid "Reuse HTTP Digest access nonce"
msgstr ""

#: gui_common.c:2152
msgid "HTTP proxy user authentification"
msgstr "æ   HTTP Ӧ"

#: gui_common.c:2202
msgid "FTP proxy user authentification"
msgstr "æ   FTP Ӧ"

#: gui_common.c:2217
msgid "Misc"
msgstr ""

#: gui_common.c:2231
msgid "E-mail address: "
msgstr " : "

#: gui_common.c:2233
msgid "Send From: header with HTTP request"
msgstr "  \"From:\"   HTTP"

#: gui_common.c:2247
msgid "SSL"
msgstr ""

#: gui_common.c:2250
msgid "SSL client certificate"
msgstr "SSL Ʀ ̦"

#: gui_common.c:2260 gui_common.c:2274
msgid "Certificate password: "
msgstr " Ʀ: "

#: gui_common.c:2263
msgid "Certificate PEM file: "
msgstr " Ʀ PEM: "

#: gui_common.c:2266
msgid "Certificate key file: "
msgstr "  Ʀ: "

#: gui_common.c:2271
msgid "NSS certificate config directory: "
msgstr ""

#: gui_common.c:2277
#, fuzzy
msgid "Accept unknown certificates"
msgstr "SSL Ʀ ̦"

#: gui_common.c:2283
msgid "Domestic SSL ciphers policy"
msgstr ""

#: gui_common.c:2291
msgid "List of preffered ciphers: "
msgstr "  Ҧ: "

#: gui_common.c:2297
msgid "SSL protocol version"
msgstr "Ӧ  SSL"

#: gui_common.c:2305
msgid "SSLv23"
msgstr ""

#: gui_common.c:2311
msgid "SSLv2"
msgstr ""

#: gui_common.c:2317
msgid "SSLv3"
msgstr ""

#: gui_common.c:2324
msgid "TLSv1"
msgstr ""

#: gui_common.c:2331
msgid "Miscelanous SSL settings"
msgstr "Φ  SSL"

#: gui_common.c:2342
msgid "EGD daemon socket path: "
msgstr ""

#: gui_common.c:2347
msgid "Unique ID for all SSL sessions"
msgstr "Φ ID  ϧ Ӧ SSL"

#: gui_common.c:2362 gui_main.c:1843
msgid "Log"
msgstr ""

#: gui_common.c:2369
msgid "Try to find unique name, when original log file locked"
msgstr "  Φ ',  Ȧ  "

#: gui_common.c:2374
msgid "Log file: "
msgstr " : "

#: gui_common.c:2377
msgid "Shortlog file: "
msgstr "  : "

#: gui_common.c:2380
msgid "Log window length: "
msgstr " צ : "

#: gui_common.c:2393
msgid "Cookies"
msgstr ""

#: gui_common.c:2396
msgid "Disabled cookie domains"
msgstr "Φ "

#: gui_common.c:2401 gui_limits.c:263
msgid "Domain: "
msgstr ": "

#: gui_common.c:2404
msgid "Cookies settings"
msgstr " ˦"

#: gui_common.c:2413
msgid "Update cookies"
msgstr " "

#: gui_common.c:2418
msgid "Send cookies"
msgstr " "

#: gui_common.c:2423
msgid "Accept cookies"
msgstr " "

#: gui_common.c:2428
msgid "Check cookies domain"
msgstr "צ "

#: gui_common.c:2436
msgid "Cookies maximal number: "
msgstr " ˦˦ ˦: "

#: gui_common.c:2451
msgid "Cookie file: "
msgstr " ˦: "

#: gui_common.c:2537
msgid "Filename"
msgstr ""

#: gui_common.c:2540
msgid "Local filename conversion rules"
msgstr "צ   ̦"

#: gui_common.c:2548
msgid "Replace String1 with String2 in filename"
msgstr "ͦ Ҧ1 Ҧ2  "

#: gui_common.c:2557
msgid "String1: "
msgstr "Ҧ1: "

#: gui_common.c:2560
msgid "String2: "
msgstr "Ҧ2: "

#: gui_common.c:2562
msgid "Delete characters from filename"
msgstr "   "

#: gui_common.c:2571
msgid "Character set: "
msgstr "¦ ̦: "

#: gui_common.c:2573
msgid "Replace chars from Set1 with chars from Set2 in filename"
msgstr "ͦ   1   2  "

#: gui_common.c:2582
msgid "Character set1: "
msgstr "1: "

#: gui_common.c:2585
msgid "Character set2: "
msgstr "2: "

#: gui_common.c:2592
msgid "Base level of tree: "
msgstr " Ҧ : "

#: gui_common.c:2594
msgid "Local filename mapping rules"
msgstr "    ̦"

#: gui_common.c:2610
msgid "Match pattern"
msgstr ""

#: gui_common.c:2611
msgid "Rule"
msgstr ""

#: gui_common.c:2631
msgid "wildcard pattern"
msgstr "-"

#: gui_common.c:2638
msgid "RE pattern"
msgstr " RE"

#: gui_common.c:2650
msgid "Matching pattern: "
msgstr ": "

#: gui_common.c:2657
msgid "Construction rule: "
msgstr " : "

#: gui_common.c:2697
msgid "Advertisement"
msgstr ""

#: gui_common.c:2704
msgid "Enable removing of advertisement banners"
msgstr "  Ҧ"

#: gui_common.c:2709
msgid "RE for advertisement URLs: "
msgstr "RE  URL' Ҧ: "

#: gui_common.c:2821
msgid "Javascript"
msgstr ""

#: gui_common.c:2829
msgid "Processing of javascript"
msgstr " javascript"

#: gui_common.c:2833
msgid "Javascript patterns"
msgstr " Javascript"

#: gui_common.c:2838
msgid "RE for Javascript patterns: "
msgstr "RE  Φ Javascript: "

#: gui_common.c:2844
msgid "Javascript patterns with transform rules"
msgstr " Javascript   æ"

#: gui_common.c:2859
msgid "Pattern"
msgstr ""

#: gui_common.c:2860
msgid "Transform rule"
msgstr " æ"

#: gui_common.c:2861
msgid "HTML tag"
msgstr "HTML ŭ"

#: gui_common.c:2862
msgid "HTML tag attribute"
msgstr " HTML ŭ"

#: gui_common.c:2863
msgid "Rewrite"
msgstr ""

#: gui_common.c:2882
msgid "Pattern: "
msgstr ": "

#: gui_common.c:2885
msgid "Tranform rule: "
msgstr " æ: "

#: gui_common.c:2894
msgid "HTML tag: "
msgstr "HTML ŭ: "

#: gui_common.c:2898
msgid "HTML tag attribute: "
msgstr " HTML ŭ: "

#: gui_common.c:2900
msgid "Rewrite URL part in HTML document"
msgstr " URL  HTML "

#: gui_common.c:2958
msgid "Pavuk: Common config"
msgstr ":  Ʀæ"

#: gui_common.c:3027
msgid "Limitations ..."
msgstr " ..."

#: gui_jscons.c:151
msgid "Pavuk: JavaScript console"
msgstr ":  JavaScript"

#: gui_jscons.c:168
msgid "Reload script file"
msgstr "  "

#: gui_jscons.c:173
msgid "Save script to file"
msgstr "   "

#: gui_jscons.c:180
msgid "Load script to JavaScript runtime"
msgstr ""

#: gui_jscons.c:185
msgid "Restart JavaScript runtime"
msgstr ""

#: gui_jscons.c:208
msgid "Prompt: "
msgstr ""

#: gui_jscons.c:221
msgid "JavaScript source file: "
msgstr "Ȧ  JavaScript: "

#: gui_limits.c:48
msgid "Tree"
msgstr ""

#: gui_limits.c:60
msgid "Download cgi-generated pages"
msgstr " cgi-ڭΦ Ҧ"

#: gui_limits.c:66
msgid "Recurse through FTP directory"
msgstr "  Ҧ Ҧ FTP"

#: gui_limits.c:72
msgid "Allow \"robots.txt\""
msgstr "  \"robots.txt\""

#: gui_limits.c:78
msgid "Process HTML files downloaded over FTP"
msgstr " Φ  FTP  HTML"

#: gui_limits.c:84
msgid "Don't leave starting site"
msgstr "   "

#: gui_limits.c:90
msgid "Don't leave starting directory"
msgstr "   Ҧ"

#: gui_limits.c:96
msgid "Don't leave site enter directory"
msgstr ""

#: gui_limits.c:102
msgid "Download just single page"
msgstr "   Ҧ"

#: gui_limits.c:108
msgid "Apply limiting options on inline objects"
msgstr ""

#: gui_limits.c:123
msgid "Max. count of documents: "
msgstr ". ˦˦ Ԧ: "

#: gui_limits.c:126
msgid "Max. depth of tree: "
msgstr ".  : "

#: gui_limits.c:129
msgid "Max. levels to leave from starting site: "
msgstr ""

#: gui_limits.c:132
msgid "Max. document size: "
msgstr ". ͦ : "

#: gui_limits.c:135
msgid "Min. document size: "
msgstr ". ͦ : "

#: gui_limits.c:138
msgid "Max. site levels to leave from starting site: "
msgstr ""

#: gui_limits.c:149
msgid "Working subdirectory :"
msgstr " Ҧ: "

#: gui_limits.c:152
msgid "User condition script: "
msgstr ""

#: gui_limits.c:155
msgid "Follow command: "
msgstr ""

#: gui_limits.c:166
msgid "Patterns"
msgstr ""

#: gui_limits.c:169 gui_limits.c:609
msgid "Wildcard patterns"
msgstr "  "

#: gui_limits.c:178 gui_limits.c:205
msgid "Documents matching pattern: "
msgstr ""

#: gui_limits.c:182 gui_limits.c:191 gui_limits.c:209 gui_limits.c:218
#: gui_limits.c:283
msgid "skip: "
msgstr ""

#: gui_limits.c:183 gui_limits.c:210
msgid "Pavuk: edit Documents matching skip pattern"
msgstr ""

#: gui_limits.c:187 gui_limits.c:214
msgid "URL matching pattern: "
msgstr ""

#: gui_limits.c:192 gui_limits.c:219
msgid "Pavuk: edit URL matching skip pattern"
msgstr ""

#: gui_limits.c:196 gui_limits.c:615
msgid "RE patterns"
msgstr " RE"

#: gui_limits.c:231
msgid "Hosts"
msgstr ""

#: gui_limits.c:240
msgid "Allow / Disallow sites"
msgstr " /  "

#: gui_limits.c:246
msgid "Site: "
msgstr ": "

#: gui_limits.c:257
msgid "Allow / Disallow domains"
msgstr " /  "

#: gui_limits.c:269
msgid "IP address RE patterns"
msgstr " RE   IP"

#: gui_limits.c:279
msgid "Server IP address matching pattern: "
msgstr "   IP Ҧ: "

#: gui_limits.c:284
#, fuzzy
msgid "Pavuk: edit Server IP address matching skip pattern"
msgstr "   IP Ҧ: "

#: gui_limits.c:288
msgid "Server ports"
msgstr " "

#: gui_limits.c:298
#, fuzzy
msgid "Allow/deny"
msgstr "/"

#: gui_limits.c:303
msgid "Ports: "
msgstr ": "

#: gui_limits.c:314
msgid "Documents"
msgstr ""

#: gui_limits.c:323
msgid "Allow / Disallow suffix"
msgstr " /  Ʀ"

#: gui_limits.c:329
msgid "Suffix: "
msgstr "Ʀ: "

#: gui_limits.c:340
msgid "Allow / Disallow prefix"
msgstr " /  Ʀ"

#: gui_limits.c:346
msgid "Prefix: "
msgstr "Ʀ: "

#: gui_limits.c:360 gui_limits.c:372
msgid "MIME types"
msgstr " MIME"

#: gui_limits.c:368
msgid "Allow / Disallow MIME type"
msgstr " /   MIME"

#: gui_limits.c:377
msgid "MIME type: "
msgstr " MIME: "

#: gui_limits.c:390
msgid "Time"
msgstr " "

#: gui_limits.c:396
msgid "Lower document time limit"
msgstr "  צ "

#: gui_limits.c:406
msgid "Check if doc. time newer than this"
msgstr ",   צ Φ"

#: gui_limits.c:410
msgid "Upper document time limit"
msgstr "  צ "

#: gui_limits.c:420
msgid "Check if doc. time older than this"
msgstr ",   Ҧ Φ"

#: gui_limits.c:429
msgid "Maximal allowed time of downloading: "
msgstr "¦   : "

#: gui_limits.c:432
msgid " min"
msgstr " "

#: gui_limits.c:445
msgid "Select allowed HTML tags and attributes"
msgstr "ͦ Φ    HTML"

#: gui_limits.c:462
#, c-format
msgid "%s of %s"
msgstr ""

#: gui_limits.c:567
#, fuzzy
msgid "Tag patterns"
msgstr " RE"

#: gui_limits.c:580 gui_limits.c:657
#, fuzzy
msgid "Tag pattern"
msgstr " RE"

#: gui_limits.c:581
#, fuzzy
msgid "Atrribute pattern"
msgstr " Javascript"

#: gui_limits.c:582 gui_limits.c:665
#, fuzzy
msgid "URL pattern"
msgstr " RE"

#: gui_limits.c:597
#, fuzzy
msgid "Pattern type: "
msgstr ": "

#: gui_limits.c:661
#, fuzzy
msgid "Attribute pattern"
msgstr " Javascript"

#: gui_limits.c:721
msgid "Pavuk: Limits config"
msgstr ": "

#: gui_limits.c:776
msgid "Common ..."
msgstr "Φ ..."

#: gui_main.c:186
msgid "Unable to change language during processing time!\n"
msgstr ""

#: gui_main.c:398
msgid "Unknown window to popup"
msgstr ""

#: gui_main.c:463
#, c-format
msgid "Fetched URL from clipboard : %s\n"
msgstr "  Φ URL : %s\n"

#: gui_main.c:507
#, c-format
msgid "Fetched URL from browser : %s\n"
msgstr "   URL : %s\n"

#: gui_main.c:762
msgid "Both"
msgstr "  "

#: gui_main.c:763
msgid "Icons only"
msgstr " "

#: gui_main.c:764
msgid "Text only"
msgstr " "

#: gui_main.c:776
msgid "Nr."
msgstr ""

#: gui_main.c:778
msgid "Status"
msgstr ""

#: gui_main.c:779
msgid "Size"
msgstr "ͦ"

#: gui_main.c:780
msgid "Transfer rate"
msgstr "˦"

#: gui_main.c:781
msgid "Elapsed time"
msgstr " "

#: gui_main.c:782
msgid "Remaining time"
msgstr " "

#: gui_main.c:922
msgid "Open _URL ..."
msgstr " _URL ..."

#: gui_main.c:935
msgid "Append URL ..."
msgstr " URL ..."

#: gui_main.c:944
msgid "Fetch URL from Clipboard"
msgstr " URL  Φ"

#: gui_main.c:962
msgid "Fetch URL from browser"
msgstr " URL  "

#: gui_main.c:972
msgid "Load scenario ..."
msgstr " Ҧ ..."

#: gui_main.c:981
msgid "Add scenario ..."
msgstr " Ҧ ..."

#: gui_main.c:990
msgid "Save scenario ..."
msgstr " Ҧ ..."

#: gui_main.c:999
msgid "Save settings to ~/.pavukrc"
msgstr "    ~/.pavukrc"

#: gui_main.c:1012
msgid "Schedule ..."
msgstr " ..."

#: gui_main.c:1021
msgid "Auth. info editor ..."
msgstr " Auth. info ..."

#: gui_main.c:1034
msgid "E_xit"
msgstr "_x"

#: gui_main.c:1043
msgid "_File"
msgstr "(_F)"

#: gui_main.c:1057
msgid "Document _Tree ..."
msgstr " _t ..."

#: gui_main.c:1066
msgid "Status page ..."
msgstr "  ..."

#: gui_main.c:1074
msgid "HTML forms editor ..."
msgstr "  HTML ..."

#: gui_main.c:1083
msgid "Javascript console ..."
msgstr " Javascript ..."

#: gui_main.c:1096
msgid "Clear log window"
msgstr " צ "

#: gui_main.c:1105
msgid "_View"
msgstr "(_V)"

#: gui_main.c:1121
msgid "normal recurse"
msgstr " "

#: gui_main.c:1131
msgid "synchronize"
msgstr "Φ"

#: gui_main.c:1142
msgid "single page"
msgstr " Ҧ"

#: gui_main.c:1152
msgid "update local links"
msgstr " Φ "

#: gui_main.c:1162
msgid "resume files"
msgstr " "

#: gui_main.c:1172
msgid "unlimited reget"
msgstr " "

#: gui_main.c:1182
msgid "transfer but don't store"
msgstr ",  Ҧ"

#: gui_main.c:1192
msgid "reminder"
msgstr ""

#: gui_main.c:1202
msgid "list ftp directory"
msgstr " ftp Ҧ"

#: gui_main.c:1212
msgid "_Mode"
msgstr "(_M)"

#: gui_main.c:1228
msgid "C_ommon ..."
msgstr "Φ (_C) ..."

#: gui_main.c:1237
msgid "_Limitations ..."
msgstr " (_L) ..."

#: gui_main.c:1246
msgid "Reset configuration"
msgstr " Ʀæ"

#: gui_main.c:1260
msgid "Toolbar"
msgstr " Ԧ"

#: gui_main.c:1268
msgid "Toggle toolbar"
msgstr "  Ԧ"

#: gui_main.c:1323
msgid "Progressbar"
msgstr " "

#: gui_main.c:1354
msgid "Language"
msgstr ""

#: gui_main.c:1363 nls.c:33
msgid "English"
msgstr ""

#: gui_main.c:1405
msgid "Debug level"
msgstr " צ"

#: gui_main.c:1428
msgid "All"
msgstr ""

#: gui_main.c:1435
msgid "None"
msgstr ""

#: gui_main.c:1442
msgid "Debug"
msgstr ""

#: gui_main.c:1458
msgid "Allow tooltips"
msgstr " Ц"

#: gui_main.c:1468
msgid "Log window autoscroll"
msgstr "  "

#: gui_main.c:1477
msgid "Use preferences"
msgstr " "

#: gui_main.c:1486
msgid "Quiet"
msgstr " "

#: gui_main.c:1498
msgid "Immediate messages"
msgstr "Φ צ"

#: gui_main.c:1510
msgid "_Config"
msgstr "(_)"

#: gui_main.c:1524
msgid "_Restart"
msgstr " (_R)"

#: gui_main.c:1534
msgid "Co_ntinue"
msgstr " (_N)"

#: gui_main.c:1544
msgid "Sto_p"
msgstr " (_P)"

#: gui_main.c:1554
msgid "_Break"
msgstr " (_B)"

#: gui_main.c:1564
msgid "_Action"
msgstr "䦧(_A)"

#: gui_main.c:1582
msgid "About ..."
msgstr " ..."

#: gui_main.c:1591
msgid "_Help"
msgstr "(_H)"

#: gui_main.c:1617
msgid "Config"
msgstr "Ʀæ"

#: gui_main.c:1618
msgid "Popup config window"
msgstr "դ צ Ʀ"

#: gui_main.c:1622
msgid "Limits"
msgstr "֦"

#: gui_main.c:1623
msgid "Popup limits window"
msgstr "դ צ Ʀ "

#: gui_main.c:1629
msgid "Go bg"
msgstr " ЦЦ"

#: gui_main.c:1630
msgid "Destroy window as soon as posible and continue on terminal"
msgstr "  צ     ̦ͦ"

#: gui_main.c:1634 gui_main.c:1704
msgid "Restart"
msgstr ""

#: gui_main.c:1635
msgid "Start working on currently set starting URLs"
msgstr "  ڦ   URL"

#: gui_main.c:1639 gui_main.c:1709
msgid "Continue"
msgstr "̦"

#: gui_main.c:1640
msgid "Continue after stop or break"
msgstr " Ц   "

#: gui_main.c:1646 gui_main.c:1714
msgid "Stop"
msgstr ""

#: gui_main.c:1647
msgid "Finish this transfer and stop"
msgstr "˦    "

#: gui_main.c:1651 gui_main.c:1719
msgid "Break"
msgstr ""

#: gui_main.c:1652
msgid "Break transfer and stop"
msgstr "   "

#: gui_main.c:1658
msgid "Exit"
msgstr "Ȧ"

#: gui_main.c:1659
msgid "Immediately quit the program"
msgstr "   "

#: gui_main.c:1724
msgid "Show whole main window"
msgstr "  צ Φ"

#: gui_main.c:1729
msgid "Quit"
msgstr ""

#: gui_main.c:1808
msgid "Pavuk: save log"
msgstr ":  "

#: gui_main.c:1864
msgid "Select all"
msgstr "Ħ "

#: gui_main.c:1872
msgid "Clear selection"
msgstr " Ħ"

#: gui_main.c:1880
msgid "Copy selection"
msgstr "Ц Ħ"

#: gui_main.c:1892
msgid "Save log ..."
msgstr " ..."

#: gui_main.c:1899
msgid "Clear log"
msgstr " "

#: gui_main.c:1974 gui_main.c:2088
msgid "Processed:       "
msgstr ":        "

#: gui_main.c:1983 gui_main.c:2097
msgid "Failed:       "
msgstr ":       "

#: gui_main.c:1992 gui_main.c:2106
msgid "Queued:       "
msgstr " ڦ:      "

#: gui_main.c:2001 gui_main.c:2115
msgid "Rejected:       "
msgstr ":      "

#: gui_main.c:2047
msgid "S:                     "
msgstr ""

#: gui_main.c:2056
msgid "R:          "
msgstr ""

#: gui_main.c:2065
msgid "ET:          "
msgstr ""

#: gui_main.c:2074
msgid "RT:          "
msgstr ""

#: gui_scenario.c:48
msgid "Pavuk: Scenario saver"
msgstr ": Ҧ Ҧ"

#: gui_scenario.c:140
msgid "Pavuk: Scenario loader"
msgstr ":  Ҧ"

#: gui_scenario.c:231
msgid "Pavuk: Scenario add"
msgstr ":  Ҧ"

#: gui_sched.c:44 pavuk.c:495
msgid "Error scheduling\n"
msgstr "   \n"

#: gui_sched.c:68
msgid "Pavuk: Scheduler"
msgstr ""

#: gui_sched.c:87
msgid "Scheduling command: "
msgstr ""

#: gui_sched.c:97
msgid "Reschedule after "
msgstr ""

#: gui_sched.c:107
msgid " hours"
msgstr " "

#: gui_tools.c:54
msgid "Time: "
msgstr ": "

#: gui_tools.c:63
msgid " : "
msgstr " : "

#: gui_tools.c:249
#, fuzzy, c-format
msgid "Pavuk: edit %s"
msgstr ": Ҧ %s"

#: gui_tools.c:250
msgid "entry"
msgstr ""

#: gui_tools.c:396
#, fuzzy
msgid "Edit ..."
msgstr " ..."

#: gui_tools.c:453
#, c-format
msgid "Pavuk: select %s"
msgstr ": Ҧ %s"

#: gui_tools.c:454
msgid "file"
msgstr ""

#: gui_tools.c:552
msgid "Browse ..."
msgstr " ..."

#: gui_tree.c:104
#, c-format
msgid "URL: %s\n"
msgstr ""

#: gui_tree.c:117 gui_tree.c:123 gui_tree.c:162
msgid "Request type: "
msgstr " : "

#: gui_tree.c:138
msgid "Query values:\n"
msgstr ""

#: gui_tree.c:168
msgid "Status: "
msgstr ": "

#: gui_tree.c:174
msgid "not processed yet\n"
msgstr "  \n"

#: gui_tree.c:180
msgid "loaded from NS cache\n"
msgstr "   NS\n"

#: gui_tree.c:186
msgid "loaded from local URL tree\n"
msgstr "    URL\n"

#: gui_tree.c:192
msgid "moved to another URL\n"
msgstr "ͦ   URL\n"

#: gui_tree.c:198
msgid "URL not found on remote server\n"
msgstr "URL    צ Ҧ\n"

#: gui_tree.c:204
msgid "truncated\n"
msgstr "Ӧ\n"

#: gui_tree.c:210
msgid "downloaded OK\n"
msgstr " OK\n"

#: gui_tree.c:216
msgid "rejected by rules\n"
msgstr "צ  \n"

#: gui_tree.c:222
msgid "disabled by user\n"
msgstr " \n"

#: gui_tree.c:228
msgid "probably recoverable error\n"
msgstr ""

#: gui_tree.c:234
msgid "unrecoverable error\n"
msgstr ""

#: gui_tree.c:240
msgid "unknown\n"
msgstr "צ\n"

#: gui_tree.c:250
#, c-format
msgid "Moved to URL: %s\n"
msgstr "ͦ  URL: %s\n"

#: gui_tree.c:260
#, c-format
msgid "Type: %s\n"
msgstr ": %s\n"

#: gui_tree.c:262
msgid "Type: unknown\n"
msgstr ": צ\n"

#: gui_tree.c:268
#, c-format
msgid "Size: %d\n"
msgstr "ͦ: %d\n"

#: gui_tree.c:277
msgid "Modification time: %a, %d %b %Y %H:%M:%S %Z\n"
msgstr "Τ ͦ: %a, %d %b %Y %H:%M:%S %Z\n"

#: gui_tree.c:287
#, c-format
msgid "Local filename: %s\n"
msgstr " ' : %s\n"

#: gui_tree.c:298
msgid "Parent URLs:\n"
msgstr "˦˦ URL':\n"

#: gui_tree.c:565
msgid "Pavuk: Store tree"
msgstr ":  "

#: gui_tree.c:607 gui_tree.c:631
msgid "Pavuk: URL tree preview"
msgstr ":   URL"

#: gui_tree.c:609 gui_tree.c:715
msgid "Store tree ..."
msgstr "  ..."

#: gui_tree.c:610 gui_tree.c:649
msgid "Automaticaly watch last processed URLs"
msgstr "  Φ  URL"

#: gui_tree.c:611 gui_tree.c:742
msgid "Properties"
msgstr "Ԧ"

#: gui_tree.c:612 gui_tree.c:750
msgid "Launch browser"
msgstr " "

#: gui_tree.c:613 gui_tree.c:758
msgid "Disable URL"
msgstr " URL"

#: gui_tree.c:614 gui_tree.c:766
msgid "Enable URL"
msgstr " URL"

#: gui_tree.c:615 gui_tree.c:774
msgid "Download URL"
msgstr " URL"

#: gui_tree.c:618 gui_tree.c:668
msgid "URL tree"
msgstr " URL"

#: html.c:253 htmlparser.c:254
#, c-format
msgid "Unsupported BASE URL -  %s (probably bad handled)\n"
msgstr ""

#: html.c:533
msgid "Can't work on directory\n"
msgstr "    Ҧ\n"

#: html.c:559 html.c:563
msgid "rewrite parent"
msgstr ""

#: http.c:366
msgid "****************** Proxy connect request *****************\n"
msgstr "******************  Proxy connect *****************\n"

#: http.c:413
msgid "***************** Proxy connect response *****************\n"
msgstr "*****************  Proxy connect *****************\n"

#: http.c:469
msgid "Sending request ..."
msgstr "  ..."

#: http.c:716
msgid "************ Client HTTP MIME header ***************\n"
msgstr ""

#: http.c:733
msgid "Sending data ..."
msgstr " Φ ..."

#: http.c:734
msgid "************ HTTP request data ***************\n"
msgstr "************ Φ  HTTP ***************\n"

#: http.c:744
msgid "Waiting for response ..."
msgstr " צ ..."

#: http.c:759
msgid "Error reading HTTP 1xx class response\n"
msgstr ""

#: http.c:764
msgid "***************** class 1xx HTTP response ****************\n"
msgstr ""

#: http.c:874
msgid "Connecting ..."
msgstr "'դ ..."

#: http.c:1164
msgid "*********** HTTP Server response MIME header **********\n"
msgstr ""

#: http.c:1267
msgid "Regeting whole file\n"
msgstr "   \n"

#: http.c:1317
#, c-format
msgid "Unexpected response \"%d %s\" when trying to reget!\n"
msgstr ""

#: http_proxy.c:153
#, fuzzy, c-format
msgid "Checking HTTP proxy server %s:%hu\n"
msgstr "צѤ HTTP Ӧ  %s:%d\n"

#: http_proxy.c:165 http_proxy.c:177 http_proxy.c:184 http_proxy.c:193
msgid "Failed to check proxy !\n"
msgstr "¦ צ Ӧ !\n"

#: http_proxy.c:199
#, fuzzy, c-format
msgid "Proxy %s:%hu is HTTP/%d.%d proxy\n"
msgstr " %s:%d  HTTP/%d.%d Ӧ \n"

#: jsbind.c:77
msgid "bad parameter"
msgstr "צ "

#: jsbind.c:555
msgid "not enough parameters"
msgstr " Ҧ"

#: jsbind.c:579
msgid "unknown limiting condition"
msgstr "צ  "

#: lfname.c:478 lfname.c:490 lfname.c:499 lfname.c:512 lfname.c:535
#: lfname.c:644 lfname.c:657 lfname.c:669 lfname.c:684 lfname.c:697 re.c:51
#: re.c:61 re.c:68 re.c:80 re.c:95
#, c-format
msgid "Error compiling regular expression : %s\n"
msgstr " Цæ   : %s\n"

#: lfname.c:552 lfname.c:616 lfname.c:938 lfname.c:1056
#, c-format
msgid "LSP analyze error: bad token at - %s\n"
msgstr ""

#: lfname.c:949
#, c-format
msgid "LSP analyze error: bad numeric value at - %s\n"
msgstr ""

#: lfname.c:963
#, c-format
msgid "LSP analyze error: bad macro at - %s\n"
msgstr ""

#: lfname.c:991
#, c-format
msgid "LSP analyze error: unterminated string at - %s\n"
msgstr ""

#: lfname.c:1012 lfname.c:1028 lfname.c:1046
#, c-format
msgid "LSP analyze error: bad parameter type at - %s\n"
msgstr ""

#: log.c:204
msgid "Ending log : %H:%M:%S %d.%m.%Y\n"
msgstr "  : %H:%M:%S %d.%m.%Y\n"

#: log.c:225
msgid "Unable to open log file - disabling logging\n"
msgstr " צ   - Ѥ \n"

#: log.c:233
msgid "Log file is locked by another process - "
msgstr "     - "

#: log.c:237
msgid "generating new log filename\n"
msgstr "դ  '  \n"

#: log.c:242
msgid "disabling logging\n"
msgstr "Ѥ \n"

#: log.c:264
msgid "Starting log : %H:%M:%S %d.%m.%Y\n"
msgstr "  : %H:%M:%S %d.%m.%Y\n"

#: mozcache.c:179
#, c-format
msgid "Unable to open Mozilla cache index - %s\n"
msgstr " צ   ڦ - %s\n"

#: mozcache.c:287
#, fuzzy, c-format
msgid "Error opening cache index file %s\n"
msgstr " צ   ڦ - %s\n"

#: mozcache.c:305
msgid "Mozilla new cache map file format not recognized"
msgstr ""

#: mozcache.c:357 mozcache.c:367
msgid "Corrupted Mozilla cache blockfile!"
msgstr ""

#: mozcache.c:468
msgid "Corrupted Mozilla cache map file!"
msgstr ""

#: myssl_nss.c:319
msgid "NSS_Init: Unable to open cert database"
msgstr ""

#: myssl_nss.c:541
#, fuzzy, c-format
msgid "SSL connect failure - %s\n"
msgstr "' SSL դ %s\n"

#: myssl_nss.c:576
#, fuzzy, c-format
msgid "SSL error - %s\n"
msgstr "צ Ӧ SSL - \"%s\"\n"

#: myssl_openssl.c:140
msgid "Failed obtaining entropy pathname\n"
msgstr ""

#: myssl_openssl.c:150
msgid "Failed to initialize random seed for OpenSSL via EGD daemon\n"
msgstr ""

#: myssl_openssl.c:161
msgid "Seeding entropy pool INSECURELY!\n"
msgstr ""

#: myssl_openssl.c:276
msgid "Unable to set certificate file (wrong password?)\n"
msgstr " Ħ  Ʀ (צ ?)\n"

#: myssl_openssl.c:287
msgid "Unable to set public key file\n"
msgstr " Ħ  ̦ \n"

#: myssl_openssl.c:304
msgid "Private key does not match the certificate public key\n"
msgstr "   צצ ̦ צ Ʀ\n"

#: nls.c:24
msgid "Czech"
msgstr ""

#: nls.c:25
msgid "German"
msgstr ""

#: nls.c:26
msgid "Spanish"
msgstr ""

#: nls.c:27
msgid "French"
msgstr ""

#: nls.c:28
msgid "Italian"
msgstr ""

#: nls.c:29
msgid "Japanese"
msgstr ""

#: nls.c:30
msgid "Polish"
msgstr ""

#: nls.c:31
msgid "Slovak"
msgstr ""

#: nls.c:32
msgid "Ukrainian"
msgstr ""

#: nscache.c:106
#, c-format
msgid "Unable to open Netscape cache index - %s\n"
msgstr " צ   Netscape - %s\n"

#: ntlm_auth.c:471
msgid "Trying to do NTLM authorization\n"
msgstr "  æ NTLM\n"

#: ntlm_auth.c:480 ntlm_auth.c:561 ntlm_auth.c:642 ntlm_auth.c:722
msgid "NTLM authorization supported only on persistent connections!\n"
msgstr ""

#: ntlm_auth.c:503 ntlm_auth.c:664
msgid "Not enough data for NTLM authorization!\n"
msgstr "   æ NTLM!\n"

#: ntlm_auth.c:504 ntlm_auth.c:665
msgid "Missing:\n"
msgstr ":\n"

#: ntlm_auth.c:505 ntlm_auth.c:666
msgid "       domain\n"
msgstr "       \n"

#: ntlm_auth.c:506 ntlm_auth.c:667
msgid "       username\n"
msgstr "       \n"

#: ntlm_auth.c:507 ntlm_auth.c:668
msgid "       password\n"
msgstr "       \n"

#: ntlm_auth.c:508 ntlm_auth.c:669
msgid "       local hostname\n"
msgstr "       ' ϧ \n"

#: ntlm_auth.c:544 ntlm_auth.c:552 ntlm_auth.c:577 ntlm_auth.c:705
#: ntlm_auth.c:713 ntlm_auth.c:738
msgid "Got unexpected response\n"
msgstr " ަ צ\n"

#: ntlm_auth.c:587
msgid "Failed NTLM nonce negotiation\n"
msgstr ""

#: ntlm_auth.c:629
msgid "Trying to do proxy NTLM authorization\n"
msgstr "  æ proxy NTLM\n"

#: ntlm_auth.c:748
msgid "Failed NTLM proxy nonce negotiation\n"
msgstr ""

#: options.h:193
msgid "\t-v                 - print version number\n"
msgstr "\t-v                 -   Ӧ\n"

#: options.h:204
msgid "\t-h                 - help\n"
msgstr "\t-h                 - \n"

#: options.h:218
msgid "\t-X                 - start GUI interface\n"
msgstr "\t-X                 -    GUI\n"

#: options.h:249
msgid ""
"\t-runX              - after start of GUI interface, immediately\n"
"\t                     start processing of entered URLs\n"
msgstr ""
"\t-runX              -  Ц   GUI interface\n"
"\t                        URL'\n"

#: options.h:265
msgid "\t-prefs/-noprefs    - load preferences from ~/.pavuk_prefs file\n"
msgstr "\t-prefs/-noprefs    -     ~/.pavuk_prefs\n"

#: options.h:494
msgid ""
"\t-progress/-noprogress\n"
"\t                   - show retrieving progress while running on terminal\n"
msgstr ""
"\t-progress/-noprogress\n"
"\t                   -   Ц    ̦ͦ\n"

#: options.h:517
msgid "\t-lmax $nr          - allowed depth of tree\n"
msgstr "\t-lmax $nr          -   \n"

#: options.h:528
msgid "\t-dmax $nr          - maximal number of downloaded documents\n"
msgstr "\t-dmax $nr          -  ˦˦  Ԧ\n"

#: options.h:539
msgid ""
"\t-sleep $nr         - sleep for $nr seconds between transfers,\n"
"\t                     default 0 seconds\n"
msgstr ""
"\t-sleep $nr         -  $nr  ͦ ,\n"
"\t                        -  0 \n"

#: options.h:551
msgid ""
"\t-rsleep/-norsleep  - randomize sleeping time between transfers\n"
"\t                     from 0 to -sleep time\n"
msgstr ""
"\t-rsleep/-norsleep  -  ̦  ͦ \n"
"\t                     צ 0    -sleep\n"

#: options.h:574
msgid "\t-retry $nr         - number of retries if anything failed\n"
msgstr "\t-retry $nr         - ˦˦   ڦ  ϧ\n"

#: options.h:585
msgid "\t-nregets $nr       - max number of regets on single file, default 2\n"
msgstr ""
"\t-nregets $nr       - . ˦˦   ,\n"
"\t                     default 2\n"

#: options.h:596
msgid ""
"\t-nredirs $nr       - max number of followed HTTP redirections, default 5\n"
msgstr ""
"\t-nredirs $nr       - . ˦˦  HTTP, default 5\n"

#: options.h:607
msgid ""
"\t-timeout $nr       - timeout for network communications (min).\n"
"\t                     0 == no timeout, default = 0\n"
msgstr ""
"\t-timeout $nr       -    æ ().\n"
"\t                     0 ==  ,    = 0\n"

#: options.h:619
msgid ""
"\t-rollback $nr      - number of bytes to discard (counted from end\n"
"\t                     of file) if regetting, default 0\n"
msgstr ""
"\t-rollback $nr      - ˦ Ԧ צ ( ˦ )\n"
"\t                      Φ,    - 0\n"

#: options.h:632
msgid ""
"\t-ddays $nr         - number of days since last access when document is\n"
"\t                     checked in sync mode\n"
msgstr ""
"\t-ddays $nr         - ˦˦ Φ Ц  , \n"
"\t                      צѤ  ͦ Φæ (sync)\n"

#: options.h:644
msgid ""
"\t-nocache/-cache    - disallow caching of HTTP documents (on proxy cache)\n"
msgstr ""
"\t-nocache/-cache    - צ   HTTP Ԧ ( ۦ Ӧ)\n"

#: options.h:666
msgid "\t-noRobots/-Robots  - care about \"robots.txt\" file ?\n"
msgstr "\t-noRobots/-Robots  -     \"robots.txt\" ?\n"

#: options.h:688
msgid "\t-noFTP/-FTP        - don't download FTP files\n"
msgstr "\t-noFTP/-FTP        -    FTP\n"

#: options.h:710
msgid "\t-noHTTP/-HTTP      - don't download HTTP files\n"
msgstr "\t-noHTTP/-HTTP      -    HTTP\n"

#: options.h:735
msgid "\t-noSSL/-SSL        - don't download (HTTPS) SSL files\n"
msgstr "\t-noSSL/-SSL        -    (HTTPS) SSL\n"

#: options.h:765
msgid "\t-noFTPS/-FTPS      - don't download FTPS files\n"
msgstr "\t-noFTPS/-FTPS      -    FTPS\n"

#: options.h:792
msgid "\t-noGopher/-Gopher  - download Gopher files ?\n"
msgstr "\t-noGopher/-Gopher  -    Gopher ?\n"

#: options.h:814
msgid "\t-noCGI/-CGI        - download parametric CGI pages ?\n"
msgstr "\t-noCGI/-CGI        -   Ҧ CGI  \n"

#: options.h:836
msgid "\t-noEnc/-Enc        - allow transfer of encoded files ?\n"
msgstr "\t-noEnc/-Enc        -     ̦\n"

#: options.h:858
msgid ""
"\t-noRelocate/-Relocate\n"
"\t                   - don't rewrite links\n"
msgstr ""
"\t-noRelocate/-Relocate\n"
"\t                   -   \n"

#: options.h:881
msgid ""
"\t-FTPhtml/-noFTPhtml\n"
"\t                   - process HTML files downloaded over FTP\n"
msgstr ""
"\t-FTPhtml/-noFTPhtml\n"
"\t                   -   Φ  FTP  HTML\n"

#: options.h:904
msgid ""
"\t-FTPlist/-noFTPlist\n"
"\t                   - use wide FTP directory listing\n"
msgstr ""
"\t-FTPlist/-noFTPlist\n"
"\t                   -     FTP Ҧ\n"

#: options.h:927
msgid "\t-FTPdir/-noFTPdir  - recurse FTP directory\n"
msgstr "\t-FTPdir/-noFTPdir  -    Ҧ Ҧ FTP\n"

#: options.h:949
msgid ""
"\t-store_index/-nostore_index\n"
"\t                   - store directory URLs as index files\n"
msgstr ""
"\t-store_index/-nostore_index\n"
"\t                   -  Ҧ URL' Ҧ  Φ \n"

#: options.h:972
msgid ""
"\t-force_reget/-noforce_reget\n"
"\t                   - force reget of whole file when server doesn't\n"
"\t                     support reget\n"
msgstr ""
"\t-force_reget/-noforce_reget\n"
"\t                   -    ,  \n"
"\t                      Цդ reget\n"

#: options.h:1000
msgid "\t-debug             - turn on debug mode\n"
msgstr "\t-debug             - צ  צ\n"

#: options.h:1030
msgid ""
"\t-debug_level $l    - debug level number, see manual for $l description\n"
msgstr ""
"\t-debug_level $l    - Ҧ  צ, .  $l  צ\n"

#: options.h:1042
msgid "\t-asite $list       - comma-separated list of allowed sites\n"
msgstr "\t-asite $list       -   Ҧ, Ħ \n"

#: options.h:1053
msgid "\t-dsite $list       - comma-separated list of disallowed sites\n"
msgstr ""
"\t-dsite $list       -   Ҧ, Ħ \n"

#: options.h:1064
msgid "\t-adomain $list     - list of allowed domains\n"
msgstr "\t-adomain $list     -   Φ\n"

#: options.h:1075
msgid "\t-ddomain $list     - list of disallowed domains\n"
msgstr "\t-ddomain $list     -   Φ\n"

#: options.h:1086
msgid "\t-aprefix $list     - list of allowed directory/file prefixes\n"
msgstr "\t-aprefix $list     -   ƦӦ Ҧ/̦\n"

#: options.h:1097
msgid "\t-dprefix $list     - list of disallowed directory/file prefixes\n"
msgstr ""
"\t-dprefix $list     -   ƦӦ Ҧ/̦\n"

#: options.h:1108
msgid "\t-asfx $list        - list of allowed suffixes\n"
msgstr "\t-asfx $list        -   ƦӦ\n"

#: options.h:1119
msgid "\t-dsfx $list        - list of disallowed suffixes\n"
msgstr "\t-dsfx $list        -   ƦӦ\n"

#: options.h:1130
msgid "\t-amimet $list      - list of alloved MIME types\n"
msgstr "\t-amimet $list      -   Ц MIME\n"

#: options.h:1141
msgid "\t-dmimet $list      - list of disallowed MIME types\n"
msgstr "\t-dmimet $list      -   Ц MIME\n"

#: options.h:1152
msgid "\t-alang $list       - list of preferred languages (only via HTTP)\n"
msgstr "\t-alang $list       -    (  HTTP)\n"

#: options.h:1163
msgid ""
"\t-acharset $list    - list of preferred character sets (only via HTTP)\n"
msgstr ""
"\t-acharset $list    -   Ҧ ̦ (  HTTP)\n"

#: options.h:1174
msgid ""
"\t-scndir $dir       - directory ,where are stored your scenarios\n"
"\t                     (config files)\n"
msgstr ""
"\t-scndir $dir       - Ҧ,  Φ ۦ Ҧ\n"
"\t                     ( Ʀæ)\n"

#: options.h:1186
msgid "\t-cdir $dir         - directory for storing documents\n"
msgstr "\t-cdir $dir         - Ҧ  Ҧ Ԧ\n"

#: options.h:1197
msgid "\t-subdir $dir       - subdirectory of cdir to operate on\n"
msgstr "\t-subdir $dir       - ЦҦ,  ϧ   \n"

#: options.h:1208
msgid ""
"\t-scenario $str     - name of scenario from scenario directory to load\n"
"\t                     and or run\n"
msgstr ""
"\t-scenario $str     - ' Ҧ  Ҧ Ҧ,  \n"
"\t                       \n"

#: options.h:1220
msgid ""
"\t-auth_scheme 1/2/3 - HTTP authorization scheme 1-user 2-Basic 3-Digest,\n"
"\t                     default 2\n"
msgstr ""
"\t-auth_scheme 1/2/3 -  æ HTTP (1-user 2-Basic 3-Digest),\n"
"\t                        - 2\n"

#: options.h:1232
msgid "\t-auth_name $str    - name for Authorization (only via HTTP)\n"
msgstr "\t-auth_name $str    - '  æ (  HTTP)\n"

#: options.h:1243
msgid "\t-auth_passwd $str  - password for Authorization (only via HTTP)\n"
msgstr "\t-auth_passwd $str  -   æ (  HTTP)\n"

#: options.h:1254
msgid ""
"\t-auth_reuse_nonce/-noauth_reuse_nonce\n"
"\t                   - reuse one HTTP digest access authorization\n"
"\t                     nonce for more requests\n"
msgstr ""

#: options.h:1278
msgid ""
"\t-auth_reuse_proxy_nonce/-noauth_reuse_proxy_nonce\n"
"\t                   - reuse one HTTP proxy digest access\n"
"\t                     authorization nonce for more requests\n"
msgstr ""

#: options.h:1305
msgid ""
"\t-ssl_cert_passwd $str\n"
"\t                   - password for SSL certification file\n"
msgstr ""
"\t-ssl_cert_passwd $str\n"
"\t                   -    Ʀ SSL\n"

#: options.h:1321
msgid ""
"\t-ssl_cert_file $str\n"
"\t                   - SSL certification file\n"
msgstr ""
"\t-ssl_cert_file $str\n"
"\t                   -  Ʀ SSL\n"

#: options.h:1337
msgid "\t-ssl_key_file $str - SSL certification key file\n"
msgstr "\t-ssl_key_file $str -   Ʀ SSL\n"

#: options.h:1352
msgid ""
"\t-ssl_cipher_list $str\n"
"\t                   - list of prefered SSL ciphers in SSL communication\n"
msgstr ""

#: options.h:1368
msgid "\t-egd_socket $file  - path to EGD listening socket\n"
msgstr ""

#: options.h:1380
msgid "\t-from $str         - e-mail address used for user identification\n"
msgstr ""
"\t-from $str         -  ,  դ  "
"Ʀæ\n"

#: options.h:1391
msgid ""
"\t-send_from/-nosend_from\n"
"\t                   - send From: header in HTTP request with your\n"
"\t                     e-mail address\n"
msgstr ""
"\t-send_from/-nosend_from\n"
"\t                   -    \"From:\"  Ԧ HTTP  \n"
"\t                      \n"

#: options.h:1415
msgid "\t-identity $str     - contents of User-agent: field in HTTP request\n"
msgstr "\t-identity $str     -   \"User-agent:\"   HTTP\n"

#: options.h:1426
msgid "\t-pattern $list     - list of wildcard patterns for files\n"
msgstr "\t-pattern $list     -  Φ    ̦\n"

#: options.h:1440
msgid "\t-rpattern $re      - RE matching pattern for files\n"
msgstr "\t-rpattern $re      -   RE  ̦\n"

#: options.h:1452
msgid ""
"\t-skip_pattern $list\n"
"\t                   - list of skip wildcard patterns for files\n"
msgstr ""

#: options.h:1467
msgid ""
"\t-skip_rpattern $re\n"
"\t                   - skip RE matching pattern for files\n"
msgstr ""

#: options.h:1480
msgid "\t-url_pattern $list - list of wildcard patterns for urls\n"
msgstr "\t-url_pattern $list -  Φ    URL'\n"

#: options.h:1494
msgid "\t-url_rpattern $re  - RE matching pattern for urls\n"
msgstr "\t-url_rpattern $re  -  RE Φ  URL'\n"

#: options.h:1506
msgid ""
"\t-skip_url_pattern $list\n"
"\t                   - list of wildcard patterns for urls\n"
msgstr ""

#: options.h:1521
msgid ""
"\t-skip_url_rpattern $re\n"
"\t                   - RE matching patterns for urls\n"
msgstr ""

#: options.h:1534
msgid ""
"\t-mode $mode        - set operation mode\n"
"\t                         normal - recurse throught WWW (default)\n"
"\t                         linkupdate - update remote links in local tree\n"
"\t                         sync - synchronize local tree with remote WWW\n"
"\t                                servers\n"
"\t                         singlepage - single page with inline objects\n"
"\t                         singlereget - reget file until not whole\n"
"\t                         resumeregets - reget all files which are broken\n"
"\t                         dontstore - transfer documents, but don't store\n"
"\t                         reminder - checks URLs if they are changed\n"
"\t                         ftpdir - list content of FTP directory\n"
msgstr ""
"\t-mode $mode        -   \n"
"\t                         normal -  Ҧ WWW (default)\n"
"\t                         linkupdate -    . "
"צ\n"
"\t                         sync - Φ    WWW\n"
"\t                                \n"
"\t                         singlepage -  Ҧ   '\n"
"\t                         singlereget -  ,   \n"
"\t                         resumeregets -  Ӧ Ԧ \n"
"\t                         dontstore -  ,   Ҧ\n"
"\t                         reminder - צ,   ͦ URL'\n"
"\t                         ftpdir -   Ҧ FTP\n"

#: options.h:1555
msgid ""
"\t-ftp_proxy $site[:$port]\n"
"\t                   - ftp proxy/cache server\n"
msgstr ""
"\t-ftp_proxy $site[:$port]\n"
"\t                   - ftp Ӧ/ \n"

#: options.h:1567
msgid ""
"\t-http_proxy $site[:$port]\n"
"\t                   - http proxy/cache server\n"
msgstr ""
"\t-http_proxy $site[:$port]\n"
"\t                   - http Ӧ/ \n"

#: options.h:1579
msgid ""
"\t-gopher_proxy $site[:$port]\n"
"\t                   - gopher proxy/cache server\n"
msgstr ""
"\t-gopher_proxy $site[:$port]\n"
"\t                   - gopher Ӧ/ \n"

#: options.h:1594
msgid ""
"\t-ssl_proxy $site[:$port]\n"
"\t                   - ssl proxy server\n"
msgstr ""
"\t-ssl_proxy $site[:$port]\n"
"\t                   - ssl Ӧ \n"

#: options.h:1607
msgid ""
"\t-gopher_httpgw/-nogopher_httpgw\n"
"\t                   - specified gopher proxy is HTTP gateway for Gopher\n"
msgstr ""
"\t-gopher_httpgw/-nogopher_httpgw\n"
"\t                   -  gopher Ӧ   HTTP  Gopher\n"

#: options.h:1631
msgid ""
"\t-ftp_httpgw/-noftp_httpgw\n"
"\t                   - specified ftp proxy is HTTP gateway for FTP\n"
msgstr ""
"\t-ftp_httpgw/-noftp_httpgw\n"
"\t                   -  ftp Ӧ   HTTP  FTP\n"

#: options.h:1655
msgid ""
"\t-ftp_dirtyproxy/-noftp_dirtyproxy\n"
"\t                   - use CONNECT request to HTTP proxy for FTP\n"
"\t                     connections\n"
msgstr ""
"\t-ftp_dirtyproxy/-noftp_dirtyproxy\n"
"\t                   -   CONNECT  HTTP Ӧ\n"
"\t                      ' FTP\n"

#: options.h:1682
msgid "\t-browser $str      - your preferred browser programm\n"
msgstr "\t-browser $str      -     WWW\n"

#: options.h:1697
msgid "\t-xmaxlog           - maximal length of log window\n"
msgstr "\t-xmaxlog           -   צ \n"

#: options.h:1709
msgid "\t-dumpscn $str      - save scenario in scndir with name $str\n"
msgstr ""
"\t-dumpscn $str      -  Ҧ  Φ Ҧ  ' $str\n"

#: options.h:1720
msgid "\t-maxsize $nr       - maximal allowed size of document in bytes\n"
msgstr ""
"\t-maxsize $nr       -   ͦ   \n"

#: options.h:1731
msgid "\t-minsize $nr       - minimal allowed size of document in bytes\n"
msgstr ""
"\t-minsize $nr       - ͦΦ  ͦ   \n"

#: options.h:1742
msgid ""
"\t-http_proxy_pass $str\n"
"\t                   - password for HTTP proxy authorization\n"
msgstr ""
"\t-http_proxy_pass $str\n"
"\t                   -   æ  HTTP Ӧ\n"

#: options.h:1754
msgid ""
"\t-http_proxy_user $str\n"
"\t                   - user name for HTTP proxy authorization\n"
msgstr ""
"\t-http_proxy_user $str\n"
"\t                   - '  æ  HTTP Ӧ\n"

#: options.h:1766
msgid ""
"\t-http_proxy_auth 1/2/3\n"
"\t                   - authorization scheme for HTTP proxy authorization\n"
msgstr ""
"\t-http_proxy_auth 1/2/3\n"
"\t                   -  æ  HTTP Ӧ\n"

#: options.h:1778
msgid "\t-logfile $file     - name of file where mesages are stored\n"
msgstr "\t-logfile $file     - ' ,   Ҧ צ\n"

#: options.h:1789
msgid "\t-slogfile $file    - name of file where short log will be stored\n"
msgstr "\t-slogfile $file    - '     \n"

#: options.h:1800
msgid "\t-stime/-nostime    - write starting and ending time of transfer\n"
msgstr ""
"\t-stime/-nostime    -      ˦ \n"

#: options.h:1822
msgid ""
"\t-remove_old/-noremove_old\n"
"\t                   - remove improper files or directories while running\n"
"\t                     in sync mode\n"
msgstr ""
"\t-remove_old/-noremove_old\n"
"\t                   -   Φ   Ҧ, "
"\n"
"\t                      ͦ Φæ\n"

#: options.h:1847
msgid ""
"\t-auth_file $file   - file where you have stored your auth infos\n"
"\t                     see manual for format description\n"
msgstr ""
"\t-auth_file $file   -   æ æ\n"
"\t                       .  צ\n"

#: options.h:1859
msgid ""
"\t-base_level $nr    - number of levels of directory tree to omit from top\n"
msgstr ""
"\t-base_level $nr    -  $nr ҦΦ  Ҧ  \n"

#: options.h:1870
msgid "\t-ftp_active        - select active FTP data connection\n"
msgstr "\t-ftp_active        -    '  FTP data\n"

#: options.h:1881
msgid "\t-ftp_passive       - select passive FTP data connection\n"
msgstr "\t-ftp_passive       -    '  FTP data\n"

#: options.h:1895
msgid "\t-msgcat $dir       - directory where message catalogs are stored\n"
msgstr "\t-msgcat $dir       - Ҧ   צ\n"

#: options.h:1910
msgid "\t-language $str     - set language for messages\n"
msgstr "\t-language $str     -   צ\n"

#: options.h:1922
msgid "\t-quiet             - don't show output messages\n"
msgstr "\t-quiet             -  \n"

#: options.h:1933
msgid "\t-verbose           - show output messages (default)\n"
msgstr "\t-verbose           -  ަ צ (default)\n"

#: options.h:1944
msgid ""
"\t-newer_than $time  - download only documents newer than $time\n"
"\t                     format of $time: YYYY.MM.DD.hh:mm\n"
msgstr ""
"\t-newer_than $time  -   צۦ Φ $time \n"
"\t                      $time: YYYY.MM.DD.hh:mm\n"

#: options.h:1956
msgid ""
"\t-older_than $time  - download only documents older than $time\n"
"\t                     format of $time: YYYY.MM.DD.hh:mm\n"
msgstr ""
"\t-older_than $time  -   Ҧۦ Φ $time \n"
"\t                      $time: YYYY.MM.DD.hh:mm\n"

#: options.h:1968
msgid ""
"\t-schedule $time    - schedule pavuk start at $time\n"
"\t                     format of $time: YYYY.MM.DD.hh:mm\n"
msgstr ""

#: options.h:1980
msgid ""
"\t-reschedule $nr    - number of hours between two runs\n"
"\t                     for cyclic scheduling\n"
msgstr ""

#: options.h:1992
msgid ""
"\t-dont_leave_site/-leave_site\n"
"\t                   - don't/leave site of starting URL\n"
msgstr ""
"\t-dont_leave_site/-leave_site\n"
"\t                   -      URL\n"

#: options.h:2015
msgid ""
"\t-dont_leave_dir/-leave_dir\n"
"\t                   - don't/leave directory of starting URL\n"
msgstr ""
"\t-dont_leave_dir/-leave_dir\n"
"\t                   -    Ҧ  URL\n"

#: options.h:2038
msgid ""
"\t-preserve_time/-nopreserve_time\n"
"\t                   - preserve document modification time\n"
msgstr ""
"\t-preserve_time/-nopreserve_time\n"
"\t                   -  Ҧ  Ʀæ \n"

#: options.h:2061
msgid ""
"\t-preserve_perm/-nopreserve_perm\n"
"\t                   - preserve document permissions\n"
msgstr ""
"\t-preserve_perm/-nopreserve_perm\n"
"\t                   -  Ҧ   \n"

#: options.h:2084
msgid ""
"\t-preserve_slinks/-nopreserve_slinks\n"
"\t                   - preserve absolute symlinks\n"
msgstr ""
"\t-preserve_slinks/-nopreserve_slinks\n"
"\t                   -  Ҧ Φ Φ \n"

#: options.h:2107
msgid ""
"\t-leave_level $nr   - how many tree levels leave from starting\n"
"\t                     site , (0 == don't care) default 0\n"
msgstr ""
"\t-leave_level $nr   - ˦ ҦΦ   צ  \n"
"\t                     (0 == ˦ ),    - 0\n"

#: options.h:2119
msgid "\t-cookie_file $file - file where are stored cookie infos\n"
msgstr "\t-cookie_file $file - ,   æ  \n"

#: options.h:2130
msgid ""
"\t-cookie_send/-nocookie_send\n"
"\t                   - send cookie info in HTTP request\n"
msgstr ""
"\t-cookie_send/-nocookie_send\n"
"\t                   -      HTTP\n"

#: options.h:2153
msgid ""
"\t-cookie_recv/-nocookie_recv\n"
"\t                   - accept cookies from HTTP response\n"
msgstr ""
"\t-cookie_recv/-nocookie_recv\n"
"\t                   -     צ˦ HTTP\n"

#: options.h:2176
msgid ""
"\t-cookie_update/-nocookie_update\n"
"\t                   - update cookies in cookies file\n"
msgstr ""
"\t-cookie_update/-nocookie_update\n"
"\t                   -     ̦ ֦\n"

#: options.h:2199
msgid ""
"\t-cookie_check/-nocookie_check\n"
"\t                   - check if cookies are set for source domain\n"
msgstr ""

#: options.h:2222
msgid "\t-cookies_max $nr   - maximal number of cookies in cookie cache\n"
msgstr "\t-cookies_max $nr   -  ˦˦ ˦  ۦ\n"

#: options.h:2233
msgid ""
"\t-disabled_cookie_domains $list\n"
"\t                   - comma-separated list of disabled cookie domains\n"
msgstr ""
"\t-disabled_cookie_domains $list\n"
"\t                   - Ħ    Φ "
"˦\n"

#: options.h:2245
msgid ""
"\t-disable_html_tag $TAG,[$ATTRIB][;...]\n"
"\t                   - disable processing of URLs from\n"
"\t                     attribute $ATTRIB of HTML tag $TAG\n"
msgstr ""
"\t-disable_html_tag $TAG,[$ATTRIB][;...]\n"
"\t                   -   URL'\n"
"\t                     צ  $ATTRIB ŭ HTML $TAG\n"

#: options.h:2258
msgid ""
"\t-enable_html_tag $TAG,[$ATTRIB][;...]\n"
"\t                   - enable proccessing of URLs from\n"
"\t                     attribute $ATTRIB of HTML tag $TAG\n"
msgstr ""
"\t-enable_html_tag $TAG,[$ATTRIB][;...]\n"
"\t                   -   URL'\n"
"\t                     צ  $ATTRIB ŭ HTML $TAG\n"

#: options.h:2274
msgid "\t-gui_font $font    - font name used in GUI interface\n"
msgstr "\t-gui_font $font    - '   GUI \n"

#: options.h:2286
msgid ""
"\t-user_condition $str\n"
"\t                   - user exit script used to restrict some URLs\n"
"\t                     for more informations see manpage\n"
msgstr ""

#: options.h:2299
msgid ""
"\t-tr_del_chr $str   - characters that will be deleted from\n"
"\t                     local filename\n"
msgstr ""
"\t-tr_del_chr $str   - ,    Φ\n"
"\t                        ̦\n"

#: options.h:2311
msgid ""
"\t-tr_str_str $str1 $str2\n"
"\t                   - translate $str1 to $str2 in local filename\n"
msgstr ""
"\t-tr_str_str $str1 $str2\n"
"\t                   - ͦ $str1  $str2   \n"

#: options.h:2323
msgid ""
"\t-tr_chr_chr $chrset1 $chrset2\n"
"\t                   - translate $chrset1 to $chrset2 in local filename\n"
msgstr ""
"\t-tr_chr_chr $chrset1 $chrset2\n"
"\t                   - ͦ $chrset1  $chrset2   \n"

#: options.h:2335
msgid "\t-index_name $str   - name of directory index instead of _._.html\n"
msgstr "\t-index_name $str   - '  Ҧ ͦ _._.html\n"

#: options.h:2346
msgid "\t-store_name $str   - filename for first downloaded document\n"
msgstr "\t-store_name $str   - '     Ԧ\n"

#: options.h:2368
msgid ""
"\t-check_size/-nocheck_size\n"
"\t                   - compare received size of file with\n"
"\t                     that provided by remote server\n"
msgstr ""
"\t-check_size/-nocheck_size\n"
"\t                   -  Ҧ ͦ  \n"
"\t                      ͦ,  \n"

#: options.h:2392
msgid ""
"\t-urls_file $file   - URLs should be read from file, until\n"
"\t                     line with single \".\" occurs in input\n"
msgstr ""
"\t-urls_file $file   -   URL'  ,   Ҧ\n"
"\t                     Ҧ     \".\"\n"

#: options.h:2404
msgid ""
"\t-bg/-nobg          - detach pavuk proces from terminal and\n"
"\t                     don't output any messages on screen\n"
msgstr ""
"\t-bg/-nobg          - צ'  צ ͦ \n"
"\t                        צ\n"

#: options.h:2427
msgid "\t-maxrate $nr       - limit to maximal speed of transfer (kB/s)\n"
msgstr "\t-maxrate $nr       -   ˦ (/)\n"

#: options.h:2438
msgid "\t-minrate $nr       - limit to minimal speed of transfer (kB/s)\n"
msgstr "\t-minrate $nr       -  ͦΦ ˦ (/)\n"

#: options.h:2449
msgid "\t-bufsize $nr       - size of read buffer (kB)\n"
msgstr "\t-bufsize $nr       - ͦ   (k)\n"

#: options.h:2460
msgid "\t-file_quota $nr    - maximal size of file to transfer (kB)\n"
msgstr "\t-file_quota $nr    -  ͦ  ()\n"

#: options.h:2471
msgid "\t-trans_quota $nr   - maximal amount of transfer per session (kB)\n"
msgstr "\t-trans_quota $nr   -  '   Ӧ ()\n"

#: options.h:2482
msgid "\t-fs_quota $nr      - disk free space quota (kB)\n"
msgstr "\t-fs_quota $nr      -  צ ͦ   ()\n"

#: options.h:2493
msgid ""
"\t-enable_js/-disable_js\n"
"\t                   - enable downloading of javascript source files\n"
msgstr ""
"\t-enable_js/-disable_js\n"
"\t                   -    Ȧ Ԧ javascript\n"

#: options.h:2516
msgid ""
"\t-fnrules $t $m $r  - local filename construction rules\n"
"\t                     (for better description see manual)\n"
msgstr ""
"\t-fnrules $t $m $r  -     ̦\n"
"\t                     (. צ  Φ )\n"

#: options.h:2528
msgid ""
"\t-store_info/-nostore_info\n"
"\t                   - store document info files with each document\n"
msgstr ""

#: options.h:2551
msgid ""
"\t-all_to_local/-noall_to_local\n"
"\t                   - change all links inside HTML document to\n"
"\t                     local immediately after download\n"
msgstr ""
"\t-all_to_local/-noall_to_local\n"
"\t                   -   Ӧ   HTML  Φ\n"
"\t                      Ц \n"

#: options.h:2575
msgid ""
"\t-sel_to_local/-nosel_to_local\n"
"\t                   - change all links inside HTML document\n"
"\t                     which acomplish the limits, to\n"
"\t                     local immediately after download\n"
msgstr ""
"\t-sel_to_local/-nosel_to_local\n"
"\t                   -   Ӧ   HTML,\n"
"\t                      צצ ,\n"
"\t                      Φ  Ц \n"

#: options.h:2600
msgid ""
"\t-all_to_remote/-noall_to_remote\n"
"\t                   - change all links inside HTML document to\n"
"\t                     remote immediately after download and\n"
"\t                     don't do any further changes to it\n"
msgstr ""

#: options.h:2625
msgid "\t-remind_cmd $str   - command which sends result from reminder mode\n"
msgstr ""
"\t-remind_cmd $str   -   Ԧ  ͦ \n"

#: options.h:2636
msgid ""
"\t-auto_referer/-noauto_referer\n"
"\t                   - in HTTP request send for each starting URL\n"
"\t                     Referer: field which contains its own URL\n"
msgstr ""
"\t-auto_referer/-noauto_referer\n"
"\t                   -    URL  ̦ \"Referer:\" "
"\n"
"\t                       URL\n"

#: options.h:2660
msgid ""
"\t-url_strategy $strategy\n"
"\t                   - scheduling strategy for URLs\n"
"\t                     (this means order how URLs will be downloaded)\n"
"\t                     $strategy is one of :\n"
"\t                        level  - level order in URL tree\n"
"\t                        leveli - level order in URL tree,\n"
"\t                                 but inline objects go first\n"
"\t                        pre    - pre-order in URL tree\n"
"\t                        prei   - pre-order in URL tree,\n"
"\t                                 but inline objects go first\n"
msgstr ""
"\t-url_strategy $strategy\n"
"\t                   - Ǧ   URL'\n"
"\t                     (,   URL'  )\n"
"\t                     $strategy     :\n"
"\t                        level  -   צ URL'\n"
"\t                        leveli -   צ URL',\n"
"\t                                  inline ' \n"
"\t                        pre    - pre-order in URL tree\n"
"\t                        prei   - pre-order in URL tree,\n"
"\t                                  inline ' \n"

#: options.h:2683
msgid "\t-nscache_dir $dir  - path to Netcape browser cache directory\n"
msgstr "\t-nscache_dir $dir  -   Ҧ   Netscape\n"

#: options.h:2698
msgid "\t-ie_cache          - allow loading of files from MSIE browser cache\n"
msgstr "\t-ie_cache          -   ̦   MSIE\n"

#: options.h:2728
msgid ""
"\t-remove_adv/-noremove_adv\n"
"\t                   - enable removing of advertisement banners\n"
"\t                     assumes you have setup regular expresions\n"
"\t                     for matching adv banners with -adv_re option\n"
msgstr ""
"\t-remove_adv/-noremove_adv\n"
"\t                   -   \n"
"\t                        Φ  \n"
"\t                      Ҧ æ -adv_re\n"

#: options.h:2761
msgid ""
"\t-adv_re $RE        - regular expressions for matching advertisement\n"
"\t                     banner URLs\n"
msgstr ""
"\t-adv_re $RE        - Φ   \n"
"\t                     URL' Ҧ\n"

#: options.h:2777
msgid ""
"\t-check_bg/-nocheck_bg\n"
"\t                   - if running at background, don't write any\n"
"\t                     messages to screen\n"
msgstr ""
"\t-check_bg/-nocheck_bg\n"
"\t                   -   ЦЦ̦,   \n"
"\t                     צ  Φ\n"

#: options.h:2806
msgid ""
"\t-send_if_range/-nosend_if_range\n"
"\t                   - send If-Range header in HTTP request\n"
"\t                     turn this of when server support reget, but\n"
"\t                     generates different Etags for two requests\n"
msgstr ""
"\t-send_if_range/-nosend_if_range\n"
"\t                   -    If-Range   Ԧ HTTP\n"
"\t                      ,   Цդ \n"
"\t                      դ ҦΦ Etags   Ԧ\n"

#: options.h:2831
msgid "\t-sched_cmd $str    - command for scheduling\n"
msgstr "\t-sched_cmd $str    -    \n"

#: options.h:2842
msgid ""
"\t-unique_log/-nounique_log\n"
"\t                   - when original log file locked try to find other\n"
"\t                     with numbering extension which is not locked\n"
msgstr ""

#: options.h:2866
msgid ""
"\t-post_cmd $str     - postprocessing command, which will be invoked\n"
"\t                     after document will be successfully downloaded\n"
msgstr ""
"\t-post_cmd $str     -   ˦ , \n"
"\t                     Ц   \n"

#: options.h:2882
msgid ""
"\t-ssl_version $v    - version of SSL protocol used for communication,\n"
"\t                     valid values: ssl23,ssl2,ssl3,tls1\n"
msgstr ""
"\t-ssl_version $v    - Ӧ  SSL,\n"
"\t                     Φ : ssl23,ssl2,ssl3,tls1\n"

#: options.h:2885
msgid ""
"\t-ssl_version $v    - version of SSL protocol used for communication,\n"
"\t                     valid values: ssl23,ssl2,ssl3\n"
msgstr ""
"\t-ssl_version $v    - Ӧ  SSL,\n"
"\t                     Φ : ssl23,ssl2,ssl3\n"

#: options.h:2903
msgid ""
"\t-unique_sslid/-nounique_sslid\n"
"\t                   - use unique SSL ID with each SSL session\n"
msgstr ""
"\t-unique_sslid/-nounique_sslid\n"
"\t                   -   Φ ID  ϧ SSL "
"Ӧ\n"

#: options.h:2931
msgid "\t-httpad $hdr       - additional HTTP header\n"
msgstr "\t-httpad $hdr       -   HTTP\n"

#: options.h:2942
msgid "\t-statfile $str     - statistical report from downloading progress\n"
msgstr "\t-statfile $str     -  צ  \n"

#: options.h:2956
msgid ""
"\t-ewait             - wait to finish program after downloading progress\n"
"\t                     is done\n"
msgstr ""
"\t-ewait             -     ˦\n"
"\t                     \n"

#: options.h:2987
msgid "\t-aip_pattern $re   - pattern for allowed IP addresses of servers\n"
msgstr "\t-aip_pattern $re   -     IP Ҧ\n"

#: options.h:3002
msgid "\t-dip_pattern $re   - pattern for disallowed IP addresses of servers\n"
msgstr "\t-dip_pattern $re   -     IP Ҧ\n"

#: options.h:3014
msgid ""
"\t-site_level $nr    - maximum allowed number of sites to leave from\n"
"\t                     starting site\n"
msgstr ""
"\t-site_level $nr    -  ˦˦ Ħ    "
",\n"
"\t                      צ \n"

#: options.h:3026
msgid ""
"\t-use_http11/-nouse_http11\n"
"\t                   - enable or disable using of HTTP/1.1 protocol\n"
"\t                     features, default is off now\n"
msgstr ""
"\t-use_http11/-nouse_http11\n"
"\t                   -     HTTP/1.1,\n"
"\t                        - \n"

#: options.h:3050
msgid ""
"\t-max_time $nr      - set maximal amount of time for program run\n"
"\t                     in minutes, default 0 == no limit\n"
"\t                     you can use floating point numbers, to\n"
"\t                     specify subminute times\n"
msgstr ""
"\t-max_time $nr      -     \n"
"\t                      ,    - 0 ==  ,\n"
"\t                       æ̦ \n"

#: options.h:3065
msgid ""
"\t-local_ip $str     - use this local ip address of network interface.\n"
"\t                     This option is for multihomed machines.\n"
msgstr ""
"\t-local_ip $str     -    IP .\n"
"\t                      æ -    ˦ .\n"

#: options.h:3077
msgid ""
"\t-request $req      - extended request informations, used to specify\n"
"\t                     information for GET or POST requests.\n"
"\t                     format of $req :\n"
"\t                     \"URL:$url METHOD:[GET|POST] ENCODING:[m|u]\n"
"\t                       FIELD:$variable=$value\n"
"\t                       FILE:$variable=$filename\n"
"\t                       LNAME:$local_filename\"\n"
"\t                     (for more informations see manual page)\n"
msgstr ""

#: options.h:3095
msgid ""
"\t-hash_size $nr     - size of internal hash tables for performance tuning\n"
msgstr ""
"\t-hash_size $nr     - ͦ ҦΦ hash- (  "
"˦)\n"

#: options.h:3109
msgid "\t-nthreads $nr      - set number of concurent downloading threads\n"
msgstr ""
"\t-nthreads $nr      -  ˦˦  ˦ \n"

#: options.h:3124
msgid ""
"\t-immesg/-noimmesg  - write messages immediately after produced, not\n"
"\t                     just when safe (from MT point of view)\n"
msgstr ""

#: options.h:3152
msgid ""
"\t-formdata $data    - used to specify HTML form fields, for HTML\n"
"\t                     forms found during traversing document tree.\n"
"\t                     Only forms mentiond in this option will be\n"
"\t                     processed automaticaly.\n"
"\t                     \"URL:$url\n"
"\t                       FIELD:$variable=$value\n"
"\t                       FILE:$variable=$filename\"\n"
"\t                     (for more informations see manual page)\n"
msgstr ""
"\t-formdata $data    - դ  HTML   HTML , \n"
"\t                     Ц     Ԧ.\n"
"\t                      Φ æ æ  \n"
"\t                     Φ .\n"
"\t                     \"URL:$url\n"
"\t                       FIELD:$variable=$value\n"
"\t                       FILE:$variable=$filename\"\n"
"\t                     ( æ   צ)\n"

#: options.h:3170
msgid ""
"\t-dumpfd $nr        - number of filedescriptor where to output\n"
"\t                     document contents instead to file\n"
msgstr ""
"\t-dumpfd $nr        -   ,    ͦ\n"
"\t                     Ԧ ͦ \n"

#: options.h:3182
msgid ""
"\t-dump_urlfd $nr    - number of filedescriptor where to output\n"
"\t                     all URLs found in documents\n"
msgstr ""
"\t-dump_urlfd $nr    -   ,   \n"
"\t                     Ӧ URL', Φ  Ԧ\n"

#: options.h:3194
msgid ""
"\t-del_after/-nodel_after\n"
"\t                   - delete FTP document after succesfull transfer\n"
msgstr ""
"\t-del_after/-nodel_after\n"
"\t                   -    FTP Ц  \n"

#: options.h:3217
msgid ""
"\t-unique_name/-nounique_name\n"
"\t                   - always generate unique name for each document\n"
msgstr ""
"\t-unique_name/-nounique_name\n"
"\t                   -   Φ '   "
"\n"

#: options.h:3240
msgid ""
"\t-leave_site_enter_dir/-dont_leave_site_enter_dir\n"
"\t                   - leave directory which we first entered on site\n"
msgstr ""
"\t-leave_site_enter_dir/-dont_leave_site_enter_dir\n"
"\t                   -      Ҧ Ҧ\n"

#: options.h:3263
msgid ""
"\t-singlepage/-nosinglepage\n"
"\t                   - donwload single HTML page with all inline objects\n"
msgstr ""
"\t-singlepage/-nosinglepage\n"
"\t                   -   HTML Ҧ  Ӧ  '\n"

#: options.h:3286
msgid ""
"\t-dump_after/-nodump_after\n"
"\t                   - when used with option -dumpfd, dump document after\n"
"\t                     successful download and processing of HTML\n"
"\t                     documents\n"
msgstr ""

#: options.h:3311
msgid ""
"\t-dump_response/-nodump_response\n"
"\t                   - when used with option -dumpfd, also responses\n"
"\t                     from HTTP servers will be dumped\n"
msgstr ""

#: options.h:3338
msgid ""
"\t-auth_ntlm_domain $str\n"
"\t                   - SMB domain name for HTTP NTLM authorization\n"
msgstr ""
"\t-auth_ntlm_domain $str\n"
"\t                   - '  SMB  æ HTTP NTLM\n"

#: options.h:3354
msgid ""
"\t-auth_proxy_ntlm_domain $str\n"
"\t                   - SMB domain name for HTTP proxy NTLM authorization\n"
msgstr ""
"\t-auth_proxy_ntlm_domain $str\n"
"\t                   - '  SMB  æ NTLM  HTTP "
"Ӧ\n"

#: options.h:3370
msgid ""
"\t-js_pattern $re    - additional RE patterns for matching URLs in DOM\n"
"\t                     event attributes of HTML tags\n"
msgstr ""

#: options.h:3383
msgid ""
"\t-follow_cmd $str   - user exit script used tell if you want to follow\n"
"\t                     any link from current HTML document\n"
msgstr ""

#: options.h:3395
msgid ""
"\t-retrieve_symlink/-noretrieve_symlink\n"
"\t                   - retrieve symliks like regular files or directories\n"
msgstr ""
"\t-retrieve_symlink/-noretrieve_symlink\n"
"\t                   -  .   Φ "
"/Ҧ\n"

#: options.h:3421
msgid ""
"\t-js_transform $p $t $h $a\n"
"\t                   - custom JS pattern with transformation\n"
"\t                     $p - pattern\n"
"\t                     $t - transfomation\n"
"\t                     $h - HTML tag or * or \"\"\n"
"\t                     $a - HTML attrib\n"
msgstr ""
"\t-js_transform $p $t $h $a\n"
"\t                   - Ʀ  JS  æ\n"
"\t                     $p - \n"
"\t                     $t - æ\n"
"\t                     $h - HTML ŭ  *  \"\"\n"
"\t                     $a - HTML \n"

#: options.h:3441
msgid ""
"\t-js_transform2 $p $t $h $a\n"
"\t                   - custom JS pattern with transformation and\n"
"\t                     rewriting of URLs in first subpattern\n"
"\t                     $p - pattern\n"
"\t                     $t - transfomation\n"
"\t                     $h - HTML tag or * or \"\"\n"
"\t                     $a - HTML attrib\n"
msgstr ""
"\t-js_transform2 $p $t $h $a\n"
"\t                   - Ʀ  JS  æ \n"
"\t                      URL'  ۦ Φ \n"
"\t                     $p - \n"
"\t                     $t - æ\n"
"\t                     $h - HTML ŭ  *  \"\"\n"
"\t                     $a - HTML \n"

#: options.h:3459
msgid ""
"\t-ftp_proxy_user $str\n"
"\t                   - username for access authorization to FTP proxy\n"
msgstr ""
"\t-ftp_proxy_user $str\n"
"\t                   - '  æ   FTP Ӧ\n"

#: options.h:3471
msgid ""
"\t-ftp_proxy_pass $str\n"
"\t                   - password for access authorization to FTP proxy\n"
msgstr ""
"\t-ftp_proxy_pass $str\n"
"\t                   -   æ   FTP Ӧ\n"

#: options.h:3483
msgid ""
"\t-limit_inlines/-dont_limit_inlines\n"
"\t                   - apply limiting options on page inline objects?\n"
msgstr ""

#: options.h:3506
msgid ""
"\t-ftp_list_options $str\n"
"\t                   - additional options or parameters to FTP LIST or\n"
"\t                     NLST commands\n"
msgstr ""

#: options.h:3519
msgid ""
"\t-fix_wuftpd_list/-nofix_wuftpd_list\n"
"\t                   - do extensive checking of FTP directory presence to\n"
"\t                     workaround WuFTPD broken responses when trying\n"
"\t                     to list nonexisting directory\n"
msgstr ""

#: options.h:3544
#, fuzzy
msgid ""
"\t-post_update/-nopost_update\n"
"\t                   - update in parent documents only links pointing\n"
"\t                     to current document\n"
msgstr ""
"\t-remove_old/-noremove_old\n"
"\t                   -   Φ   Ҧ, "
"\n"
"\t                      ͦ Φæ\n"

#: options.h:3568
#, fuzzy
msgid ""
"\t-info_dir $dir     - separate directory where will stored info files\n"
"\t                     instead of directly into document tree\n"
msgstr ""
"\t-scndir $dir       - Ҧ,  Φ ۦ Ҧ\n"
"\t                     ( Ʀæ)\n"

#: options.h:3583
msgid "\t-mozcache_dir $dir - path to Mozilla browser cache directory\n"
msgstr "\t-mozcache_dir $dir  -   Ҧ   Mozilla\n"

#: options.h:3595
msgid ""
"\t-aport $list       - allow downloading of documents from servers\n"
"\t                     siting on listed ports\n"
msgstr ""

#: options.h:3607
msgid ""
"\t-dport $list       - deny downloading of documents from servers\n"
"\t                     siting on listed ports\n"
msgstr ""

#: options.h:3619
msgid ""
"\t-hack_add_index/-nohack_add_index\n"
"\t                   - this is hack to allow adding of also directories\n"
"\t                     of all queued files\n"
msgstr ""

#: options.h:3643
#, fuzzy
msgid ""
"\t-default_prefix $str\n"
"\t                   - default URL prefix for subdirectory of\n"
"\t                     mirrored files\n"
msgstr ""
"\t-remove_old/-noremove_old\n"
"\t                   -   Φ   Ҧ, "
"\n"
"\t                      ͦ Φæ\n"

#: options.h:3659
msgid ""
"\t-js_script_file $file\n"
"\t                  - script file with JavaScript functions\n"
msgstr ""

#: options.h:3672
msgid ""
"\t-ftp_login_handshake $host $handshake\n"
"\t                   - customize login handshake for FTP server\n"
msgstr ""

#: options.h:3687
msgid ""
"\t-nss_cert_dir $dir - set certificate config directory for Netscape NSS\n"
msgstr ""

#: options.h:3702
msgid ""
"\t-nss_accept_unknown_cert/-nonss_accept_unknown_cert\n"
"\t                   - accept SSL server certificates not listed in\n"
"\t                     certificate database\n"
msgstr ""

#: options.h:3734
msgid ""
"\t-nss_domestic_policy/-nss_export_policy\n"
"\t                   - set policy for SSL ciphers in NSS\n"
msgstr ""

#: options.h:3765
msgid ""
"\t-dont_touch_url_rpattern $re\n"
"\t                   - RE pattern of URL which should not be touched\n"
"\t                     by URL rewriting engine\n"
msgstr ""

#: options.h:3779
msgid ""
"\t-dont_touch_url_pattern $list\n"
"\t                   - wilcard patterns of URLs which should not\n"
"\t                     be touched by URL rewriting engine\n"
msgstr ""

#: options.h:3795
msgid ""
"\t-dont_touch_tag_rpattern $re\n"
"\t                   - RE pattern of HTML tag in which URLs should\n"
"\t                     not be touched by URL rewriting engine\n"
msgstr ""

#: options.h:3809
#, fuzzy
msgid ""
"\t-tag_pattern $tag $attrib $url\n"
"\t                   - wilcard patterns for precise matching of URLs\n"
"\t                     inside HTML tags\n"
msgstr ""
"\t-disable_html_tag $TAG,[$ATTRIB][;...]\n"
"\t                   -   URL'\n"
"\t                     צ  $ATTRIB ŭ HTML $TAG\n"

#: options.h:3825
#, fuzzy
msgid ""
"\t-tag_rpattern $tag $attrib $url\n"
"\t                   - RE patterns for precise matching of URLs\n"
"\t                     inside HTML tags\n"
msgstr ""
"\t-enable_html_tag $TAG,[$ATTRIB][;...]\n"
"\t                   -   URL'\n"
"\t                     צ  $ATTRIB ŭ HTML $TAG\n"

#: pavuk.c:108
msgid "QUIT signal catched\n"
msgstr "  QUIT\n"

#: pavuk.c:259
msgid "Not enough number of parameters \"-msgcat\"\n"
msgstr " Ҧ  \"-msgcat\"\n"

#: pavuk.c:273
msgid "Not enough number of parameters \"-scenario\"\n"
msgstr " Ҧ  \"-scenario\"\n"

#: pavuk.c:303
msgid "Error: Supplied bad file descriptor in -dumpfd option\n"
msgstr ":  צ   æ -dumpfd\n"

#: pavuk.c:314
msgid "Error: Supplied bad file descriptor in -dump_urlfd option\n"
msgstr ":  צ   æ -dump_urlfd\n"

#: pavuk.c:364
msgid "WARNING: scndir not specified - saving to current directory\n"
msgstr ": scndir   - Ҧ  ϧ Ҧ\n"

#: pavuk.c:403
msgid "Unable to fork pavuk to background - running in foreground\n"
msgstr ""

#: pavuk.c:407
#, c-format
msgid "Pavuk will run at backround as PID %d\n"
msgstr "   ЦЦ̦  PID %d\n"

#: pavuk.c:427
#, c-format
msgid "reading URLs from file - %s\n"
msgstr " URL'   - %s\n"

#: recurse.c:80
#, c-format
msgid "Rescheduling locked URL as no. %d\n"
msgstr ""

#: recurse.c:93
msgid "Running post-processing command\n"
msgstr ""

#: recurse.c:241
#, c-format
msgid "retry no. %d\n"
msgstr ". %d\n"

#: recurse.c:244
#, c-format
msgid "URL[%2d]: %5d(%d) of %5d  %s\n"
msgstr ""

#: recurse.c:247
#, c-format
msgid "URL: %5d(%d) of %5d  %s\n"
msgstr ""

#: recurse.c:258 recurse.c:396
msgid "Starting download"
msgstr " "

#: recurse.c:286
msgid "Already processed\n"
msgstr " \n"

#: recurse.c:293
msgid "Disallowed by user\n"
msgstr " \n"

#: recurse.c:307
msgid "Disallowed by rules\n"
msgstr " \n"

#: recurse.c:314
msgid "Checking \"robots.txt\""
msgstr "צѤ \"robots.txt\""

#: recurse.c:318
msgid "Disallowed by \"robots.txt\"\n"
msgstr "  \"robots.txt\"\n"

#: recurse.c:328
msgid "This URL type is not supported with ftpdir mode\n"
msgstr "  URL  Цդ  ͦ ftpdir\n"

#: recurse.c:348
msgid "No transfer - file not expired\n"
msgstr ""

#: recurse.c:364
#, c-format
msgid "Starting time :  %s\n"
msgstr "  :  %s\n"

#: recurse.c:406 recurse.c:565
#, c-format
msgid "Ending time :    %s\n"
msgstr "  :    %s\n"

#: recurse.c:413 recurse.c:568
msgid "download"
msgstr ""

#: recurse.c:513
msgid "last document locked -> sleeping for 5 seconds\n"
msgstr "   ->  5 \n"

#: recurse.c:579
msgid "Relocating and scanning HTML document"
msgstr ""

#: recurse.c:631
msgid "Dumping processed document"
msgstr ""

#: recurse.c:651
msgid "Storing document"
msgstr "Ҧ "

#: recurse.c:657
msgid "Store failed\n"
msgstr "¦ \n"

#: recurse.c:764 recurse.c:847
msgid "Done"
msgstr ""

#: recurse.c:924 remind.c:378
msgid "Sleeping ..."
msgstr " ..."

#: recurse.c:938 remind.c:395
msgid "Exiting ..."
msgstr " ..."

#: recurse.c:1050
#, c-format
msgid "\t%s    (%d bytes)\n"
msgstr "\t%s    (%d Ԧ)\n"

#: recurse.c:1108
msgid "Searching for files to resume"
msgstr ""

#: recurse.c:1135
#, c-format
msgid "Adding %s to resume list\n"
msgstr ""

#: recurse.c:1167
msgid "Searching for documents to synchronize"
msgstr ""

#: recurse.c:1222 recurse.c:1247
#, c-format
msgid "Adding file %s to sync list as URL %s\n"
msgstr ""

#: remind.c:44
#, c-format
msgid "Checking: %s\n"
msgstr "צѤ: %s\n"

#: remind.c:169
#, c-format
msgid "Bad reminder db entry - %s\n"
msgstr ""

#: remind.c:528
msgid ""
"This is the result of running pavuk reminder mode\n"
"\n"
msgstr ""
"     ͦ  (reminder)\n"
"\n"

#: remind.c:539
msgid "Changed URLs\n"
msgstr "ͦΦ URL'\n"

#: remind.c:560
msgid "URLs with some errors\n"
msgstr "URL'   \n"

#: robots.c:162
msgid "transfering \"robots.txt\""
msgstr " \"robots.txt\""

#: robots.c:165
msgid "transfering \"robots.txt\"\n"
msgstr " \"robots.txt\"\n"

# ,  " :   \"robots.txt\"  %s ???\n"
#: robots.c:226
#, c-format
msgid "Hmm: redirecting \"robots.txt\" to %s ???\n"
msgstr " :  \"robots.txt\"  %s ???\n"

#: stats.c:139 stats.c:222
#, c-format
msgid "Total number of URLs in queue: %d\n"
msgstr " URL'  ڦ: %d\n"

#: stats.c:140 stats.c:224
#, c-format
msgid "Starting urls: %d\n"
msgstr "צ URL': %d\n"

#: stats.c:143 stats.c:229
msgid "Not processed yet: %d (%3d%%)\n"
msgstr "  : %d (%3d%%)\n"

#: stats.c:148 stats.c:236
msgid "Processed OK: %d (%3d%%)\n"
msgstr " OK: %d (%3d%%)\n"

#: stats.c:151 stats.c:242
msgid "Loaded from local tree: %d (%3d%%)\n"
msgstr "   : %d (%3d%%)\n"

#: stats.c:154 stats.c:248
msgid "Loaded from Netscape browser cache dir: %d (%3d%%)\n"
msgstr "  Ҧ  Netscape: %d (%3d%%)\n"

#: stats.c:157 stats.c:254
msgid "Downloaded over network: %d (%3d%%)\n"
msgstr "  ֦: %d (%3d%%)\n"

#: stats.c:160 stats.c:260
msgid "Moved to another location: %d (%3d%%)\n"
msgstr "   ͦ: %d (%3d%%)\n"

#: stats.c:164 stats.c:266
msgid "Downloaded truncated: %d (%3d%%)\n"
msgstr " Ӧ: %d (%3d%%)\n"

#: stats.c:170 stats.c:273
msgid "Non fatal errors: %d (%3d%%)\n"
msgstr " : %d (%3d%%)\n"

#: stats.c:176 stats.c:280
msgid "Not found documents: %d (%3d%%)\n"
msgstr "  Ԧ: %d (%3d%%)\n"

#: stats.c:182 stats.c:287
msgid "Documents with fatal errors: %d (%3d%%)\n"
msgstr "   : %d (%3d%%)\n"

#: stats.c:188
msgid "Documents with unknown status: %d (%3d%%)\n"
msgstr "  צ Φ: %d (%3d%%)\n"

#: stats.c:294
msgid "Documents with unspecific status: %d (%3d%%)\n"
msgstr ""

#: stats.c:359
msgid "Pavuk: save status page"
msgstr ":  Ҧ "

#: stats.c:380 stats.c:532
msgid "Not available yet"
msgstr ""

#: stats.c:461
msgid "Pavuk: status page"
msgstr ": Ҧ "

#: stats.c:478
msgid "Status page"
msgstr "Ҧ "

#: stats.c:489
msgid "Save ..."
msgstr " ..."

#: stats.c:496
msgid "Refresh"
msgstr ""

#: stats.c:521
msgid "Try download"
msgstr " "

#: tag_pattern.c:32
#, fuzzy
msgid "Bad -tag_pattern tag wildcard pattern\n"
msgstr "\t-url_pattern $list -  Φ    URL'\n"

#: tag_pattern.c:39
#, fuzzy
msgid "Bad -tag_pattern attribute wildcard pattern\n"
msgstr "\t-url_pattern $list -  Φ    URL'\n"

#: tag_pattern.c:46
#, fuzzy
msgid "Bad -tag_pattern url wildcard pattern\n"
msgstr "\t-url_pattern $list -  Φ    URL'\n"

#: tag_pattern.c:61
msgid "Bad -tag_rpattern tag RE pattern\n"
msgstr ""

#: tag_pattern.c:63
msgid "Bad -tag_rpattern attribute RE pattern\n"
msgstr ""

#: tag_pattern.c:65
msgid "Bad -tag_rpattern url RE pattern\n"
msgstr ""

#: tools.c:110
msgid "no error"
msgstr " "

#: tools.c:115
msgid "host not found"
msgstr "  "

#: tools.c:120
msgid "temporary error (try again later)"
msgstr "  ( ЦΦ)"

#: tools.c:125
msgid "non recoverable error"
msgstr ""

#: tools.c:130
msgid "name is valid, but doesn't have an IP address"
msgstr "' צ,     IP"

#: tools.c:134
msgid "unknown hostname translation error"
msgstr "צ  æ Φ "

#: tools.c:315 tools.c:339 tools.c:364 tools.c:409
msgid ""
"Warning: locking not supported ... don't run multiple processes or threads!\n"
msgstr ""

#: tools.c:330 tools.c:353
#, c-format
msgid "waiting to release lock on FD : %d\n"
msgstr ""

#: uconfig.c:1035
msgid "Bad parameter - Working subdirectory"
msgstr "צ  -  ЦҦ"

#: uconfig.c:1161
msgid "Bad parameter - Cache directory"
msgstr "צ  - Ҧ "

#: uexit.c:31
msgid "Error occured while executing user-exit script"
msgstr ""

#: update_links.c:37
#, c-format
msgid "Entering directory %s\n"
msgstr "  Ҧ %s\n"

#: update_links.c:66
#, c-format
msgid "Relocating %s\n"
msgstr "ͦդ %s\n"

#: update_links.c:69
#, c-format
msgid "Omitting %s\n"
msgstr " %s\n"

#: update_links.c:83
#, c-format
msgid "Leaving directory %s\n"
msgstr "  Ҧ %s\n"

#: update_links.c:101
#, c-format
msgid "Can't open directory %s\n"
msgstr " צ Ҧ %s\n"

#: url.c:1007
#, c-format
msgid "unsupported URL type \"%s\"\n"
msgstr "  URL  Цդ \"%s\"\n"

#: url.c:1159
msgid "Moved to already processed URL.\n"
msgstr "    URL.\n"

#: url.c:2775
msgid "Missing specification of URL in request\n"
msgstr ""

#: url.c:2784
msgid "Missing request fields specification for POST request\n"
msgstr ""

#: url.c:2792
msgid "Multipart encoding not supported with GET requests\n"
msgstr "Multipart encoding   GET  Цդ\n"

#~ msgid "January"
#~ msgstr ""

#~ msgid "February"
#~ msgstr ""

#~ msgid "March"
#~ msgstr ""

#~ msgid "April"
#~ msgstr "צ"

#~ msgid "May"
#~ msgstr ""

#~ msgid "June"
#~ msgstr ""

#~ msgid "July"
#~ msgstr ""

#~ msgid "August"
#~ msgstr ""

#~ msgid "September"
#~ msgstr ""

#~ msgid "October"
#~ msgstr ""

#~ msgid "November"
#~ msgstr ""

#~ msgid "December"
#~ msgstr ""

#~ msgid "Sun"
#~ msgstr "."

#~ msgid "Mon"
#~ msgstr "."

#~ msgid "Tue"
#~ msgstr "."

#~ msgid "Wed"
#~ msgstr "."

#~ msgid "Thu"
#~ msgstr "."

#~ msgid "Fri"
#~ msgstr "."

#~ msgid "Sat"
#~ msgstr "."

#~ msgid "Server certificate:\n"
#~ msgstr "Ʀ :\n"

#~ msgid "\t subject: %s\n"
#~ msgstr "\t ': %s\n"

#~ msgid "\t issuer: %s\n"
#~ msgstr "\t : %s\n"